From: stronk7 Date: Fri, 13 Oct 2006 11:34:43 +0000 (+0000) Subject: Added new strings for DB select/configure X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=b676fc871813797f1919e34a905756b0452e3b79;p=moodle.git Added new strings for DB select/configure Merged from MOODLE_17_STABLE --- diff --git a/lang/en_utf8/install.php b/lang/en_utf8/install.php index d7cc4b67c0..1f41c18560 100644 --- a/lang/en_utf8/install.php +++ b/lang/en_utf8/install.php @@ -68,11 +68,42 @@ $string['databasesettingssub'] = 'Type: mysql or postgres7
User: your database username
Password: your database password
Tables Prefix: optional prefix to use for all table names'; +$string['databasesettingssub_mysql'] = 'Type: MySQL
+ Host: eg localhost or db.isp.com
+ Name: database name, eg moodle
+ User: your database username
+ Password: your database password
+ Tables Prefix: prefix to use for all table names (optional)'; +$string['databasesettingssub_postgres7'] = 'Type: PostgreSQL
+ Host: eg localhost or db.isp.com
+ Name: database name, eg moodle
+ User: your database username
+ Password: your database password
+ Tables Prefix: prefix to use for all table names (mandatory)'; +$string['databasesettingssub_mssql'] = 'Type: SQL*Server
+ Host: eg localhost or db.isp.com
+ Name: database name, eg moodle
+ User: your database username
+ Password: your database password
+ Tables Prefix: prefix to use for all table names (mandatory)'; +$string['databasesettingssub_odbc_mssql'] = 'Type: SQL*Server (over ODBC) Experimental!
+ Host: given name of the DSN in the ODBC control panel
+ Name: database name, eg moodle
+ User: your database username
+ Password: your database password
+ Tables Prefix: prefix to use for all table names (mandatory)'; +$string['databasesettingssub_oci8po'] = 'Type: Oracle
+ Host: not used, can be left blank
+ Name: given name of the tnsnames.ora connection
+ User: your database username
+ Password: your database password
+ Tables Prefix: prefix to use for all table names (mandatory, 2cc max)'; $string['dataroot'] = 'Data Directory'; $string['datarooterror'] = 'The \'Data Directory\' you specified could not be found or created. Either correct the path or create that directory manually.'; $string['dbconnectionerror'] = 'We could not connect to the database you specified. Please check your database settings.'; $string['dbcreationerror'] = 'Database creation error. Could not create the given database name with the settings provided'; $string['dbwrongencoding'] = 'The selected database is running under one non-recommended encoding ($a). It would be better to use one Unicode (UTF-8) encoded database instead. Anyway, you can bypass this test by selecting the \"Skip DB Encoding Test\" check below, but you could experience problems in the future.'; +$string['dbwrongprefix'] = 'You must follow prefix rules as explained above.'; $string['dbhost'] = 'Host Server'; $string['dbpass'] = 'Password'; $string['dbprefix'] = 'Tables prefix'; @@ -191,7 +222,12 @@ $string['memorylimithelp'] = '

The PHP memory limit for your server is current

However, on some servers this will prevent all PHP pages from working (you will see errors when you look at pages) so you\'ll have to remove the .htaccess file.

'; +$string['mssql'] = 'SQL*Server (mssql)'; +$string['mysql'] = 'MySQL (mysql)'; $string['mysqlextensionisnotpresentinphp'] = 'PHP has not been properly configured with the MySQL extension so that it can communicate with MySQL. Please check your php.ini file or recompile PHP.'; +$string['oci8po'] = 'Oracle (oci8po)'; +$string['odbc_mssql'] = 'SQL*Server over ODBC (odbc_mssql)'; +$string['postgres7'] = 'PostgreSQL (postgres7)'; $string['pass'] = 'Pass'; $string['phpversion'] = 'PHP version'; $string['phpversionerror'] = 'PHP version must be at least 4.3.0 or 5.1.0 (5.0.x has a number of known problems).';