55 lines
2.9 KiB
PHP
55 lines
2.9 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', "Uživatelské jméno");
|
|
define('OGP_LANG_users_fname', "Jméno");
|
|
define('OGP_LANG_users_lname', "Příjmení");
|
|
define('OGP_LANG_users_passwd', "Heslo");
|
|
define('OGP_LANG_users_cpasswd', "potvrďte heslo");
|
|
define('OGP_LANG_passwd_len', "Heslo musí být delší než 6 znaků");
|
|
define('OGP_LANG_err_password', "Heslo nemůže být prázdné");
|
|
define('OGP_LANG_err_confirm_password', "Pole ověřte heslo nemůže být prázdné");
|
|
define('OGP_LANG_err_password_mismatch', "Hesla se neshodují");
|
|
define('OGP_LANG_phone_number', "Telefonní číslo");
|
|
define('OGP_LANG_users_email', "E-mailem");
|
|
define('OGP_LANG_register_a_new_user', "Zaregistrujte nového uživatele");
|
|
define('OGP_LANG_password_mismatch', "Nesouhlas hesel");
|
|
define('OGP_LANG_confirm_password', "potvrďte heslo");
|
|
define('OGP_LANG_successfull', "Úspěšný");
|
|
define('OGP_LANG_click_here', "Klikněte zde");
|
|
define('OGP_LANG_to_login', "přihlásit se.");
|
|
define('OGP_LANG_registered_on', "Registered on: %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', "Captcha does not match.");
|
|
define('OGP_LANG_err_login_name', "User name is empty or in use.");
|
|
define('OGP_LANG_err_first_name', "Enter your name.");
|
|
define('OGP_LANG_err_last_name', "Last Name not entered.");
|
|
define('OGP_LANG_err_phone_number', "Phone number is empty.");
|
|
define('OGP_LANG_err_email_address', "Empty or incorrect email address.");
|
|
define('OGP_LANG_err_email_address_already_in_use_by', "Email address already in use by <b>%s</b>.");
|
|
define('OGP_LANG_user_registration', "User Registration");
|
|
define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Your account details has been sent by email to <b>%s</b>.");
|
|
define('OGP_LANG_account_created', "Your account has been created.");
|
|
define('OGP_LANG_subject', "%s :: Account Information");
|
|
?>
|