settings.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2016 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. define('maintenance_mode', "Обслуживание");
  25. define('maintenance_mode_info', "Это сообщение будет показано обычным пользователям.");
  26. define('maintenance_title', "Заголовок обслуживания");
  27. define('maintenance_title_info', "Название, которое отображается для обычных пользователей во время обслуживания.");
  28. define('maintenance_message', "Сообщение");
  29. define('maintenance_message_info', "Это сообщение будет показано обычным пользователям во время обслуживания.");
  30. define('update_settings', "Update Settings");
  31. define('settings_updated', "Settings successfully updated.");
  32. define('panel_language', "Язык");
  33. define('panel_language_info', "Выбранный язык будет установлен всем пользователям по умолчанию, но они смогут его сменить в настройках своего профиля");
  34. define('page_auto_refresh', "Автообновление страниц");
  35. define('page_auto_refresh_info', "Отключение этого может помочь при отладке. Желательно его включить.");
  36. define('smtp_server', "Сервер исходящей почты");
  37. define('smtp_server_info', "SMTP сервер исходящей почты, обычно используется для того чтобы посылать забытые пароли пользователям, localhost по умолчанию.");
  38. define('panel_email_address', "Исходящий адрес почты");
  39. define('panel_email_address_info', "Адрес откуда будет высылаться почта.");
  40. define('panel_name', "Название панели");
  41. define('panel_name_info', "Название которое будет показывается в названии страницы.");
  42. define('feed_enable', "Включить LGSL Feed");
  43. define('feed_enable_info', "Если ваш брандмауэр блокирует query port вам надо разрешить его.");
  44. define('feed_url', "Feed URL");
  45. define('feed_url_info', "GrayCube.com распространяет LGSL feed через URL:<br><b>http://www.greycube.co.uk/lgsl/feed/lgsl_files/lgsl_feed.php</b>");
  46. define('charset', "Кодировка текста");
  47. define('charset_info', "UTF-8, ISO, ASCII, etc... Оставить бланк пустым для ISO кодировки.");
  48. define('steam_user', "Steam User");
  49. define('steam_user_info', "This user is needed to log in to steam for download some new games like CS:GO.");
  50. define('steam_pass', "Steam Password");
  51. define('steam_pass_info', "Set here the steam account password.");
  52. define('steam_guard', "Steam Guard");
  53. define('steam_guard_info', "Some users have steam guard activated to protect their accounts from hackers,<br>this code is sent to the account email when the first steam update is started.");
  54. define('smtp_port', "SMTP Port");
  55. define('smtp_port_info', "If SMTP port is not the default port (25) Enter the SMTP port here.");
  56. define('smtp_login', "SMTP User");
  57. define('smtp_login_info', "If your SMTP server requires authentication, enter your user name here.");
  58. define('smtp_passw', "SMTP Password");
  59. define('smtp_passw_info', "If you do not set a password the SMTP authentication will be disabled.");
  60. define('smtp_secure', "SMTP Secure");
  61. define('smtp_secure_info', "Use SSL/TLS to connect to the SMTP server");
  62. define('time_zone', "Time Zone");
  63. define('time_zone_info', "Sets the default timezone used by all date/time functions.");
  64. define('query_cache_life', "Query cache life");
  65. define('query_cache_life_info', "Sets the timeout in seconds before the server status is refreshed.");
  66. define('query_num_servers_stop', "Disable Game Server Queries After");
  67. define('query_num_servers_stop_info', "Use this setting to disable queries if a user owns more game servers than this amount specified to speed up panel loading.");
  68. define('editable_email', "Editable E-Mail Address");
  69. define('editable_email_info', "Select if users can edit their e-mail address or not.");
  70. define('old_dashboard_behavior', "Old Dashboard behavior");
  71. define('old_dashboard_behavior_info', "The old Dashboard was running slower but shows more server information, current players and map.");
  72. define('rsync_available', "Available rsync servers");
  73. define('rsync_available_info', "Select what servers list will be shown in the rsync installation.");
  74. define('all_available_servers', "All available servers ( rsync_sites.list + rsync_sites_local.list )");
  75. define('only_remote_servers', "Only remote servers ( rsync_sites.list )");
  76. define('only_local_servers', "Only local servers ( rsync_sites_local.list )");
  77. define('header_code', "Header code");
  78. define('header_code_info', "Here you can write your own header code (like HTML code, Embed Code etc.) without editing the theme layout.");
  79. define('support_widget_title', "Support widget title");
  80. define('support_widget_title_info', "A custom title for the support widget in the Dashboard.");
  81. define('support_widget_content', "Support widget content");
  82. define('support_widget_content_info', "The content of the support widget, you can use HTML code.");
  83. define('support_widget_link', "Support widget link");
  84. define('support_widget_link_info', "The URL of your support site.");
  85. define('recaptcha_site_key', "Recaptcha Site Key");
  86. define('recaptcha_site_key_info', "The site key provided to you by Google.");
  87. define('recaptcha_secret_key', "Recaptcha Secret Key");
  88. define('recaptcha_secret_key_info', "The secret key provided to you by Google.");
  89. define('recaptcha_use_login', "Use Recaptcha on Login");
  90. define('recaptcha_use_login_info', "If enabled, users will have to solve the Not a Robot Recaptcha when attempting to login.");
  91. define('login_attempts_before_banned', "Number of failed login attempts before user is banned");
  92. define('login_attempts_before_banned_info', "If a user tries to login with invalid credentials more than this many times, the user will be banned temporarily by the panel.");
  93. define('remote_query', "Remote query");
  94. define('remote_query_info', "Use the remote server (agent) to make queries to the game servers (Only GameQ and LGSL).");
  95. define('check_expiry_by', "Check expiration using");
  96. define('check_expiry_by_info', "If set to once_logged_in, the user's game server assignments will be automatically deleted if past the expiration date. If set to cron_job, you will need to create a cron task using the cron module to check for the expiration date at a configured interval.");
  97. define('once_logged_in', "Once Logged In");
  98. define('cron_job', "Cron Job");
  99. define('theme_settings', "Настройки темы");
  100. define('theme', "Тема");
  101. define('theme_info', "Выбранная тема будет установлена всем пользователям по умолчанию, но они смогут ее сменить в настройках своего профиля.");
  102. define('welcome_title', "Добро пожаловать Название");
  103. define('welcome_title_info', "Включает заголовок, который отображается в верхней части приборной панели.");
  104. define('welcome_title_message', "Здравствуйте, Тема Сообщение");
  105. define('welcome_title_message_info', "Заголовок сообщения, которое отображается в верхней части приборной панели (HTML запрещено).");
  106. define('logo_link', "Ссылка на логотип");
  107. define('logo_link_info', "Ссылка на логотип. <b style='font-size:10px; font-weight:normal;'>(Если оставить пустым, то будет отображен логотип OGP)</b>");
  108. define('custom_tab', "Пользовательские вкладки");
  109. define('custom_tab_info', "Добавляет настраиваемые вкладки в конце меню. <b style='font-size:10px; font-weight:normal;'>(Примените и обновите страницу, чтобы редактировать параметры вкладки)</b>");
  110. define('custom_tab_name', "Название вкладки");
  111. define('custom_tab_name_info', "Отображаемое название вкладки.");
  112. define('custom_tab_link', "Ссылка вкладки");
  113. define('custom_tab_link_info', "Ссылка на вкладку.");
  114. define('custom_tab_sub', "Пользовательские суб-вкладки");
  115. define('custom_tab_sub_info', "Добавление настраиваемых суб-вкладок при наведении курсора на 'Пользовательскую вкладку'.");
  116. define('custom_tab_sub_name', "Суб-вкладка #1 Название");
  117. define('custom_tab_sub_link', "Суб-вкладка #1 Ссылка");
  118. define('custom_tab_sub_name2', "Суб-вкладка #2 Название");
  119. define('custom_tab_sub_link2', "Суб-вкладка #2 Ссылка");
  120. define('custom_tab_sub_name3', "Суб-вкладка #3 Название");
  121. define('custom_tab_sub_link3', "Суб-вкладка #3 Ссылка");
  122. define('custom_tab_sub_name4', "Суб-вкладка #4 Название");
  123. define('custom_tab_sub_link4', "Суб-вкладка #4 Ссылка");
  124. define('custom_tab_target_blank', "Цель пользовательской вкладки");
  125. define('custom_tab_target_blank_info', "Устанавливает цель всех вкладок. <b style='font-size:10px; font-weight:normal;'>('_self' = Открывает ссылку на одной странице. '_blank' = Открывает ссылку на новой странице.)</b>");
  126. define('bg_wrapper', "Задний фон");
  127. define('bg_wrapper_info', "Картинка заднего фона. <b style='font-size:10px; font-weight:normal;'>(Только для темы Revolution.)</b>");
  128. ?>