diff --git a/common/lang/en.lang.php b/common/lang/en.lang.php
index e26e94966..44e27f0a9 100644
--- a/common/lang/en.lang.php
+++ b/common/lang/en.lang.php
@@ -84,7 +84,7 @@
$lang->author = 'Developer';
$lang->password = 'Password';
$lang->password1 = 'Password';
- $lang->password2 = 'Confirm Password';
+ $lang->password2 = 'Retype Password';
$lang->admin_id = 'Admin ID';
$lang->writer = 'Author';
$lang->user_name = 'User Name';
diff --git a/modules/install/lang/en.lang.php b/modules/install/lang/en.lang.php
index a4ae45bba..ef277da38 100644
--- a/modules/install/lang/en.lang.php
+++ b/modules/install/lang/en.lang.php
@@ -503,18 +503,18 @@ EndOfLicense;
$lang->cmd_ignore = 'Ignore';
$lang->db_desc = array(
- 'mysql' => 'Using mysql*() function to use mysql DB.
Transaction is disabled because DB file is created by myisam.',
- 'mysqli' => 'Using mysqli*() function to use mysql DB.',
- 'mysql_innodb' => 'Using innodb to use mysql DB.
Transaction is enabled for innodb',
- 'sqlite2' => 'Supporting sqlite2 which saves the data into the file.
When installing, DB file should be created at unreachable place from web.
(Never got tested on stabilization)',
- 'sqlite3_pdo' => 'Suppots sqlite3 by PHP\'s PDO.
When installing, DB file should be created at unreachable place from web.',
- 'cubrid' => 'Use CUBRID DB. manual',
- 'mssql' => 'Use MSSQL DB',
- 'postgresql' => 'Use PostgreSql DB.',
- 'firebird' => 'Use firebird DB.',
+ 'mysql' => 'Use MySQL as database with mysql*() functions in php.
Transactions will not be processed since DB file is created in myisam.',
+ 'mysqli' => 'Use MySQL as database with mysqli*() functions in php.
Transactions will not be processed since DB file is created in myisam',
+ 'mysql_innodb' => 'Use MySQL as database with innodb.
Transactions will be processed with innodb',
+ 'sqlite2' => 'Use sqlite2 as database which saves the data as files.
DB file must not be accessible from the web.
(Never been tested for stabilization)',
+ 'sqlite3_pdo' => 'Use sqlite3 as database with supports from PDO of php.
DB file must not be accessible from the web.',
+ 'cubrid' => 'Use CUBRID as database. See manual for more info',
+ 'mssql' => 'Use MSSQL as database',
+ 'postgresql' => 'Use PostgreSql as database.',
+ 'firebird' => 'Use Firebird as database.
You can create database with (create database "/path/dbname.fdb" page_size=8192 default character set UTF-8;)',
);
- $lang->form_title = 'Please input DB & Admin information';
+ $lang->form_title = 'Database & Administrator Information';
$lang->db_title = 'Please input DB information';
$lang->db_type = 'DB Type';
$lang->select_db_type = 'Please select the DB you want to use.';
@@ -523,8 +523,8 @@ EndOfLicense;
$lang->db_userid = 'DB ID';
$lang->db_password = 'DB Password';
$lang->db_database = 'DB Database';
- $lang->db_database_file = 'DB Database file';
- $lang->db_table_prefix = 'Table header';
+ $lang->db_database_file = 'DB Database File';
+ $lang->db_table_prefix = 'Table Header';
$lang->admin_title = 'Administrator Info';