diff --git a/admin/admin_board.php b/admin/admin_board.php index ebf659ae1..e6c51cca0 100644 --- a/admin/admin_board.php +++ b/admin/admin_board.php @@ -134,7 +134,6 @@ switch ($mode) { 'POSTS_PER_PAGE' => $new['posts_per_page'], 'HOT_TOPIC' => $new['hot_threshold'], 'DEFAULT_DATEFORMAT' => $new['default_dateformat'], - 'LANG_SELECT' => language_select($new['default_lang'], 'default_lang'), 'TIMEZONE_SELECT' => tz_select($new['board_timezone'], 'board_timezone'), 'MAX_LOGIN_ATTEMPTS' => $new['max_login_attempts'], 'LOGIN_RESET_TIME' => $new['login_reset_time'], diff --git a/admin/index.php b/admin/index.php index c683ca03c..40f5b9ca0 100644 --- a/admin/index.php +++ b/admin/index.php @@ -34,7 +34,7 @@ if (isset($_GET['pane']) && $_GET['pane'] == 'left') { ksort($module); foreach ($module as $cat => $action_array) { - $cat = !empty(trans('messages.' . $cat)) ? trans('messages.' . $cat) : preg_replace('/_/', ' ', $cat); + $cat = (trans('messages.' . $cat) !== 'messages.' . $cat) ? trans('messages.' . $cat) : preg_replace('/_/', ' ', $cat); $template->assign_block_vars('catrow', array( 'ADMIN_CATEGORY' => $cat, @@ -46,7 +46,7 @@ if (isset($_GET['pane']) && $_GET['pane'] == 'left') { foreach ($action_array as $action => $file) { $row_class = !($row_count % 2) ? 'row1' : 'row2'; - $action = !empty(trans('messages.' . $action)) ? trans('messages.' . $action) : preg_replace('/_/', ' ', $action); + $action = (trans('messages.' . $action) !== 'messages.' . $action) ? trans('messages.' . $action) : preg_replace('/_/', ' ', $action); $template->assign_block_vars('catrow.modulerow', array( 'ROW_CLASS' => $row_class, diff --git a/bootstrap.php b/bootstrap.php index fadce70a7..5ff9ee857 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -128,9 +128,6 @@ $container->singleton('config', function () { ], ]); - $config->set('app.locale', 'ru'); - $config->set('app.fallback_locale', 'source'); - return $config; }); diff --git a/common.php b/common.php index 281b83ab2..e792d49e4 100644 --- a/common.php +++ b/common.php @@ -107,6 +107,11 @@ if (config('tp.bugsnag.enabled')) { */ $DBS = new TorrentPier\Legacy\Dbs(config('tp')); +/** + * @param string $db_alias + * @return mixed + * @deprecated + */ function OLD_DB($db_alias = 'db') { global $DBS; @@ -118,6 +123,11 @@ function OLD_DB($db_alias = 'db') */ $CACHES = new TorrentPier\Legacy\Caches(config('tp')); +/** + * @param $cache_name + * @return mixed + * @deprecated + */ function OLD_CACHE($cache_name) { global $CACHES; diff --git a/config/app.php b/config/app.php new file mode 100644 index 000000000..7966ff35b --- /dev/null +++ b/config/app.php @@ -0,0 +1,13 @@ + 'ru', + 'fallback_locale' => 'source', +]; diff --git a/config/tp.php b/config/tp.php index c88576345..f53d26f6d 100644 --- a/config/tp.php +++ b/config/tp.php @@ -376,8 +376,6 @@ return [ 'copyright_holders_url' => 'info.php?show=copyright_holders', 'advert_url' => 'info.php?show=advert', - 'default_lang_dir' => LANG_ROOT_DIR . '/en/', - /** * Extensions */ diff --git a/crowdin.yml b/crowdin.yml index 64bf213c5..5323376d9 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,7 +1,7 @@ files: - - source: /library/language/source/*.* - translation: /library/language/%two_letters_code%/%original_file_name% - - source: /library/language/source/email/*.* - translation: /library/language/%two_letters_code%/email/%original_file_name% - - source: /library/language/source/html/*.* - translation: /library/language/%two_letters_code%/html/%original_file_name% + - source: /resources/lang/source/*.* + translation: /resources/lang/%two_letters_code%/%original_file_name% + - source: /resources/lang/source/email/*.* + translation: /resources/lang/%two_letters_code%/email/%original_file_name% + - source: /resources/lang/source/html/*.* + translation: /resources/lang/%two_letters_code%/html/%original_file_name% diff --git a/index.php b/index.php index 65b74bc92..dc9d3ada8 100644 --- a/index.php +++ b/index.php @@ -44,7 +44,7 @@ $req_page = 'index_page'; $req_page .= ($viewcat) ? "_c{$viewcat}" : ''; define('REQUESTED_PAGE', $req_page); -caching_output(IS_GUEST, 'send', REQUESTED_PAGE . '_guest_' . config('tp.default_lang')); +caching_output(IS_GUEST, 'send', REQUESTED_PAGE . '_guest_' . config('app.locale')); $hide_cat_opt = isset($user->opt_js['h_cat']) ? (string)$user->opt_js['h_cat'] : 0; $hide_cat_user = array_flip(explode('-', $hide_cat_opt)); diff --git a/install/sql/mysql.sql b/install/sql/mysql.sql index ff5b7cf00..b2d26381a 100644 --- a/install/sql/mysql.sql +++ b/install/sql/mysql.sql @@ -512,7 +512,6 @@ INSERT INTO `bb_config` VALUES ('bt_tor_browse_only_reg', '0'); INSERT INTO `bb_config` VALUES ('bt_unset_dltype_on_tor_unreg', '1'); INSERT INTO `bb_config` VALUES ('cron_last_check', '0'); INSERT INTO `bb_config` VALUES ('default_dateformat', 'Y-m-d H:i'); -INSERT INTO `bb_config` VALUES ('default_lang', 'ru'); INSERT INTO `bb_config` VALUES ('flood_interval', '15'); INSERT INTO `bb_config` VALUES ('hot_threshold', '300'); INSERT INTO `bb_config` VALUES ('login_reset_time', '30'); diff --git a/install/upgrade/changes.txt b/install/upgrade/changes.txt index c9c8c9465..52c8cecdf 100644 --- a/install/upgrade/changes.txt +++ b/install/upgrade/changes.txt @@ -32,3 +32,6 @@ ALTER TABLE `bb_banlist` CHANGE `ban_ip` `ban_ip` varchar(42) NOT NULL DEFAULT ' // 2.2.2 ALTER TABLE `bb_ranks` DROP `rank_min`; ALTER TABLE `bb_ranks` DROP `rank_special`; + +// 3.0.0 +DELETE FROM `bb_config` WHERE `config_name` = 'default_lang'; diff --git a/library/TorrentPier/TorrentPier/Legacy/Common/User.php b/library/TorrentPier/TorrentPier/Legacy/Common/User.php index 2437579f2..c5341f216 100644 --- a/library/TorrentPier/TorrentPier/Legacy/Common/User.php +++ b/library/TorrentPier/TorrentPier/Legacy/Common/User.php @@ -560,7 +560,7 @@ class User } } - $this->data['user_lang'] = config('tp.default_lang'); + $this->data['user_lang'] = config('app.locale'); $this->data['user_timezone'] = config('tp.board_timezone'); setlocale(LC_ALL, config('language.lang.' . $this->data['user_lang'] . '.locale') ?? 'en_US.UTF-8'); diff --git a/library/TorrentPier/TorrentPier/Legacy/Emailer.php b/library/TorrentPier/TorrentPier/Legacy/Emailer.php index f3b121702..6b8774211 100644 --- a/library/TorrentPier/TorrentPier/Legacy/Emailer.php +++ b/library/TorrentPier/TorrentPier/Legacy/Emailer.php @@ -124,14 +124,14 @@ class Emailer public function set_template($template_file, $template_lang = '') { if (!$template_lang) { - $template_lang = config('tp.default_lang'); + $template_lang = config('app.locale'); } if (empty($this->tpl_msg[$template_lang . $template_file])) { $tpl_file = LANG_ROOT_DIR . '/' . $template_lang . '/email/' . $template_file . '.html'; if (!file_exists($tpl_file)) { - $tpl_file = LANG_ROOT_DIR . '/' . config('tp.default_lang') . '/email/' . $template_file . '.html'; + $tpl_file = LANG_ROOT_DIR . '/' . config('app.fallback_locale') . '/email/' . $template_file . '.html'; /** @noinspection NotOptimalIfConditionsInspection */ if (!file_exists($tpl_file)) { diff --git a/library/ajax/change_tor_status.php b/library/ajax/change_tor_status.php index 6b69b408c..b43438779 100644 --- a/library/ajax/change_tor_status.php +++ b/library/ajax/change_tor_status.php @@ -43,7 +43,7 @@ switch ($mode) { $new_status = (int)$this->request['status']; // Валидность статуса - if (empty(trans('messages.TOR_STATUS_NAME.' . $new_status))) { + if (trans('messages.TOR_STATUS_NAME.' . $new_status) === 'messages.TOR_STATUS_NAME.' . $new_status) { $this->ajax_die(trans('messages.TOR_STATUS_FAILED')); } if (!isset($this->request['status'])) { diff --git a/library/ajax/edit_user_profile.php b/library/ajax/edit_user_profile.php index 4f153325a..32b09fccd 100644 --- a/library/ajax/edit_user_profile.php +++ b/library/ajax/edit_user_profile.php @@ -52,7 +52,7 @@ switch ($field) { if (!config('tp.gender')) { $this->ajax_die(trans('messages.MODULE_OFF')); } - if (empty(trans('messages.GENDER_SELECT.' . $value))) { + if (trans('messages.GENDER_SELECT.' . $value) === 'messages.GENDER_SELECT.' . $value) { $this->ajax_die(trans('messages.ERROR')); } else { $this->response['new_value'] = trans('messages.GENDER_SELECT.' . $value); diff --git a/library/ajax/mod_action.php b/library/ajax/mod_action.php index b958e0701..28705cf8e 100644 --- a/library/ajax/mod_action.php +++ b/library/ajax/mod_action.php @@ -21,7 +21,7 @@ switch ($mode) { $status = (int)$this->request['status']; // Валидность статуса - if (empty(trans('messages.TOR_STATUS_NAME.' . $status))) { + if (trans('messages.TOR_STATUS_NAME.' . $status) === 'messages.TOR_STATUS_NAME.' . $status) { $this->ajax_die(trans('messages.STATUS_DOES_EXIST') . $new_status); } diff --git a/library/attach_mod/attachment_mod.php b/library/attach_mod/attachment_mod.php index 24d6a33c5..6729d2c7a 100644 --- a/library/attach_mod/attachment_mod.php +++ b/library/attach_mod/attachment_mod.php @@ -38,9 +38,6 @@ function get_config() $attach_config[$row['config_name']] = trim($row['config_value']); } - // We assign the original default board language here, because it gets overwritten later with the users default language - $attach_config['board_lang'] = trim(config('tp.default_lang')); - return $attach_config; } diff --git a/library/defines.php b/library/defines.php index 0da6304e8..b98165000 100644 --- a/library/defines.php +++ b/library/defines.php @@ -26,10 +26,9 @@ define('LOG_DIR', BB_PATH . '/internal_data/log'); define('TRIGGERS_DIR', BB_PATH . '/internal_data/triggers'); define('AJAX_DIR', BB_PATH . '/library/ajax'); define('ATTACH_DIR', BB_PATH . '/library/attach_mod'); -define('CFG_DIR', BB_PATH . '/library/config'); define('INC_DIR', BB_PATH . '/library/includes'); define('UCP_DIR', BB_PATH . '/library/includes/ucp'); -define('LANG_ROOT_DIR', BB_PATH . '/library/language'); +define('LANG_ROOT_DIR', BB_PATH . '/resources/lang'); define('SITEMAP_DIR', BB_PATH . '/sitemap'); define('IMAGES_DIR', BB_PATH . '/styles/images'); define('TEMPLATES_DIR', BB_PATH . '/styles/templates'); diff --git a/library/includes/functions.php b/library/includes/functions.php index 0c4c4312d..7e9c95ac3 100644 --- a/library/includes/functions.php +++ b/library/includes/functions.php @@ -1305,7 +1305,7 @@ function bb_die($msg_text) } // Check for lang variable - if (!empty(trans('messages.' . $msg_text))) { + if (trans('messages.' . $msg_text) !== 'messages.' . $msg_text) { $msg_text = trans('messages.' . $msg_text); } diff --git a/library/includes/page_footer.php b/library/includes/page_footer.php index 1eb810e67..23a0c47fa 100644 --- a/library/includes/page_footer.php +++ b/library/includes/page_footer.php @@ -87,7 +87,7 @@ echo ' if (defined('REQUESTED_PAGE') && !defined('DISABLE_CACHING_OUTPUT')) { if (IS_GUEST === true) { - caching_output(true, 'store', REQUESTED_PAGE . '_guest_' . config('tp.default_lang')); + caching_output(true, 'store', REQUESTED_PAGE . '_guest_' . config('app.locale')); } } diff --git a/library/includes/ucp/register.php b/library/includes/ucp/register.php index 8c89d2730..9146b70b7 100644 --- a/library/includes/ucp/register.php +++ b/library/includes/ucp/register.php @@ -87,7 +87,7 @@ switch ($mode) { 'user_password' => '', 'user_email' => '', 'user_timezone' => config('tp.board_timezone'), - 'user_lang' => config('tp.default_lang'), + 'user_lang' => config('app.locale'), 'user_opt' => 0, 'avatar_ext_id' => 0, ); @@ -282,7 +282,7 @@ foreach ($profile_fields as $field => $can_edit) { case 'user_timezone': $user_timezone = isset($_POST['user_timezone']) ? (int)$_POST['user_timezone'] : $pr_data['user_timezone']; if ($submit && ($user_timezone != $pr_data['user_timezone'] || $mode == 'register')) { - if (!empty(trans('messages.TZ.' . $user_timezone))) { + if (trans('messages.TZ.' . $user_timezone) !== 'messages.TZ.' . $user_timezone) { $pr_data['user_timezone'] = $user_timezone; $db_data['user_timezone'] = $user_timezone; } diff --git a/library/language/en/email/group_added.html b/library/language/en/email/group_added.html deleted file mode 100644 index 9016463c8..000000000 --- a/library/language/en/email/group_added.html +++ /dev/null @@ -1,9 +0,0 @@ -Congratulations, - -You have been added to the "{GROUP_NAME}" group on {SITENAME}. -This action was done by the group moderator or the site administrator, contact them for more information. - -You can view your groups information here: -{U_GROUP} - -{EMAIL_SIG} diff --git a/library/language/en/email/group_approved.html b/library/language/en/email/group_approved.html deleted file mode 100644 index 38e4d0e13..000000000 --- a/library/language/en/email/group_approved.html +++ /dev/null @@ -1,8 +0,0 @@ -Congratulations, - -Your request to join the "{GROUP_NAME}" group on {SITENAME} has been approved. -Click on the following link to see your group membership. - -{U_GROUP} - -{EMAIL_SIG} diff --git a/library/language/en/email/group_request.html b/library/language/en/email/group_request.html deleted file mode 100644 index 7f573b08c..000000000 --- a/library/language/en/email/group_request.html +++ /dev/null @@ -1,8 +0,0 @@ -Dear {GROUP_MODERATOR}, - -A user {USER} has requested to join a group you moderator on {SITENAME}. -To approve or deny this request for group membership please visit the following link: - -{U_GROUP} - -{EMAIL_SIG} diff --git a/library/language/en/email/privmsg_notify.html b/library/language/en/email/privmsg_notify.html deleted file mode 100644 index 34f3593be..000000000 --- a/library/language/en/email/privmsg_notify.html +++ /dev/null @@ -1,9 +0,0 @@ -Hello {USERNAME}, - -You have received a new private message to your account on "{SITENAME}" and you have requested that you be notified on this event. You can view your new message by clicking on the following link: - -{U_INBOX} - -Remember that you can always choose not to be notified of new messages by changing the appropriate setting in your profile. - -{EMAIL_SIG} diff --git a/library/language/en/email/topic_notify.html b/library/language/en/email/topic_notify.html deleted file mode 100644 index cb572f0a6..000000000 --- a/library/language/en/email/topic_notify.html +++ /dev/null @@ -1,11 +0,0 @@ -Hello, - -You are receiving this email because you are watching the topic, "{TOPIC_TITLE}" at {SITENAME}. This topic has received a reply since your last visit. You can use the following link to view the replies made, no more notifications will be sent until you visit the topic. - -{U_TOPIC} - -If you no longer wish to watch this topic you can either click the "Stop watching this topic link" found at the bottom of the topic above, or by clicking the following link: - -{U_STOP_WATCHING_TOPIC} - -{EMAIL_SIG} diff --git a/library/language/en/email/user_activate.html b/library/language/en/email/user_activate.html deleted file mode 100644 index d0d2c1ca6..000000000 --- a/library/language/en/email/user_activate.html +++ /dev/null @@ -1,7 +0,0 @@ -Hello {USERNAME}, - -Your account on "{SITENAME}" has been deactivated, most likely due to changes made to your profile. In order to reactivate your account you must click on the link below: - -{U_ACTIVATE} - -{EMAIL_SIG} diff --git a/library/language/en/email/user_activate_passwd.html b/library/language/en/email/user_activate_passwd.html deleted file mode 100644 index dca1ae6dc..000000000 --- a/library/language/en/email/user_activate_passwd.html +++ /dev/null @@ -1,15 +0,0 @@ -Hello {USERNAME} - -You are receiving this email because you have (or someone pretending to be you has) requested a new password be sent for your account on {SITENAME}. If you did not request this email then please ignore it, if you keep receiving it please contact the board administrator. - -To use the new password you need to activate it. To do this click the link provided below. - -{U_ACTIVATE} - -If sucessful you will be able to login using the following password: - -Password: {PASSWORD} - -You can of course change this password yourself via the profile page. If you have any difficulties please contact the board administrator. - -{EMAIL_SIG} diff --git a/library/language/en/email/user_welcome.html b/library/language/en/email/user_welcome.html deleted file mode 100644 index 63704cd14..000000000 --- a/library/language/en/email/user_welcome.html +++ /dev/null @@ -1,14 +0,0 @@ -{WELCOME_MSG} - -Please keep this email for your records. Your account information is as follows: - ----------------------------- -Username: {USERNAME} -Password: {PASSWORD} ----------------------------- - -Please do not forget your password as it has been encrypted in our database and we cannot retrieve it for you. However, should you forget your password you can request a new one which will be activated in the same way as this account. - -Thank you for registering. - -{EMAIL_SIG} diff --git a/library/language/en/email/user_welcome_inactive.html b/library/language/en/email/user_welcome_inactive.html deleted file mode 100644 index c542f1465..000000000 --- a/library/language/en/email/user_welcome_inactive.html +++ /dev/null @@ -1,18 +0,0 @@ -{WELCOME_MSG} - -Please keep this email for your records. Your account information is as follows: - ----------------------------- -Username: {USERNAME} -Password: {PASSWORD} ----------------------------- - -Your account is currently inactive. You cannot use it until you visit the following link: - -{U_ACTIVATE} - -Please do not forget your password as it has been encrypted in our database and we cannot retrieve it for you. However, should you forget your password you can request a new one which will be activated in the same way as this account. - -Thank you for registering. - -{EMAIL_SIG} diff --git a/library/language/source/email/admin_send_email.html b/library/language/source/email/admin_send_email.html deleted file mode 100644 index e0d26794b..000000000 --- a/library/language/source/email/admin_send_email.html +++ /dev/null @@ -1,10 +0,0 @@ -The following is an email sent to you by an administrator of "{SITENAME}". If this message is spam, contains abusive or other comments you find offensive please contact the webmaster of the board at the following address: - -{BOARD_EMAIL} - -Include this full email (particularly the headers). - -Message sent to you follows: -~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -{MESSAGE} diff --git a/library/language/source/email/blank.html b/library/language/source/email/blank.html deleted file mode 100644 index eb059e7db..000000000 --- a/library/language/source/email/blank.html +++ /dev/null @@ -1 +0,0 @@ -{MESSAGE} diff --git a/library/language/source/email/profile_send_email.html b/library/language/source/email/profile_send_email.html deleted file mode 100644 index 231efe133..000000000 --- a/library/language/source/email/profile_send_email.html +++ /dev/null @@ -1,12 +0,0 @@ -Hello {TO_USERNAME}, - -The following is an email sent to you by {FROM_USERNAME} via your account on {SITENAME}. If this message is spam, contains abusive or other comments you find offensive please contact the webmaster of the board at the following address: - -{BOARD_EMAIL} - -Include this full email (particularly the headers). Please note that the reply address to this email has been set to that of {FROM_USERNAME}. - -Message sent to you follows -~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -{MESSAGE} diff --git a/library/language/source/html/advert.html b/library/language/source/html/advert.html deleted file mode 100644 index 64c85175d..000000000 --- a/library/language/source/html/advert.html +++ /dev/null @@ -1,4 +0,0 @@ -
-

Advertising on our site

-

For advertising please contact:

-
diff --git a/library/language/source/html/copyright_holders.html b/library/language/source/html/copyright_holders.html deleted file mode 100644 index 430812d9c..000000000 --- a/library/language/source/html/copyright_holders.html +++ /dev/null @@ -1,35 +0,0 @@ -
- -

INFORMATION FOR COPYRIGHT HOLDERS

- -

If you are the copyright of any material link (or links) which is available on this site, and would not want to spread this information by users without your consent, we will be happy to assist you by removing the appropriate links.

- -

This requires that you have sent us a letter (in electronic form) -which indicated to us the following information:

- -

1. Documentary proof of your rights to material protected by copyright:

-

- scanned document with the seal, or

-

- email from an official e-mail domain of the company owner, or

-

- other contact information that uniquely identifies you as the owner of the material.

- -

2. The text that you want to place, accompanied by a removable information.

- -

In it you can specify where and under what conditions you can get information, references to which have been removed, as well as your contact information, so that users can get from you all the needed information regarding this material.

- -

3. Direct links to pages that contain references to data that must be removed.

- -

Links should be view https://url.to/link or something similar.

- -

After that in 48 hours, we will remove interesting you links from the site.

- -

Our email:

- -

WARNING!

- -

a) We reserve the right to publish on the site of any information sent to us by mail

- -

b) We have no control over the actions of users who may be re-post links to information, which is the object of your copyright. Any information the forum, place automatically, without any control from any quarter whatsoever, which corresponds to the generally accepted international practice of placing information on the Internet. However, in any case, we consider all your queries regarding the reference to the information that violates your rights.

- -

c) According to the Law on Copyright and Related Rights, a reference to any data (information message), by itself, is not subject to copyright law (although it may violate the "Agreement on the use of the website"). Thus, it is not necessary to send letters containing threats or demands, as not having a real reason.

- -
diff --git a/library/language/source/html/not_found.html b/library/language/source/html/not_found.html deleted file mode 100644 index 53bd5aa7a..000000000 --- a/library/language/source/html/not_found.html +++ /dev/null @@ -1,3 +0,0 @@ -
-

File not found

-
diff --git a/library/language/source/html/sidebar1.html b/library/language/source/html/sidebar1.html deleted file mode 100644 index 43553651b..000000000 --- a/library/language/source/html/sidebar1.html +++ /dev/null @@ -1,23 +0,0 @@ -
-

BitTorrent clients

- -
- -
- -
-

FAQ

- -
- -
- - diff --git a/library/language/source/html/sidebar2.html b/library/language/source/html/sidebar2.html deleted file mode 100644 index 3ee223024..000000000 --- a/library/language/source/html/sidebar2.html +++ /dev/null @@ -1,11 +0,0 @@ -
-

Sidebar 2

- To add content into this sidebar, edit the following files: -

- -
- To disable this sidebar, set the variable 'show_sidebar2' in file config/page.php to false. -
diff --git a/library/language/source/html/user_agreement.html b/library/language/source/html/user_agreement.html deleted file mode 100644 index 145a81fd4..000000000 --- a/library/language/source/html/user_agreement.html +++ /dev/null @@ -1,84 +0,0 @@ -
- -

- -

USER AGREEMENT

- -

ABOUT SITE

- -

Internet - resource / website (hereinafter - Resource) is an internet site that allows users to share information with each other via bit-torrent, as well as in free form, and provides a means to monitor the integrity of information transmitted (via hash-files).

- -
    - -
  1. ABOUT USER AGREEMENT

    - -

    This USER AGREEMENT shall enter into force after clicking "I agree" at the bottom and works all the time use of resource users. USER AGREEMENT may be changed by the Administration without any notice. The new version of the UA enters into force after 3 (three) days from the date it is submitted, unless otherwise provided in the new version of the USER AGREEMENT.

    - -
  2. LIMITATIONS OF LIABILITY

    - -

    The user expressly agrees that uses Resource at your own risk.

    - -

    User knows and agrees that deals with Resource materials and data created by third parties and placed them on the Internet on their computers and (or) servers. Content and security of these materials can not be controlled by Resource administration, so the latter is not liable:

    -
      -

      - for the content of the materials obtained by the User from the use of data Resources and their possible inconsistency with applicable laws or offensive;

      -

      - for the consequences of the application, use or non-use of the information received;

      -

      - for a possible discrepancy between the results obtained using the Resource User's expectations;

      -

      - for any damage to hardware or software User resulting from the use of Resource;

      -

      - for inability to resource use for any reason;

      -

      - for the consequences that may result from the spread of illegal or unlicensed software and audio-/video products, and other materials or data affecting the rights of third parties.

      -
    - -

    Under no circumstances Resource not be liable to the User or a third party liability for damages, losses or expenses arising in connection with this Resource, its use or inability to use, including loss or lost profits.

    - -

    Resource Administration is under no obligation to ensure the confidentiality of information provided by its Users, while taking all possible measures to this, if there is no agreement to the contrary or the relevant requirements of current legislation.

    - -

    The duties of Resource NOT INCLUDED control legally or illegally transmitted information (any, including, but not limited to, information transmitted between users via bit-torrent, internal transfer information in a variety of links, text or files), the definition of property rights or legitimacy of the transmission or reception using this information.

    - -
  3. RESOURCE USAGE LIMITS BY USER

    - -

    When you use this Resource, the USER has no right to, and agrees with this:

    -
      -

      - place hash-files (torrents) data that contain viruses or other malicious computer programs known actions, files or programs designed to interrupt, destroy or limit the functionality of any computer or telecommunications equipment or programs for unauthorized access, as well as serial numbers for commercial software products and programs for their generation, logins, passwords and other means to gain unauthorized access to sites on the Internet, as well as post links to the above information;

      -

      - place hash-files (torrents) any messages, data, or programs, the use of which infringes any patent, trademark, trade secret, copyright or other proprietary rights and / or copyrights and related rights of third parties;

      -

      - send e-mail addresses listed on the site, unauthorized mail messages advertising type (junk mail, spam);

      -

      - copy and use for commercial purposes any information obtained through this resource, violates the rights of others or could cause them direct material or moral damage;

      -

      - post links to web resources, whose content contradicts the current legislation of the Russian Federation;

      -

      - impersonate any person or representative of an organization and / or community without sufficient rights, including employees of Administration, for the owner of the Resource.

      -
    - -
  4. PERFORMANCE WARRANTY

    - -

    Access to Resource are provided on an «as is» without warranties of any kind, both direct and indirect.

    - -

    In particular Resource Administration not guarantee functionality as the site and its individual sections, and performance and reliability of links placed on it of its Users.

    - -

    Resource is not responsible for any direct or indirect losses occurred due to: the use or inability to use the service; unauthorized access to your communications.

    - -
  5. RIGHTS OF RESOURCE ADMINISTRATION

    - -

    Resource Administration has the right to deny access to resource any User or Group of users without explanation of his actions and notice.

    - -

    Resource Administration may modify or delete any information, hash-files (torrents), graphics, audio, and other data on the submitted by the User from resource without notice and explanation of their actions.

    - -
  6. RESPONSIBILITIES OF THE PARTIES

    - -

    User agrees that all possible disputes concerning the AGREEMENT ON USE will be settled according to the norms of russian law.

    - -

    User agrees that the rules and laws on consumer protection can not be applied to the use of theim Resource, since it has no paid services.

    - -

    Resource does not set user agent relations, partnership relations on joint activity, relations of recruitment, as well as any other relations not expressly described in the AGREEMENT ON USE.

    - -

    Inaction by the Resource to event of a breach by User or Group of users USER AGREEMENT does not mean that the Resource is to assist Users or Groups of users in such actions.

    - -

    Inaction by the Resource to event of a breach by User or Group of users USER AGREEMENT does not deprive Resource right to take appropriate action to protect its interests later.

    - -
  7. ACCEPTANCE OF USER AGREEMENT

    - -

    IF YOU DO NOT AGREE TO ALL OF THE ABOVE TERMS AND CONDITIONS, YOU MAY NOT GO TO RESOURCE AS A WHOLE OR ANY PART OF, EXCEPT PAGE WITH USER AGREEMENT, RECEIVE AND / OR ACCESS THE CONTENTS OF THIS RESOURCE ANY OTHER METHODS AS A WHOLE OR IN ANY PART!

    - -

    IF YOU DO NOT AGREE WITH THE USER AGREEMENT, YOU MUST IMMEDIATELY LEAVE RESOURCE.

    - -
-

- -
diff --git a/library/language/ru/email/admin_send_email.html b/resources/lang/ru/email/admin_send_email.html similarity index 100% rename from library/language/ru/email/admin_send_email.html rename to resources/lang/ru/email/admin_send_email.html diff --git a/library/language/en/email/blank.html b/resources/lang/ru/email/blank.html similarity index 100% rename from library/language/en/email/blank.html rename to resources/lang/ru/email/blank.html diff --git a/library/language/ru/email/group_added.html b/resources/lang/ru/email/group_added.html similarity index 100% rename from library/language/ru/email/group_added.html rename to resources/lang/ru/email/group_added.html diff --git a/library/language/ru/email/group_approved.html b/resources/lang/ru/email/group_approved.html similarity index 100% rename from library/language/ru/email/group_approved.html rename to resources/lang/ru/email/group_approved.html diff --git a/library/language/ru/email/group_request.html b/resources/lang/ru/email/group_request.html similarity index 100% rename from library/language/ru/email/group_request.html rename to resources/lang/ru/email/group_request.html diff --git a/library/language/ru/email/privmsg_notify.html b/resources/lang/ru/email/privmsg_notify.html similarity index 100% rename from library/language/ru/email/privmsg_notify.html rename to resources/lang/ru/email/privmsg_notify.html diff --git a/library/language/ru/email/profile_send_email.html b/resources/lang/ru/email/profile_send_email.html similarity index 100% rename from library/language/ru/email/profile_send_email.html rename to resources/lang/ru/email/profile_send_email.html diff --git a/library/language/ru/email/topic_notify.html b/resources/lang/ru/email/topic_notify.html similarity index 100% rename from library/language/ru/email/topic_notify.html rename to resources/lang/ru/email/topic_notify.html diff --git a/library/language/ru/email/user_activate.html b/resources/lang/ru/email/user_activate.html similarity index 100% rename from library/language/ru/email/user_activate.html rename to resources/lang/ru/email/user_activate.html diff --git a/library/language/ru/email/user_activate_passwd.html b/resources/lang/ru/email/user_activate_passwd.html similarity index 100% rename from library/language/ru/email/user_activate_passwd.html rename to resources/lang/ru/email/user_activate_passwd.html diff --git a/library/language/ru/email/user_welcome.html b/resources/lang/ru/email/user_welcome.html similarity index 100% rename from library/language/ru/email/user_welcome.html rename to resources/lang/ru/email/user_welcome.html diff --git a/library/language/ru/email/user_welcome_inactive.html b/resources/lang/ru/email/user_welcome_inactive.html similarity index 100% rename from library/language/ru/email/user_welcome_inactive.html rename to resources/lang/ru/email/user_welcome_inactive.html diff --git a/library/language/ru/html/advert.html b/resources/lang/ru/html/advert.html similarity index 100% rename from library/language/ru/html/advert.html rename to resources/lang/ru/html/advert.html diff --git a/library/language/ru/html/copyright_holders.html b/resources/lang/ru/html/copyright_holders.html similarity index 100% rename from library/language/ru/html/copyright_holders.html rename to resources/lang/ru/html/copyright_holders.html diff --git a/library/language/ru/html/not_found.html b/resources/lang/ru/html/not_found.html similarity index 100% rename from library/language/ru/html/not_found.html rename to resources/lang/ru/html/not_found.html diff --git a/library/language/ru/html/sidebar1.html b/resources/lang/ru/html/sidebar1.html similarity index 100% rename from library/language/ru/html/sidebar1.html rename to resources/lang/ru/html/sidebar1.html diff --git a/library/language/ru/html/sidebar2.html b/resources/lang/ru/html/sidebar2.html similarity index 90% rename from library/language/ru/html/sidebar2.html rename to resources/lang/ru/html/sidebar2.html index b96f5870f..fb48e46b6 100644 --- a/library/language/ru/html/sidebar2.html +++ b/resources/lang/ru/html/sidebar2.html @@ -3,7 +3,7 @@ Чтобы добавить содержимое в эту боковую панель, отредактируйте следующие файлы:


diff --git a/library/language/ru/html/user_agreement.html b/resources/lang/ru/html/user_agreement.html similarity index 100% rename from library/language/ru/html/user_agreement.html rename to resources/lang/ru/html/user_agreement.html diff --git a/resources/lang/ru/messages.php b/resources/lang/ru/messages.php index 4d19c477a..8153f8fc5 100644 --- a/resources/lang/ru/messages.php +++ b/resources/lang/ru/messages.php @@ -8,7 +8,7 @@ */ return [ - '1_day' => 'за последний день', + '1_DAY' => 'за последний день', '1_MONTH' => 'за последний месяц', '1_YEAR' => 'за последний год', '2_WEEKS' => 'за последние 2 недели', @@ -37,7 +37,7 @@ return [ 'ACTS_LOG_FORUM' => 'Форум', 'ACTS_LOG_INFO' => 'Инфо', 'ACTS_LOG_LOGS_ACTION' => 'Действие', - 'ACTS_LOG_LOGS_FROM' => 'Логи с ', + 'ACTS_LOG_LOGS_FROM' => 'Логи с', 'ACTS_LOG_OR' => 'или', 'ACTS_LOG_SEARCH_OPTIONS' => 'Настройки отчета по действиям', 'ACTS_LOG_SORT_BY' => 'Сортировать по', @@ -83,7 +83,7 @@ return [ 'ADVANCED_MODE' => 'Продвинутый режим', 'ADVERT' => 'Реклама на сайте', 'AFTER' => 'После', - 'AFTER_THE_LAPSE' => 'по прошествии ', + 'AFTER_THE_LAPSE' => 'по прошествии', 'AFTER_THE_LAST' => 'ранее чем за последние', 'AGE' => 'Возраст', 'AJAX_EDIT_OPEN' => 'У вас уже открыто одно быстрое редактирование!', @@ -247,7 +247,7 @@ return [ 'BIRTHDAY_MIN_AGE' => 'Минимальный возраст', 'BIRTHDAY_TO_HIGH' => 'Извините, сайт запрещено посещать пользователям старше %d лет', 'BIRTHDAY_TO_LOW' => 'Извините, сайт запрещено посещать детям младше %d лет', - 'BIRTHDAY_TODAY' => 'Пользователи, празднующие День Рождения сегодня: ', + 'BIRTHDAY_TODAY' => 'Пользователи, празднующие День Рождения сегодня:', 'BIRTHDAY_WEEK' => 'Пользователи, празднующие День Рождения в ближайшие %d дней: %s', 'BOARD_DISABLE' => 'Извините, этот форум отключен. Попробуйте зайти позднее', 'BOARD_DISABLE_CRON' => 'Форум отключен на техническое обслуживание. Попробуйте зайти позднее', @@ -407,7 +407,7 @@ return [ 'CLEAR_SEARCH_TABLES' => 'Очистить таблицы поиска', 'CLEAR_SEARCH_TABLES_EXPLAIN' => '', 'CLEAR_SEARCH_TRUNCATE' => 'Очистка', - 'CLEARED_SEARCH_TABLES' => 'Очистка таблиц поиска. ', + 'CLEARED_SEARCH_TABLES' => 'Очистка таблиц поиска.', 'CLICK_RETURN_ADMIN_INDEX' => '%sВернуться на главную страницу администраторского раздела%s', 'CLICK_RETURN_ATTACH_CONFIG' => 'Нажмите %sтут%s, чтобы вернуться к конфигурации приложений', 'CLICK_RETURN_BANADMIN' => '%sВернуться к черным спискам%s', @@ -531,7 +531,7 @@ return [ 'CRON_SCRIPT' => 'Скрипт', 'CRON_SCRIPT_EXPL' => 'название в папке "includes/cron/jobs/"', 'CRON_TITLE' => 'Название задачи', - 'CRON_WORKS' => 'Крон в данный момент запущен или завис · ', + 'CRON_WORKS' => 'Крон в данный момент запущен или завис ·', 'CUR_ACTIVE_DLS' => 'Активные раздачи', 'CUR_DOWNLOADS' => 'Текущие закачки', 'CUR_UPLOADS' => 'Текущие раздачи', @@ -604,7 +604,6 @@ return [ 'раза', ], ], - 'DEFAULT_LANGUAGE' => 'Язык по умолчанию', 'DEFAULT_QUOTA_LIMIT' => 'Стандартное ограничение квоты', 'DEFAULT_QUOTA_LIMIT_EXPLAIN' => 'Здесь Вы можете конфигурировать стандартное ограничение квоты для новых пользователей или пользователей без установленных ограничений. Настройка "Без Ограничений" для тех, кто не хочет использовать квоты приложений. Вместо этого будут использованы стандартные настройки, заданные в контрольной панеле.', 'DEL_EXISTING_SMILEYS' => 'Удалить перед импортом существующие смайлики', @@ -647,7 +646,7 @@ return [ 'DELETED' => 'Cообщение было успешно удалено', 'DELETED_ATTACHMENTS' => 'Выделенные вложения удалены.', 'DELETED_GROUP' => 'Группа была успешно удалена', - 'DELETED_POSTS' => '%s записей были удалены пользователей во время обработки. ', + 'DELETED_POSTS' => '%s записей были удалены пользователей во время обработки.', 'DELTA_TIME' => [ 'FORMAT' => '%1$s %2$s', 'INTERVALS' => [ @@ -727,7 +726,7 @@ return [ 'DL_UL' => 'Отдано', 'DL_UL_SPEED' => 'Отдача', 'DL_ULR' => 'URL', - 'DL_UPD' => 'Подключен: ', + 'DL_UPD' => 'Подключен:', 'DL_USER' => 'Пользователь', 'DLCANCEL' => 'Отмена', 'DLCOMPLETE' => 'Скачал', @@ -756,8 +755,8 @@ return [ 'EDIT_PM' => 'Редактировать сообщение', 'EDIT_POST' => 'Редактировать сообщение', 'EDIT_POST_AJAX' => 'редактировать сообщение со статусом', - 'EDIT_POST_NOT_1' => 'Вам запрещено ', - 'EDIT_POST_NOT_2' => 'Вы не можете ', + 'EDIT_POST_NOT_1' => 'Вам запрещено', + 'EDIT_POST_NOT_2' => 'Вы не можете', 'EDIT_PROFILE' => 'Редактирование профиля', 'EDIT_TOPIC_TITLE' => 'Изменить название темы', 'EDIT_WORD_CENSOR' => 'Изменить автоцензор', @@ -1056,7 +1055,7 @@ return [ 'INTERESTS' => 'Интересы', 'INVALID_ANN_URL' => 'Неправильный Аnnounce URL [%s]

должен быть %s', 'INVALID_ATTACH_ID' => 'Отсутствует идентификатор файла!', - 'INVALID_DATE' => 'Ошибка даты ', + 'INVALID_DATE' => 'Ошибка даты', 'INVALID_EXTENSION' => 'Неправильное расширения', 'INVALID_FILENAME' => '%s - неправильное имя файла', 'INVALID_TOPIC_ID' => 'Топик отсутствует!', @@ -1222,7 +1221,7 @@ return [ 'MEMBERS_IN_GROUP' => 'Кол-во участников', 'MEMBERSHIP_DETAILS' => 'Информация о членстве в группах', 'MEMBERSHIP_IN' => 'Членство в группах', - 'MEMORY' => 'Память: ', + 'MEMORY' => 'Память:', 'MESSAGE' => 'Сообщение', 'MESSAGE_SENT' => 'Ваше сообщение было отправлено', 'MOD_CP' => 'Панель модерации', @@ -1970,7 +1969,7 @@ return [ 'STATISTICS' => 'Статистика', 'STATISTICS_FOR_USER' => 'Статистика приложений для %s', 'STATUS' => 'Статус', - 'STATUS_DOES_EXIST' => 'Такого статуса не существует: ', + 'STATUS_DOES_EXIST' => 'Такого статуса не существует:', 'STATUS_LOCKED' => 'Закрыт', 'STATUS_UNLOCKED' => 'Открыт', 'STICKY' => 'Прилеплять темы', @@ -2020,7 +2019,7 @@ return [ 'TIME_LIMIT_EXPLAIN' => 'Сколько времени (сек) после обработки может длиться до перехода к следующему циклу', 'TIME_LIMIT_EXPLAIN_SAFE' => 'Ваш PHP (Safe Mode) настроен на таймаут %s сек, так что не превышайте этого значения', 'TIME_LIMIT_EXPLAIN_WEBSERVER' => 'Ваш веб-сервер настроен на таймаут %s сек, так что не превышайте этого значения', - 'TIMER_EXPIRED' => 'Таймер истек в %s секунд. ', + 'TIMER_EXPIRED' => 'Таймер истек в %s секунд.', 'TIMEZONE' => 'Часовой пояс', 'TITLE_DUPLICATE' => 'Название задачи ' . @$_POST['cron_title'] . ' уже существует!', 'TITLE_MATCH' => 'Название содержит', @@ -2075,7 +2074,7 @@ return [ 'TOR_NOT_FOUND' => 'Файл отсутствует на сервере!', 'TOR_SEARCH_TITLE' => 'Опции показа торрентов', 'TOR_STATUS' => 'Статус', - 'TOR_STATUS_CHANGED' => 'Статус изменил: ', + 'TOR_STATUS_CHANGED' => 'Статус изменил:', 'TOR_STATUS_DAYS' => 'дней', 'TOR_STATUS_DUB' => 'Раздача имеет тот же статус', 'TOR_STATUS_FAILED' => 'Такого статуса не существует!', @@ -2343,6 +2342,6 @@ return [ 'YES' => 'Да', 'YOU_ARE_WATCHING' => 'Теперь вы следите за ответами в этой теме', 'YOU_BEEN_BANNED' => 'Вам был закрыт доступ к форуму
Обратитесь к вебмастеру или администратору сайта за дополнительной информацией', - 'YOUR_NEW_PASSWORD' => 'Ваш пароль: ', + 'YOUR_NEW_PASSWORD' => 'Ваш пароль:', 'YS_TRAF' => 'Вчера', ]; diff --git a/library/language/en/email/admin_send_email.html b/resources/lang/source/email/admin_send_email.html similarity index 100% rename from library/language/en/email/admin_send_email.html rename to resources/lang/source/email/admin_send_email.html diff --git a/library/language/ru/email/blank.html b/resources/lang/source/email/blank.html similarity index 100% rename from library/language/ru/email/blank.html rename to resources/lang/source/email/blank.html diff --git a/library/language/source/email/group_added.html b/resources/lang/source/email/group_added.html similarity index 100% rename from library/language/source/email/group_added.html rename to resources/lang/source/email/group_added.html diff --git a/library/language/source/email/group_approved.html b/resources/lang/source/email/group_approved.html similarity index 100% rename from library/language/source/email/group_approved.html rename to resources/lang/source/email/group_approved.html diff --git a/library/language/source/email/group_request.html b/resources/lang/source/email/group_request.html similarity index 100% rename from library/language/source/email/group_request.html rename to resources/lang/source/email/group_request.html diff --git a/library/language/source/email/privmsg_notify.html b/resources/lang/source/email/privmsg_notify.html similarity index 100% rename from library/language/source/email/privmsg_notify.html rename to resources/lang/source/email/privmsg_notify.html diff --git a/library/language/en/email/profile_send_email.html b/resources/lang/source/email/profile_send_email.html similarity index 100% rename from library/language/en/email/profile_send_email.html rename to resources/lang/source/email/profile_send_email.html diff --git a/library/language/source/email/topic_notify.html b/resources/lang/source/email/topic_notify.html similarity index 100% rename from library/language/source/email/topic_notify.html rename to resources/lang/source/email/topic_notify.html diff --git a/library/language/source/email/user_activate.html b/resources/lang/source/email/user_activate.html similarity index 100% rename from library/language/source/email/user_activate.html rename to resources/lang/source/email/user_activate.html diff --git a/library/language/source/email/user_activate_passwd.html b/resources/lang/source/email/user_activate_passwd.html similarity index 100% rename from library/language/source/email/user_activate_passwd.html rename to resources/lang/source/email/user_activate_passwd.html diff --git a/library/language/source/email/user_welcome.html b/resources/lang/source/email/user_welcome.html similarity index 100% rename from library/language/source/email/user_welcome.html rename to resources/lang/source/email/user_welcome.html diff --git a/library/language/source/email/user_welcome_inactive.html b/resources/lang/source/email/user_welcome_inactive.html similarity index 100% rename from library/language/source/email/user_welcome_inactive.html rename to resources/lang/source/email/user_welcome_inactive.html diff --git a/library/language/en/html/advert.html b/resources/lang/source/html/advert.html similarity index 100% rename from library/language/en/html/advert.html rename to resources/lang/source/html/advert.html diff --git a/library/language/en/html/copyright_holders.html b/resources/lang/source/html/copyright_holders.html similarity index 100% rename from library/language/en/html/copyright_holders.html rename to resources/lang/source/html/copyright_holders.html diff --git a/library/language/en/html/not_found.html b/resources/lang/source/html/not_found.html similarity index 100% rename from library/language/en/html/not_found.html rename to resources/lang/source/html/not_found.html diff --git a/library/language/en/html/sidebar1.html b/resources/lang/source/html/sidebar1.html similarity index 100% rename from library/language/en/html/sidebar1.html rename to resources/lang/source/html/sidebar1.html diff --git a/library/language/en/html/sidebar2.html b/resources/lang/source/html/sidebar2.html similarity index 85% rename from library/language/en/html/sidebar2.html rename to resources/lang/source/html/sidebar2.html index 3ee223024..f64c7fd3c 100644 --- a/library/language/en/html/sidebar2.html +++ b/resources/lang/source/html/sidebar2.html @@ -3,7 +3,7 @@ To add content into this sidebar, edit the following files:


diff --git a/library/language/en/html/user_agreement.html b/resources/lang/source/html/user_agreement.html similarity index 100% rename from library/language/en/html/user_agreement.html rename to resources/lang/source/html/user_agreement.html diff --git a/resources/lang/source/messages.php b/resources/lang/source/messages.php new file mode 100644 index 000000000..aa9c7fe82 --- /dev/null +++ b/resources/lang/source/messages.php @@ -0,0 +1,2347 @@ + '1 Day', + '1_MONTH' => '1 Month', + '1_YEAR' => '1 Year', + '2_WEEKS' => '2 Weeks', + '3_MONTHS' => '3 Months', + '6_MONTHS' => '6 Months', + '7_DAYS' => '7 Days', + 'ABILITIES_SETTINGS' => 'User and Forum Basic Settings', + 'ACC_ADMIN' => 'Admin', + 'ACC_NONE' => 'None', + 'ACC_USER' => 'User', + 'ACCOUNT_ACTIVATED_SUBJECT' => 'Account Activated', + 'ACCOUNT_ACTIVE' => 'Your account has just been activated. Thank you for registering', + 'ACCOUNT_ADDED' => 'Thank you for registering. Your account has been created. You may now log in with your username and password', + 'ACCOUNT_INACTIVE' => 'Your account has been created. However, this forum requires account activation. An activation key has been sent to the e-mail address you provided. Please check your e-mail for further information', + 'ACCOUNT_STATUS' => 'Account Status', + 'ACCT_ACTIVATION' => 'Enable account activation', + 'ACTION' => 'Action', + 'ACTIONS_LOG' => 'Report on action', + 'ACTIVATE_CONFIRM' => 'Are you sure you want to disable this user?', + 'ACTIVE_PARAMETERS' => 'Active parameters', + 'ACTS_LOG_ACTION' => 'Action', + 'ACTS_LOG_ALL_ACTIONS' => 'All actions', + 'ACTS_LOG_DAYS_BACK' => 'days back', + 'ACTS_LOG_FILTER' => 'Filter', + 'ACTS_LOG_FIRST' => 'beginning with', + 'ACTS_LOG_FORUM' => 'Forum', + 'ACTS_LOG_INFO' => 'Info', + 'ACTS_LOG_LOGS_ACTION' => 'Action', + 'ACTS_LOG_LOGS_FROM' => 'Logs from', + 'ACTS_LOG_OR' => 'or', + 'ACTS_LOG_SEARCH_OPTIONS' => 'Actions Log: Search options', + 'ACTS_LOG_SORT_BY' => 'Sort by', + 'ACTS_LOG_TIME' => 'Time', + 'ACTS_LOG_TOPIC_MATCH' => 'Topic title match', + 'ACTS_LOG_TOPICS' => 'Topics:', + 'ACTS_LOG_USER' => 'User', + 'ACTS_LOG_USERNAME' => 'Username', + 'ADD_ATTACHMENT' => 'Add Attachment', + 'ADD_ATTACHMENT_EXPLAIN' => 'If you do not want to add an Attachment to your Post, please leave the Fields blank', + 'ADD_ATTACHMENT_TITLE' => 'Add an Attachment', + 'ADD_DISALLOW' => 'Add', + 'ADD_DISALLOW_EXPLAIN' => 'You can disallow a username using the wildcard character * to match any character', + 'ADD_DISALLOW_TITLE' => 'Add a disallowed username', + 'ADD_FORUMS' => 'Add Forums', + 'ADD_JOB' => 'Add cron job', + 'ADD_MEMBER' => 'Add Member', + 'ADD_NEW' => 'Add', + 'ADD_NEW_RANK' => 'Add new rank', + 'ADD_NEW_WORD' => 'Add new word', + 'ADD_OPTION' => 'Add option', + 'ADD_POLL' => 'Add a poll', + 'ADD_POLL_EXPLAIN' => 'If you do not want to add a poll to your topic, leave the fields blank.', + 'ADD_RETRACKER' => 'Add retracker in torrent files', + 'ADD_SELECTED' => 'Add Selected', + 'ADDED' => 'Added', + 'ADDED_NEW_GROUP' => 'The new group has been created successfully', + 'ADMIN' => 'Administrating', + 'ADMIN_AVATAR_EXPLAIN' => 'Here you can see and delete the user\'s current avatar.', + 'ADMIN_DISABLE' => 'the forum is disabled by administrator, you can enable it at any time', + 'ADMIN_DISABLE_CRON' => 'forum locked by the trigger cron job, you can remove a lock at any time', + 'ADMIN_DISABLE_CRON_TITLE' => 'Forum is down for maintenance', + 'ADMIN_DISABLE_TITLE' => 'The forum is disabled', + 'ADMIN_INDEX' => 'Admin Index', + 'ADMIN_PANEL' => 'Go to Administration Panel', + 'ADMIN_REAUTHENTICATE' => 'To administer/moderate the board you must re-authenticate yourself.', + 'ADMIN_UNLOCK' => 'Enable forum', + 'ADMIN_UNLOCK_CRON' => 'Remove lock', + 'ADMIN_UNLOCKED' => 'Unlocked', + 'ADMIN_USER_FAIL' => 'Could not update the user\'s profile.', + 'ADMIN_USER_UPDATED' => 'The user\'s profile has been updated successfully.', + 'ADMINISTRATORS' => 'Administrators', + 'ADVANCED_MODE' => 'Advanced Mode', + 'ADVERT' => 'Advertise on this site', + 'AFTER' => 'After', + 'AFTER_THE_LAPSE' => 'after the lapse of', + 'AFTER_THE_LAST' => 'after the last', + 'AGE' => 'Age', + 'AJAX_EDIT_OPEN' => 'Have you already opened one quick editing!', + 'AJAX_PREVIEW' => 'Quick View', + 'ALIGN' => 'Align:', + 'ALL' => 'all', + 'ALL_AVAILABLE' => 'All available', + 'ALL_CACHE' => 'All cache', + 'ALL_CACHE_CLEARED' => 'Cache has been cleared', + 'ALL_FORUMS' => 'All Forums', + 'ALL_MESSAGES' => 'All Messages', + 'ALL_POSTS' => 'All Posts', + 'ALL_POSTS_PROCESSED' => 'All posts were processed successfully.', + 'ALL_SESSION_POSTS_PROCESSED' => 'Processed all posts in current session.', + 'ALL_TABLES_OPTIMIZED' => 'All search tables were optimized successfully.', + 'ALL_TEMPLATE_CLEARED' => 'Template cache has been cleared', + 'ALL_TIMES' => 'All times are %s', + 'ALL_TOPICS' => 'All Topics', + 'ALL_USERS' => 'All Users', + 'ALLOW_AUTOLOGIN' => 'Allow automatic logins', + 'ALLOW_AUTOLOGIN_EXPLAIN' => 'Determines whether users are allowed to select to be automatically logged in when visiting the forum', + 'ALLOW_BBCODE' => 'Allow BBCode', + 'ALLOW_GUEST_DL' => 'Allow guest access to tracker', + 'ALLOW_NAME_CHANGE' => 'Allow Username changes', + 'ALLOW_PORNO_TOPIC' => 'Allowed to post content 18+', + 'ALLOW_REG_TRACKER' => 'Allowed forums for registering .torrents on tracker', + 'ALLOW_SIG' => 'Allow Signatures', + 'ALLOW_SMILIES' => 'Allow Smilies', + 'ALLOWED' => 'Allowed', + 'ALLOWED_ACCESS' => 'Allowed Access', + 'ALLOWED_FORUMS' => 'Allowed Forums', + 'ALLOWED_ONLY_1ST_POST_ATTACH' => 'Posting torrents allowed only in first post', + 'ALLOWED_ONLY_1ST_POST_REG' => 'Registering torrents allowed only from first post', + 'ALREADY_ACTIVATED' => 'You have already activated your account', + 'ALREADY_MEMBER_GROUP' => 'You are already a member of this group', + 'ALREADY_REG' => 'Torrent already registered', + 'ALREADY_REG_IP' => 'With your IP-address is already registered user %s. If you have not previously registered on our tracker, mail to Administrator', + 'ALREADY_VOTED' => 'You have already voted in this poll', + 'ALWAYS_ADD_SIG' => 'Always attach my signature', + 'ALWAYS_NOTIFY' => 'Always notify me of replies', + 'ALWAYS_NOTIFY_EXPLAIN' => 'Sends an e-mail when someone replies to a topic you have posted in. This can be changed whenever you post.', + 'ANNOUNCE' => 'Announce', + 'ANNOUNCE_INTERVAL' => 'Announce interval', + 'ANNOUNCE_INTERVAL_EXPL' => 'peers should wait at least this many seconds between announcements', + 'ANNOUNCE_INTERVAL_HEAD' => 'Misc', + 'APPROVE_SELECTED' => 'Approve Selected', + 'ARE_GROUP_MODERATOR' => 'You are the group moderator', + 'ASC' => 'Ascending', + 'ASSIGNED_GROUP' => 'Assigned Group', + 'ASSIGNED_GROUPS' => 'Assigned Groups', + 'ASSIGNED_USERS' => 'Assigned Users', + 'ATOM_ERROR' => 'Error generating feed', + 'ATOM_FEED' => 'Feed', + 'ATOM_NO_FORUM' => 'This forum does not have a feed (no ongoing topics)', + 'ATOM_NO_MODE' => 'Do not specify a mode for the feed', + 'ATOM_NO_USER' => 'This user does not have a feed (no ongoing topics)', + 'ATOM_SUBSCRIBE' => 'Subscribe to the feed', + 'ATTACH_CONFIG_UPDATED' => 'Attachment Configuration updated successfully', + 'ATTACH_DISPLAY_ORDER' => 'Attachment Display Order', + 'ATTACH_DISPLAY_ORDER_EXPLAIN' => 'Here you can choose whether to display the Attachments in Posts/PMs in Descending Filetime Order (Newest Attachment First) or Ascending Filetime Order (Oldest Attachment First).', + 'ATTACH_FILESIZE_SETTINGS' => 'Attachment Filesize Settings', + 'ATTACH_IMG_PATH' => 'Attachment Posting Icon', + 'ATTACH_IMG_PATH_EXPLAIN' => 'This Image is displayed next to Attachment Links in individual Postings. Leave this field empty if you don\'t want an icon to be displayed. This Setting will be overwritten by the Settings in Extension Groups Management.', + 'ATTACH_NUMBER_SETTINGS' => 'Attachment Number Settings', + 'ATTACH_OPTIONS_SETTINGS' => 'Attachment Options', + 'ATTACH_QUOTA' => 'Attachment Quota', + 'ATTACH_QUOTA_EXPLAIN' => 'Maximum Disk Space ALL Attachments can hold on your Webspace. A value of 0 means \'unlimited\'.', + 'ATTACH_QUOTA_REACHED' => 'Sorry, but the maximum filesize for all Attachments is reached. Please contact the Board Administrator if you have questions.', + 'ATTACH_QUOTA_RECEIVER_PM_REACHED' => 'Sorry, but the maximum filesize for all Attachments in the Private Message Folder of \'%s\' has been reached. Please let him know, or wait until he/she has deleted some of his/her Attachments.', + 'ATTACH_QUOTA_SENDER_PM_REACHED' => 'Sorry, but the maximum filesize for all Attachments in your Private Message Folder has been reached. Please delete some of your received/sent Attachments.', + 'ATTACH_RG_SIG' => 'attach release group signature', + 'ATTACH_SEARCH_QUERY' => 'Search Attachments', + 'ATTACH_SETTINGS' => 'Attachment Settings', + 'ATTACH_SIGNATURE' => 'Attach signature (signatures can be changed in profile)', + 'ATTACH_SYNC_FINISHED' => 'Attachment Syncronization Finished.', + 'ATTACH_TOPIC_ICON' => 'Attachment Topic Icon', + 'ATTACH_TOPIC_ICON_EXPLAIN' => 'This Image is displayed before topics with Attachments. Leave this field empty if you don\'t want an icon to be displayed.', + 'ATTACHBOX_LIMIT' => 'Your Attachbox is
%d%% full', + 'ATTACHMENT' => 'Attachments', + 'ATTACHMENT_FEATURE_DISABLED' => 'The Attachment Feature is disabled.', + 'ATTACHMENT_PHP_SIZE_NA' => 'The Attachment is too big.
Could not get the maximum Size defined in PHP.
The Attachment Mod is unable to determine the maximum Upload Size defined in the php.ini.', + 'ATTACHMENT_PHP_SIZE_OVERRUN' => 'The Attachment is too big.
Maximum Upload Size: %d MB.
Please note that this Size is defined in php.ini, this means it\'s set by PHP and the Attachment Mod can not override this value.', + 'ATTACHMENT_THUMBNAIL' => 'Attachment Thumbnail', + 'ATTACHMENT_TOO_BIG' => 'The Attachment is too big.
Max Size: %d', + 'ATTACHMENT_TOPIC_REVIEW' => 'Show applications in the review of communications topics when writing an answer?', + 'ATTACHMENT_TOPIC_REVIEW_EXPLAIN' => 'If you put a "yes", all applications will be displayed in the review of communications topics.', + 'ATTACHMENT_VERSION' => 'Attachment Mod Version %s', + 'ATTACHMENTS' => 'Attachments', + 'ATTACHMENTS_PER_DAY' => 'Attachments per day', + 'AUTH_ADMIN' => 'Administrator', + 'AUTH_ADMINISTRATORS' => 'administrators', + 'AUTH_ANNOUNCE' => 'Announce', + 'AUTH_ANONYMOUS_USERS' => 'anonymous users', + 'AUTH_ATTACH' => 'Post Files', + 'AUTH_ATTACHMENTS' => 'Post Files', + 'AUTH_CONTROL_CATEGORY' => 'Category Permissions Control', + 'AUTH_CONTROL_FORUM' => 'Forum Permissions Control', + 'AUTH_CONTROL_GROUP' => 'Group Permissions Control', + 'AUTH_CONTROL_USER' => 'User Permissions Control', + 'AUTH_DELETE' => 'Delete', + 'AUTH_DOWNLOAD' => 'Download Files', + 'AUTH_EDIT' => 'Edit', + 'AUTH_KEY_NAME' => 'Passkey name', + 'AUTH_KEY_NAME_EXPL' => 'passkey key name in GET request', + 'AUTH_MODERATORS' => 'moderators', + 'AUTH_POLLCREATE' => 'Poll create', + 'AUTH_POST' => 'Post', + 'AUTH_READ' => 'Read', + 'AUTH_REGISTERED_USERS' => 'registered users', + 'AUTH_REPLY' => 'Reply', + 'AUTH_STICKY' => 'Sticky', + 'AUTH_TYPES' => [ + AUTH_ALL => 'anonymous users', + AUTH_REG => 'registered users', + AUTH_ACL => 'users granted special access', + AUTH_MOD => 'moderators', + AUTH_ADMIN => 'administrators', + ], + 'AUTH_UPDATED' => 'Permissions have been updated', + 'AUTH_USER' => 'User', + 'AUTH_USERS_GRANTED_ACCESS' => 'users granted special access', + 'AUTH_VIEW' => 'View', + 'AUTH_VOTE' => 'Vote', + 'AUTHOR' => 'Author', + 'AUTO_LOGIN' => 'Log me on automatically', + 'AUTOCLEAN' => 'Autoclean:', + 'AUTOCLEAN_EXPL' => 'autoclean peers table - do not disable without reason', + 'AUTOCOMPLETE' => 'Password generate', + 'AUTOLOGIN' => 'Autologin', + 'AUTOLOGIN_TIME' => 'Automatic login key expiry', + 'AUTOLOGIN_TIME_EXPLAIN' => 'How long an autologin key is valid for in days if the user does not visit the board. Set to zero to disable expiry.', + 'AVATAR' => 'Avatar', + 'AVATAR_DELETE' => 'Delete avatar', + 'AVATAR_DIR_SIZE' => 'Avatar directory size', + 'AVATAR_DISABLE' => 'Avatar control option disabled for violation forum rules', + 'AVATAR_EXPLAIN' => 'Displays a small graphic image below your details in posts. Only one image can be displayed at a time, its width can be no greater than %d pixels, the height no greater than %d pixels, and the file size no more than %d KB.', + 'AVATAR_PANEL' => 'Avatar control panel', + 'AVATARS' => 'Avatars', + 'AWARDED_RANK' => 'Awarded rank', + 'BACK' => 'Back', + 'BACK_TO_TOP' => 'Back to top', + 'BAN_CONTROL' => 'Ban Control', + 'BAN_EMAIL' => 'Ban one or more email addresses', + 'BAN_EMAIL_EXPLAIN' => 'To specify more than one email address, separate them with commas. To specify a wildcard username, use * like *@hotmail.com', + 'BAN_EXPLAIN' => 'Here you can control the banning of users. You can achieve this by banning either or both of a specific user or an individual or range of IP addresses. These methods prevent a user from even reaching the index page of your board. To prevent a user from registering under a different username you can also specify a banned email address. Please note that banning an email address alone will not prevent that user from being able to log on or post to your board. You should use one of the first two methods to achieve this.', + 'BAN_EXPLAIN_WARN' => 'Please note that entering a range of IP addresses results in all the addresses between the start and end being added to the banlist. Attempts will be made to minimise the number of addresses added to the database by introducing wildcards automatically where appropriate. If you really must enter a range, try to keep it small or better yet state specific addresses.', + 'BAN_IP' => 'Ban one or more IP addresses', + 'BAN_IP_EXPLAIN' => 'To specify several different IP addresses separate them with commas.', + 'BAN_MANAGEMENT' => 'Ban Control', + 'BAN_UPDATE_SUCESSFUL' => 'The banlist has been updated successfully', + 'BAN_USER' => 'To prevent a user', + 'BAN_USERNAME' => 'Ban one or more specific users', + 'BAN_USERNAME_EXPLAIN' => 'You can ban multiple users in one go using the appropriate combination of mouse and keyboard for your computer and browser', + 'BANNED' => 'Banned', + 'BANNED_USERS' => 'Banned Users', + 'BEFORE' => 'Before', + 'BIRTHDAY' => 'Birthday', + 'BIRTHDAY_CHECK_DAY' => 'Days to check for come shortly birthdays', + 'BIRTHDAY_ENABLE' => 'Enable birthday', + 'BIRTHDAY_MAX_AGE' => 'Max age', + 'BIRTHDAY_MIN_AGE' => 'Min age', + 'BIRTHDAY_TO_HIGH' => 'Sorry, this site, does not accept user older than %d years old', + 'BIRTHDAY_TO_LOW' => 'Sorry, this site, does not accept user yonger than %d years old', + 'BIRTHDAY_TODAY' => 'Users with a birthday today:', + 'BIRTHDAY_WEEK' => 'Users with a birthday within the next %d days: %s', + 'BOARD_DISABLE' => 'Sorry, this forum is disabled. Try to come back later', + 'BOARD_DISABLE_CRON' => 'Forum is down for maintenance. Try to come back later', + 'BOARD_DISABLE_EXPL' => 'disable board when this job is run', + 'BOARD_DISABLE_EXPLAIN' => 'This will make the board unavailable to users. Administrators are able to access the Administration Panel while the board is disabled.', + 'BOARD_LANG' => 'Board language', + 'BOARD_STARTED' => 'Board started', + 'BOARD_STATUS' => 'Board status', + 'BOLD' => 'Bold text: [b]text[/b] (Ctrl+B)', + 'BONUS' => 'On the rare', + 'BONUS_NOT_SUCCES' => 'You do not have bonuses available. More seeding!', + 'BONUS_RETURN' => 'Return to the seed bonus exchange', + 'BONUS_SELECT' => 'Select', + 'BONUS_SUCCES' => 'To you it is successfully enlisted %s', + 'BONUS_UPLOAD_DESC' => '%s to distribution
To exchange bonus points on %1$s traffic which will be added on to the sum of your distribution.', + 'BONUS_UPLOAD_PRICE' => '%s', + 'BOT_AFTER_SPLIT_TO_NEW' => 'Add bot-message about split to new topic', + 'BOT_AFTER_SPLIT_TO_OLD' => 'Add bot-message about split to old topic', + 'BOT_LEAVE_MSG_MOVED' => 'Add bot-message about moving', + 'BOT_MESS_SPLITS' => 'Topic has been split. New topic - [b]%s[/b][br][br]%s', + 'BOT_TOPIC_MOVED_FROM_TO' => 'Topic has been moved from forum [b]%s[/b] to forum [b]%s[/b][br][br]%s', + 'BOT_TOPIC_SPLITS' => 'Topic has been split from [b]%s[/b][br][br]%s', + 'BRIEFLY' => 'Briefly', + 'BROWSER_REDIRECT_URL' => 'Browser redirect URL', + 'BROWSER_REDIRECT_URL_EXPL' => 'if user tries to open tracker URL in Web browser
leave blank to disable', + 'BROWSING_FORUM' => 'Users browsing this forum:', + 'BT_1_DAY' => '1 day', + 'BT_1_DAY_FOR' => 'last day', + 'BT_1_MONTH' => 'month', + 'BT_1_MONTH_FOR' => 'last month', + 'BT_2_WEEKS' => '2 weeks', + 'BT_2_WEEKS_FOR' => 'last two weeks', + 'BT_3_DAY_FOR' => 'last three days', + 'BT_3_DAYS' => '3 days', + 'BT_7_DAYS' => 'week', + 'BT_7_DAYS_FOR' => 'last week', + 'BT_ADD_AUTH_KEY' => 'Enable adding passkey to the torrent-files before downloading', + 'BT_ADD_AUTH_KEY_HEAD' => 'Passkey', + 'BT_ADDED' => 'Added', + 'BT_ALL_DAYS_FOR' => 'all the time', + 'BT_ALLOW_SPMODE_CHANGE' => 'Allow "Full details" mode', + 'BT_ALLOW_SPMODE_CHANGE_EXPL' => 'if "no", only default peer display mode will be available', + 'BT_ANNOUNCE_URL' => 'Announce url', + 'BT_ANNOUNCE_URL_EXPL' => 'you can define additional allowed urls in "includes/torrent_announce_urls.php"', + 'BT_ANNOUNCE_URL_HEAD' => 'Announce URL', + 'BT_CHECK_ANNOUNCE_URL' => 'Verify announce url', + 'BT_CHECK_ANNOUNCE_URL_EXPL' => 'register on tracker only allowed urls', + 'BT_CREATED' => 'Topic posted', + 'BT_DEL_ADDIT_ANN_URLS' => 'Remove all additional announce urls', + 'BT_DEL_ADDIT_ANN_URLS_EXPL' => 'if the torrent contains the addresses of other trackers, they will be removed', + 'BT_DISABLE_DHT' => 'Disable DHT network', + 'BT_DISABLE_DHT_EXPL' => 'Disable Peer Exchange and DHT (recommended for private networks, only url announce)', + 'BT_DISREGARD' => 'disregarding', + 'BT_DL_LIST_ONLY_1ST_PAGE' => 'Show DL-List only on first page in topics', + 'BT_DL_LIST_ONLY_COUNT' => 'Show only number of users', + 'BT_GEN_PASSKEY' => 'create a new', + 'BT_GEN_PASSKEY_NEW' => "Attention! After changing the new passkey, you will need to re-download all the active torrents! \n Are you sure you want to create a new passkey?", + 'BT_LAST_POST' => 'Last post', + 'BT_LOW_RATIO_FOR_DL' => 'With ratio %s you can not download torrents', + 'BT_NEVER' => 'never', + 'BT_NEWTOPIC_AUTO_REG' => 'Automatically register torrent on tracker for new topics', + 'BT_NO_SEARCHABLE_FORUMS' => 'No searchable forums found', + 'BT_ONLY_ACTIVE' => 'Active', + 'BT_ONLY_MY' => 'My releases', + 'BT_ONLY_NEW' => 'New from last visit', + 'BT_PASSKEY' => 'Passkey', + 'BT_PASSKEY_VIEW' => 'show', + 'BT_RATIO_WARNING_MSG' => 'If your ratio falls below %s, you will not be able to download Torrents! More about the rating.', + 'BT_REG_FAIL' => 'Could not register torrent on tracker', + 'BT_REG_FAIL_SAME_HASH' => 'Another torrent with same info_hash already registered', + 'BT_REG_NO' => 'Not registered', + 'BT_REG_ON_TRACKER' => 'Register on tracker', + 'BT_REG_YES' => 'Registered', + 'BT_REGISTERED' => 'Torrent registered on tracker

Now you need to download your torrent and run it using your BitTorrent client choosing the folder with the original files you\'re sharing as the download path', + 'BT_REPLACE_ANN_URL' => 'Replace announce url', + 'BT_REPLACE_ANN_URL_EXPL' => 'replace original announce url with your default in .torrent files', + 'BT_REPLIES' => 'Replies', + 'BT_SEARCH_BOOL_MODE' => 'Allow boolean full-text searches', + 'BT_SEARCH_BOOL_MODE_EXPL' => 'use *, +, -,.. in searches', + 'BT_SEED_EXIST' => 'Seeder exist', + 'BT_SEEDER_LAST_SEEN' => 'Seed last seen', + 'BT_SELECT_FORUMS' => 'Forum options:', + 'BT_SELECT_FORUMS_EXPL' => 'hold down Ctrl while selecting multiple forums', + 'BT_SET_DLTYPE_ON_TOR_REG' => 'Change topic status to "Download" while registering torrent on tracker', + 'BT_SET_DLTYPE_ON_TOR_REG_EXPL' => 'will change topic type to "Download" regardless of forum settings', + 'BT_SHOW_AUTHOR' => 'Author', + 'BT_SHOW_CAT' => 'Category', + 'BT_SHOW_DL_BUT_CANCEL' => 'Cancel', + 'BT_SHOW_DL_BUT_COMPL' => 'Complete', + 'BT_SHOW_DL_BUT_DOWN' => 'Downloading', + 'BT_SHOW_DL_BUT_WILL' => 'Will download', + 'BT_SHOW_DL_LIST' => 'Show DL-List in Download topics', + 'BT_SHOW_DL_LIST_BUTTONS' => 'Show buttons for manually changing DL-status', + 'BT_SHOW_DL_LIST_HEAD' => 'DL-List', + 'BT_SHOW_DL_STAT_ON_INDEX' => "Show users UL/DL statistics at the top of the forum's main page", + 'BT_SHOW_DL_STAT_ON_INDEX_HEAD' => 'Miscellaneous', + 'BT_SHOW_FORUM' => 'Forum', + 'BT_SHOW_IP_ONLY_MODER' => 'Peers\' IPs are visible to moderators only', + 'BT_SHOW_PEERS' => 'Show peers (seeders and leechers)', + 'BT_SHOW_PEERS_EXPL' => 'this will show seeders/leechers list above the topic with torrent', + 'BT_SHOW_PEERS_HEAD' => 'Peers-List', + 'BT_SHOW_PEERS_MODE' => 'By default, show peers as:', + 'BT_SHOW_PEERS_MODE_COUNT' => 'Count only', + 'BT_SHOW_PEERS_MODE_FULL' => 'Full details', + 'BT_SHOW_PEERS_MODE_NAMES' => 'Names only', + 'BT_SHOW_PORT_ONLY_MODER' => 'Peers\' Ports are visible to moderators only', + 'BT_SHOW_SPEED' => 'Speed', + 'BT_SORT_FORUM' => 'Forum', + 'BT_TOPIC_TITLE' => 'Topic title', + 'BT_TOR_BROWSE_ONLY_REG' => 'Torrent browser (tracker.php) accessible only for logged in users', + 'BT_TOR_BROWSE_ONLY_REG_HEAD' => 'Torrent browser (tracker)', + 'BT_UNREG_FROM_TRACKER' => 'Remove from tracker', + 'BT_UNREGISTERED' => 'Torrent unregistered', + 'BT_UNSET_DLTYPE_ON_TOR_UNREG' => 'Change topic status to "Normal" while unregistering torrent from tracker', + 'BT_USER_NOT_FOUND' => 'not found', + 'BT_VIEWS' => 'Views', + 'BYTES' => 'Bytes', + 'CALLSEED' => 'Downloaded the call', + 'CALLSEED_EXPLAIN' => 'Take notice with a request to return to the distribution', + 'CALLSEED_HAVE_SEED' => 'Topic does not require help (Seeders: %d)', + 'CALLSEED_MSG_OK' => 'Message has been sent to all those who downloaded this release', + 'CALLSEED_MSG_SPAM' => 'Request has already been once successfully sent (Probably not you)

The next opportunity to send a request to be %s.', + 'CALLSEED_SUBJECT' => 'Download help %s', + 'CALLSEED_TEXT' => 'Hello![br]Your help is needed in the release [url=%s]%s[/url][br]If you decide to help, but already deleted the torrent file, you can download it [url=%s]this[/url][br][br]I hope for your help!', + 'CANCEL' => 'Cancel', + 'CANDIDATE' => 'Candidate:', + 'CANNOT_DELETE_POLL' => 'Sorry, but you cannot delete an active poll', + 'CANNOT_DELETE_REPLIED' => 'Sorry, but you may not delete posts that have been replied to', + 'CANNOT_SEND_PRIVMSG' => 'Sorry, but the administrator has prevented you from sending private messages.', + 'CAPTCHA' => 'Check that you are not a robot', + 'CAPTCHA_SETTINGS' => '

ReCaptcha not being fully configured

If you haven\'t already generated the keys, you can do it on https://www.google.com/recaptcha/admin.
After you generate the keys, you need to put them at the file library/config.php.

', + 'CAPTCHA_WRONG' => 'You could not confirm that you are not a robot', + 'CAT_AUTH_LIST_EXPLAIN' => 'This provides a summary of the authorisation levels of each forum within this category. You can edit the permissions of individual forums, using either a simple or advanced method by clicking on the forum name. Alternatively, you can set the permissions for all the forums in this category by using the drop-down menus at the bottom of the page. Remember that changing the permission level of forums will affect which users can carry out the various operations within them.', + 'CATEGORY' => 'Category', + 'CATEGORY_DELETE' => 'Delete Category', + 'CATEGORY_IMAGES' => 'Images', + 'CENTER' => 'Centered', + 'CHANGE_TOR_TYPE' => 'Type the torrent successfully changed', + 'CHANGED' => 'Changed', + 'CHANGES' => 'Changes', + 'CHANGES_DISABLED' => 'Changes disabled (see config/tracker.php)', + 'CHARACTERS_POSTS' => 'characters of posts', + 'CHOOSE_A_NAME' => 'You should choose a name', + 'CHOOSE_E_MAIL' => 'You must specify the e-mail', + 'CHOOSE_PASS' => 'Field for the password must not be empty!', + 'CHOOSE_PASS_ERR' => 'Entered passwords do not match', + 'CHOOSE_PASS_ERR_MAX' => 'Your password must be no longer than $d characters', + 'CHOOSE_PASS_ERR_MIN' => 'Your password must be at least %d characters', + 'CHOOSE_PASS_FAILED' => 'To change the password, you must correctly specify the current password', + 'CHOOSE_PASS_OK' => 'Passwords match', + 'CHOOSE_PASS_REG_OK' => 'Passwords match, you can proceed with the registration', + 'CHOOSE_RELEASE_GROUP' => 'not selected', + 'CHOOSE_SMILE_PAK' => 'Choose a Smile Pack .pak file', + 'CLEAR_CACHE' => 'Clear Cache', + 'CLEAR_SEARCH_DELETE' => 'DELETE', + 'CLEAR_SEARCH_NO' => 'NO', + 'CLEAR_SEARCH_TABLES' => 'Clear search tables', + 'CLEAR_SEARCH_TABLES_EXPLAIN' => '', + 'CLEAR_SEARCH_TRUNCATE' => 'TRUNCATE', + 'CLEARED_SEARCH_TABLES' => 'Cleared search tables.', + 'CLICK_RETURN_ADMIN_INDEX' => 'Click %sHere%s to return to the Admin Index', + 'CLICK_RETURN_ATTACH_CONFIG' => 'Click %sHere%s to return to Attachment Configuration', + 'CLICK_RETURN_BANADMIN' => 'Click %sHere%s to return to Ban Control', + 'CLICK_RETURN_CONFIG' => '%sClick Here to return to General Configuration%s', + 'CLICK_RETURN_CONFIG_MODS' => '%sBack to the settings modifications%s', + 'CLICK_RETURN_DISALLOWADMIN' => 'Click %sHere%s to return to Disallow Username Administration', + 'CLICK_RETURN_FORUM' => 'Click %sHere%s to return to the forum', + 'CLICK_RETURN_FORUMADMIN' => 'Click %sHere%s to return to Forum Administration', + 'CLICK_RETURN_FORUMAUTH' => 'Click %sHere%s to return to Forum Permissions', + 'CLICK_RETURN_GROUP' => 'Click %sHere%s to return to group information', + 'CLICK_RETURN_GROUPAUTH' => 'Click %sHere%s to return to Group Permissions', + 'CLICK_RETURN_GROUPSADMIN' => 'Click %sHere%s to return to Group Administration.', + 'CLICK_RETURN_INBOX' => 'Return to your:

%sInbox%s', + 'CLICK_RETURN_INDEX' => '%sReturn to the Index%s', + 'CLICK_RETURN_JOBS' => '%sBack to the Task Scheduler%s', + 'CLICK_RETURN_JOBS_ADDED' => '%sReturn to the addition problem%s', + 'CLICK_RETURN_LOGIN' => 'Click %sHere%s to try again', + 'CLICK_RETURN_MASSEMAIL' => 'Click %sHere%s to return to the Mass Email form', + 'CLICK_RETURN_MODCP' => 'Click %sHere%s to return to Moderator Control Panel', + 'CLICK_RETURN_OUTBOX' => '   %sOutbox%s', + 'CLICK_RETURN_RANKADMIN' => 'Click %sHere%s to return to Rank Administration', + 'CLICK_RETURN_REBUILD_SEARCH' => 'Click %shere%s to return to Rebuild Search', + 'CLICK_RETURN_SAVEBOX' => '   %sSavebox%s', + 'CLICK_RETURN_SENTBOX' => '   %sSentbox%s', + 'CLICK_RETURN_SMILEADMIN' => 'Click %sHere%s to return to Smiley Administration', + 'CLICK_RETURN_TOPIC' => 'Click %sHere%s to return to the topic', + 'CLICK_RETURN_USERADMIN' => 'Click %sHere%s to return to User Administration', + 'CLICK_RETURN_USERAUTH' => 'Click %sHere%s to return to User Permissions', + 'CLICK_RETURN_WORDADMIN' => 'Click %sHere%s to return to Word Censor Administration', + 'CLICK_VIEW_MESSAGE' => 'Click %sHere%s to return to your message', + 'CLICK_VIEW_PRIVMSG' => 'Click %sHere%s to visit your Inbox', + 'CLOSE' => 'close', + 'CLOSE_WINDOW' => 'Close Window', + 'CODE' => 'Code', + 'CODE_TITLE' => 'Code display: [code]code[/code] (Ctrl+K)', + 'COLLAPSE' => 'Collapse directory', + 'COLOR_BLACK' => 'Black', + 'COLOR_BLUE' => 'Blue', + 'COLOR_BROWN' => 'Brown', + 'COLOR_CYAN' => 'Cyan', + 'COLOR_DARK_BLUE' => 'Dark Blue', + 'COLOR_DARK_GREEN' => 'Dark Green', + 'COLOR_DARK_RED' => 'Dark Red', + 'COLOR_DEFAULT' => 'Default', + 'COLOR_GRAY' => 'Gray', + 'COLOR_GREEN' => 'Green', + 'COLOR_INDIGO' => 'Indigo', + 'COLOR_OLIVE' => 'Olive', + 'COLOR_ORANGE' => 'Orange', + 'COLOR_RED' => 'Red', + 'COLOR_STEEL_BLUE' => 'Steel Blue', + 'COLOR_VIOLET' => 'Violet', + 'COLOR_WHITE' => 'White', + 'COLOR_YELLOW' => 'Yellow', + 'COMMENT' => 'Comment', + 'COMPACT_MODE' => 'Compact mode', + 'COMPACT_MODE_EXPL' => '"Yes" - tracker will only accept clients working in compact mode
"No" - compatible mode (chosen by client)', + 'COMPLETED' => 'Completed', + 'COMPOSE' => 'Compose', + 'CONFIG_EXPLAIN' => 'The form below will allow you to customize all the general board options. For User and Forum configurations use the related links on the left hand side.', + 'CONFIG_MODS' => 'Configuration modifications', + 'CONFIG_UPD' => 'Configuration Updated Successfully', + 'CONFIG_UPDATED' => 'Forum Configuration Has Been Updated Successfully', + 'CONFIGURATION' => 'Configuration', + 'CONFIRM' => 'Confirm', + 'CONFIRM_DELETE' => 'Are you sure you want to delete this post?', + 'CONFIRM_DELETE_ATTACHMENTS' => 'Are you sure you want to delete the selected Attachments?', + 'CONFIRM_DELETE_PM' => 'Are you sure you want to delete this message?', + 'CONFIRM_DELETE_PM_ATTACHMENTS' => 'Are you sure you want to delete all Attachments posted in this PM?', + 'CONFIRM_DELETE_PMS' => 'Are you sure you want to delete these messages?', + 'CONFIRM_DELETE_POLL' => 'Are you sure you want to delete this poll?', + 'CONFIRM_DELETE_TOPIC' => 'Are you sure you want to remove the selected topic/s?', + 'CONFIRM_LOCK_TOPIC' => 'Are you sure you want to lock the selected topic/s?', + 'CONFIRM_LOGOUT' => 'Are you sure you want to log out?', + 'CONFIRM_MOVE_TOPIC' => 'Are you sure you want to move the selected topic/s?', + 'CONFIRM_PASSWORD' => 'Confirm password', + 'CONFIRM_PASSWORD_EXPLAIN' => 'You must confirm your current password if you wish to change it or alter your e-mail address', + 'CONFIRM_UNLOCK_TOPIC' => 'Are you sure you want to unlock the selected topic/s?', + 'CONFIRM_UNSUB' => 'Are you sure you want to unsubscribe from this group?', + 'CONFIRM_UNSUB_PENDING' => 'Your subscription to this group has not yet been approved; are you sure you want to unsubscribe?', + 'CONFLICT_ACCESS_GROUPAUTH' => 'The following user (or users) still have access rights to this forum via their user permission settings. You may want to alter the user permissions to fully prevent them having access rights. The users granted rights (and the forums involved) are noted below.', + 'CONFLICT_ACCESS_USERAUTH' => 'This user still has access rights to this forum via group membership. You may want to alter the group permissions or remove this user the group to fully prevent them having access rights. The groups granting rights (and the forums involved) are noted below.', + 'CONFLICT_MOD_GROUPAUTH' => 'The following user (or users) still have moderator rights to this forum via their user permissions settings. You may want to alter the user permissions to fully prevent them having moderator rights. The users granted rights (and the forums involved) are noted below.', + 'CONFLICT_MOD_USERAUTH' => 'This user still has moderator rights to this forum via group membership. You may want to alter the group permissions or remove this user the group to fully prevent them having moderator rights. The groups granting rights (and the forums involved) are noted below.', + 'CONFLICT_WARNING' => 'Authorisation Conflict Warning', + 'CONTACT' => 'Contact', + 'CONTROL_PANEL' => 'Control Panel', + 'CONTROL_PANEL_EXPLAIN' => 'Here you can view and manage all attachments based on Users, Attachments, Views etc...', + 'CONTROL_PANEL_TITLE' => 'File Attachment Control Panel', + 'COOKIES_REQUIRED' => 'Cookies must be enabled!', + 'COPY' => 'The site does not give electronic versions of products, and is engaged only in a collecting and cataloguing of the references sent and published at a forum by our readers. If you are the legal owner of any submitted material and do not wish that the reference to it was in our catalogue, contact us and we shall immediately remove her. Files for an exchange on tracker are given by users of a site, and the administration does not bear the responsibility for their maintenance. The request to not fill in the files protected by copyrights, and also files of the illegal maintenance!', + 'COPYRIGHT_HOLDERS' => 'For copyright holders', + 'COULD_NOT_ADD_USER' => 'The user you selected does not exist.', + 'COULD_NOT_ANON_USER' => 'You cannot make Anonymous a group member.', + 'COUNT_GREATER_THAN' => 'Download count is greater than', + 'COUNT_SMALLER_THAN' => 'Download count is smaller than', + 'CREATE_CATEGORY' => 'Create new category', + 'CREATE_FORUM' => 'Create new forum', + 'CREATE_NEW' => 'Create', + 'CREATE_NEW_GROUP' => 'Create new group', + 'CREATE_PROFILE' => 'Create profile', + 'CRON' => 'Task Scheduler (cron)', + 'CRON_ACTIVE' => 'On', + 'CRON_ACTIVE_EXPL' => 'Active tasks', + 'CRON_CHECK_INTERVAL' => 'Cron check interval (sec)', + 'CRON_DEL' => 'Delete', + 'CRON_DISABLE' => 'Disable', + 'CRON_EDIT_HEAD_ADD' => 'Add job', + 'CRON_EDIT_HEAD_EDIT' => 'Edit job', + 'CRON_ENABLE' => 'Enable', + 'CRON_ENABLED' => 'Cron enabled', + 'CRON_ID' => 'ID', + 'CRON_LAST_RUN' => 'Last Run', + 'CRON_LIST' => 'Cron list', + 'CRON_MANAGE' => 'Manage', + 'CRON_NEXT_RUN' => 'Next Run', + 'CRON_OPTIONS' => 'Cron options', + 'CRON_RUN' => 'Run', + 'CRON_RUN_COUNT' => 'Runs', + 'CRON_SCHEDULE' => 'Schedule', + 'CRON_SCRIPT' => 'Script', + 'CRON_SCRIPT_EXPL' => 'name of the script from "includes/cron/jobs/"', + 'CRON_TITLE' => 'Title', + 'CRON_WORKS' => 'Cron is now works or is broken ·', + 'CUR_ACTIVE_DLS' => 'Active torrents', + 'CUR_DOWNLOADS' => 'Current Downloads', + 'CUR_UPLOADS' => 'Current Uploads', + 'CURRENT_IMAGE' => 'Current image', + 'CURRENT_PASSWORD' => 'Current password', + 'CURRENT_PASSWORD_MISMATCH' => 'The current password you supplied does not match that stored in the database.', + 'CURRENT_SESSION' => 'Current Session', + 'CURRENT_TIME' => 'Current time is: %s', + 'DATABASE_SIZE' => 'Database size', + 'DATABASE_SIZE_DETAILS' => 'Database size details', + 'DATASTORE' => 'Datastore', + 'DATASTORE_CLEARED' => 'Datastore has been cleared', + 'DATE' => 'Date', + 'DATE_FORMAT' => 'Date Format', + 'DATE_FORMAT_EXPLAIN' => 'The syntax used is identical to the PHP date() function.', + 'DATE_FORMAT_PROFILE' => 'Date format', + 'DATETIME' => [ + 'TODAY' => 'Today', + 'YESTERDAY' => 'Yesterday', + 'SUNDAY' => 'Sunday', + 'MONDAY' => 'Monday', + 'TUESDAY' => 'Tuesday', + 'WEDNESDAY' => 'Wednesday', + 'THURSDAY' => 'Thursday', + 'FRIDAY' => 'Friday', + 'SATURDAY' => 'Saturday', + 'SUN' => 'Sun', + 'MON' => 'Mon', + 'TUE' => 'Tue', + 'WED' => 'Wed', + 'THU' => 'Thu', + 'FRI' => 'Fri', + 'SAT' => 'Sat', + 'JANUARY' => 'January', + 'FEBRUARY' => 'February', + 'MARCH' => 'March', + 'APRIL' => 'April', + 'MAY' => 'May', + 'JUNE' => 'June', + 'JULY' => 'July', + 'AUGUST' => 'August', + 'SEPTEMBER' => 'September', + 'OCTOBER' => 'October', + 'NOVEMBER' => 'November', + 'DECEMBER' => 'December', + 'JAN' => 'Jan', + 'FEB' => 'Feb', + 'MAR' => 'Mar', + 'APR' => 'Apr', + 'JUN' => 'Jun', + 'JUL' => 'Jul', + 'AUG' => 'Aug', + 'SEP' => 'Sep', + 'OCT' => 'Oct', + 'NOV' => 'Nov', + 'DEC' => 'Dec', + ], + 'DAY' => 'Day', + 'DAYS' => 'Days', + 'DC_MAGNET' => 'Search in DC++ by filename', + 'DC_MAGNET_EXT' => 'Search in DC++ by extension', + 'DEACTIVATE_CONFIRM' => 'Are you sure you want to enable this user?', + 'DECLENSION' => [ + 'REPLIES' => [ + 'reply', + 'replies', + ], + 'TIMES' => [ + 'time', + 'times', + ], + ], + 'DEFAULT_QUOTA_LIMIT' => 'Default Quota Limit', + 'DEFAULT_QUOTA_LIMIT_EXPLAIN' => 'Here you are able to select the Default Quota Limit automatically assigned to newly registered Users and Users without an defined Quota Limit. The Option \'No Quota Limit\' is for not using any Attachment Quotas, instead using the default Settings you have defined within this Management Panel.', + 'DEL_EXISTING_SMILEYS' => 'Delete existing smileys before import', + 'DEL_LIST_INFO' => 'To delete an order from the list, click on the icon to the left of the names of any section', + 'DEL_LIST_MY_MESSAGE' => 'Delete the selected topic from the list', + 'DEL_LIST_MY_MESSAGE_INFO' => 'After removal of up to update the entire list it can be shown already deleted threads', + 'DEL_MOVE_TORRENT' => 'Are you sure you want to delete and move the topic?', + 'DEL_MY_MESSAGE' => 'Selected topics have been removed from the "My Messages"', + 'DEL_TORRENT' => 'Are you sure you want to delete the torrent?', + 'DELETE' => 'Delete', + 'DELETE_ALL' => 'Delete All', + 'DELETE_ALL_POSTS' => 'Delete all posts', + 'DELETE_ALL_TOPICS' => 'Delete all topics, including announcements and sticky', + 'DELETE_ATTACHMENT' => 'Delete Attachment', + 'DELETE_ATTACHMENTS' => 'Delete Attachments', + 'DELETE_DISALLOW' => 'Delete', + 'DELETE_DISALLOW_EXPLAIN' => 'You can remove a disallowed username by selecting the username from this list and clicking submit', + 'DELETE_DISALLOW_TITLE' => 'Remove a Disallowed Username', + 'DELETE_IMAGE' => 'Delete image', + 'DELETE_JOB' => 'Are you sure you want to delete cron job?', + 'DELETE_MARKED' => 'Delete Marked', + 'DELETE_MESSAGE' => 'Delete Message', + 'DELETE_MOVE_TORRENT' => 'Delete and move topic', + 'DELETE_OLD_GROUP_MOD' => 'Delete the old group moderator?', + 'DELETE_OLD_GROUP_MOD_EXPL' => 'If you\'re changing the group moderator, check this box to remove the old moderator from the group. Otherwise, do not check it, and the user will become a regular member of the group.', + 'DELETE_OWN_POSTS' => 'Sorry, but you can only delete your own posts', + 'DELETE_POLL' => 'Delete poll', + 'DELETE_POST' => 'Delete this post', + 'DELETE_POST_TXTB' => '[x]', + 'DELETE_POSTS' => 'Delete selected posts', + 'DELETE_POSTS_SUCCESFULLY' => 'The selected posts have been successfully removed', + 'DELETE_THUMBNAIL' => 'Delete Thumbnail', + 'DELETE_TOPIC' => 'Delete the topic', + 'DELETE_TORRENT' => 'Delete torrent', + 'DELETE_USER_ALL_POSTS' => 'Delete all user posts', + 'DELETE_USER_ALL_POSTS_CONFIRM' => 'Are you sure you want to delete all messages and all topics started by this user?', + 'DELETE_USER_POSTS' => 'Delete all messages, except for capital', + 'DELETE_USER_POSTS_CONFIRM' => 'Are you sure you want to delete all messages, except for capital?', + 'DELETE_USER_POSTS_ME' => 'Are you sure you want to delete all my posts?', + 'DELETED' => 'Your message has been deleted successfully.', + 'DELETED_ATTACHMENTS' => 'The selected Attachments have been deleted.', + 'DELETED_GROUP' => 'The group has been deleted successfully', + 'DELETED_POSTS' => '%s post(s) were deleted by your users during processing.', + 'DELTA_TIME' => [ + 'INTERVALS' => [ + 'seconds' => [ + 'second', + 'seconds', + ], + 'minutes' => [ + 'minute', + 'minutes', + ], + 'hours' => [ + 'hour', + 'hours', + ], + 'mday' => [ + 'day', + 'days', + ], + 'mon' => [ + 'month', + 'months', + ], + 'year' => [ + 'year', + 'years', + ], + ], + 'FORMAT' => '%1$s %2$s', + ], + 'DENY_SELECTED' => 'Deny Selected', + 'DESC' => 'Descending', + 'DESCRIPTION' => 'Description', + 'DESIGNER' => 'Designer', + 'DIRECTORY_DOES_NOT_EXIST' => 'The Directory \'%s\' does not exist or Could not be found.', + 'DIRECTORY_IS_NOT_A_DIR' => 'Please check if \'%s\' is a directory.', + 'DIRECTORY_NOT_WRITEABLE' => 'Directory \'%s\' is not writeable. You\'ll have to create the upload path and chmod it to 777 (or change the owner to you httpd-servers owner) to upload files.
If you have only plain FTP-access change the \'Attribute\' of the directory to rwxrwxrwx.', + 'DISABLE_BBCODE_PM' => 'Disable BBCode in this message', + 'DISABLE_BOARD' => 'Disable board', + 'DISABLE_BOARD_EXPLAIN' => 'Whether or not to disable your board while processing', + 'DISABLE_BOARD_EXPLAIN_ALREADY' => 'Your board is already disabled', + 'DISABLE_BOARD_EXPLAIN_ENABLED' => 'It will be enabled automatically after the end of processing', + 'DISABLE_MOD' => 'Disable Attachment Mod', + 'DISABLE_MOD_EXPLAIN' => 'This option is mainly for testing new templates or themes, it disables all Attachment Functions except the Admin Panel.', + 'DISABLE_SMILIES_PM' => 'Disable Smilies in this message', + 'DISABLED' => 'Disabled', + 'DISABLED_USER' => 'Account disabled', + 'DISABLED_USERS' => 'Disabled Users', + 'DISALLOW' => 'Disallow names', + 'DISALLOW_CONTROL' => 'Username Disallow Control', + 'DISALLOW_EXPLAIN' => 'Here you can control usernames which will not be allowed to be used. Disallowed usernames are allowed to contain a wildcard character of *. Please note that you will not be allowed to specify any username that has already been registered. You must first delete that name then disallow it.', + 'DISALLOW_SUCCESSFUL' => 'The disallowed username has been added successfully', + 'DISALLOWED' => 'Prohibited', + 'DISALLOWED_ACCESS' => 'Disallowed Access', + 'DISALLOWED_ALREADY' => 'The name you entered could not be disallowed. It either already exists in the list, exists in the word censor list, or a matching username is present.', + 'DISALLOWED_DELETED' => 'The disallowed username has been removed successfully', + 'DISALLOWED_EXTENSION' => 'The Extension %s is not allowed', + 'DISALLOWED_EXTENSION_WITHIN_FORUM' => 'You are not allowed to post Files with the Extension %s within this Forum', + 'DISPLAY_INLINED' => 'Display Images Inlined', + 'DISPLAY_INLINED_EXPLAIN' => 'Choose whether to display images directly within the post (yes) or to display images as a link ?', + 'DISPLAY_MESSAGES' => 'Display messages', + 'DISPLAY_POSTS' => 'Display posts', + 'DISPLAY_RESULTS_AS' => 'Display results as', + 'DISPLAY_TOPICS' => 'Display topics', + 'DISPLAYING_OPTIONS' => 'Displaying options', + 'DL_DL' => 'DL', + 'DL_DL_SPEED' => 'DL speed', + 'DL_FORMULA' => 'Formula: Uploaded/TorrentSize', + 'DL_INFO' => 'shows data only for the current session', + 'DL_LIST_AND_TORRENT_ACTIVITY' => 'DL-List and Torrent activity', + 'DL_LIST_DEL' => 'Clear DL-List', + 'DL_LIST_DEL_CONFIRM' => 'Delete DL-List for this topic?', + 'DL_PERCENT' => 'Complete percent', + 'DL_PORT' => 'Port', + 'DL_SPEED' => 'Overall download speed', + 'DL_STOPPED' => 'stopped', + 'DL_TORRENT' => 'Download .torrent', + 'DL_UL' => 'UL', + 'DL_UL_SPEED' => 'UL speed', + 'DL_ULR' => 'URL', + 'DL_UPD' => 'upd:', + 'DL_USER' => 'Username', + 'DLCANCEL' => 'Cancel', + 'DLCOMPLETE' => 'Complete', + 'DLDOWN' => 'Downloading', + 'DLWILL' => 'Will download', + 'DO_PRUNE' => 'Do Prune', + 'DONT_MESSAGE_TITLE' => 'You should specify message title', + 'DOUBLE_POST_ERROR' => 'You cannot make another post with the exact same text as your last.', + 'DOWNLOAD' => 'Download', + 'DOWNLOAD_INFO' => 'Download free and at maximum speed!', + 'DOWNLOAD_MODE' => 'Download Mode', + 'DOWNLOAD_NUMBER' => '%d times', + 'DOWNLOAD_PIC' => 'Downloadable pictures', + 'DOWNLOAD_TORRENT' => 'Download torrent', + 'DOWNLOADED' => 'Downloaded', + 'DOWNLOADS' => 'Downloads', + 'EDIT' => 'Edit', + 'EDIT_CATEGORY' => 'Edit Category', + 'EDIT_CATEGORY_EXPLAIN' => 'Use this form to modify a category\'s name.', + 'EDIT_DELETE_POST_TXTB' => '[Edit]', + 'EDIT_FORUM' => 'Edit forum', + 'EDIT_GROUP' => 'Edit group', + 'EDIT_MESSAGE' => 'Edit private message', + 'EDIT_MY_MESSAGE_LIST' => 'edit list', + 'EDIT_OWN_POSTS' => 'Sorry, but you can only edit your own posts', + 'EDIT_PM' => 'Edit message', + 'EDIT_POST' => 'Edit post', + 'EDIT_POST_AJAX' => 'You can not edit post with the status', + 'EDIT_POST_NOT_1' => 'You are not allowed', + 'EDIT_POST_NOT_2' => 'You can not', + 'EDIT_PROFILE' => 'Edit profile', + 'EDIT_TOPIC_TITLE' => 'Edit topic title', + 'EDIT_WORD_CENSOR' => 'Edit word censor', + 'EDITED' => 'The message has been changed', + 'EDITED_TIME_TOTAL' => 'Last edited by %s on %s; edited %d time in total', + 'EDITED_TIMES_TOTAL' => 'Last edited by %s on %s; edited %d times in total', + 'EFFECTIVE_DATE' => 'Effective Date', + 'EMAIL' => 'Email', + 'EMAIL_ADDRESS' => 'E-mail address', + 'EMAIL_BANNED' => 'Sorry, but %s address has been banned.', + 'EMAIL_EXPLAIN' => 'At this address you will be sent to complete the registration', + 'EMAIL_INVALID' => 'Sorry, but this e-mail address is invalid.', + 'EMAIL_MESSAGE_DESC' => 'This message will be sent as plain text, so do not include any HTML or BBCode. The return address for this message will be set to your e-mail address.', + 'EMAIL_SENT' => 'The e-mail has been sent.', + 'EMAIL_SETTINGS' => 'Email Settings', + 'EMAIL_SUCCESSFULL' => 'Your message has been sent', + 'EMAIL_TAKEN' => 'Sorry, but that e-mail address is already registered to a user.', + 'EMAIL_TOO_LONG' => 'Your email is too long.', + 'EMAILER_DISABLED' => 'Sorry, this feature is temporarily not working', + 'EMAILER_SUBJECT' => [ + 'EMPTY' => 'No Subject', + 'GROUP_ADDED' => 'You have been added to this usergroup', + 'GROUP_APPROVED' => 'Your request has been approved', + 'GROUP_REQUEST' => 'A request to join your group has been made', + 'PRIVMSG_NOTIFY' => 'New Private Message has arrived', + 'TOPIC_NOTIFY' => 'Topic Reply Notification %s', + 'USER_ACTIVATE' => 'Reactivate your account', + 'USER_ACTIVATE_PASSWD' => 'New password activation', + 'USER_WELCOME' => 'Welcome to %s Forums', + 'USER_WELCOME_INACTIVE' => 'Welcome to %s Forums', + ], + 'EMOTICONS' => 'Emoticons', + 'EMOTION' => 'Emotion', + 'EMPTY_ATTACH_ID' => 'Missing file identifier!', + 'EMPTY_FILE_ENTRY' => 'Empty File Entry', + 'EMPTY_MESSAGE' => 'You must enter a message', + 'EMPTY_MESSAGE_EMAIL' => 'You must enter a message to be e-mailed.', + 'EMPTY_POLL_TITLE' => 'You must enter a title for your poll', + 'EMPTY_SUBJECT' => 'You must specify a subject', + 'EMPTY_SUBJECT_EMAIL' => 'You must specify a subject for the e-mail.', + 'ENABLE_PRUNE' => 'Enable Forum Pruning', + 'ENABLED' => 'Enabled', + 'ENTER_PASSWORD' => 'Please enter username and password to log in.', + 'EQUALS' => 'Equals', + 'ERROR' => 'Error', + 'ERROR_BUILD' => 'The content of this torrent file can not be viewed on the site (it was not possible to build a list of files)', + 'ERROR_DELETED_ATTACHMENTS' => 'Could not delete Attachments.', + 'ERROR_EMPTY_ADD_ATTACHBOX' => 'You have to enter values in the \'Add an Attachment\' Box', + 'ERROR_FORM' => 'Invalid fields', + 'ERROR_IMAGESIZE' => 'The Attachment/Image must be less than %d pixels wide and %d pixels high', + 'ERROR_LOGIN' => 'The username you submitted is incorrect or invalid, or the password is invalid.', + 'ERROR_MISSING_OLD_ENTRY' => 'Unable to Update Attachment, could not find old Attachment Entry', + 'ERROR_NO_ATTACHMENT' => 'The selected Attachment does not exist anymore', + 'ERROR_PORNO_FORUM' => 'This type of forums (18+) was hidden in your profile by you', + 'ERROR_UPDATING_GROUPS' => 'There was an error while updating the groups', + 'EXCHANGE' => 'Exchange', + 'EXCHANGE_BONUS' => 'Exchange of seed bonuses', + 'EXCHANGE_NOT' => 'The exchange not available', + 'EXECUTION_TIME' => 'Execution time:', + 'EXPAND' => 'Expand', + 'EXPIRE_FACTOR' => 'Peer expire factor', + 'EXPIRE_FACTOR_EXPL' => 'Consider a peer dead if it has not announced in a number of seconds equal to this many times the calculated announce interval at the time of its last announcement (must be greater than 1)', + 'EXPLANATION' => 'Explanation', + 'EXPORT' => 'Export', + 'EXPORT_SMILE_PACK' => 'Create Smiley Pack', + 'EXPORT_SMILES' => 'To create a smiley pack from your currently installed smileys, click %sHere%s to download the smiles.pak file. Name this file appropriately making sure to keep the .pak file extension. Then create a zip file containing all of your smiley images plus this .pak configuration file.', + 'EXT_GROUP_PERMISSIONS' => 'Group Permissions', + 'EXTENSION' => 'Extension', + 'EXTENSION_CONTROL' => 'Extension Control', + 'EXTENSION_DISABLED_AFTER_POSTING' => 'The Extension \'%s\' was deactivated by an board admin, therefore this Attachment is not displayed.', + 'EXTENSION_EXIST' => 'The Extension %s already exist', + 'EXTENSION_EXIST_FORBIDDEN' => 'The Extension %s is defined in your allowed Extensions, please delete it their before you add it here.', // replace %s with the extension + 'EXTENSION_GROUP' => 'Extension Group', + 'EXTENSION_GROUP_EXIST' => 'The Extension Group %s already exist', + 'EXTENSION_GROUP_MANAGE' => 'Extension Groups Control', + 'EXTENSIONS' => 'Extensions', + 'FIELDS_EMPTY' => 'You must fill in the required fields.', + 'FILE_COMMENT' => 'File Comment', + 'FILE_NO_DATA' => 'The file at the URL you gave contains no data', + 'FILECOMMENT' => 'File Comment', + 'FILELIST' => 'Filelist', + 'FILENAME' => 'Filename', + 'FILESIZE' => 'Filesize', + 'FILTER_BY_NAME' => 'Filter by name ', + 'FIND' => 'Find', + 'FIND_USERNAME' => 'Find a username', + 'FINISHED' => 'Finished', + 'FLAG' => 'Flag', + 'FLOOD_EMAIL_LIMIT' => 'You cannot send another e-mail at this time. Try again later.', + 'FLOOD_ERROR' => 'You cannot make another post so soon after your last; please try again in a short while', + 'FLOOD_INTERVAL' => 'Flood Interval', + 'FLOOD_INTERVAL_EXPLAIN' => 'Number of seconds a user must wait between posts', + 'FONT_COLOR' => 'Font colour', + 'FONT_HUGE' => 'Huge', + 'FONT_LARGE' => 'Large', + 'FONT_NORMAL' => 'Normal', + 'FONT_SIZE' => 'Font size', + 'FONT_SMALL' => 'Small', + 'FONT_TINY' => 'Tiny', + 'FOR_NEW_TEMPLATE' => 'for new patterns!', + 'FORBIDDEN_EXTENSION_EXIST' => 'The forbidden Extension %s already exist', // replace %s with the extension + 'FORBIDDEN_EXTENSIONS' => 'Forbidden Extensions', + 'FORGOTTEN_PASSWORD' => 'Password forgotten?', + 'FORUM' => 'Forum', + 'FORUM_ADMIN' => 'ADMIN', + 'FORUM_ADMIN_EXPLAIN' => 'From this panel you can add, delete, edit, re-order and re-synchronise categories and forums', + 'FORUM_ADMIN_MAIN' => 'Forum Administration', + 'FORUM_ALL' => 'ALL', + 'FORUM_AUTH_EXPLAIN' => 'Here you can alter the authorisation levels of each forum. You will have both a simple and advanced method for doing this, where advanced offers greater control of each forum operation. Remember that changing the permission level of forums will affect which users can carry out the various operations within them.', + 'FORUM_AUTH_LIST_EXPLAIN' => 'This provides a summary of the authorisation levels of each forum. You can edit these permissions, using either a simple or advanced method by clicking on the forum name. Remember that changing the permission level of forums will affect which users can carry out the various operations within them.', + 'FORUM_AUTH_LIST_EXPLAIN_ADMIN' => 'Only administrators', + 'FORUM_AUTH_LIST_EXPLAIN_ALL' => 'All users', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_ANNOUNCE' => '%s can post announcements in this forum', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_ATTACHMENTS' => '%s can post attachments', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_DELETE' => '%s can delete posts in this forum', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_DOWNLOAD' => '%s can download attachments', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_EDIT' => '%s can edit posts in this forum', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_POLLCREATE' => '%s can create polls in this forum', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_POST' => '%s can post in this forum', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_READ' => '%s can read posts in this forum', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_REPLY' => '%s can reply to posts this forum', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_STICKY' => '%s can post sticky topics in this forum', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_VIEW' => '%s can view this forum', + 'FORUM_AUTH_LIST_EXPLAIN_AUTH_VOTE' => '%s can vote in polls in this forum', + 'FORUM_AUTH_LIST_EXPLAIN_MOD' => 'Only moderators of this forum', + 'FORUM_AUTH_LIST_EXPLAIN_PRIVATE' => 'Only users granted special permission', + 'FORUM_AUTH_LIST_EXPLAIN_REG' => 'All registered users', + 'FORUM_AUTH_UPDATED' => 'Forum permissions have been updated', + 'FORUM_CFG_EXPL' => 'Forum config', + 'FORUM_CFG_TITLE' => 'Forum settings', + 'FORUM_CONFIG' => 'Forum settings', + 'FORUM_DELETE' => 'Delete Forum', + 'FORUM_DELETE_EXPLAIN' => 'The form below will allow you to delete a forum (or category) and decide where you want to put all topics (or forums) it contained.', + 'FORUM_DESC' => 'Description', + 'FORUM_DISABLE' => 'Disable board', + 'FORUM_EDIT_DELETE_EXPLAIN' => 'The form below will allow you to customize all the general board options. For User and Forum configurations use the related links on the left hand side', + 'FORUM_FOR_NEW_TOPIC' => 'Forum for new topic', + 'FORUM_INDEX' => '%s Forum Index', + 'FORUM_LOCKED' => 'This forum is locked: you cannot post, reply to, or edit topics', + 'FORUM_LOCKED_MAIN' => 'Forum is locked', + 'FORUM_LOGS' => 'History Forum', + 'FORUM_MAP' => 'Forum\'s map', + 'FORUM_MOD' => 'MOD', + 'FORUM_NAME' => 'Forum name', + 'FORUM_NOT_EXIST' => 'The forum you selected does not exist.', + 'FORUM_PRIVATE' => 'PRIVATE', + 'FORUM_PRUNE' => 'Forum Prune', + 'FORUM_PRUNE_EXPLAIN' => 'This will delete any topic which has not been posted to within the number of days you select. If you do not enter a number then all topics will be deleted. It will not remove sticky topics and announcements. You will need to remove those topics manually.', + 'FORUM_PRUNING' => 'Auto-pruning', + 'FORUM_REG' => 'REG', + 'FORUM_RETURN' => 'Back to forum', + 'FORUM_S' => 'on forum', + 'FORUM_SETTINGS' => 'General Forum Settings', + 'FORUM_STATS' => 'Forum Statistics', + 'FORUM_STATUS' => 'Forum status', + 'FORUM_STYLE' => 'Forum style', + 'FORUMS' => 'Forum Admin', + 'FORUMS_DISABLE' => 'Disable board', + 'FORUMS_IN_CAT' => 'forums in that category', + 'FORUMS_MARKED_READ' => 'All forums flagged as read', + 'FORUMS_UPDATED' => 'Forum and Category information updated successfully', + 'FOUND_SEARCH_MATCH' => 'Search found %d match', + 'FOUND_SEARCH_MATCHES' => 'Search found %d matches', + 'FROM' => 'From', + 'GB' => 'GB', + 'GENDER' => 'Gender', + 'GENDER_SELECT' => [ + 0 => 'Unknown', + 1 => 'Male', + 2 => 'Female', + ], + 'GENERAL' => 'General Admin', + 'GENERAL_CONFIG' => 'General Configuration', + 'GENERAL_SETTINGS' => 'General Board Settings', + 'GENERAL_UPLOAD_ERROR' => 'Upload Error: Could not upload Attachment to %s.', + 'GO' => 'Go to', + 'GO_BACK' => 'Go back', + 'GO_TO_PAGE' => 'Go to page ...', + 'GO_TO_SECTION' => 'Goto section', + 'GOLD' => 'Gold', + 'GOLD_STATUS' => 'GOLD TORRENT! DOWNLOAD TRAFFIC DOES NOT CONSIDER!', + 'GOOD_UPDATE' => 'was successfully changed', + 'GOTO_MY_MESSAGE' => 'Close and return to the list "My Messages"', + 'GOTO_PAGE' => 'Go to page', + 'GOTO_QUOTED_POST' => 'Go to the quoted post', + 'GOTO_SHORT' => 'Page', + 'GREATER_THAN' => 'Greater than', + 'GROUP_ADDED' => 'You have been added to this usergroup.', + 'GROUP_ADMIN_EXPLAIN' => 'From this panel you can administer all your usergroups. You can delete, create and edit existing groups. You may choose moderators, toggle open/closed group status and set the group name and description', + 'GROUP_ADMINISTRATION' => 'Group Administration', + 'GROUP_APPROVED' => 'Your request has been approved.', + 'GROUP_AUTH_EXPLAIN' => 'Here you can alter the permissions and moderator status assigned to each user group. Do not forget when changing group permissions that individual user permissions may still allow the user entry to forums, etc. You will be warned if this is the case.', + 'GROUP_AUTH_UPDATED' => 'Group permissions have been updated', + 'GROUP_CLOSED' => 'Closed group', + 'GROUP_CONFIGURATION' => 'Group Configuration', + 'GROUP_CONTROL_PANEL' => 'User Groups', + 'GROUP_DELETE' => 'Delete group', + 'GROUP_DELETE_CHECK' => 'Delete this group', + 'GROUP_DESCRIPTION' => 'Group description', + 'GROUP_GOTO_CONFIG' => 'Go to Group Configuration panel', + 'GROUP_HIDDEN' => 'Hidden group', + 'GROUP_INFORMATION' => 'Group Information', + 'GROUP_JOINED' => 'You have successfully subscribed to this group.
You will be notified when your subscription is approved by the group moderator.', + 'GROUP_LIST_HIDDEN' => 'You are not authorized to view hidden groups', + 'GROUP_MEMBER_CLOSED' => 'Closed groups', + 'GROUP_MEMBER_HIDDEN' => 'Hidden groups', + 'GROUP_MEMBER_MEMBER' => 'Current memberships', + 'GROUP_MEMBER_MOD' => 'Group moderator', + 'GROUP_MEMBER_OPEN' => 'Open groups', + 'GROUP_MEMBER_PENDING' => 'Memberships pending', + 'GROUP_MEMBERS' => 'Group Members', + 'GROUP_MEMBERSHIP' => 'Group membership', + 'GROUP_MEMBERSHIPS' => 'Usergroup memberships', + 'GROUP_MODERATOR' => 'Group Moderator', + 'GROUP_NAME' => 'Group name', + 'GROUP_NOT_EXIST' => 'That user group does not exist', + 'GROUP_OPEN' => 'Open group', + 'GROUP_PERMISSIONS_EXPLAIN' => 'Here you are able to restrict the selected Extension Group to Forums of your choice (defined in the Allowed Forums Box). The Default is to allow Extension Groups to all Forums the User is able to Attach Files into (the normal way the Attachment Mod did it since the beginning). Just add those Forums you want the Extension Group (the Extensions within this Group) to be allowed there, the default ALL FORUMS will disappear when you add Forums to the List. You are able to re-add ALL FORUMS at any given Time. If you add a Forum to your Board and the Permission is set to ALL FORUMS nothing will change. But if you have changed and restricted the access to certain Forums, you have to check back here to add your newly created Forum. It is easy to do this automatically, but this will force you to edit a bunch of Files, therefore i have chosen the way it is now. Please keep in mind, that all of your Forums will be listed here.', + 'GROUP_PERMISSIONS_TITLE_ADMIN' => 'Extension Group Permissions -> \'%s\'', // Replace %s with the Groups Name + 'GROUP_REQUEST' => 'A request to join your group has been made.', + 'GROUP_RETURN' => 'Return to User Group page', + 'GROUP_SELECT' => 'Select a Group', + 'GROUP_SIGNATURE' => 'Group signature', + 'GROUP_STATUS' => 'Group status', + 'GROUP_TIME' => 'Created', + 'GROUP_TYPE' => 'Group type', + 'GROUP_TYPE_UPDATED' => 'Successfully updated group type.', + 'GROUPS' => 'Group Admin', + 'GROUPS_RELEASES' => 'Group\'s releases', + 'GUEST' => 'Guest', + 'GZIP_COMPRESSION' => 'Gzip compression', + 'HAPPY_BIRTHDAY' => 'Happy Birthday!', + 'HASH_INVALID' => 'Hash %s is invalid', + 'HASH_NOT_FOUND' => 'Release with hash %s not found', + 'HASH_S' => 'by info_hash', + 'HIDDEN' => 'Hidden', + 'HIDDEN_EMAIL' => '[ Hidden ]', + 'HIDDEN_GROUP_MEMBERS' => 'This group is hidden; you cannot view its membership', + 'HIDDEN_USER' => 'Hidden user', + 'HIDE' => 'hide', + 'HIDE_AVATARS' => 'Show avatars', + 'HIDE_CAT' => 'Hide categories', + 'HIDE_CAT_MESS' => 'Part of categories are hidden "options Show" · Show All', + 'HIDE_CONTENTS' => 'Hide the contents of {...}', + 'HIDE_DOWNLOADS' => 'Hide the current list of downloads on your profile', + 'HIDE_IN_TOPIC' => 'Hide', + 'HIDE_PORN_FORUMS' => 'Hide content 18+', + 'HIDE_USER' => 'Hide your online status', + 'HOME' => 'Home', + 'HOR_LINE' => 'Horizontal line (Ctrl+8)', + 'HOT_THRESHOLD' => 'Posts for Popular Threshold', + 'HOURS' => 'Hours', + 'HOW_TO_DOWNLOAD' => 'How to Download?', + 'ICQ' => 'ICQ', + 'ICQ_ERROR' => 'The field of "ICQ" may contain only icq number', + 'ICQ_TXTB' => '[ICQ]', + 'IDX_BROWSER_NSP_FRAME' => 'Sorry, your browser doesn\'t seem to support frames', + 'IDX_CLEAR_CACHE' => 'Clear Cache:', + 'IDX_CLEAR_DATASTORE' => 'Datastore', + 'IDX_CLEAR_NEWNEWS' => 'Net news', + 'IDX_CLEAR_TEMPLATES' => 'Templates', + 'IDX_SYNCHRONIZE' => 'Synchronize:', + 'IDX_SYNCHRONIZE_POSTCOUNT' => 'User posts count', + 'IDX_SYNCHRONIZE_TOPICS' => 'Topics', + 'IDX_UPDATE' => 'Update:', + 'IDX_UPDATE_USER_LEVELS' => 'User levels', + 'IGNORE_GIVEN_IP' => 'Ignore IP reported by client', + 'IMAGE_CREATE_THUMBNAIL' => 'Create Thumbnail', + 'IMAGE_CREATE_THUMBNAIL_EXPLAIN' => 'Always create a Thumbnail. This feature overrides nearly all Settings within this Special Category, except of the Maximum Image Dimensions. With this Feature a Thumbnail will be displayed within the post, the User can click it to open the real Image.
Please Note that this feature requires Imagick to be installed, if it\'s not installed or if Safe-Mode is enabled the GD-Extension of PHP will be used. If the Image-Type is not supported by PHP, this Feature will be not used.', + 'IMAGE_IMAGICK_PATH' => 'Imagick Program (Complete Path)', + 'IMAGE_IMAGICK_PATH_EXPLAIN' => 'Enter the Path to the convert program of imagick, normally /usr/bin/convert (on windows: c:/imagemagick/convert.exe).', + 'IMAGE_LINK_SIZE' => 'Image Link Dimensions', + 'IMAGE_LINK_SIZE_EXPLAIN' => 'If this defined Dimension of an Image is reached, the Image will be displayed as a Link, rather than displaying it inlined,
if Inline View is enabled (Width x Height in pixels).
If it is set to 0x0, this feature is disabled. With some Images this Feature will not work due to limitations in PHP.', + 'IMAGE_MIN_THUMB_FILESIZE' => 'Minimum Thumbnail Filesize', + 'IMAGE_MIN_THUMB_FILESIZE_EXPLAIN' => 'If a Image is smaller than this defined Filesize, no Thumbnail will be created, because it\'s small enough.', + 'IMAGE_SEARCH_IMAGICK' => 'Search Imagick', + 'IMG_TITLE' => 'Insert image: [img]http://image_url[/img] (Ctrl+R)', + 'IMPORT' => 'Import Smileys', + 'IMPORT_SMILE_PACK' => 'Import Smiley Pack', + 'IN_MY_POSTS' => 'In my posts', + 'IN_THE_LAST' => 'in the last', + 'INBOX' => 'Inbox', + 'INBOX_SIZE' => 'Your Inbox is
%d%% full', + 'INCOMPLETE_URL' => 'The URL you entered is incomplete', + 'INDEX_RETURN' => 'Back to home page', + 'INDEXER' => 'Reindex search', + 'INDIVIDUAL' => 'Has the individual rights', + 'INFO_ESTIMATED_VALUES' => '(*) All the estimated values are calculated approximately
based on the current completed percent and may not represent the actual final values.
As the completed percent increases the estimated values will come closer to the actual ones.', + 'INFO_PROCESSING_ABORTED' => 'You last aborted the processing at post_id %s (%s processed posts) on %s', + 'INFO_PROCESSING_ABORTED_SOON' => 'Please wait some mins before you continue...', + 'INFO_PROCESSING_FINISHED' => 'You successfully finished the processing (%s processed posts) on %s', + 'INFO_PROCESSING_FINISHED_NEW' => 'You successfully finished the processing at post_id %s (%s processed posts) on %s,
but there have been %s new post(s) after that date', + 'INFO_PROCESSING_STOPPED' => 'You last stopped the processing at post_id %s (%s processed posts) on %s', + 'INFORMATION' => 'Information', + 'INS_NAME_TIP' => 'Insert name or selected text.', + 'INTERESTS' => 'Interests', + 'INVALID_ANN_URL' => 'Invalid Announce URL [%s]

must be %s', + 'INVALID_ATTACH_ID' => 'Missing file identifier!', + 'INVALID_DATE' => 'Error date', + 'INVALID_EXTENSION' => 'Invalid Extension', + 'INVALID_FILENAME' => '%s is an invalid filename', + 'INVALID_TOPIC_ID' => 'Topic Absent!', + 'INVALID_TOPIC_ID_DB' => 'Topic does not exist in the database!', + 'INVERT_SELECT' => 'Invert selection', + 'IP_ADDRESS' => 'IP Address', + 'IP_HOSTNAME' => 'IP addresses', + 'IP_INFO' => 'IP Information', + 'IS_MODERATOR' => 'Is Moderator', + 'IS_REGISTERED' => 'Registered', + 'IT_WILL_BE_DOWN' => 'it will start to be considered after it will be downloaded', + 'ITALIC' => 'Italic text: [i]text[/i] (Ctrl+I)', + 'ITEMS_REQUIRED' => 'Items marked with a * are required unless stated otherwise.', + 'JAVASCRIPT_ON' => 'Heads necessary to send messages to enable JavaScript', + 'JAVASCRIPT_ON_REGISTER' => 'To register, heads necessary to enable JavaScript', + 'JOB_REMOVED' => 'The problem has been removed successfully', + 'JOIN_A_GROUP' => 'Join a Group', + 'JOINED' => 'Joined', + 'JUMPBOX_TITLE' => 'Select forum', + 'JUSTIFY' => 'Fit to width', + 'KB' => 'KB', + 'KEEP_EXISTING' => 'Keep Existing Smiley', + 'LAST_ACTIVITY' => 'Last activity', + 'LAST_CHANGED_BY' => 'Last changed by', + 'LAST_IP' => 'Last IP:', + 'LAST_RUN' => 'Last Run', + 'LAST_UPDATED' => 'Last Updated', + 'LAST_VISIT' => 'Last Visit', + 'LAST_VISITED' => 'Last Visited', + 'LASTPOST' => 'Last Post', + 'LATEST' => 'Latest', + 'LATEST_NEWS' => 'Latest news', + 'LATEST_RELEASES' => 'Latest releases', + 'LEAVE_SHADOW_TOPIC' => 'Leave shadow topic in old forum.', + 'LEECH_EXPIRE_FACTOR' => 'Leech expire factor', + 'LEECH_EXPIRE_FACTOR_EXPL' => 'Treat a peer as active for this number of minutes even if it sent "stopped" event after starting dl
0 - take into account "stopped" event', + 'LEECHER' => 'Leecher', + 'LEECHERS' => 'Leechers', + 'LEECHING' => 'Leech', + 'LEECHS' => 'Leech', + 'LEFT' => 'To the left', + 'LESS_THAN' => 'Less than', + 'LIMIT' => 'Limit:', + 'LIMIT_ACTIVE_TOR' => 'Limit active torrents', + 'LIMIT_ACTIVE_TOR_HEAD' => 'Limits', + 'LIMIT_CONCURRENT_IPS' => "Limit concurrent IP's", + 'LIMIT_CONCURRENT_IPS_EXPL' => 'per torrent limit', + 'LIMIT_LEECH_COUNT' => 'Leeching limit', + 'LIMIT_LEECH_COUNT_EXPL' => '(0 - no limit)', + 'LIMIT_LEECH_IPS' => 'Leeching IP limit', + 'LIMIT_LEECH_IPS_EXPL' => "allow leeching from no more than xx IP's
0 - no limit", + 'LIMIT_SEED_COUNT' => 'Seeding limit', + 'LIMIT_SEED_COUNT_EXPL' => '(0 - no limit)', + 'LIMIT_SEED_IPS' => 'Seeding IP limit', + 'LIMIT_SEED_IPS_EXPL' => "allow seeding from no more than xx IP's
0 - no limit", + 'LINKS_ARE_FORBIDDEN' => 'Links are forbidden', + 'LIST' => 'List', + 'LIST_ITEM' => 'Ordered list: [list=]text[/list] (Ctrl+O)', + 'LIST_TITLE' => 'List: [list]text[/list] (Ctrl+l)', + 'LOADING' => 'Loading...', + 'LOCATION' => 'Location', + 'LOCK' => 'Lock', + 'LOCK_TOPIC' => 'Lock the topic', + 'LOCKED_WARN' => 'You posted into locked topic!', + 'LOG_ACTION' => [ + 'LOG_TYPE' => [ + 'mod_topic_delete' => 'Topic:
deleted', + 'mod_topic_move' => 'Topic:
moved', + 'mod_topic_lock' => 'Topic:
closed', + 'mod_topic_unlock' => 'Topic:
opened', + 'mod_topic_split' => 'Topic:
split', + 'mod_post_delete' => 'Post:
deleted', + 'adm_user_delete' => 'User:
deleted', + 'adm_user_ban' => 'User:
ban', + 'adm_user_unban' => 'User:
unban', + ], + ], + 'LOG_ENABLED' => 'Log enabled', + 'LOG_FILE' => 'Log file', + 'LOG_FILE_EXPL' => 'the file for save the log', + 'LOG_SQL_QUERIES' => 'Log SQL queries', + 'LOGIN' => 'Log in', + 'LOGIN_RESET_TIME' => 'Login lock time', + 'LOGIN_RESET_TIME_EXPLAIN' => 'Time in minutes the user have to wait until he is allowed to login again after exceeding the number of allowed login attempts.', + 'LOGIN_TO_JOIN' => 'Log in to join or manage group memberships', + 'LOGOUT' => 'Log out', + 'LOGS' => 'Topic history', + 'LONGEVITY' => 'Longevity', + 'LOOK_UP_FORUM' => 'Look up Forum', + 'LOOK_UP_GROUP' => 'Look up group', + 'LOOK_UP_USER' => 'Look up user', + 'LOOKUP_IP' => 'Look up IP address', + 'MAGNET' => 'Magnet', + 'MAIN_INDEX' => 'Forum Index', + 'MANAGE' => 'Management', + 'MANAGE_ATTACHMENTS_EXPLAIN' => 'Here you can configure the Main Settings for the Attachment Mod. If you press the Test Settings Button, the Attachment Mod does a few System Tests to be sure that the Mod will work properly. If you have problems with uploading Files, please run this Test, to get a detailed error-message.', + 'MANAGE_CATEGORIES' => 'Manage Special Categories', + 'MANAGE_CATEGORIES_EXPLAIN' => 'Here you can configure the Special Categories. You can set up Special Parameters and Conditions for the Special Categorys assigned to an Extension Group.', + 'MANAGE_EXTENSION_GROUPS' => 'Manage Extension Groups', + 'MANAGE_EXTENSION_GROUPS_EXPLAIN' => 'Here you can add, delete and modify your Extension Groups, you can disable Extension Groups, assign a special Category to them, change the download mechanism and you can define a Upload Icon which will be displayed in front of an Attachment belonging to the Group.', + 'MANAGE_EXTENSIONS' => 'Manage Extensions', + 'MANAGE_EXTENSIONS_EXPLAIN' => 'Here you can manage your File Extensions. If you want to allow/disallow a Extension to be uploaded, please use the Extension Groups Management.', + 'MANAGE_FORBIDDEN_EXTENSIONS' => 'Manage Forbidden Extensions', + 'MANAGE_FORBIDDEN_EXTENSIONS_EXPLAIN' => 'Here you can add or delete the forbidden extensions. The Extensions php, php3 and php4 are forbidden by default for security reasons, you can not delete them.', + 'MANAGE_QUOTAS' => 'Manage Attachment Quota Limits', + 'MANAGE_QUOTAS_EXPLAIN' => 'Here you are able to add/delete/change Quota Limits. You are able to assign these Quota Limits to Users and Groups later. To assign a Quota Limit to a User, you have to go to Users->Management, select the User and you will see the Options at the bottom. To assign a Quota Limit to a Group, go to Groups->Management, select the Group to edit it, and you will see the Configuration Settings. If you want to see, which Users and Groups are assigned to a specific Quota Limit, click on \'View\' at the left of the Quota Description.', + 'MANAGE_USER' => 'Administration', + 'MARK' => 'Mark', + 'MARK_ALL' => 'Mark all', + 'MARK_ALL_FORUMS_READ' => 'Flag all forums as read', + 'MARK_TOPICS_READ' => 'Mark all topics read', + 'MASS_EMAIL' => 'Mass Email', + 'MASS_EMAIL_EXPLAIN' => 'Here you can email a message to either all of your users or all users of a specific group. To do this, an email will be sent out to the administrative email address supplied, with a blind carbon copy sent to all recipients. If you are emailing a large group of people please be patient after submitting and do not stop the page halfway through. It is normal for a mass emailing to take a long time and you will be notified when the script has completed', + 'MAX_ATTACHMENTS' => 'Maximum Number of Attachments', + 'MAX_ATTACHMENTS_EXPLAIN' => 'The maximum number of attachments allowed in one post.', + 'MAX_ATTACHMENTS_PM' => 'Maximum number of Attachments in one Private Message', + 'MAX_ATTACHMENTS_PM_EXPLAIN' => 'Define the maximum number of attachments the user is allowed to include in a private message.', + 'MAX_FILESIZE_ATTACH' => 'Filesize', + 'MAX_FILESIZE_ATTACH_EXPLAIN' => 'Maximum filesize for Attachments. A value of 0 means \'unlimited\'. This Setting is restricted by your Server Configuration. For example, if your php Configuration only allows a maximum of 2 MB uploads, this cannot be overwritten by the Mod.', + 'MAX_FILESIZE_PM' => 'Maximum Filesize in Private Messages Folder', + 'MAX_FILESIZE_PM_EXPLAIN' => 'Maximum Disk Space Attachments can use up in each User\'s Private Message box. A value of 0 means \'unlimited\'.', + 'MAX_GROUPS_FILESIZE' => 'Maximum Filesize', + 'MAX_IMAGE_SIZE' => 'Maximum Image Dimensions', + 'MAX_IMAGE_SIZE_EXPLAIN' => 'Here you can define the maximum allowed Image Dimension to be attached (Width x Height in pixels).
If it is set to 0x0, this feature is disabled. With some Images this Feature will not work due to limitations in PHP.', + 'MAX_LOGIN_ATTEMPTS' => 'Allowed login attempts', + 'MAX_LOGIN_ATTEMPTS_EXPLAIN' => 'The number of allowed board login attempts.', + 'MAX_NEWS_TITLE' => 'Max. length of the news', + 'MAX_POLL_OPTIONS' => 'Max number of poll options', + 'MAX_SIG_LENGTH' => 'Maximum signature length', + 'MAX_SIG_LENGTH_EXPLAIN' => 'Maximum number of characters in user signatures', + 'MAX_SMILIES_PER_POST' => 'Emoticons limit of %s emoticons exceeded.', + 'MAX_SPEED' => 'Speed', + 'MB' => 'MB', + 'MC_COMMENT' => [ + 0 => [ + 'title' => '', + 'type' => 'Delete comment', + ], + 1 => [ + 'title' => 'Comment from %s', + 'type' => 'Comment', + ], + 2 => [ + 'title' => 'Information from %s', + 'type' => 'Information', + ], + 3 => [ + 'title' => 'Warning from %s', + 'type' => 'Warning', + ], + 4 => [ + 'title' => 'Violation from %s', + 'type' => 'Violation', + ], + ], + 'MC_COMMENT_PM_MSG' => "Hello, [b]%s[/b]\nModerator left in your message [url=%s][b]%s[/b][/url][quote]\n%s\n[/quote]", + 'MC_COMMENT_PM_SUBJECT' => '%s in your message', + 'MC_FAQ' => 'Entered text will be displayed under this message', + 'MC_LEGEND' => 'Type a comment', + 'MC_TITLE' => 'Comment Moderation', + 'MEMBER_THIS_GROUP' => 'You are a member of this group', + 'MEMBERLIST' => 'Memberlist', + 'MEMBERS_IN_GROUP' => 'Members in group', + 'MEMBERSHIP_DETAILS' => 'Group Membership Details', + 'MEMBERSHIP_IN' => 'Membership in', + 'MEMORY' => 'Mem:', + 'MESSAGE' => 'Message', + 'MESSAGE_SENT' => 'Your message has been sent.', + 'MOD_CP' => 'Moderator Control Panel', + 'MOD_CP_EXPLAIN' => 'Using the form below you can perform mass moderation operations on this forum. You can lock, unlock, move or delete any number of topics.', + 'MODERATE_FORUM' => 'Moderate this forum', + 'MODERATE_POST' => 'Moderate posts', + 'MODERATE_POST_TXTB' => '[m]', + 'MODERATE_TOPIC' => 'Moderate this topic', + 'MODERATOR' => 'Moderator', + 'MODERATOR_STATUS' => 'Moderator status', + 'MODERATORS' => 'Moderators', + 'MODERATORS_OF' => 'Moderators of', + 'MODS' => 'Modifications', + 'MODS_EXPLAIN' => 'This form allows you to adjust the modifications', + 'MODULE_OFF' => 'Module is disabled!', + 'MORE_DAYS_OLD' => 'More than this many days old', + 'MORE_EMOTICONS' => 'View more Emoticons', + 'MORE_RELEASES' => 'Find all releases of the group', + 'MOVE' => 'Move', + 'MOVE_AND_DELETE' => 'Move and Delete', + 'MOVE_CONTENTS' => 'Move all contents', + 'MOVE_DOWN' => 'Move down', + 'MOVE_TO_FORUM' => 'Move to forum', + 'MOVE_TOPIC' => 'Move the topic', + 'MOVE_UP' => 'Move up', + 'MUST_DELETE_FORUMS' => 'You need to delete all forums before you can delete this category', + 'MUST_ENTER_WORD' => 'You must enter a word and its replacement', + 'MUST_SELECT_RANK' => 'You must select a rank', + 'MY_BONUS' => 'My bonus (%s bonuses in stock)', + 'MY_DOWNLOADS' => 'My Downloads', + 'NEED_TO_LOGIN_FIRST' => 'You need to login first', + 'NETWORK_NEWS' => 'Network news', + 'NEVER' => 'Never', + 'NEW' => 'New', + 'NEW_ACCOUNT_SUBJECT' => 'New user account', + 'NEW_FORUM' => 'New forum', + 'NEW_LINE' => 'New line', + 'NEW_PASSWORD' => 'New password', + 'NEW_PASSWORD_ACTIVATION' => 'New password activation', + 'NEW_PMS_DECLENSION' => [ + 'new message', + 'new messages', + ], + 'NEW_PMS_FORMAT' => '%1$s %2$s', + 'NEW_POLL_ADDED' => 'Poll added', + 'NEW_POLL_ALREADY' => 'Theme already has a poll', + 'NEW_POLL_DAYS' => 'The time of the poll (%s days from the moment of creation theme) already ended', + 'NEW_POLL_DELETE' => 'Poll deleted', + 'NEW_POLL_END' => 'Poll completed', + 'NEW_POLL_ENDED' => 'This poll has already been completed', + 'NEW_POLL_M_EXPLAIN' => 'Each row corresponds to one answer (max', + 'NEW_POLL_M_TITLE' => 'Title of poll', + 'NEW_POLL_M_VOTES' => 'Options', + 'NEW_POLL_RESULTS' => 'Poll changed and the old results deleted', + 'NEW_POLL_START' => 'Poll enabled', + 'NEW_POLL_U_CHANGE' => 'Edit poll', + 'NEW_POLL_U_EDIT' => 'Change the poll (the old results will be deleted)', + 'NEW_POLL_U_END' => 'Finish poll', + 'NEW_POLL_U_NOSEL' => 'You have not selected that vote', + 'NEW_POLL_U_START' => 'Enable poll', + 'NEW_POLL_U_VOTED' => 'All voted', + 'NEW_POLL_VOTES' => 'You must enter a correct response options (minimum 2, maximum is %s)', + 'NEW_POST' => 'New post', + 'NEW_POSTS' => 'New posts', + 'NEW_POSTS_HOT' => 'New posts [ Popular ]', + 'NEW_POSTS_LOCKED' => 'New posts [ Locked ]', + 'NEW_POSTS_PREVIEW' => 'Topic has new, edited or unread posts', + 'NEW_RELEASE' => 'New release', + 'NEW_THREADS' => 'New Threads', + 'NEW_TOPIC_TITLE' => 'New topic title', + 'NEW_TOPICS' => 'New topics', + 'NEW_USER_REG_DISABLED' => 'Sorry, registration is disabled at this time', + 'NEW_WINDOW' => 'in a new window', + 'NEWEST' => 'Newest', + 'NEWEST_FIRST' => 'Newest First', + 'NEWEST_USER' => 'The newest registered user is %s', + 'NEWS_COUNT' => 'How many news show', + 'NEWS_FORUM_ID' => 'From what forums to display
Of the several forums raises, separated by commas. Example 1,2,3
', + 'NEXT' => 'Continue', + 'NEXT_PAGE' => 'Next', + 'NEXT_RUN' => 'Next Run', + 'NO' => 'No', + 'NO_ASSIGNED_RANK' => 'No special rank assigned', + 'NO_ATTACH_SEARCH_MATCH' => 'No Attachments met your search criteria', + 'NO_ATTACHMENT_SELECTED' => 'You haven\'t selected an attachment to download or view.', + 'NO_BANNED_EMAIL' => 'No banned email addresses', + 'NO_BANNED_IP' => 'No banned IP addresses', + 'NO_BANNED_USERS' => 'No banned usernames', + 'NO_CONNECTION_URL' => 'A connection could not be made to the URL you gave', + 'NO_DISALLOWED' => 'No Disallowed Usernames', + 'NO_EMAIL_MATCH' => 'The e-mail address you supplied does not match the one listed for that username.', + 'NO_FILE_COMMENT_AVAILABLE' => 'No File Comment available', + 'NO_FOLDER' => 'Please specify the folder', + 'NO_FORUMS' => 'This board has no forums', + 'NO_GROUP_ACTION' => 'No action was specified', + 'NO_GROUP_ID_SPECIFIED' => 'Group ID is not specified', + 'NO_GROUP_MEMBERS' => 'This group has no members', + 'NO_GROUP_MODE' => 'You must specify a mode for this group, open or closed', + 'NO_GROUP_MODERATOR' => 'You must specify a moderator for this group', + 'NO_GROUP_NAME' => 'You must specify a name for this group', + 'NO_GROUPS_EXIST' => 'No Groups Exist', + 'NO_LONGER_WATCHING' => 'You are no longer following this topic', + 'NO_MATCH' => 'No matches found.', + 'NO_MESSAGES_FOLDER' => 'There are no messages in this folder', + 'NO_MODE' => 'No mode was set', + 'NO_NEW_PM' => 'no new messages', + 'NO_NEW_POSTS' => 'No new posts', + 'NO_NEW_POSTS_HOT' => 'No new posts [ Popular ]', + 'NO_NEW_POSTS_LAST_VISIT' => 'No new posts since your last visit', + 'NO_NEWER_TOPICS' => 'There are no newer topics in this forum', + 'NO_OLDER_TOPICS' => 'There are no older topics in this forum', + 'NO_PENDING_GROUP_MEMBERS' => 'This group has no pending members', + 'NO_PM_ID' => 'Please specify post ID', + 'NO_POST_ID' => 'You must select a post to edit', + 'NO_POST_MODE' => 'No post mode selected', + 'NO_POSTS' => 'No posts', + 'NO_POSTS_TOPIC' => 'There are no posts in this topic', + 'NO_QUOTA_LIMIT' => 'No Quota Limit', + 'NO_SEARCH_MATCH' => 'No topics or posts met your search criteria', + 'NO_SEARCHABLE_FORUMS' => 'You do not have permissions to search any forum on this site.', + 'NO_SEND_ACCOUNT' => 'Sorry, but your password cannot be retrieved. Please contact the forum administrator for more information', + 'NO_SEND_ACCOUNT_INACTIVE' => 'Sorry, but your password cannot be retrieved because your account is currently inactive', + 'NO_SUCH_FOLDER' => 'Folder is not found', + 'NO_SUCH_POST' => 'There is no such post. Please return and try again', + 'NO_SUCH_USER' => 'Sorry, but no such user exists.', + 'NO_TEXT_SEL' => 'Select a text anywhere on a page and try again', + 'NO_THEMES' => 'No Themes In database', + 'NO_TO_USER' => 'You must specify a username to whom to send this message.', + 'NO_TOPIC_ID' => 'You must select a topic to reply to', + 'NO_TOPICS_MOVED' => 'No topics were moved.', + 'NO_TOPICS_MY_MESSAGE' => 'No topics found in the list of your posts (maybe you have already removed them)', + 'NO_TOPICS_POST_ONE' => 'There are no posts in this forum.
Click on the Post New Topic link on this page to post one.', + 'NO_TOPICS_REMOVED' => 'No topics were removed.', + 'NO_UPDATE_RANKS' => 'The rank has been deleted successfully. However, user accounts using this rank were not updated. You will need to manually reset the rank on these accounts', + 'NO_USER_ID_SPECIFIED' => 'Sorry, but that user does not exist.', + 'NO_USER_SPECIFIED' => 'No user was specified', + 'NO_VALID_MODE' => 'You can only post, reply, edit, or quote messages. Please return and try again', + 'NO_VOTE_OPTION' => 'You must specify an option when voting', + 'NO_WATCHED_TOPICS' => 'You are not watching any topics', + 'NO_WORD_SELECTED' => 'No word selected for editing', + 'NOAVATAR' => 'No avatar', + 'NOBIRTHDAY_TODAY' => 'No users have a birthday today', + 'NOBIRTHDAY_WEEK' => 'No users are having a birthday in the upcoming %d days', // %d is substitude with the number of days + 'NONE' => 'None', + 'NONE_SELECTED' => 'You have none selected to perform this operation on. Please go back and select at least one.', + 'NOSELECT' => 'No select', + 'NOT_A_RELEASE_GROUP' => 'This group is not a release group', + 'NOT_ADMIN' => 'You are not authorised to administer this board', + 'NOT_ASSIGNED' => 'Not Assigned', + 'NOT_AUTHORISED' => 'Not Authorised', + 'NOT_AVAILABLE' => 'Not available', + 'NOT_BANNED' => 'Not Banned', + 'NOT_DAYS' => 'Prune days not selected', + 'NOT_EDIT_TOR_STATUS' => 'You can not edit release with the status', + 'NOT_FOUND' => 'File not found', + 'NOT_GROUP_MODERATOR' => 'You are not this group\'s moderator, therefore you cannot perform that action.', + 'NOT_LOGGED_IN' => 'You must be logged in to join a group.', + 'NOT_MODERATOR' => 'You are not a moderator of this forum.', + 'NOT_POST' => 'Absent Message', + 'NOT_SEL_CHAPTERS' => 'You have not selected topics', + 'NOT_TORRENT' => 'This file is not torrent', + 'NOTE_ADMIN_EMPTY_GROUP_PERMISSIONS' => 'NOTE:
Within the below listed Forums your Users are normally allowed to attach files, but since no Extension Group is allowed to be attached there, your Users are unable to attach anything. If they try, they will receive Error Messages. Maybe you want to set the Permission \'Post Files\' to ADMIN at these Forums.

', + 'NOTHING' => 'do nothing', + 'NOTHING_HAS_CHANGED' => 'Nothing has been changed', + 'NOTICE' => '!ATTENTION!', + 'NOTIFICATION_SUBJECT' => 'New Private Message has been recieved!', + 'NOTIFY' => 'Notify me when on replies', + 'NOTIFY_ON_PRIVMSG' => 'Notify on new private message', + 'NOWHERE_TO_MOVE' => 'Nowhere to move to', + 'NUM_OF_POSTS' => 'Number of posts', + 'NUM_OF_POSTS_EXPLAIN' => 'Number of total posts to process
It\'s automatically filled with the number of total/remaining posts found in the db', + 'NUMBER_OF_ATTACHMENTS' => 'Number of Attachments', + 'NUMBER_PMS_ATTACH' => 'Total Number of Attachments in Private Messages', + 'NUMBER_POSTS' => 'Number of posts', + 'NUMBER_POSTS_ATTACH' => 'Number of Posts with Attachments', + 'NUMBER_TOPICS' => 'Number of topics', + 'NUMBER_TOPICS_ATTACH' => 'Number of Topics with Attachments', + 'NUMBER_USERS' => 'Number of users', + 'NUMBER_USERS_ATTACH' => 'Independent Users Posted Attachments', + 'NUMWANT' => 'Numwant value', + 'NUMWANT_EXPL' => 'number of peers being sent to client', + 'OCCUPATION' => 'Occupation', + 'OFF' => 'off', + 'OFF_REASON' => 'Disable reason', + 'OFF_REASON_EXPL' => 'this message will be sent to client when the tracker is disabled', + 'OFF_TRACKER' => 'Disable tracker', + 'OLD' => 'Old', + 'OLD_BROWSER' => 'You are using an outdated browser. The website will not display correctly.', + 'OLDEST_FIRST' => 'Oldest First', + 'ON' => 'on', + 'ONLINE_ADMIN' => 'Administrator', + 'ONLINE_EXPLAIN' => 'users active over the past five minutes', + 'ONLINE_GROUP_MEMBER' => 'Group member', + 'ONLINE_MOD' => 'Moderator', + 'ONLINE_USERS' => 'In total there are %1$d users online: %2$d registered and %3$d guests', + 'ONLY_1_TOR_PER_POST' => 'You can register only one torrent in one post', + 'ONLY_1_TOR_PER_TOPIC' => 'You can register only one torrent in one topic', + 'ONLY_FOR_ADMIN' => 'This option only for admins', + 'ONLY_FOR_MOD' => 'This option only for moderators', + 'ONLY_FOR_SUPER_ADMIN' => 'This option only for super admins', + 'ONLY_NEW_POSTS' => 'only new posts', + 'ONLY_NEW_TOPICS' => 'only new topics', + 'ONLY_ONE_AVATAR' => 'Only one type of avatar can be specified', + 'OPEN_IN_SAME_WINDOW' => 'open in same window', + 'OPEN_TOPIC' => 'Open topic', + 'OPEN_TOPICS' => 'Open topics', + 'OPTIONS' => 'Options', + 'ORDER' => 'Order', + 'OTHER' => 'Other', + 'OTHER_IP' => 'Other IP:', + 'OTHER_IP_THIS_USER' => 'Other IP addresses this user has posted from', + 'OTHERS' => 'others', + 'OUTBOX' => 'Outbox', + 'OUTBOX_EXPL' => '', + 'PAGE_OF' => 'Page %d of %s', + 'PARTY' => 'Party:', + 'PASSKEY_ERR_EMPTY' => 'Could not add passkey (passkey is empty)

Go to your forum profile and generate it', + 'PASSKEY_ERR_TOR_NOT_REG' => 'Could not add passkey

Torrent not registered on tracker', + 'PASSWORD' => 'Password', + 'PASSWORD_ACTIVATED' => 'Your account has been re-activated. To log in, please use the password supplied in the e-mail you received.', + 'PASSWORD_CONFIRM_IF_CHANGED' => 'You only need to confirm your password if you changed it above', + 'PASSWORD_IF_CHANGED' => 'You only need to supply a password if you want to change it', + 'PASSWORD_LONG' => 'Your password must be no more than 32 characters.', + 'PASSWORD_MISMATCH' => 'The passwords you entered did not match.', + 'PASSWORD_UPDATED' => 'A new password has been created; please check your e-mail for details on how to activate it.', + 'PEERS_STAT' => 'Peers: %s,  Seeders: %s,  Leechers: %s', + 'PENDING_MEMBERS' => 'Pending Members', + 'PENDING_THIS_GROUP' => 'Your membership of this group is pending', + 'PERCENT' => 'Percent', + 'PERCENT_COMPLETED' => '%s %% completed', + 'PERM_ALL_FORUMS' => 'ALL FORUMS', + 'PERMISSIONS' => 'Permissions', + 'PERMISSIONS_LIST' => 'Permissions List', + 'PHP_INFO' => 'Information about PHP', + 'PIECE_LENGTH' => 'Piece length', + 'PLAY_ON_CURPAGE' => 'Start playing on current page', + 'PM' => 'PM', + 'PM_ATTACHMENTS' => 'Allow Attachments in Private Messages', + 'PM_ATTACHMENTS_EXPLAIN' => 'Allow/Disallow attaching files to Private Messages.', + 'PM_DISABLED' => 'Private messaging has been disabled on this board.', + 'PM_QUOTA' => 'PM Quota', + 'POLL_DELETE' => 'Your poll has been deleted successfully.', + 'POLL_FOR' => 'Run poll for', + 'POLL_FOR_EXPLAIN' => '[ Enter 0 or leave blank for a never-ending poll ]', + 'POLL_OPTION' => 'Poll option', + 'POLL_QUESTION' => 'Poll question', + 'POLLCREATE' => 'Poll create', + 'POST' => 'Post', + 'POST_A_NEW_TOPIC' => 'Post new topic', + 'POST_A_REPLY' => 'Post new reply', + 'POST_ANNOUNCEMENT' => 'Announcement', + 'POST_DOWNLOAD' => 'Download', + 'POST_EDIT_CANNOT' => 'Sorry, but you cannot edit posts', + 'POST_HAS_NO_POLL' => 'This post has no poll', + 'POST_IMAGES' => 'Post images', + 'POST_LINK' => 'Post link', + 'POST_NEW_PM' => 'Post message', + 'POST_NEW_RELEASE' => 'Post new release', + 'POST_NEW_TOPIC' => 'Post new topic', + 'POST_NORMAL' => 'Normal', + 'POST_PIN' => 'Pin first post', + 'POST_PINNED' => 'First post pinned', + 'POST_QUOTE_PM' => 'Quote message', + 'POST_REGULAR_TOPIC' => 'Post regular topic', + 'POST_RELEASE_FROM_GROUP' => 'Post release from group', + 'POST_REPLY_PM' => 'Reply to message', + 'POST_RETURN' => 'Go to post', + 'POST_STICKY' => 'Sticky', + 'POST_SUBJECT' => 'Post subject', + 'POST_TIME' => 'Post Time', + 'POST_TOPIC_AS' => 'Post topic as', + 'POST_UNPIN' => 'Unpin first post', + 'POST_UNPINNED' => 'First post unpinned', + 'POSTCOUNT' => 'Postcount', + 'POSTED' => 'Posted', + 'POSTED_AFTER' => 'after', + 'POSTED_ARTICLES_TOTAL' => 'Our users have posted a total of %s articles', + 'POSTED_ARTICLES_ZERO_TOTAL' => 'Our users have posted a total of 0 articles', + 'POSTED_ATTACHMENTS' => 'Posted Attachments', + 'POSTED_IN_TOPIC' => 'Posted in Topic', + 'POSTED_TOPICS_TOTAL' => 'Our users have posted a total of %s topics', + 'POSTER_RANK' => 'Poster rank', + 'POSTS' => 'Posts', + 'POSTS_LAST_CYCLE' => 'Processed post(s) on last cycle', + 'POSTS_PER_CYCLE' => 'Posts per cycle', + 'POSTS_PER_CYCLE_EXPLAIN' => 'Number of posts to process per cycle
Keep it low to avoid php/webserver timeouts', + 'POSTS_PER_DAY' => 'Posts per day', + 'POSTS_PER_PAGE' => 'Posts Per Page', + 'POSTS_PRUNED' => 'Posts pruned', + 'POSTS_SHORT' => 'Posts', + 'PREFERENCES' => 'Preferences', + 'PREMOD_HELP' => '

Pre-moderation

If you do not have distributions to the status of v, #, or T in this section, including subsections, the distribution will automatically receive this status
', + 'PREVIEW' => 'Preview', + 'PREVIOUS_PAGE' => 'Previous', + 'PRICE' => 'Price', + 'PRIVATE' => 'Private', + 'PRIVATE_MESSAGE' => 'Private Message', + 'PRIVATE_MESSAGES' => 'Private Messages', + 'PRIVATE_MESSAGING' => 'Private Messaging', + 'PROCEED' => 'Proceed', + 'PROCESS_DETAILS' => 'from %s to %s (out of total %s)', + 'PROCESSED_POST_IDS' => 'Processed post ids : %s - %s', + 'PROCESSED_POSTS' => 'Processed Posts', + 'PROCESSING' => 'Processing...', + 'PROCESSING_NEXT_POSTS' => 'Processing next %s post(s). Please wait...', + 'PROCESSING_POST_DETAILS' => 'Processing post', + 'PROCESSING_TIME' => 'Processing time', + 'PROCESSING_TIME_DETAILS' => 'Current session details', + 'PROFILE' => 'Profile', + 'PROFILE_EDIT_RETURN' => 'Return to editing', + 'PROFILE_INFO' => 'Profile Information', + 'PROFILE_INFO_WARN' => 'Publicly available information', + 'PROFILE_NOT_FOUND' => 'Profile not found', + 'PROFILE_RETURN' => 'Go to the profile', + 'PROFILE_UPDATED' => 'Your profile has been updated', + 'PROFILE_UPDATED_INACTIVE' => 'Your profile has been updated. However, you have changed vital details, thus your account is inactive now. Check your e-mail to find out how to reactivate your account, or if admin activation is required, wait for the administrator to reactivate it.', + 'PROFILE_USER' => 'Viewing profile', + 'PRUNE' => 'Pruning', + 'PRUNE_DAYS' => 'Remove topics that have not been posted to in', + 'PRUNE_SUCCESS' => 'Forum has been pruned successfully', + 'PRUNE_TOPICS_NOT_POSTED' => 'Prune topics with no replies in this many days', + 'PUBLIC' => 'Public', + 'PUBLIC_VIEW_EMAIL' => 'Show e-mail address in my profile', + 'QR_ATTACHSIG' => 'Attach signature', + 'QR_COLOR_SEL' => 'Font color', + 'QR_DISABLE' => 'Disable', + 'QR_FONT_SEL' => 'Font face', + 'QR_NOTIFY' => 'Notify on reply', + 'QR_SIZE_SEL' => 'Font size', + 'QR_USERNAME' => 'Name', + 'QUERIES' => 'queries', + 'QUESTION' => 'Are you sure want to delete?', + 'QUICK_REPLY' => 'Quick Reply', + 'QUOTA_LIMIT_EXIST' => 'The Quota Limit %s exist already.', + 'QUOTA_LIMITS' => 'Quota Limits', + 'QUOTE' => 'Quote', + 'QUOTE_SEL' => 'Quote selected', + 'QUOTE_SELECTED' => 'Quote selected', + 'QUOTE_TITLE' => 'Quote text: [quote]text[/quote] (Ctrl+Q)', + 'RANK_ADDED' => 'The rank has been added successfully', + 'RANK_IMAGE' => 'Rank Image', + 'RANK_IMAGE_EXPLAIN' => 'Use this to define a small image associated with the rank', + 'RANK_IMAGES' => 'Rank images', + 'RANK_REMOVED' => 'The rank has been deleted successfully', + 'RANK_TITLE' => 'Rank Title', + 'RANK_UPDATED' => 'The rank has been updated successfully', + 'RANKS' => 'Ranks', + 'RANKS_EXPLAIN' => 'Using this form you can add, edit, view and delete ranks. You can also create custom ranks which can be applied to a user via the user management facility', + 'RANKS_TITLE' => 'Rank Administration', + 'RATINGS_AND_LIMITATIONS' => 'Ratings and Limitations', + 'REACHED_ON_ERROR' => 'You have reached this page in error.', + 'REACTIVATE' => 'Reactivate your account!', + 'READ' => 'Read', + 'READ_MESSAGE' => 'Read message', + 'READ_PM' => 'Read message', + 'READ_PROFILE' => 'View user\'s profile', + 'READ_PROFILE_TXTB' => '[Profile]', + 'REASON' => 'Reason', + 'REBUILD_SEARCH' => 'Rebuild Search Index', + 'REBUILD_SEARCH_ABORTED' => 'Rebuild search aborted at post_id %s.

If you aborted while processing was on, you have to wait for some mins until you run Rebuild Search again, so the last cycle can finish.', + 'REBUILD_SEARCH_DESC' => 'This mod will index every post in your forum, rebuilding the search tables. You can stop whenever you like and the next time you run it again you\'ll have the option of continuing from where you left off.

It may take a long time to show its progress (depending on "Posts per cycle" and "Time limit"), so please do not move from its progress page until it is complete, unless of course you want to interrupt it.', + 'REBUILD_SEARCH_INDEX' => 'Rebuild search index', + 'REBUILD_SEARCH_PROGRESS' => 'Rebuild Search Progress', + 'RECIPIENT' => 'Recipient', + 'RECIPIENTS' => 'Recipients', + 'RECORD_ONLINE_USERS' => 'The most users ever online was %s on %s', + 'REFRESH_RATE' => 'Refresh rate', + 'REFRESH_RATE_EXPLAIN' => 'How much time (secs) to stay idle before moving to next processing cycle
Usually you don\'t have to change this', + 'REG_IP' => 'Registration IP:', + 'REG_NOT_ALLOWED_IN_THIS_FORUM' => 'Could not register torrent in this forum', + 'REG_TORRENTS' => 'Register torrents', + 'REGENERATE' => 'Regenerate', + 'REGISTER' => 'Register', + 'REGISTERED' => 'Registered', + 'REGISTERED_IN_TIME' => 'At the moment registration is closed

You can register from 01:00 to 17:00 MSK (now ' . date('H:i') . ' MSK)

We apologize for this inconvenience', + 'REGISTERED_USERS' => 'Registered Users:', + 'REGISTERED_USERS_TOTAL' => 'We have %s registered users', + 'REGISTERED_USERS_ZERO_TOTAL' => 'We have 0 registered users', + 'REGISTRATION' => 'Registration Agreement Terms', + 'REGISTRATION_INFO' => 'Registration Information', + 'RELEASE' => 'Release Templates', + 'RELEASE_FROM_RG' => 'Release was prepared by', + 'RELEASE_GROUP' => 'Release Group', + 'RELEASE_TEMPLATES' => 'Release Templates', + 'RELEASE_WELCOME' => 'Pleae fill in the releae form', + 'RELEASED' => 'Released', + 'RELEASER' => 'Releaser', + 'RELEASES' => 'Releases', + 'RELEASING' => 'Self', + 'REMEMBER' => 'Remember', + 'REMOVE' => 'Remove', + 'REMOVE_SELECTED' => 'Remove Selected', + 'REMOVED' => 'Removed', + 'REPAIR_CRON' => 'Repair Cron', + 'REPLACE_EXISTING' => 'Replace Existing Smiley', + 'REPLACEMENT' => 'Replacement', + 'REPLIES' => 'Replies', + 'REPLIES_SHORT' => 'Replies', + 'REPLY' => 'Reply', + 'REPLY_TO_TOPIC' => 'Reply to topic', + 'REPLY_WITH_QUOTE' => 'Reply with quote', + 'REPLY_WITH_QUOTE_TXTB' => '[Quote]', + 'RESET' => 'Reset', + 'RESET_AUTOLOGIN' => 'Reset autologin key', + 'RESET_AUTOLOGIN_EXPL' => 'including all the places you\'ve visited the forum enabled auto-login', + 'RESET_GROUP_CHANGES' => 'Reset Changes', + 'RESTORE_ALL_POSTS' => 'Restore all posts', + 'RESYNC' => 'Resync', + 'RETURN_CONFIG' => '%sReturn to Configuration%s', + 'RETURN_FIRST' => 'Return first', + 'RETURN_PROFILE' => 'Return to profile', + 'RIGHT' => 'To the right', + 'ROLE' => 'Role:', + 'RULES_ATTACH_CAN' => 'You can attach files in this forum', + 'RULES_ATTACH_CANNOT' => 'You cannot attach files in this forum', + 'RULES_DELETE_CAN' => 'You can delete your posts in this forum', + 'RULES_DELETE_CANNOT' => 'You cannot delete your posts in this forum', + 'RULES_DOWNLOAD_CAN' => 'You can download files in this forum', + 'RULES_DOWNLOAD_CANNOT' => 'You cannot download files in this forum', + 'RULES_EDIT_CAN' => 'You can edit your posts in this forum', + 'RULES_EDIT_CANNOT' => 'You cannot edit your posts in this forum', + 'RULES_MODERATE' => 'You can moderate this forum', + 'RULES_POST_CAN' => 'You can post new topics in this forum', + 'RULES_POST_CANNOT' => 'You cannot post new topics in this forum', + 'RULES_REPLY_CAN' => 'You can reply to topics in this forum', + 'RULES_REPLY_CANNOT' => 'You cannot reply to topics in this forum', + 'RULES_VOTE_CAN' => 'You can vote in polls in this forum', + 'RULES_VOTE_CANNOT' => 'You cannot vote in polls in this forum', + 'RUN_COUNTER' => 'Run counter', + 'RUN_DAY' => 'Run day', + 'RUN_DAY_EXPL' => 'the day when this job run', + 'RUN_INTERVAL' => 'Run interval', + 'RUN_INTERVAL_EXPL' => 'e.g. 00:10:00', + 'RUN_MAIN_CRON' => 'Start cron', + 'RUN_ORDER' => 'Run order', + 'RUN_TIME' => 'Run time', + 'RUN_TIME_EXPL' => 'the time when this job run (e.g. 05:00:00)', + 'SAVE' => 'Save', + 'SAVE_MARKED' => 'Save Marked', + 'SAVE_MESSAGE' => 'Save Message', + 'SAVEBOX' => 'Savebox', + 'SAVEBOX_SIZE' => 'Your Savebox is
%d%% full', + 'SAVED' => 'Saved', + 'SCHEDULE' => [ + 'select' => '» Select start', + 'hourly' => 'hourly', + 'daily' => 'daily', + 'weekly' => 'weekly', + 'monthly' => 'monthly', + 'interval' => 'interval', + ], + 'SCREENSHOTS_RULES' => 'Read the rules laid out screenshots!', + 'SCREENSHOTS_RULES_TOPIC' => 'Read the rules laid out the screenshots in this section!', + 'SCRIPT_DUPLICATE' => 'Script ' . @$_POST['cron_script'] . ' already exists!', + 'SEARCH' => 'Search', + 'SEARCH_ALL_WORDS' => 'all words', + 'SEARCH_AUTHOR' => 'Search for Author', + 'SEARCH_AUTHOR_EXPL' => 'Use * as a wildcard for partial matches', + 'SEARCH_DL_CANCEL' => 'Canceled', + 'SEARCH_DL_COMPLETE' => 'Completed', + 'SEARCH_DL_COMPLETE_DOWNLOADS' => 'Completed Downloads', + 'SEARCH_DL_DOWN' => 'Current', + 'SEARCH_DL_WILL' => 'Planned', + 'SEARCH_DL_WILL_DOWNLOADS' => 'Planned Downloads', + 'SEARCH_EMAIL_EXPLAIN' => 'Enter an expression to match a user\'s email address. This is case insensitive. If you want to do a partial match, use * (an asterix) as a wildcard.', + 'SEARCH_ERROR' => 'At the moment, the search engine is not available

Try to repeat the request after several seconds', + 'SEARCH_FOR_ADMINS' => 'Searching Administrators', + 'SEARCH_FOR_BANNED' => 'Searching banned users', + 'SEARCH_FOR_DATE' => 'Searching users who joined %s %d/%d/%d', + 'SEARCH_FOR_DISABLED' => 'Searching for disabled users', + 'SEARCH_FOR_EMAIL' => 'Searching email addresses matching %s', + 'SEARCH_FOR_GROUP' => 'Searching group members of %s', + 'SEARCH_FOR_IP' => 'Searching IP addresses matching %s', + 'SEARCH_FOR_LANGUAGE' => 'Searching for users who have set %s as their language', + 'SEARCH_FOR_LASTVISITED_AFTERTHELAST' => 'Searching for users who have visited after the last %s %s', + 'SEARCH_FOR_LASTVISITED_INTHELAST' => 'Searching for users who have visited in the last %s %s', + 'SEARCH_FOR_MODERATORS' => 'Search for moderators of the Forum -> %s', + 'SEARCH_FOR_MODS' => 'Searching Moderators', + 'SEARCH_FOR_POSTCOUNT_EQUALS' => 'Searching for users with a post count value of %d', + 'SEARCH_FOR_POSTCOUNT_GREATER' => 'Searching for users with a post count greater than %d', + 'SEARCH_FOR_POSTCOUNT_LESSER' => 'Searching for users with a post count less than %d', + 'SEARCH_FOR_POSTCOUNT_RANGE' => 'Searching for users with a post count between %d and %d', + 'SEARCH_FOR_RANK' => 'Searching carriers rank of %s', + 'SEARCH_FOR_STYLE' => 'Searching for users who have set %s as their style', + 'SEARCH_FOR_TIMEZONE' => 'Searching for users who have set UTC %s as their timezone', + 'SEARCH_FOR_USERFIELD_ICQ' => 'Searching for users with a ICQ address matching %s', + 'SEARCH_FOR_USERFIELD_INTERESTS' => 'Searching for users with their Interests field matching %s', + 'SEARCH_FOR_USERFIELD_LOCATION' => 'Searching for users with a Location matching %s', + 'SEARCH_FOR_USERFIELD_OCCUPATION' => 'Searching for users with their Occupation field matching %s', + 'SEARCH_FOR_USERFIELD_SKYPE' => 'Searching for users with an Skype matching %s', + 'SEARCH_FOR_USERFIELD_TWITTER' => 'Searching for users with an Twitter matching %s', + 'SEARCH_FOR_USERFIELD_WEBSITE' => 'Searching for users with an Website matching %s', + 'SEARCH_FOR_USERNAME' => 'Searching usernames matching %s', + 'SEARCH_HELP_URL' => 'Search Help', + 'SEARCH_IN_FORUMS' => 'Search in Forums', + 'SEARCH_IN_TOPIC' => 'search in topic...', + 'SEARCH_INVALID' => 'Invalid Search', + 'SEARCH_INVALID_DATE' => 'Invalid Date entered to Search', + 'SEARCH_INVALID_DAY' => 'The day you entered was invalid', + 'SEARCH_INVALID_EMAIL' => 'Invalid email address entered to Search', + 'SEARCH_INVALID_GROUP' => 'Invalid Group entered to Search', + 'SEARCH_INVALID_IP' => 'Invalid IP address entered to Search', + 'SEARCH_INVALID_LANGUAGE' => 'Invalid Language Selected', + 'SEARCH_INVALID_LASTVISITED' => 'Invalid data entered for Last Visited search', + 'SEARCH_INVALID_MODERATORS' => 'Invalid Forum Selected', + 'SEARCH_INVALID_MONTH' => 'The month you entered was invalid', + 'SEARCH_INVALID_POSTCOUNT' => 'Invalid Post Count entered to Search', + 'SEARCH_INVALID_RANK' => 'Invalid rank entered to Search', + 'SEARCH_INVALID_TIMEZONE' => 'Invalid Timezone Selected', + 'SEARCH_INVALID_USERFIELD' => 'Invalid Userfield data entered', + 'SEARCH_INVALID_USERNAME' => 'Invalid username entered to Search', + 'SEARCH_INVALID_YEAR' => 'The year you entered was invalid', + 'SEARCH_IP_EXPLAIN' => 'Search for users by a specific IP address (xxx.xxx.xxx.xxx).', + 'SEARCH_LATEST' => 'Latest topics', + 'SEARCH_MY_MSG_ONLY' => 'Search only in my posts', + 'SEARCH_MY_TOPICS' => 'in my topics', + 'SEARCH_NEW' => 'View newest posts', + 'SEARCH_NO_RESULTS' => 'No users match your selected criteria. Please try another search. If you\'re searching the username or email address fields, for partial matches you must use the wildcard * (an asterix).', + 'SEARCH_OFF' => 'Search is temporarily disabled', + 'SEARCH_OPTIONS' => 'Search Options', + 'SEARCH_PREVIOUS' => 'Search previous', + 'SEARCH_QUERY' => 'Search Query', + 'SEARCH_RELEASES' => 'Releases', + 'SEARCH_S' => 'search...', + 'SEARCH_SELF' => 'My posts', + 'SEARCH_SELF_BY_LAST' => 'last post time', + 'SEARCH_SELF_BY_MY' => 'my post time', + 'SEARCH_TERMS' => 'Search terms', + 'SEARCH_TITLES_ONLY' => 'Search topic titles only', + 'SEARCH_UNANSWERED' => 'View unanswered posts', + 'SEARCH_UNANSWERED_SHORT' => 'unanswered', + 'SEARCH_USER_POSTS' => 'Find posts', + 'SEARCH_USER_POSTS_SHORT' => 'Find user posts', + 'SEARCH_USER_POSTS_TXTB' => '[Search]', + 'SEARCH_USER_TOPICS' => 'Find user topics', + 'SEARCH_USERNAME_EXPLAIN' => 'Here you can perform a case insensitive search for usernames. If you would like to match part of the username, use * (an asterix) as a wildcard.', + 'SEARCH_USERS_ADVANCED' => 'Advanced User Search', + 'SEARCH_USERS_EXPLAIN' => 'This Module allows you to perform advanced searches for users on a wide range of criteria. Please read the descriptions under each field to understand each search option completely.', + 'SEARCH_USERS_GROUPS_EXPLAIN' => 'View all members of the selected group.', + 'SEARCH_USERS_JOINED' => 'Users that joined', + 'SEARCH_USERS_JOINED_EXPLAIN' => 'Search for users the join Before or After (and on) a specific date. The date format is YYYY/MM/DD.', + 'SEARCH_USERS_LANGUAGE_EXPLAIN' => 'This will display users whom have selected a specific language in their Profile', + 'SEARCH_USERS_LASTVISITED' => 'Users whom have visited', + 'SEARCH_USERS_LASTVISITED_EXPLAIN' => 'You can search for users based on their last login date using this search option', + 'SEARCH_USERS_MISC_EXPLAIN' => 'Administrators - All users with Administrator powers; Moderators - All forum moderators; Banned Users - All accounts that have been banned on these forums; Disabled Users - All users with disabled accounts (either manually disabled or never verified their email address); Users with disabled PMs - Selects users who have the Private Messages priviliges removed (Done via User Management)', + 'SEARCH_USERS_MODERATORS_EXPLAIN' => 'Search for users with Moderating permissions to a specific forum. Moderating permissions are recoginised either by User Permissions or by being in a Group with the right Group Permssions.', + 'SEARCH_USERS_NEW' => '%s yielded %d result(s). Perform another search.', + 'SEARCH_USERS_POSTCOUNT_EXPLAIN' => 'You can search for users based on the Postcount value. You can either search by a specific value, greater than or lesser than a value or between two values. To do the range search, select "Equals" then put the beginning and ending values of the range separated by a dash (-), e.g. 10-15', + 'SEARCH_USERS_RANKS_EXPLAIN' => 'View all carriers of the selected rank.', + 'SEARCH_USERS_STYLE_EXPLAIN' => 'Display users who have selected a specific style.', + 'SEARCH_USERS_TIMEZONE_EXPLAIN' => 'Users who have selected a specific timezone in their profile', + 'SEARCH_USERS_USERFIELD_EXPLAIN' => 'Search for users based on various profile fields. Wildcards are supported using an asterix (*).', + 'SEARCH_WILDCARD_EXPLAIN' => 'Use * as a wildcard for partial matches', + 'SEARCH_WORDS' => 'Search for Keywords', + 'SEARCH_WORDS_EXPL' => 'You can use + to define words which must be in the results and - to define words which should not be in the result (ex: "+word1 -word2"). Use * as a wildcard for partial matches', + 'SEC' => 'sec', + 'SEED_BONUS' => 'Seed bonus', + 'SEED_BONUS_ADD' => '

Adding seed bonus

Number of distributions are handed out by the user and the size of bonuses for them (charging times an hour)
', + 'SEED_BONUS_EXCHANGE' => 'Configuring Exchange Sid Bonuses', + 'SEED_BONUS_POINTS' => 'bonuses in an hour', + 'SEED_BONUS_RELEASE' => 'to N-number of releases', + 'SEED_BONUS_ROPORTION' => 'Proportion addition for an exchange of bonuses on GB', + 'SEED_BONUS_TOR_SIZE' => '

Minimum distribution for which will be awarded bonuses

If you want to calculate bonuses for all distribution, leave blank.
', + 'SEED_BONUS_USER_REGDATA' => '

Minimum length of user tracker, after which will be awarded bonuses

If you want to accrue bonuses to all users, leave blank.
', + 'SEED_BONUS_WARNING' => 'ATTENTION! Seed Bonuses should be in ascending order', + 'SEED_NOT_SEEN' => 'Seeder not seen', + 'SEEDER' => 'Seeder', + 'SEEDER_LAST_SEEN' => 'Seeder not seen: %s', + 'SEEDERS' => 'Seeders', + 'SEEDING' => 'Seed', + 'SEEDS' => 'Seed', + 'SEL_CHAPTERS' => 'Link to the selected partitions', + 'SEL_CHAPTERS_HELP' => 'You can select a maximum %s partition', + 'SELECT' => 'Select', + 'SELECT_A_FORUM' => 'Select a Forum', + 'SELECT_ACTION' => 'Select action', + 'SELECT_AVATAR' => 'Select avatar', + 'SELECT_CAT' => 'Select category', + 'SELECT_CATEGORY' => 'Select category', + 'SELECT_EMAIL' => 'Select an Email address', + 'SELECT_FORUM' => 'Select forum', + 'SELECT_GROUP' => 'Select a group', + 'SELECT_INVERT' => 'select / invert', + 'SELECT_IP' => 'Select an IP address', + 'SELECT_PAK' => 'Select Pack (.pak) File', + 'SELECT_POSTS_PER_PAGE' => 'posts per page', + 'SELECT_USERNAME' => 'Select a Username', + 'SELF_MODERATED' => 'Users can move their topics to another forum', + 'SEND_A_NEW_MESSAGE' => 'Send a new private message', + 'SEND_A_REPLY' => 'Reply to a private message', + 'SEND_EMAIL' => 'Send e-mail', + 'SEND_EMAIL_MSG' => 'Send an e-mail message', + 'SEND_EMAIL_TXTB' => '[E-mail]', + 'SEND_MESSAGE' => 'Send message', + 'SEND_PASSWORD' => 'Send me a new password', + 'SEND_PM' => 'Send PM', + 'SEND_PM_TXTB' => '[PM]', + 'SEND_PRIVATE_MESSAGE' => 'Send private message', + 'SENT' => 'Sent', + 'SENTBOX' => 'Sentbox', + 'SENTBOX_SIZE' => 'Your Sentbox is
%d%% full', + 'SESSION_EXPIRED' => 'Session expired', + 'SET_DEFAULTS' => 'Restore defaults', + 'SET_DL_STATUS' => 'Download', + 'SET_GOLD_TORRENT' => 'Make gold', + 'SET_PRUNE_DATA' => 'You have turned on auto-prune for this forum but did not set a number of days to prune. Please go back and do so.', + 'SET_SILVER_TORRENT' => 'Make silver', + 'SETTINGS_CAT_FLASH' => 'Settings for Special Category: Flash Files', + 'SETTINGS_CAT_IMAGES' => 'Settings for Special Category: Images', + 'SF_NO_PARENT' => 'No parent forum', + 'SF_PARENT_FORUM' => 'Parent forum', + 'SF_SHOW_ON_INDEX' => 'Show on main page', + 'SHADOW_ATTACHMENTS' => 'Shadow Attachments', + 'SHADOW_ATTACHMENTS_EXPLAIN' => 'Here you can delete attachment data from postings when the files are missing from your filesystem, and delete files that are no longer attached to any postings. You can download or view a file if you click on it; if no link is present, the file does not exist.', + 'SHADOW_ATTACHMENTS_FILE_EXPLAIN' => 'Delete all attachments files that exist on your filesystem and are not assigned to an existing post.', + 'SHADOW_ATTACHMENTS_ROW_EXPLAIN' => 'Delete all posting attachment data for files that don\'t exist on your filesystem.', + 'SHOT_RANK' => 'Shot rank', + 'SHOW' => 'Show', + 'SHOW_ALL_FORUMS_ON_ONE_PAGE' => 'Show all forums on one page', + 'SHOW_APCP' => 'Use the new control panel applications', + 'SHOW_APCP_EXPLAIN' => 'Choose whether you want to use a separate control panel applications (yes), or the old method with two boxes for applications and editing applications (none) in the message box. It is difficult to explain how it looks, so try for yourself.', + 'SHOW_CAPTION' => 'Show your signature', + 'SHOW_COLUMN' => 'Show column', + 'SHOW_CURSOR' => 'highlight the row under the cursor', + 'SHOW_DL_BUTTONS' => 'Show buttons for manually changing DL-status', + 'SHOW_DL_LIST' => 'Show DL-List', + 'SHOW_MOD_HOME_PAGE' => 'Show on moderators the index.php', + 'SHOW_ONLINE_USERLIST' => 'Show the list of online users', + 'SHOW_ONLY' => 'Show only', + 'SHOW_OPENED' => 'Show opened', + 'SHOW_TIME_TOPICS' => 'show time of the creation topics', + 'SIGNATURE' => 'Signature', + 'SIGNATURE_DISABLE' => 'Signed off for violation of forum rules', + 'SIGNATURE_ERROR_HTML' => 'The signature can contain only BBCode', + 'SIGNATURE_EXPLAIN' => 'This is a block of text that can be added to posts you make. There is a %d character limit', + 'SIGNATURE_TOO_LONG' => 'Your signature is too long.', + 'SIGNATURES' => 'Signatures', + 'SILVER' => 'Silver', + 'SILVER_STATUS' => 'SILVER TORRENT! DOWNLOAD TRAFFIC PARTIALLY CONSIDERED!', + 'SIMPLE_MODE' => 'Simple Mode', + 'SIMPLE_PERMISSION' => 'Simple Permissions', + 'SITE_DESC' => 'Site description', + 'SITE_NAME' => 'Site name', + 'SITEMAP' => 'Sitemap', + 'SITEMAP_ADD_EXP_1' => 'You can specify additional pages on your site which should be included in your sitemap file that you creating.', + 'SITEMAP_ADD_EXP_2' => 'Each reference must begin with http(s):// and a new line!', + 'SITEMAP_ADD_PAGE' => 'Additional pages', + 'SITEMAP_ADD_TITLE' => 'Additional pages for sitemap', + 'SITEMAP_ADMIN' => 'Manage sitemap', + 'SITEMAP_AVAILABLE' => 'and is available at', + 'SITEMAP_BING_1' => 'Register your site at Bing Webmaster using your Microsoft account.', + 'SITEMAP_BING_2' => 'Add sitemap of site you registered in its settings.', + 'SITEMAP_CREATE' => 'Create / update the sitemap', + 'SITEMAP_CREATED' => 'Sitemap created', + 'SITEMAP_ERROR' => 'sending error', + 'SITEMAP_GOOGLE_1' => 'Register your site at Google Webmaster using your Google account.', + 'SITEMAP_GOOGLE_2' => 'Add sitemap of site you registered.', + 'SITEMAP_NOT_CREATED' => 'Sitemap is not yet created', + 'SITEMAP_NOTIFY' => 'Notify search engines about new version of sitemap', + 'SITEMAP_NOTIFY_SEARCH' => 'Notification of the search engine', + 'SITEMAP_OPTIONS' => 'Options', + 'SITEMAP_SENT' => 'send completed', + 'SITEMAP_WHAT_NEXT' => 'What to do next?', + 'SITEMAP_YANDEX_1' => 'Register your site at Yandex Webmaster using your Yandex account.', + 'SITEMAP_YANDEX_2' => 'Add sitemap of site you registered.', + 'SIZE' => 'Size', + 'SIZE_CURRENT' => 'Current', + 'SIZE_DATABASE' => 'Database size', + 'SIZE_ESTIMATED' => 'Estimated after finish', + 'SIZE_GREATER_THAN' => 'Attachment size greater than (bytes)', + 'SIZE_SEARCH_TABLES' => 'Search Tables size', + 'SIZE_SMALLER_THAN' => 'Attachment size smaller than (bytes)', + 'SKYPE' => 'Skype', + 'SKYPE_ERROR' => 'You entered an invalid Skype login', + 'SMILE' => 'Smile', + 'SMILE_ADD' => 'Add a new Smiley', + 'SMILE_CONFLICTS' => 'What should be done in case of conflicts', + 'SMILE_DESC' => 'From this page you can add, remove and edit the emoticons or smileys that your users can use in their posts and private messages.', + 'SMILEY_ADD_SUCCESS' => 'The Smiley has been added successfully', + 'SMILEY_CODE' => 'Smiley Code', + 'SMILEY_CONFIG' => 'Smiley Configuration', + 'SMILEY_DEL_SUCCESS' => 'The Smiley has been removed successfully', + 'SMILEY_EDIT_SUCCESS' => 'The Smiley has been updated successfully', + 'SMILEY_EMOT' => 'Smiley Emotion', + 'SMILEY_IMPORT' => 'Smiley Pack Import', + 'SMILEY_IMPORT_INST' => 'You should unzip the smiley package and upload all files to the appropriate Smiley directory for your installation. Then select the correct information in this form to import the smiley pack.', + 'SMILEY_IMPORT_SUCCESS' => 'The Smiley Pack has been imported successfully!', + 'SMILEY_TITLE' => 'Smiles Editing Utility', + 'SMILEY_URL' => 'Smiley Image File', + 'SMILIES' => 'Smilies', + 'SMILIES_PATH' => 'Smilies Storage Path', + 'SMILIES_PATH_EXPLAIN' => 'Path under your TorrentPier root dir, e.g. styles/images/smiles', + 'SORRY_AUTH_ANNOUNCE' => 'Sorry, but only %s can post announcements in this forum.', + 'SORRY_AUTH_DELETE' => 'Sorry, but only %s can delete posts in this forum.', + 'SORRY_AUTH_EDIT' => 'Sorry, but only %s can edit posts in this forum.', + 'SORRY_AUTH_POST' => 'Sorry, but only %s can post topics in this forum.', + 'SORRY_AUTH_READ' => 'Sorry, but only %s can read topics in this forum.', + 'SORRY_AUTH_REPLY' => 'Sorry, but only %s can reply to posts in this forum.', + 'SORRY_AUTH_STICKY' => 'Sorry, but only %s can post sticky messages in this forum.', + 'SORRY_AUTH_VIEW' => 'Sorry, but only %s can view this forum.', + 'SORRY_AUTH_VIEW_ATTACH' => 'Sorry but you are not authorized to view or download this Attachment', + 'SORRY_AUTH_VOTE' => 'Sorry, but only %s can vote in polls in this forum.', + 'SORT' => 'Sort', + 'SORT_ATTACHMENTS' => 'Attachments', + 'SORT_AUTHOR' => 'Author', + 'SORT_BY' => 'Sort by', + 'SORT_COMMENT' => 'Comment', + 'SORT_DOWNLOADS' => 'Downloads', + 'SORT_EMAIL' => 'Email', + 'SORT_EXTENSION' => 'Extension', + 'SORT_FILENAME' => 'Filename', + 'SORT_FORUM' => 'Forum', + 'SORT_JOINED' => 'Joined Date', + 'SORT_LOCATION' => 'Location', + 'SORT_OPTIONS' => 'Sort options:', + 'SORT_PER_LETTER' => 'Show only usernames starting with', + 'SORT_POST_SUBJECT' => 'Post Subject', + 'SORT_POSTS' => 'Total posts', + 'SORT_POSTTIME' => 'Post Time', + 'SORT_SIZE' => 'Size', + 'SORT_TIME' => 'Post Time', + 'SORT_TOP_TEN' => 'Top Ten Posters', + 'SORT_TOPIC_TITLE' => 'Topic Title', + 'SORT_USERNAME' => 'Username', + 'SORT_WEBSITE' => 'Website', + 'SPECIAL_CATEGORIES' => 'Special Categories', + 'SPECIAL_CATEGORY' => 'Special Category', + 'SPEED_DOWN' => 'Speed Down', + 'SPEED_STAT' => 'Total speed: %s ', + 'SPEED_UP' => 'Speed Up', + 'SPLIT_AFTER' => 'Split from selected post', + 'SPLIT_POSTS' => 'Split selected posts', + 'SPLIT_TOPIC' => 'Split the topic', + 'SPLIT_TOPIC_EXPLAIN' => 'Using the form below you can split a topic in two, either by selecting the posts individually or by splitting at a selected post', + 'SPMODE_FULL' => 'Show peers in full details', + 'SPOILER' => 'Spoiler', + 'SPOILER_CLOSE' => 'turn', + 'SPOILER_HEAD' => 'hidden text', + 'START_OPTION_BEGINNING' => 'start from beginning', + 'START_OPTION_CONTINUE' => 'continue from last stopped', + 'START_WATCHING_TOPIC' => 'Follow the topic for replies', + 'STARTING_POST_ID' => 'Starting post_id', + 'STARTING_POST_ID_EXPLAIN' => 'First post where processing will begin from
You can choose to start from the beginning or from the post you last stopped', + 'STATISTIC' => 'Statistic', + 'STATISTICS' => 'Statistics', + 'STATISTICS_FOR_USER' => 'Attachment Statistics for %s', + 'STATUS' => 'Status', + 'STATUS_DOES_EXIST' => 'Such status does not exist:', + 'STATUS_LOCKED' => 'Locked', + 'STATUS_UNLOCKED' => 'Unlocked', + 'STICKY' => 'Sticky', + 'STOP_WATCHING_TOPIC' => 'Stop following the topic', + 'STORED' => 'Your message has been entered successfully.', + 'STRIKEOUT' => 'Strikeout text: [s]text[/s] (Ctrl+S)', + 'STYLE_COLOR' => 'Style rank', + 'STYLE_COLOR_FAQ' => 'Specify class for painting at the title of the desired color. For example colorAdmin', + 'STYLES_TIP' => 'Tip: Styles can be applied quickly to selected text.', + 'SUBFORUMS' => 'Subforums', + 'SUBJECT' => 'Subject', + 'SUBMIT' => 'Submit', + 'SUBMIT_CHANGES' => 'Submit Changes', + 'SUBMIT_GROUP_CHANGES' => 'Submit Changes', + 'SUBMIT_VOTE' => 'Submit vote', + 'SUBSCRIBE' => 'Subscribe', + 'SWITCH' => 'Switch', + 'SYNC' => 'Sync', + 'SYNC_ATTACHMENTS' => 'Synchronize Attachments', + 'SYNC_POSTS' => 'Sync Posts', + 'SYNC_THUMBNAIL_RESETTED' => 'Thumbnail resetted for Attachment: %s', + 'SYNC_THUMBNAILS' => 'Sync Thumbnails', + 'SYNC_TOPICS' => 'Sync Topics', + 'SYNCHRONIZE' => 'Synchronize', + 'SYSTEM_TIMEZONE' => 'System Timezone', + 'TD_TRAF' => 'Today', + 'TEMPLATE' => 'Template', + 'TEMPLATE_DISABLE' => 'Template disabled', + 'TEMPLATES' => 'Templates', + 'TERMS' => 'Terms', + 'TERMS_EMPTY_TEXT' => '[align=center]The text of this page is edited at: [url=http://%s/admin/admin_terms.php]admin/admin_terms.php[/url]. This line can see only administrators.[/align]', + 'TERMS_EXPLAIN' => 'On this page, you can specify the text of the basic rules of the resource is displayed to users.', + 'TERMS_OFF' => 'I do not agree to these terms', + 'TERMS_ON' => 'I agree with these terms and conditions', + 'TEST_SETTINGS' => 'Test Settings', + 'TEST_SETTINGS_SUCCESSFUL' => 'Settings Test has been finished, configuration seems to be fine.', + 'THIS_CLOSED_GROUP' => 'This is a closed group: no more users accepted', + 'THIS_HIDDEN_GROUP' => 'This is a hidden group: automatic user addition is not allowed', + 'THIS_OPEN_GROUP' => 'This is an open group: click to request membership', + 'THIS_POSTS_IP' => 'IP address for this post', + 'TIME' => 'Time', + 'TIME_AVERAGE' => 'Average per cycle', + 'TIME_ESTIMATED' => 'Estimated until finish', + 'TIME_FROM_THE_BEGINNING' => 'From the beginning', + 'TIME_LAST_POSTS' => 'Last %s post(s)', + 'TIME_LIMIT' => 'Time limit', + 'TIME_LIMIT_EXPLAIN' => 'How much time (secs) post processing can last before moving to next cycle', + 'TIME_LIMIT_EXPLAIN_SAFE' => 'Your php (safe mode) has a timeout of %s secs configured, so stay below this value', + 'TIME_LIMIT_EXPLAIN_WEBSERVER' => 'Your webserver has a timeout of %s secs configured, so stay below this value', + 'TIMER_EXPIRED' => 'Timer expired at %s secs.', + 'TIMEZONE' => 'Timezone', + 'TITLE_DUPLICATE' => 'Task Name ' . @$_POST['cron_title'] . ' already exists!', + 'TITLE_MATCH' => 'Title match', + 'TITLE_SEARCH_HINT' => 'search title...', + 'TO' => 'To', + 'TO_FEW_POLL_OPTIONS' => 'You must enter at least two poll options', + 'TO_MANY_POLL_OPTIONS' => 'You have tried to enter too many poll options', + 'TOO_MANY_ATTACHMENTS' => 'Attachment cannot be added, since the max. number of %d Attachments in this post was achieved', + 'TOO_MANY_ERROR' => 'You have selected too many posts. You can only select one post to split a topic after!', + 'TOO_MANY_REGISTERS' => 'You have made too many registration attempts. Please try again later.', + 'TOO_MANY_SEARCH_RESULTS' => 'Too many results may be found, please try to be more specific', + 'TOPIC' => 'Topic', + 'TOPIC_ANNOUNCEMENT' => 'Announcement:', + 'TOPIC_DL' => 'DL', + 'TOPIC_LOCKED' => 'This topic is locked: you cannot edit posts or make replies', + 'TOPIC_LOCKED_SHORT' => 'Topic locked', + 'TOPIC_MOVED' => 'Moved:', + 'TOPIC_POLL' => '[ Poll ]', + 'TOPIC_POST_NOT_EXIST' => 'The topic or post you requested does not exist', + 'TOPIC_REPLY_NOTIFICATION' => 'Topic Reply Notification', + 'TOPIC_RETURN' => 'Back to the topic', + 'TOPIC_REVIEW' => 'Topic review', + 'TOPIC_SPLIT' => 'The selected topic has been split successfully', + 'TOPIC_SPLIT_NEW' => 'New topic', + 'TOPIC_SPLIT_OLD' => 'Old topic', + 'TOPIC_STICKY' => 'Sticky:', + 'TOPICS' => 'Topics', + 'TOPICS_ANNOUNCEMENT' => 'Announcements', + 'TOPICS_DATA_SYNCHRONIZED' => 'Topics data have been synchronized', + 'TOPICS_DOWN_SETS' => 'Topic status changed to Download', + 'TOPICS_DOWN_UNSETS' => 'Download status removed', + 'TOPICS_LOCKED' => 'The selected topics have been locked.', + 'TOPICS_MARKED_READ' => 'The topics for this forum have just been marked read', + 'TOPICS_MOVED' => 'The selected topics have been moved.', + 'TOPICS_NORMAL' => 'Topics', + 'TOPICS_PER_DAY' => 'Topics per day', + 'TOPICS_PER_PAGE' => 'Topics Per Page', + 'TOPICS_PRUNED' => 'Topics pruned', + 'TOPICS_REMOVED' => 'The selected topics have been successfully removed from the database.', + 'TOPICS_SHORT' => 'Topics', + 'TOPICS_STICKY' => 'Stickies', + 'TOPICS_UNLOCKED' => 'The selected topics have been unlocked.', + 'TOR_AUTH_FIXED' => 'Fixed', + 'TOR_AUTH_MSG' => "Hello, %s.\n\n Making my distribution changed - [url=%s]%s[/url]\n\n Please re-check it.", + 'TOR_AUTH_SENT_COMMENT' => ' · The information sent to the moderator. Expect.', + 'TOR_AUTH_TITLE' => 'Changes in the design - %s', + 'TOR_BACK' => ' back', + 'TOR_COMMENT' => '

Commentary on the status of distribution

Comment successfully allows you to specify releasers mistakes. When nedooformlennyh statuses releasers available form of the response of the correction release
', + 'TOR_DONT_CHANGE' => 'Change of status can not be!', + 'TOR_MOD_MSG' => "Hello, %s.\n\n Status [url=%s]your[/url] distribution is changed to [b]%s[/b]", + 'TOR_MOD_TITLE' => 'Changing the status of distribution - %s', + 'TOR_NOT_FOUND' => 'File is missing on the server!', + 'TOR_SEARCH_TITLE' => 'Torrent search options', + 'TOR_STATUS' => 'Status', + 'TOR_STATUS_CHANGED' => 'Status changed:', + 'TOR_STATUS_DAYS' => 'days', + 'TOR_STATUS_DUB' => 'Distribution has the same status', + 'TOR_STATUS_FAILED' => 'Such status does not exist!', + 'TOR_STATUS_NAME' => [ + TOR_NOT_APPROVED => 'not checked', + TOR_CLOSED => 'closed', + TOR_APPROVED => 'checked', + TOR_NEED_EDIT => 'not formalized until', + TOR_NO_DESC => 'not formalized', + TOR_DUP => 'repeat', + TOR_CLOSED_CPHOLD => 'closed right', + TOR_CONSUMED => 'absorbed', + TOR_DOUBTFUL => 'doubtful', + TOR_CHECKING => 'verified', + TOR_TMP => 'temporary', + TOR_PREMOD => 'pre-moderation', + TOR_REPLENISH => 'replenish', + ], + 'TOR_STATUS_NOT_SELECT' => 'You have not selected status.', + 'TOR_STATUS_OF' => 'Distribution has the status of:', + 'TOR_STATUS_SELECT_ACTION' => 'Select status', + 'TOR_STATUS_SELECT_ALL' => 'All statuses', + 'TORFILE_INVALID' => 'Torrent file is corrupt', + 'TORHELP_TITLE' => 'Please help seeding these torrents!', + 'TORRENT' => 'Torrent', + 'TORRENT_FAILED' => 'Distribution was not found!', + 'TORRENTS_FROM' => 'Posts from', + 'TORRENTS_STAT' => 'Torrents: %s,  Total size: %s', + 'TOTAL' => 'Total', + 'TOTAL_FILESIZE' => 'Total Filesize', + 'TOTAL_POSTS' => 'Total posts', + 'TOTAL_TRAF' => 'Total', + 'TOTAL_VOTES' => 'Total Votes', + 'TP' => 'TorrentPier', + 'TP_RELEASE_DATE' => 'Release date', + 'TP_VERSION' => 'TorrentPier version', + 'TPL_EMPTY_FIELD' => 'You must fill the field %s', + 'TPL_EMPTY_SEL' => 'You must select %s', + 'TPL_HEADER_ONLY' => 'only in a title', + 'TPL_IMG' => 'image', + 'TPL_IN_LINE' => 'in the same line', + 'TPL_NEW_LINE' => 'new line', + 'TPL_NEW_LINE_AFTER' => 'new line after the title', + 'TPL_NOT_IMG_URL' => '%s - Must be http:// IMG_URL', + 'TPL_NOT_NUM' => '%s - Not a num', + 'TPL_NOT_URL' => '%s - Must be http:// URL', + 'TPL_NUM' => 'number', + 'TPL_POSTER' => 'poster', + 'TPL_PRE' => 'pre', + 'TPL_PUT_INTO_SUBJECT' => 'put into the subject', + 'TPL_REQ_FILLING' => 'requires filling', + 'TPL_SPOILER' => 'spoiler', + 'TPL_URL' => 'URL', + 'TR_STATS' => [ + 0 => 'inactive users in 30 days', + 1 => 'inactive users for 90 days', + 2 => 'medium size distributions on the tracker (many megabytes)', + 3 => 'how many total hands on the tracker', + 4 => 'how many live hands (there is at least 1 led)', + 5 => 'how many hands where that seeding more than 5 seeds', + 6 => 'how many of us uploaders (those who filled at least 1 hand)', + 7 => 'how many uploaders over the last 30 days', + ], + 'TRACKER' => 'Tracker', + 'TRACKER_CFG_TITLE' => 'Tracker', + 'TRACKER_CONFIG' => 'Tracker settings', + 'TRACKER_S' => 'on tracker', + 'TRACKER_SETTINGS' => 'Tracker settings', + 'TRACKER_STATS' => 'Statistics on the tracker', + 'TWITTER' => 'Twitter', + 'TWITTER_ERROR' => 'You entered an invalid Twitter login', + 'TYPE' => 'Type', + 'TZ' => [ + '-12' => 'UTC - 12', + '-11' => 'UTC - 11', + '-10' => 'UTC - 10', + '-9' => 'UTC - 9', + '-8' => 'UTC - 8', + '-7' => 'UTC - 7', + '-6' => 'UTC - 6', + '-5' => 'UTC - 5', + '-4' => 'UTC - 4', + '-3.5' => 'UTC - 3.5', + '-3' => 'UTC - 3', + '-2' => 'UTC - 2', + '-1' => 'UTC - 1', + '0' => 'UTC ± 0', + '1' => 'UTC + 1', + '2' => 'UTC + 2', + '3' => 'UTC + 3', + '3.5' => 'UTC + 3.5', + '4' => 'UTC + 4', + '4.5' => 'UTC + 4.5', + '5' => 'UTC + 5', + '5.5' => 'UTC + 5.5', + '6' => 'UTC + 6', + '6.5' => 'UTC + 6.5', + '7' => 'UTC + 7', + '8' => 'UTC + 8', + '9' => 'UTC + 9', + '9.5' => 'UTC + 9.5', + '10' => 'UTC + 10', + '11' => 'UTC + 11', + '12' => 'UTC + 12', + '13' => 'UTC + 13', + ], + 'UCP_DOWNLOADS' => 'Downloads', + 'UNABLE_ADD_FORBIDDEN_EXTENSION' => 'The Extension %s is forbidden, you are not able to add it to the allowed Extensions', + 'UNBAN_EMAIL' => 'Un-ban one or more email addresses', + 'UNBAN_EMAIL_EXPLAIN' => 'You can unban multiple email addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser', + 'UNBAN_IP' => 'Un-ban one or more IP addresses', + 'UNBAN_IP_EXPLAIN' => 'You can unban multiple IP addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser', + 'UNBAN_USERNAME' => 'Un-ban one more specific users', + 'UNBAN_USERNAME_EXPLAIN' => 'You can unban multiple users in one go using the appropriate combination of mouse and keyboard for your computer and browser', + 'UNDERLINE' => 'Underline text: [u]text[/u] (Ctrl+U)', + 'UNEXECUTED_RELEASE' => 'Do you have a shapeless release before creating a new fix his unformed!', + 'UNLIMITED' => 'Unlimited', + 'UNLOCK' => 'Unlock', + 'UNLOCK_TOPIC' => 'Unlock the topic', + 'UNMARK_ALL' => 'Unmark all', + 'UNREAD_MESSAGE' => 'Unread message', + 'UNREAD_PMS_DECLENSION' => [ + 'unread', + 'unread', + ], + 'UNREAD_PMS_FORMAT' => '%1$s %2$s', + 'UNSET_DL_STATUS' => 'Not Download', + 'UNSET_GOLD_TORRENT' => 'UnMake gold', + 'UNSET_SILVER_TORRENT' => 'UnMake silver', + 'UNSUB_SUCCESS' => 'You have been un-subscribed from this group.', + 'UNSUBSCRIBE_GROUP' => 'Unsubscribe', + 'UPDATE' => 'Update', + 'UPDATE_COMMENT' => 'Update Comment', + 'UPDATE_DLSTAT' => 'Store users up/down statistics', + 'UPDATE_ORDER' => 'Update Order', + 'UPDATE_POST_TIME' => 'Update post time', + 'UPDATE_WORD' => 'Update word censor', + 'UPDATED_GROUP' => 'The group has been updated successfully', + 'UPLOAD_AVATAR_FILE' => 'Upload avatar', + 'UPLOAD_DIRECTORY' => 'Upload Directory', + 'UPLOAD_DIRECTORY_EXPLAIN' => 'Enter the relative path from your TorrentPier installation to the Attachments upload directory. For example, enter \'files\' if your TorrentPier Installation is located at http://www.yourdomain.com/torrentpier and the Attachment Upload Directory is located at http://www.yourdomain.com/torrentpier/files.', + 'UPLOAD_ERROR_COMMON' => 'File upload error', + 'UPLOAD_ERROR_DIMENSIONS' => 'Image dimensions exceed the maximum allowable %sx%s px', + 'UPLOAD_ERROR_FORMAT' => 'Invalid file type of image', + 'UPLOAD_ERROR_NOT_ALLOWED' => 'Extension %s for downloads is not allowed', + 'UPLOAD_ERROR_NOT_IMAGE' => 'The uploaded file is not an image', + 'UPLOAD_ERROR_SIZE' => 'The uploaded file exceeds the maximum size of %s', + 'UPLOAD_ERRORS' => [ + UPLOAD_ERR_INI_SIZE => 'you have exceeded the maximum file size for the server', + UPLOAD_ERR_FORM_SIZE => 'you have exceeded the maximum file upload size', + UPLOAD_ERR_PARTIAL => 'the file was partially downloaded', + UPLOAD_ERR_NO_FILE => 'file was not uploaded', + UPLOAD_ERR_NO_TMP_DIR => 'temporary directory not found', + UPLOAD_ERR_CANT_WRITE => 'write error', + UPLOAD_ERR_EXTENSION => 'upload stopped by extension', + ], + 'UPLOAD_ICON' => 'Upload Icon', + 'UPLOAD_NEW_VERSION' => 'Upload New Version', + 'UPLOAD_QUOTA' => 'Upload Quota', + 'UPLOADED' => 'Uploaded', + 'URL' => 'Url', + 'URL_TITLE' => 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url] (Ctrl+W)', + 'USE_AUTH_KEY' => 'Passkey', + 'USE_AUTH_KEY_EXPL' => 'enable check for passkey', + 'USE_AUTH_KEY_HEAD' => 'Authorization', + 'USE_GD2' => 'Make use of GD2 Extension', + 'USE_GD2_EXPLAIN' => 'PHP is able to be compiled with the GD1 or GD2 Extension for image manipulating. To correctly create Thumbnails without imagemagick the Attachment Mod uses two different methods, based on your selection here. If your thumbnails are in a bad quality or screwed up, try to change this setting.', + 'USER' => 'User', + 'USER_ACTIVATE' => 'Activate', + 'USER_ACTIVATE_OFF' => 'User has been successfully deactivated', + 'USER_ACTIVATE_ON' => 'User has been successfully activated', + 'USER_ADMIN' => 'User Administration', + 'USER_ADMIN_EXPLAIN' => 'Here you can change your users\' information and certain options. To modify the users\' permissions, please use the user and group permissions system.', + 'USER_AGREEMENT' => 'User agreement', + 'USER_AGREEMENT_AGREE' => 'I have read and agree to the User agreement above', + 'USER_AGREEMENT_HEAD' => 'In order to proceed, you must agree with the following rules', + 'USER_ALLOWAVATAR' => 'Can display avatar', + 'USER_ALLOWPM' => 'Can send Private Messages', + 'USER_AUTH_EXPLAIN' => 'Here you can alter the permissions and moderator status assigned to each individual user. Do not forget when changing user permissions that group permissions may still allow the user entry to forums, etc. You will be warned if this is the case.', + 'USER_AUTH_UPDATED' => 'User permissions have been updated', + 'USER_DEACTIVATE' => 'Deactivate', + 'USER_DEACTIVATE_ME' => 'You can not deactivate my account!', + 'USER_DELETE' => 'Delete', + 'USER_DELETE_CONFIRM' => 'Are you sure you want to delete this user?', + 'USER_DELETE_CSV' => 'Sorry, this account is not allowed to delete!', + 'USER_DELETE_EXPLAIN' => 'Delete this user', + 'USER_DELETE_ME' => 'Sorry, your account is forbidden to remove!', + 'USER_DELETED' => 'User was successfully deleted', + 'USER_DELETED_POSTS' => 'Posts were successfully removed', + 'USER_IS_MEMBER_GROUP' => 'User is already a member of this group', + 'USER_LEVEL' => 'User Level', + 'USER_LEVELS' => 'User levels', + 'USER_LEVELS_UPDATED' => 'User levels have been updated', + 'USER_NOT_ALLOWED' => 'Users are not permitted', + 'USER_NOT_EXIST' => 'That user does not exist', + 'USER_POSTS_COUNT' => 'User posts count', + 'USER_POSTS_COUNT_SYNCHRONIZED' => 'User posts count has been synchronized', + 'USER_PREVENT_EMAIL' => 'This user does not wish to receive e-mail. Try sending them a private message.', + 'USER_RATIO' => 'Ratio', + 'USER_SELECT' => 'Select a User', + 'USER_SPECIAL' => 'Special admin-only fields', + 'USER_SPECIAL_EXPLAIN' => 'These fields are not able to be modified by the users. Here you can set their status and other options that are not given to users.', + 'USER_WELCOME' => 'Welcome,', + 'USERFIELD' => 'Userfield', + 'USERGROUP_MEMBERS' => 'This group has the following members', + 'USERGROUPS' => 'Usergroups', + 'USERNAME' => 'Username', + 'USERNAME_DISALLOWED' => 'Sorry, but this username has been disallowed.', + 'USERNAME_INVALID' => 'Sorry, but this username contains an invalid character', + 'USERNAME_TAKEN' => 'Sorry, but this username has already been taken.', + 'USERNAME_TOO_LONG' => 'Your name is too long.', + 'USERNAME_TOO_SMALL' => 'Your name is too small.', + 'USERS' => 'User Admin', + 'USERS_PER_DAY' => 'Users per day', + 'USERS_THIS_IP' => 'Users posting from this IP address', + 'USERS_TOTAL_GENDER' => 'Boys: %d, Girls: %d, Others: %d', + 'VALUE' => 'Value', + 'VERSION_INFORMATION' => 'Version Information', + 'VIEW' => 'View', + 'VIEW_ATTACHMENTS' => 'Attachments', + 'VIEW_FORUM' => 'View Forum', + 'VIEW_INFORMATION' => 'View Information', + 'VIEW_IP' => 'View poster IP address', + 'VIEW_IP_TXTB' => '[ip]', + 'VIEW_LATEST_POST' => 'View latest post', + 'VIEW_NEWEST_POST' => 'View newest post', + 'VIEW_RESULTS' => 'View results', + 'VIEW_SEARCH' => 'Search', + 'VIEW_STATISTIC' => 'Statistics', + 'VIEW_TOPIC' => 'View topic', + 'VIEW_USERNAME' => 'Username', + 'VIEWED' => 'Viewed', + 'VIEWING_MY_PROFILE' => 'My profile [ Settings / Change profile ]', + 'VIEWING_USER_BT_PROFILE' => 'Viewing torrent-profile :: %s', + 'VIEWING_USER_PROFILE' => 'Viewing profile :: %s', + 'VIEWS' => 'Views', + 'VISIT_WEBSITE' => 'Visit poster\'s website', + 'VISIT_WEBSITE_TXTB' => '[www]', + 'VISUAL_CONFIRM' => 'Enable Visual Confirmation', + 'VISUAL_CONFIRM_EXPLAIN' => 'Requires users enter a code defined by an image when registering.', + 'VOTE' => 'Vote', + 'VOTE_CAST' => 'Your vote has been cast.', + 'WARNING' => 'Warning', + 'WATCHED_TOPICS' => 'Watched topics', + 'WEBSITE' => 'Website', + 'WEBSITE_ERROR' => 'The "site" may contain only http://sitename', + 'WELCOME_SUBJECT' => 'Welcome to %s Forums', + 'WHAT_IS_A_TORRENT' => 'What is a torrent?', + 'WHOIS_INFO' => 'Information about IP address', + 'WHOSONLINE' => 'Who is online', + 'WITH_SELECTED' => 'With selected', + 'WORD' => 'Word', + 'WORD_ADDED' => 'The word censor has been added successfully', + 'WORD_CENSOR' => 'Word Censors', + 'WORD_REMOVED' => 'The selected word censor has been removed successfully', + 'WORD_UPDATED' => 'The selected word censor has been updated successfully', + 'WORDS_EXPLAIN' => 'From this control panel you can add, edit, and remove words that will be automatically censored on your forums. In addition people will not be allowed to register with usernames containing these words. Wildcards (*) are accepted in the word field. For example, *test* will match detestable, test* would match testing, *test would match detest.', + 'WORDS_TITLE' => 'Word Censoring', + 'WRONG_ACTIVATION' => 'The activation key you supplied does not match any in the database.', + 'WRONG_BIRTHDAY_FORMAT' => 'The birthday format was entered incorrectly.', + 'WRONG_INPUT' => 'You have entered some wrong values. Please check your input and try again.', + 'WRONG_PROFILE' => 'You cannot modify a profile that is not your own.', + 'WROTE' => 'wrote', + 'YEARS' => 'Years', + 'YES' => 'Yes', + 'YOU_ARE_WATCHING' => 'You are following this topic now', + 'YOU_BEEN_BANNED' => 'You have been banned from this forum.
Please contact the webmaster or board administrator for more information.', + 'YOUR_NEW_PASSWORD' => 'Your are new password:', + 'YS_TRAF' => 'Yesterday', +]; diff --git a/styles/templates/admin/admin_board.tpl b/styles/templates/admin/admin_board.tpl index 64a0eac9c..fe23b7266 100644 --- a/styles/templates/admin/admin_board.tpl +++ b/styles/templates/admin/admin_board.tpl @@ -81,10 +81,6 @@

{L_HOT_THRESHOLD}

- -

{L_DEFAULT_LANGUAGE}

- {LANG_SELECT} -

{L_DATE_FORMAT}

{L_DATE_FORMAT_EXPLAIN}
diff --git a/styles/templates/default/tpl_config.php b/styles/templates/default/tpl_config.php index 633948063..3b8b179cc 100644 --- a/styles/templates/default/tpl_config.php +++ b/styles/templates/default/tpl_config.php @@ -30,7 +30,7 @@ $template_name = basename(__DIR__); $_img = BB_ROOT . 'styles/images/'; $_main = BB_ROOT . 'styles/' . basename(TEMPLATES_DIR) . '/' . $template_name . '/images/'; -$_lang = $_main . 'lang/' . basename(config('tp.default_lang')) . '/'; +$_lang = $_main . 'lang/' . basename(config('app.locale')) . '/'; // post_buttons $images['icon_quote'] = $_lang . 'icon_quote.gif';