subusers.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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', "Nazwa użytkownika");
  25. define('first_name', "Imię");
  26. define('last_name', "Nazwisko");
  27. define('phone_number', "Numer telefonu");
  28. define('email_address', "Email");
  29. define('register_a_new_user', "Rejestracja nowego użytkownika");
  30. define('password_mismatch', "Hasła nie są identyczne.");
  31. define('confirm_password', "Potwierdź hasło");
  32. define('subuser_password', "Hasło subusera");
  33. define('subuser_man', "Zarządzanie Sub-Userem");
  34. define('successfull', "Powodzenie");
  35. define('click_here', "Kliknij tutaj");
  36. define('to_login', "aby się zalogować.");
  37. define('registered_on', "Zarejestrowany w dniu :: %s");
  38. define('register_message', "Witaj,<br>Twoje konto zostało utworzone.<br><br>Użytkownik: %s<br>Hasło: %s<br><br>Możesz zmienić swoje hasło z konta.<br>Dziękuję!<br>Administratora.<br>Ten e-mail został utworzony automatycznie, Proszę, nie odpowiadać na email!");
  39. define('err_password', "Pole hasło nie może być puste");
  40. define('err_confirm_password', "Pole Potwierdź hasło nie może być puste");
  41. define('err_password_mismatch', "Hasła nie są identyczne");
  42. define('err_captcha', "Nieprawidłowe kod Captcha.");
  43. define('err_login_name', "Nazwa użytkownika jest pusta lub w użyciu.");
  44. define('err_first_name', "Podaj swoje imię.");
  45. define('err_last_name', "Pole nazwisko jest puste.");
  46. define('err_phone_number', "Pole numer telefonu jest puste.");
  47. define('err_email_address', "Adres e-mail jest puste lub nieprawidłowe.");
  48. define('err_users_parent', "Konto Subuser nie może tworzyć innych użytkowników.");
  49. define('err_parent_user', "The parent user ID must reference a valid pre-existing user.");
  50. define('err_email_address_already_in_use_by', "Adres e-mail jest już w użyciu przez użytkownika <b>%s</b>.");
  51. define('user_registration', "Rejestracja Użytkownika");
  52. define('your_account_details_has_been_sent_by_email_to', "Dane konta zostały wysłane pocztą do <b>%s</b>.");
  53. define('subject', "Hello %s, welcome to %s.");
  54. define('sub_user', "Sub Users");
  55. define('create_sub_user', "Dodaj SubUser");
  56. define('listdel_sub_user', "Lista lub Usuń Sub User");
  57. define('delete_sub_user', "Usuń Sub User");
  58. define('del_subuser_conf', "Czy na pewno chcesz usunąć to konto:");
  59. define('no_subusers', "Brak subuser aby być przypisany do grupie. Proszę utworzyć konta subuser.");
  60. define('subuser_deleted', "Sub-User %s został usunięty z bazy danych!");
  61. define('subuser_added', "Sub-User %s został utworzony i dodano do bazy!");
  62. define('your_subusers', "Owned Sub-User Accounts");
  63. ?>