summaryrefslogtreecommitdiff
path: root/installer
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-09-25 13:03:53 +0000
committeralecpl <alec@alec.pl>2010-09-25 13:03:53 +0000
commite019f2d0f2dc2fbfa345ab5d7ae85e67bfdd76b8 (patch)
treeebde4a0ae4c57dd23a84d841b7eb6a04c1b6cdcf /installer
parent6465a92a38bb42dae3f669e9f2e4f570b6dd5d95 (diff)
- s/RoundCube/Roundcube/
Diffstat (limited to 'installer')
-rw-r--r--installer/check.php6
-rw-r--r--installer/config.php6
-rw-r--r--installer/index.php8
-rw-r--r--installer/rcube_install.php14
-rw-r--r--installer/test.php6
-rw-r--r--installer/utils.php4
-rw-r--r--installer/welcome.html4
7 files changed, 24 insertions, 24 deletions
diff --git a/installer/check.php b/installer/check.php
index d1775a3ff..408f477b5 100644
--- a/installer/check.php
+++ b/installer/check.php
@@ -75,7 +75,7 @@ if (version_compare(PHP_VERSION, MIN_PHP_VERSION, '>=')) {
?>
<h3>Checking PHP extensions</h3>
-<p class="hint">The following modules/extensions are <em>required</em> to run RoundCube:</p>
+<p class="hint">The following modules/extensions are <em>required</em> to run Roundcube:</p>
<?php
// get extensions location
@@ -154,7 +154,7 @@ foreach ($required_libs as $classname => $file) {
?>
<h3>Checking php.ini/.htaccess settings</h3>
-<p class="hint">The following settings are <em>required</em> to run RoundCube:</p>
+<p class="hint">The following settings are <em>required</em> to run Roundcube:</p>
<?php
@@ -205,7 +205,7 @@ foreach ($optional_checks as $var => $val) {
<?php
if ($RCI->failures) {
- echo '<p class="warning">Sorry but your webserver does not meet the requirements for RoundCube!<br />
+ echo '<p class="warning">Sorry but your webserver does not meet the requirements for Roundcube!<br />
Please install the missing modules or fix the php.ini settings according to the above check results.<br />
Hint: only checks showing <span class="fail">NOT OK</span> need to be fixed.</p>';
}
diff --git a/installer/config.php b/installer/config.php
index 02deb9b6d..073b7b5b2 100644
--- a/installer/config.php
+++ b/installer/config.php
@@ -24,7 +24,7 @@ $_SESSION['allowinstaller'] = true;
if (!empty($_POST['submit'])) {
echo '<p class="notice">Copy or download the following configurations and save them in two files';
- echo ' (names above the text box) within the <tt>'.RCMAIL_CONFIG_DIR.'</tt> directory of your RoundCube installation.<br/>';
+ echo ' (names above the text box) within the <tt>'.RCMAIL_CONFIG_DIR.'</tt> directory of your Roundcube installation.<br/>';
echo ' Make sure that there are no characters outside the <tt>&lt;?php ?&gt;</tt> brackets when saving the files.</p>';
$textbox = new html_textarea(array('rows' => 16, 'cols' => 60, 'class' => "configfile"));
@@ -343,12 +343,12 @@ $check_autocreate = new html_checkbox(array('name' => '_auto_create_user', 'id'
echo $check_autocreate->show(intval($RCI->getprop('auto_create_user')), array('value' => 1));
?>
-<label for="cfgautocreate">Automatically create a new RoundCube user when log-in the first time</label><br />
+<label for="cfgautocreate">Automatically create a new Roundcube user when log-in the first time</label><br />
<p class="hint">A user is authenticated by the IMAP server but it requires a local record to store settings
and contacts. With this option enabled a new user record will automatically be created once the IMAP login succeeds.</p>
-<p class="hint">If this option is disabled, the login only succeeds if there's a matching user-record in the local RoundCube database
+<p class="hint">If this option is disabled, the login only succeeds if there's a matching user-record in the local Roundcube database
what means that you have to create those records manually or disable this option after the first login.</p>
</dd>
diff --git a/installer/index.php b/installer/index.php
index d1c55e4ec..1c157da7f 100644
--- a/installer/index.php
+++ b/installer/index.php
@@ -58,7 +58,7 @@ if ($RCI->configured && empty($_REQUEST['_step'])) {
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
-<title>RoundCube Webmail Installer</title>
+<title>Roundcube Webmail Installer</title>
<meta name="Robots" content="noindex,nofollow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="styles.css" />
@@ -69,7 +69,7 @@ if ($RCI->configured && empty($_REQUEST['_step'])) {
<div id="banner">
<div id="header">
- <div class="banner-logo"><a href="http://www.roundcube.net"><img src="images/banner_logo.gif" width="200" height="56" border="0" alt="RoundCube Webmal Project" /></a></div>
+ <div class="banner-logo"><a href="http://www.roundcube.net"><img src="images/banner_logo.gif" width="200" height="56" border="0" alt="Roundcube Webmal Project" /></a></div>
<div class="banner-right"><img src="images/banner_right.gif" width="10" height="56" alt="" /></div>
</div>
<div id="topnav">
@@ -92,7 +92,7 @@ if ($RCI->configured && empty($_REQUEST['_step'])) {
?>
-<h1>RoundCube Webmail Installer</h1>
+<h1>Roundcube Webmail Installer</h1>
<ol id="progress">
<?php
@@ -120,7 +120,7 @@ else {
</div>
<div id="footer">
- Installer by the RoundCube Dev Team. Copyright &copy; 2008 - Published under the GNU Public License;&nbsp;
+ Installer by the Roundcube Dev Team. Copyright &copy; 2008 - Published under the GNU Public License;&nbsp;
Icons by <a href="http://famfamfam.com">famfamfam</a>
</div>
</body>
diff --git a/installer/rcube_install.php b/installer/rcube_install.php
index afd422433..677dda1e5 100644
--- a/installer/rcube_install.php
+++ b/installer/rcube_install.php
@@ -4,8 +4,8 @@
+-----------------------------------------------------------------------+
| rcube_install.php |
| |
- | This file is part of the RoundCube Webmail package |
- | Copyright (C) 2008-2009, RoundCube Dev. - Switzerland |
+ | This file is part of the Roundcube Webmail package |
+ | Copyright (C) 2008-2009, Roundcube Dev. - Switzerland |
| Licensed under the GNU Public License |
+-----------------------------------------------------------------------+
@@ -15,10 +15,10 @@
/**
- * Class to control the installation process of the RoundCube Webmail package
+ * Class to control the installation process of the Roundcube Webmail package
*
* @category Install
- * @package RoundCube
+ * @package Roundcube
* @author Thomas Bruederli
*/
class rcube_install
@@ -327,7 +327,7 @@ class rcube_install
/**
* Compare the local database schema with the reference schema
- * required for this version of RoundCube
+ * required for this version of Roundcube
*
* @param boolean True if the schema schould be updated
* @return boolean True if the schema is up-to-date, false if not or an error occured
@@ -366,7 +366,7 @@ class rcube_install
/**
* Compare the local database schema with the reference schema
- * required for this version of RoundCube
+ * required for this version of Roundcube
*
* @param boolean True if the schema schould be updated
* @return boolean True if the schema is up-to-date, false if not or an error occured
@@ -624,7 +624,7 @@ class rcube_install
}
/**
- * Handler for RoundCube errors
+ * Handler for Roundcube errors
*/
function raise_error($p)
{
diff --git a/installer/test.php b/installer/test.php
index d1b59794e..45de5e842 100644
--- a/installer/test.php
+++ b/installer/test.php
@@ -88,7 +88,7 @@ if ($RCI->configured && ($messages = $RCI->check_config())) {
?>
<h3>Check if directories are writable</h3>
-<p>RoundCube may need to write/save files into these directories</p>
+<p>Roundcube may need to write/save files into these directories</p>
<?php
if ($RCI->configured) {
@@ -255,10 +255,10 @@ if (isset($_POST['sendmail'])) {
$headers = array(
'From' => trim($_POST['_from']),
'To' => trim($_POST['_to']),
- 'Subject' => 'Test message from RoundCube',
+ 'Subject' => 'Test message from Roundcube',
);
- $body = 'This is a test to confirm that RoundCube can send email.';
+ $body = 'This is a test to confirm that Roundcube can send email.';
$smtp_response = array();
// send mail using configured SMTP server
diff --git a/installer/utils.php b/installer/utils.php
index a18dc61aa..4294f7989 100644
--- a/installer/utils.php
+++ b/installer/utils.php
@@ -1,10 +1,10 @@
<?php
/*
+-------------------------------------------------------------------------+
- | RoundCube Webmail IMAP Client |
+ | Roundcube Webmail IMAP Client |
| Version 0.3-20090702 |
| |
- | Copyright (C) 2005-2009, RoundCube Dev. - Switzerland |
+ | Copyright (C) 2005-2009, Roundcube Dev. - Switzerland |
| |
| This program is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License version 2 |
diff --git a/installer/welcome.html b/installer/welcome.html
index 0c6805a11..a992c5ee9 100644
--- a/installer/welcome.html
+++ b/installer/welcome.html
@@ -1,8 +1,8 @@
<form action="index.php" methond="get">
<input type="hidden" name="_step" value="1" />
-<p>Welcome to the interactive install script for the RoundCube Webmail package</p>
-<p>First let's check your local environment and find out if everything RoundCube needs is available.</p>
+<p>Welcome to the interactive install script for the Roundcube Webmail package</p>
+<p>First let's check your local environment and find out if everything Roundcube needs is available.</p>
<p>The basic requirements are:</p>
<ul>