diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-01 12:13:24 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-01 12:13:24 +0000 |
commit | 6e0c8998901bcae422a41d630c8cb95441239f7b (patch) | |
tree | a46e9124d2c9ffad20a7d6d803c4406701b29c2a /languages/en.php | |
parent | da9858182b8ae223428dd802f3eeb7624dcd3645 (diff) | |
download | elgg-6e0c8998901bcae422a41d630c8cb95441239f7b.tar.gz elgg-6e0c8998901bcae422a41d630c8cb95441239f7b.tar.bz2 |
Refs #2129 - integrates new installer code from http://github.com/cash/Elgg - does not work yet with non-Apache web servers
git-svn-id: http://code.elgg.org/elgg/trunk@6991 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'languages/en.php')
-rw-r--r-- | languages/en.php | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/languages/en.php b/languages/en.php index 95ec4ba38..d92aff61e 100644 --- a/languages/en.php +++ b/languages/en.php @@ -935,6 +935,107 @@ You cannot reply to this email.", 'actiongatekeeper:pluginprevents' => 'A extension has prevented this form from being submitted.', /** + * Installation + * @todo - move to separate language file for install + */ + 'install:welcome' => 'Welcome', + 'install:requirements' => 'Requirements check', + 'install:database' => 'Database installation', + 'install:settings' => 'Configure site', + 'install:admin' => 'Create admin account', + 'install:complete' => 'Finished', + + 'install:welcome:instructions' => "Installing Elgg has 6 simple steps and reading this welcome is the first one! + +If you haven't already, read through the installation instructions included with Elgg (or click the instructions link at the bottom of the page). + +If you are ready to proceed, click the Next button.", + 'install:requirements:instructions:success' => "Your server passed the requirement checks.", + 'install:requirements:instructions:failure' => "Your server failed the requirements check. After you have fixed the below issues, refresh this page.", + 'install:requirements:instructions:warning' => "Your server passed the requirements check, but there is at least one warning. We recommend that you check the install troubleshooting page for more details.", + + 'install:require:php' => 'PHP', + 'install:require:htaccess' => 'Web server', + 'install:require:engine' => 'Settings file', + 'install:require:database' => 'Database', + + 'install:check:root' => 'Your web server does not have permission to create an .htaccess file in the root directory of Elgg. You have two choices: + + 1. Change the permissions on the root directory + + 2. Copy the file htaccess_dist to .htaccess', + + 'install:check:php:version' => 'Elgg requires PHP %s or above. This server is using version %s.', + 'install:check:php:extension' => 'Elgg requires the PHP extension %s.', + 'install:check:php:extension:recommend' => 'It is recommended that the PHP extension %s is installed.', + 'install:check:php:open_basedir' => 'The open_basedir PHP directive may prevent Elgg from saving files to its data directory.', + 'install:check:php:safe_mode' => 'Running PHP in safe mode is not recommened and may cause problems with Elgg.', + + 'install:check:htaccess_exists' => 'There is an .htaccess file in the root directory of Elgg. Please remove it.', + 'install:check:htaccess_fail' => 'Unable to create an .htaccess file in the root directory of Elgg. You will need to copy htaccess_dist to .htaccess', + 'install:check:rewrite:success' => 'The test of the rewrite rules was successful.', + + 'install:check:enginedir' => 'Your web server does not have permission to create the settings.php file in the engine directory. You have two choices: + + 1. Change the permissions on the engine directory + + 2. Copy the file settings.example.php to settings.php and follow the instructions in it for setting your database parameters.', + + 'install:check:php:success' => "Your server's PHP satisfies all of Elgg's requirements.", + 'install:check:database' => 'The database requirements are checked when Elgg loads its database.', + + 'install:database:instructions' => "If you haven't already created a database for Elgg, do that now. Then fill in the values below to initialize the Elgg database.", + + 'installation:database:label:dbuser' => 'Database Username', + 'installation:database:label:dbpassword' => 'Database Password', + 'installation:database:label:dbname' => 'Database Name', + 'installation:database:label:dbhost' => 'Database Host', + 'installation:database:label:dbprefix' => 'Database Table Prefix', + + 'installation:database:help:dbuser' => 'User that has full priviledges to the MySQL database that you created for Elgg', + 'installation:database:help:dbpassword' => 'Password for the above database user account', + 'installation:database:help:dbname' => 'Name of the Elgg database', + 'installation:database:help:dbhost' => 'Hostname of the MySQL server (usually localhost)', + 'installation:database:help:dbprefix' => "The prefix given to all of Elgg's tables (usually elgg_)", + + 'install:dbuser' => '', + + 'install:settings:instructions' => "We need some information about the site as we configure Elgg. If you haven't created a data directory for Elgg, please do so before completing this step.", + + 'installation:settings:label:sitename' => 'Site Name', + 'installation:settings:label:siteemail' => 'Site Email Address', + 'installation:settings:label:wwwroot' => 'Site URL', + 'installation:settings:label:path' => 'Elgg Install Directory', + 'installation:settings:label:dataroot' => 'Data Directory', + 'installation:settings:label:language' => 'Site Language', + 'installation:settings:label:siteaccess' => 'Default Site Access', + + 'installation:settings:help:sitename' => 'The name of your new Elgg site', + 'installation:settings:help:siteemail' => 'Email address used by Elgg for communication with users', + 'installation:settings:help:wwwroot' => 'The address of the site (Elgg usually guesses this correctly)', + 'installation:settings:help:path' => 'The directory where you put the Elgg code (Elgg usually guesses this correctly)', + 'installation:settings:help:dataroot' => 'The directory that you created for Elgg to save files (the permissions on this directory are checked when you click Next)', + 'installation:settings:help:language' => 'The default language for the site', + 'installation:settings:help:siteaccess' => 'The default access level for new user created content', + + 'install:admin:instructions' => "It is now time to create an administrator's account.", + + 'installation:admin:label:displayname' => 'Display Name', + 'installation:admin:label:email' => 'Email Address', + 'installation:admin:label:username' => 'Username', + 'installation:admin:label:password1' => 'Password', + 'installation:admin:label:password2' => 'Password Again', + + 'installation:admin:help:displayname' => 'The name that is displayed on the site for this account', + 'installation:admin:help:email' => '', + 'installation:admin:help:username' => 'Account username used for logging in', + 'installation:admin:help:password1' => 'Account password must be at least x characters long', + 'installation:admin:help:password2' => 'Retype password to confirm', + + 'install:complete:instructions' => 'Your Elgg site is now ready to be used. Click the button below to be taken to your site.', + + +/** * Word blacklists */ 'word:blacklist' => 'and, the, then, but, she, his, her, him, one, not, also, about, now, hence, however, still, likewise, otherwise, therefore, conversely, rather, consequently, furthermore, nevertheless, instead, meanwhile, accordingly, this, seems, what, whom, whose, whoever, whomever', |