register.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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('login_name', "Имя пользователя");
  25. define('users_fname', "Имя");
  26. define('users_lname', "Фамилия");
  27. define('users_passwd', "Password");
  28. define('users_cpasswd', "Verify password");
  29. define('passwd_len', "Password must be longer than 6 characters");
  30. define('err_password', "Password cannot be empty");
  31. define('err_confirm_password', "Verify password field cannot be empty");
  32. define('err_password_mismatch', "Passwords do not match");
  33. define('phone_number', "Телефон");
  34. define('users_email', "Отправить");
  35. define('register_a_new_user', "Регистрация нового пользователя");
  36. define('password_mismatch', "Пароли не совпадают.");
  37. define('confirm_password', "Подтвердите пароль");
  38. define('successfull', "успешно");
  39. define('click_here', "Нажмите здесь");
  40. define('to_login', "чтобы залогиниться.");
  41. define('registered_on', "Зарегистрировано :: %s");
  42. define('register_message', "Здравствуйте!<br>Учетная запись была успешно создана. Ваши данные:<br><br>Пользователь: %s<br>Пароль: %s<br><br>Вы можете изменить свой пароль от вашей учетной записи в настройках аккаунта.<br>С уважением,<br>Администрация<br>Это автоматическое сообщение. Пожалуйста, не отвечайте на него!");
  43. define('err_captcha', "Каптча введена неверно.");
  44. define('err_login_name', "Имя пользователя пусто или занято.");
  45. define('err_first_name', "Введите свое имя.");
  46. define('err_last_name', "Ошибка в Фамиилии.");
  47. define('err_phone_number', "Номер телефона пуст.");
  48. define('err_email_address', "Адрес электронной почты пустой или неверный.");
  49. define('err_email_address_already_in_use_by', "адрес электронной почты уже используется пользователем <b>%s</b>.");
  50. define('user_registration', "Регистрация пользователя");
  51. define('your_account_details_has_been_sent_by_email_to', "Ваши данные были отправлены по электронной почте <b>%s</b>.");
  52. define('account_created', "Your account has been created.");
  53. define('subject', "%s :: Account Information");
  54. ?>