| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2018 The OGP Development Team
- *
- * http://www.opengamepanel.org/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- */
- define('OGP_LANG_login_name', "Имя пользователя");
- define('OGP_LANG_users_fname', "Имя");
- define('OGP_LANG_users_lname', "Фамилия");
- define('OGP_LANG_users_passwd', "Пароль");
- define('OGP_LANG_users_cpasswd', "Повторите пароль");
- define('OGP_LANG_passwd_len', "Пароль должен быть не меньше 6-ти символов");
- define('OGP_LANG_err_password', "Пароль не может быть пустым");
- define('OGP_LANG_err_confirm_password', "Подтверждение пароля не может быть пустым");
- define('OGP_LANG_err_password_mismatch', "Пароли не совпадают");
- define('OGP_LANG_phone_number', "Телефон");
- define('OGP_LANG_users_email', "Отправить");
- define('OGP_LANG_register_a_new_user', "Регистрация нового пользователя");
- define('OGP_LANG_password_mismatch', "Пароли не совпадают.");
- define('OGP_LANG_confirm_password', "Подтвердите пароль");
- define('OGP_LANG_successfull', "успешно");
- define('OGP_LANG_click_here', "Нажмите здесь");
- define('OGP_LANG_to_login', "чтобы залогиниться.");
- define('OGP_LANG_registered_on', "Зарегистрировано :: %s");
- define('OGP_LANG_register_message', "Здравствуйте, <br><br> Ваша учетная запись Open Game Panel была создана, и вы можете <a href='%s' target='_blank'>войти в систему сейчас</a>. Имя пользователя: %s<br><br>Не забывайте сменить пароль при первом входе в систему и часто менять его в дальнейшем. <br><br>Пожалуйста, не отвечайте на это письмо!<br><br> ______________________________<br>OGP Mailer");
- define('OGP_LANG_err_captcha', "Каптча введена неверно.");
- define('OGP_LANG_err_login_name', "Имя пользователя пусто или занято.");
- define('OGP_LANG_err_first_name', "Введите свое имя.");
- define('OGP_LANG_err_last_name', "Ошибка в Фамиилии.");
- define('OGP_LANG_err_phone_number', "Номер телефона пуст.");
- define('OGP_LANG_err_email_address', "Адрес электронной почты пустой или неверный.");
- define('OGP_LANG_err_email_address_already_in_use_by', "адрес электронной почты уже используется пользователем <b>%s</b>.");
- define('OGP_LANG_user_registration', "Регистрация пользователя");
- define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Ваши данные были отправлены по электронной почте <b>%s</b>.");
- define('OGP_LANG_account_created', "Ваш аккаунт создан.");
- define('OGP_LANG_subject', "%s:: Информация об аккаунте ");
- ?>
|