Name old language folders correctly
This commit is contained in:
20
application/language/en_EN/auth_lang.php
Normal file
20
application/language/en_EN/auth_lang.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
$lang['account_creation_successful'] = "Account successfully created";
|
||||
$lang['account_creation_unsuccessful'] = "Unable to create account";
|
||||
$lang['account_creation_duplicate_email'] = "Email already used or invalid";
|
||||
$lang['account_creation_duplicate_username'] = "username already used or invalid";
|
||||
$lang['password_change_successful'] = "Password successfully changed";
|
||||
$lang['password_change_unsuccessful'] = "Unable to change password";
|
||||
$lang['forgot_password_successful'] = "Password reset email sent";
|
||||
$lang['forgot_password_unsuccessful'] = "Unable to reset password";
|
||||
$lang['login_successful'] = "Logged in successfully";
|
||||
$lang['login_unsuccessful'] = "Incorrect username or password";
|
||||
$lang['logout_successful'] = "Logged out successfully";
|
||||
$lang['update_successful'] = "Account information successfully updated";
|
||||
$lang['update_unsuccessful'] = "Unable to update account information";
|
||||
$lang['delete_successful'] = "User deleted";
|
||||
$lang['delete_unsuccessful'] = "Unable to delete user";
|
||||
|
||||
/* End of file auth_lang.php */
|
||||
/* Location: ./application/language/english/auth_lang.php */
|
||||
21
application/language/en_EN/datamapper_lang.php
Normal file
21
application/language/en_EN/datamapper_lang.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
$lang['alpha_dash_dot'] = 'The %s field may only contain alpha-numeric characters, underscores, dashes, and full stops.';
|
||||
$lang['alpha_slash_dot'] = 'The %s field may only contain alpha-numeric characters, underscores, dashes, slashes, and full stops.';
|
||||
$lang['min_date'] = 'The %s field must be at least %s.';
|
||||
$lang['max_date'] = 'The %s field can not exceed %s.';
|
||||
$lang['min_size'] = 'The %s field must be at least %s.';
|
||||
$lang['max_size'] = 'The %s field can not exceed %s.';
|
||||
$lang['transaction'] = 'The %s failed to %s.';
|
||||
$lang['unique'] = 'The %s you supplied is already taken.';
|
||||
$lang['unique_pair'] = 'The combination of %s and %s you supplied is already taken.';
|
||||
$lang['valid_date'] = 'The %s field must contain a valid date.';
|
||||
$lang['valid_date_group'] = 'The %2$s fields must contain a valid date.';
|
||||
$lang['valid_match'] = 'The %s field may only be %s.';
|
||||
|
||||
$lang['related_required'] = 'The %s relationship is required.';
|
||||
$lang['related_min_size'] = 'The %s relationship must be at least %s.';
|
||||
$lang['related_max_size'] = 'The %s relationship can not exceed %s.';
|
||||
|
||||
/* End of file datamapper_lang.php */
|
||||
/* Location: ./application/language/english/datamapper_lang.php */
|
||||
28
application/language/en_EN/form_validation_lang.php
Normal file
28
application/language/en_EN/form_validation_lang.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
$lang['unique'] = "A project with this name already exists.";
|
||||
$lang['required'] = "The %s field is required.";
|
||||
$lang['isset'] = "The %s field must have a value.";
|
||||
$lang['valid_email'] = "The %s field must contain a valid email address.";
|
||||
$lang['valid_emails'] = "The %s field must contain all valid email addresses.";
|
||||
$lang['valid_url'] = "The %s field must contain a valid URL.";
|
||||
$lang['valid_ip'] = "The %s field must contain a valid IP.";
|
||||
$lang['min_length'] = "The %s field must be at least %s characters in length.";
|
||||
$lang['max_length'] = "The %s field can not exceed %s characters in length.";
|
||||
$lang['exact_length'] = "The %s field must be exactly %s characters in length.";
|
||||
$lang['alpha'] = "The %s field may only contain alphabetical characters.";
|
||||
$lang['alpha_numeric'] = "The %s field may only contain alpha-numeric characters.";
|
||||
$lang['alpha_dash'] = "The %s field may only contain alpha-numeric characters, underscores, and dashes.";
|
||||
$lang['numeric'] = "The %s field must contain only numbers.";
|
||||
$lang['is_numeric'] = "The %s field must contain only numeric characters.";
|
||||
$lang['integer'] = "The %s field must contain an integer.";
|
||||
$lang['regex_match'] = "The %s field is not in the correct format.";
|
||||
$lang['matches'] = "The %s field does not match the %s field.";
|
||||
$lang['is_natural'] = "The %s field must contain only positive numbers.";
|
||||
$lang['is_natural_no_zero'] = "The %s field must contain a number greater than zero.";
|
||||
$lang['decimal'] = "The %s field must contain a decimal number.";
|
||||
$lang['less_than'] = "The %s field must contain a number less than %s.";
|
||||
$lang['greater_than'] = "The %s field must contain a number greater than %s.";
|
||||
|
||||
/* End of file projects_lang.php */
|
||||
/* Location: ./application/language/english/form_validation_lang.php */
|
||||
10
application/language/en_EN/index.html
Executable file
10
application/language/en_EN/index.html
Executable file
@@ -0,0 +1,10 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
8
application/language/en_EN/jobs_lang.php
Normal file
8
application/language/en_EN/jobs_lang.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
$lang['done'] = "Complete";
|
||||
$lang['waiting'] = "Waiting for start...";
|
||||
$lang['failed'] = "Failed";
|
||||
|
||||
/* End of file projects_lang.php */
|
||||
/* Location: ./application/language/english/jobs_lang.php */
|
||||
11
application/language/en_EN/projects_lang.php
Normal file
11
application/language/en_EN/projects_lang.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
$lang['project_own'] = "Own project";
|
||||
$lang['projects_own'] = "Own projects";
|
||||
$lang['project_shared'] = "Shared project";
|
||||
$lang['projects_shared'] = "Shared projects";
|
||||
$lang['project_public'] = "Public project";
|
||||
$lang['projects_public'] = "Public projects";
|
||||
|
||||
/* End of file projects_lang.php */
|
||||
/* Location: ./application/language/german/projects_lang.php */
|
||||
12
application/language/en_EN/settings_lang.php
Normal file
12
application/language/en_EN/settings_lang.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
$lang['settings'] = "Settings";
|
||||
$lang['tab_personal'] = "Personal Information";
|
||||
$lang['tab_settings'] = "Settings";
|
||||
|
||||
$lang['projects_sortrecently'] = "Sort projects by date of the last access";
|
||||
$lang['projects_sortrecently_note'] = "If the projects are sorted by the data of the last access, the rarely used projects "slip" to the end of the list.";
|
||||
$lang['language_select'] = "Language";
|
||||
|
||||
/* End of file settings_lang.php */
|
||||
/* Location: ./application/language/german/settings_lang.php */
|
||||
Reference in New Issue
Block a user