| 1 | <?php
|
|---|
| 2 | /* ****************************************************************************************************
|
|---|
| 3 | * MAIN LANGUAGE
|
|---|
| 4 | *
|
|---|
| 5 | * PHP version 5
|
|---|
| 6 | *
|
|---|
| 7 | * LICENSE: Hotaru CMS is free software: you can redistribute it and/or
|
|---|
| 8 | * modify it under the terms of the GNU General Public License as
|
|---|
| 9 | * published by the Free Software Foundation, either version 3 of
|
|---|
| 10 | * the License, or (at your option) any later version.
|
|---|
| 11 | *
|
|---|
| 12 | * Hotaru CMS is distributed in the hope that it will be useful, but WITHOUT
|
|---|
| 13 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|---|
| 14 | * FITNESS FOR A PARTICULAR PURPOSE.
|
|---|
| 15 | *
|
|---|
| 16 | * You should have received a copy of the GNU General Public License along
|
|---|
| 17 | * with Hotaru CMS. If not, see http://www.gnu.org/licenses/.
|
|---|
| 18 | *
|
|---|
| 19 | * @category Content Management System
|
|---|
| 20 | * @package HotaruCMS
|
|---|
| 21 | * @author Nick Ramsay <admin@hotarucms.org>
|
|---|
| 22 | * @copyright Copyright (c) 2009, Hotaru CMS
|
|---|
| 23 | * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License
|
|---|
| 24 | * @link http://www.hotarucms.org/
|
|---|
| 25 | */
|
|---|
| 26 |
|
|---|
| 27 | /* Forms */
|
|---|
| 28 | $lang['main_form_submit'] = "Submit";
|
|---|
| 29 | $lang['main_form_update'] = "Update";
|
|---|
| 30 | $lang['main_form_save'] = "Save";
|
|---|
| 31 | $lang['main_form_confirm'] = "Confirm";
|
|---|
| 32 | $lang['main_form_ok'] = "OK";
|
|---|
| 33 | $lang['main_form_next'] = "Next";
|
|---|
| 34 | $lang['main_form_edit'] = "Edit";
|
|---|
| 35 |
|
|---|
| 36 | /* Denied Access */
|
|---|
| 37 | $lang['main_access_denied'] = "Sorry, you don't have permission to view this page.";
|
|---|
| 38 |
|
|---|
| 39 | /* Settings */
|
|---|
| 40 | $lang["main_settings_saved"] = "Settings Saved.";
|
|---|
| 41 | $lang["main_settings_not_saved"] = "Error! Settings not saved";
|
|---|
| 42 |
|
|---|
| 43 | /* Users */
|
|---|
| 44 | $lang['main_userbase_cookie_error'] = "Error setting cookie. Username not provided.";
|
|---|
| 45 |
|
|---|
| 46 | /* Debug / Maintenance */
|
|---|
| 47 | $lang['main_hotaru_db_queries'] = "Database queries: ";
|
|---|
| 48 | $lang['main_hotaru_page_load_time'] = "Page load time: ";
|
|---|
| 49 | $lang['main_hotaru_memory_usage'] = "Memory usage: ";
|
|---|
| 50 | $lang['main_hotaru_php_version'] = "PHP v.";
|
|---|
| 51 | $lang['main_hotaru_mysql_version'] = "MySQL v.";
|
|---|
| 52 | $lang['main_hotaru_hotaru_version'] = "Hotaru CMS v.";
|
|---|
| 53 | $lang['main_hotaru_site_closed'] = SITE_NAME . " is undergoing maintenance.<br />Please come back later.";
|
|---|
| 54 |
|
|---|
| 55 | /* Announcements */
|
|---|
| 56 | $lang['main_announcement_users_disabled'] = "Login and registration is currently disabled.";
|
|---|
| 57 | $lang['main_announcement_plugins_disabled'] = "All plugins are currently disabled.";
|
|---|
| 58 | $lang['main_announcement_site_closed'] = SITE_NAME . " is currently closed!";
|
|---|
| 59 |
|
|---|
| 60 | /* Times */
|
|---|
| 61 | $lang['main_times_days'] = "days";
|
|---|
| 62 | $lang['main_times_day'] = "day";
|
|---|
| 63 | $lang['main_times_hours'] = "hrs";
|
|---|
| 64 | $lang['main_times_hour'] = "hr";
|
|---|
| 65 | $lang['main_times_minutes'] = "mins";
|
|---|
| 66 | $lang['main_times_minute'] = "min";
|
|---|
| 67 | $lang['main_times_seconds'] = "a few seconds";
|
|---|
| 68 | $lang['main_times_secs'] = "s";
|
|---|
| 69 |
|
|---|
| 70 | /* Pagination */
|
|---|
| 71 | $lang['pagination_first'] = "First";
|
|---|
| 72 | $lang['pagination_last'] = "Last";
|
|---|
| 73 | $lang['pagination_previous'] = "Previous";
|
|---|
| 74 | $lang['pagination_next'] = "Next";
|
|---|
| 75 |
|
|---|
| 76 | /* Errors */
|
|---|
| 77 | $lang["main_theme_page_not_found"] = "Page not found";
|
|---|
| 78 | $lang['error_csrf'] = "CSRF error. Please refresh the page and try again.";
|
|---|
| 79 |
|
|---|
| 80 | /* header */
|
|---|
| 81 | $lang["header_meta_description"] = "Hotaru CMS is an open source content management system, written in PHP.";
|
|---|
| 82 | $lang["header_meta_keywords"] = "hotaru, cms, platform, content, open source";
|
|---|
| 83 |
|
|---|
| 84 | /* navigation */
|
|---|
| 85 | $lang["main_theme_navigation_home"] = "Home";
|
|---|
| 86 | $lang["main_theme_navigation_admin"] = "Admin";
|
|---|
| 87 | $lang["main_theme_navigation_login"] = "Login";
|
|---|
| 88 | $lang["main_theme_navigation_logout"] = "Logout";
|
|---|
| 89 |
|
|---|
| 90 | /* breadcrumbs */
|
|---|
| 91 | $lang['main_theme_breadcrumbs_home'] = "Home";
|
|---|
| 92 |
|
|---|
| 93 | /* footer */
|
|---|
| 94 | $lang["main_theme_footer_hotaru_link"] = "HotaruCMS.org";
|
|---|
| 95 |
|
|---|
| 96 | /* Forgotten Password */
|
|---|
| 97 | $lang['main_user_email_password_conf_sent'] = "An email has been sent to the address provided";
|
|---|
| 98 | $lang['main_user_email_password_conf_subject'] = SITE_NAME . " Password Reset Request";
|
|---|
| 99 | $lang['main_user_email_new_password_subject'] = "Your New Password for " . SITE_NAME;
|
|---|
| 100 | $lang['main_user_email_password_conf_body_hello'] = "Hi";
|
|---|
| 101 | $lang['main_user_email_password_conf_body_welcome'] = "If you have requested a new password at " . SITE_NAME . ", ";
|
|---|
| 102 | $lang['main_user_email_password_conf_body_click'] = "click this url or copy it into your browser:";
|
|---|
| 103 | $lang['main_user_email_password_conf_body_no_request'] = "If you have NOT requested a new password, please ignore this email.";
|
|---|
| 104 | $lang['main_user_email_password_conf_body_regards'] = "Regards,";
|
|---|
| 105 | $lang['main_user_email_password_conf_body_sign'] = SITE_NAME . " Admin";
|
|---|
| 106 | $lang['main_user_email_password_conf_success'] = "A new password has been sent to your email address.";
|
|---|
| 107 | $lang['main_user_email_password_conf_fail'] = "Unable to confirm your email address. Please try the link again.";
|
|---|
| 108 | $lang['main_user_email_password_conf_body_requested'] = "Here is the new password you requested at " . SITE_NAME . ": ";
|
|---|
| 109 | $lang['main_user_email_password_conf_body_remember'] = "Please make a note of it and use it next time you log in.";
|
|---|
| 110 | $lang['main_user_email_password_conf_body_pass_change'] = "You can change it to something more memorable from your account page.";
|
|---|
| 111 |
|
|---|
| 112 | /* Account */
|
|---|
| 113 | $lang["main_user_account_update_success"] = "Updated successfully";
|
|---|
| 114 | $lang["main_user_account_update_password_success"] = "Updated password successfully";
|
|---|
| 115 | $lang["main_user_account_update_unexpected_error"] = "Sorry, there has been an unexpected error";
|
|---|
| 116 | $lang["main_user_account_update_password_error_old"] = "Your old password doesn't match our records";
|
|---|
| 117 | $lang["main_user_account_update_password_error_new"] = "The new password must be at least 8 characters and can only contain letters, numbers and these symbols: @ * # - _";
|
|---|
| 118 | $lang["main_user_account_update_password_error_match"] = "The two \"New password\" fields don't match";
|
|---|
| 119 | $lang["main_user_account_update_password_error_not_provided"] = "Please fill in all the password fields with at least 8 characters";
|
|---|
| 120 | $lang["main_user_account_update_username_error"] = "Your username must be at least 4 characters and can contain letters, dashes and underscores only";
|
|---|
| 121 | $lang["main_user_account_update_password_error"] = "The password must be at least 8 characters and can only contain letters, numbers and these symbols: @ * # - _";
|
|---|
| 122 | $lang['main_user_account_update_password_match_error'] = "The password fields don't match";
|
|---|
| 123 | $lang["main_user_account_update_email_error"] = "That doesn't parse as a valid email address";
|
|---|
| 124 | $lang["main_user_account_update_username_exists"] = "Sorry, that username is already being used";
|
|---|
| 125 | $lang["main_user_account_update_email_exists"] = "Sorry, that email address is already being used";
|
|---|
| 126 | $lang["main_user_theme_account"] = "Account";
|
|---|
| 127 | $lang["main_user_theme_account_instructions"] = "Update your account information:";
|
|---|
| 128 | $lang["main_user_theme_update_username"] = "Username:";
|
|---|
| 129 | $lang["main_user_theme_update_email"] = "Email:";
|
|---|
| 130 | $lang["main_user_theme_update_password_instruct"] = "Change your password?";
|
|---|
| 131 | $lang["main_user_theme_update_old_password"] = "Old password:";
|
|---|
| 132 | $lang["main_user_theme_update_new_password"] = "New password:";
|
|---|
| 133 | $lang["main_user_theme_update_new_password_verify"] = "New password (again):";
|
|---|
| 134 | $lang["main_user_theme_update_form_submit"] = "Update";
|
|---|
| 135 |
|
|---|
| 136 | ?> |
|---|