55 lines
3 KiB
PHP
55 lines
3 KiB
PHP
<?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', "Nazwa użytkownika");
|
|
define('OGP_LANG_users_fname', "Imię");
|
|
define('OGP_LANG_users_lname', "Nazwisko");
|
|
define('OGP_LANG_users_passwd', "Hasło");
|
|
define('OGP_LANG_users_cpasswd', "Potwierdź hasło");
|
|
define('OGP_LANG_passwd_len', "Hasło musi być większe niż 6 znaków");
|
|
define('OGP_LANG_err_password', "Pole hasło nie może być puste");
|
|
define('OGP_LANG_err_confirm_password', "Pole Potwierdź hasło nie może być puste");
|
|
define('OGP_LANG_err_password_mismatch', "Hasła nie są identyczne");
|
|
define('OGP_LANG_phone_number', "Numer telefonu");
|
|
define('OGP_LANG_users_email', "Email");
|
|
define('OGP_LANG_register_a_new_user', "Zarejestruj nowego użytkownika");
|
|
define('OGP_LANG_password_mismatch', "Hasła nie są identyczne.");
|
|
define('OGP_LANG_confirm_password', "Potwierdź hasło");
|
|
define('OGP_LANG_successfull', "Powodzenie");
|
|
define('OGP_LANG_click_here', "Kliknij tutaj");
|
|
define('OGP_LANG_to_login', "aby się zalogować.");
|
|
define('OGP_LANG_registered_on', "Zarejestrowany w dniu :: %s");
|
|
define('OGP_LANG_register_message', "Hello,<br><br>Your Open Game Panel account has been created and you may <a href='%s' target='_blank'>login now</a>.<br><br>Username: %s<br><br>Remember to change your password often and the first time you login.<br><br>Please do not reply to this email!<br><br>______________________________<br>Black Market Servers");
|
|
define('OGP_LANG_err_captcha', "Nieprawidłowe Captcha.");
|
|
define('OGP_LANG_err_login_name', "Nazwa użytkownika jest pusta lub w użyciu.");
|
|
define('OGP_LANG_err_first_name', "Podaj swoje imię.");
|
|
define('OGP_LANG_err_last_name', "Pole nazwisko jest puste.");
|
|
define('OGP_LANG_err_phone_number', "Pole numer telefonu jest puste.");
|
|
define('OGP_LANG_err_email_address', "Adres e-mail jest puste lub nieprawidłowe.");
|
|
define('OGP_LANG_err_email_address_already_in_use_by', "Adres e-mail jest już w użyciu przez użytkownika <b>%s</b>.");
|
|
define('OGP_LANG_user_registration', "Rejestracja Użytkownika");
|
|
define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Dane konta zostały wysłane pocztą do <b>%s</b>.");
|
|
define('OGP_LANG_account_created', "Twoje konto zostało stworzone.");
|
|
define('OGP_LANG_subject', "%s :: Informacje o Koncie");
|
|
?>
|