From e0f5f277363a692c75d75709da98ecbf327ee680 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Fri, 13 Oct 2006 17:25:07 +0000 Subject: [PATCH] Some more strings added to the installer to make it more resposible. Merged from MOODLE_17_STABLE --- lang/en_utf8/install.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/lang/en_utf8/install.php b/lang/en_utf8/install.php index 1f41c18560..28b67c7102 100644 --- a/lang/en_utf8/install.php +++ b/lang/en_utf8/install.php @@ -86,24 +86,26 @@ $string['databasesettingssub_mssql'] = 'Type: SQL*Server
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!
+$string['databasesettingssub_odbc_mssql'] = 'Type: SQL*Server (over ODBC) Experimental! (not for use in production)
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
+ Host: not used, must 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)'; + 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['dbwronghostserver'] = 'You must follow \"Host\" rules as explained above.'; +$string['dbwrongnlslang'] = 'The NLS_LANG environment variable in your web server must use the AL32UTF8 charset. See PHP documentation about how to configure OCI8 properly.'; +$string['dbwrongprefix'] = 'You must follow \"Tables Prefix\" rules as explained above.'; $string['dbhost'] = 'Host Server'; $string['dbpass'] = 'Password'; $string['dbprefix'] = 'Tables prefix'; @@ -223,10 +225,14 @@ $string['memorylimithelp'] = '

The PHP memory limit for your server is current (you will see errors when you look at pages) so you\'ll have to remove the .htaccess file.

'; $string['mssql'] = 'SQL*Server (mssql)'; +$string['mssqlextensionisnotpresentinphp'] = 'PHP has not been properly configured with the MSSQL extension so that it can communicate with SQL*Server. Please check your php.ini file or recompile PHP.'; $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['ociextensionisnotpresentinphp'] = 'PHP has not been properly configured with the OCI8 extension so that it can communicate with Oracle. Please check your php.ini file or recompile PHP.'; +$string['odbcextensionisnotpresentinphp'] = 'PHP has not been properly configured with the ODBC extension so that it can communicate with SQL*Server. Please check your php.ini file or recompile PHP.'; $string['odbc_mssql'] = 'SQL*Server over ODBC (odbc_mssql)'; +$string['pgsqlextensionisnotpresentinphp'] = 'PHP has not been properly configured with the PGSQL extension so that it can communicate with PostgreSQL. Please check your php.ini file or recompile PHP.'; $string['postgres7'] = 'PostgreSQL (postgres7)'; $string['pass'] = 'Pass'; $string['phpversion'] = 'PHP version'; -- 2.39.5