| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2016 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('login_name', "Имя пользователя");
- define('first_name', "Имя");
- define('last_name', "Фамилия");
- define('phone_number', "Телефон");
- define('email_address', "Email");
- define('register_a_new_user', "Регистрация нового пользователя");
- define('password_mismatch', "Пароли не совпадают.");
- define('confirm_password', "Подтвердите пароль");
- define('subuser_password', "Sub-User Password");
- define('subuser_man', "Sub-User Management");
- define('successfull', "успешно");
- define('click_here', "Нажмите здесь");
- define('to_login', "Логин");
- define('registered_on', "Зарегистрировано :: %s");
- define('register_message', "Здравствуйте!<br>Учетная запись была успешно создана. Ваши данные:<br><br>Пользователь: %s<br>Пароль: %s<br><br>Вы можете изменить свой пароль от вашей учетной записи в настройках аккаунта.<br>С уважением,<br>Администрация<br>Это автоматическое сообщение. Пожалуйста, не отвечайте на него!");
- define('err_password', "Password cannot be empty");
- define('err_confirm_password', "Verify password field cannot be empty");
- define('err_password_mismatch', "Passwords do not match");
- define('err_captcha', "Каптча введена неверно.");
- define('err_login_name', "Имя пользователя пусто или занято.");
- define('err_first_name', "Введите свое имя.");
- define('err_last_name', "Ошибка в Фамиилии.");
- define('err_phone_number', "Номер телефона пуст.");
- define('err_email_address', "Адрес электронной почты пустой или неверный.");
- define('err_users_parent', "Sub-user accounts may not create other users.");
- define('err_parent_user', "The parent user ID must reference a valid pre-existing user.");
- define('err_email_address_already_in_use_by', "адрес электронной почты уже используется пользователем <b>%s</b>.");
- define('user_registration', "Регистрация пользователя");
- define('your_account_details_has_been_sent_by_email_to', "Ваши данные были отправлены по электронной почте <b>%s</b>.");
- define('subject', "Hello %s, welcome to %s.");
- define('sub_user', "Sub Users");
- define('create_sub_user', "Add Sub User");
- define('listdel_sub_user', "List, Modify Sub User Account Information, or Delete Sub User");
- define('delete_sub_user', "Edit / Delete Sub User");
- define('del_subuser_conf', "Are you sure you want to delete this account:");
- define('no_subusers', "No subusers have been created under your account yet!");
- define('subuser_deleted', "Sub-User %s was successfully deleted from the database!");
- define('subuser_added', "Sub-User %s was successfully created and added to the database!");
- define('your_subusers', "Owned Sub-User Accounts");
- ?>
|