64 lines
No EOL
3.8 KiB
PHP
64 lines
No EOL
3.8 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', "Korisničko Ime");
|
|
define('OGP_LANG_first_name', "Ime");
|
|
define('OGP_LANG_last_name', "Prezime");
|
|
define('OGP_LANG_phone_number', "Broj Telefona");
|
|
define('OGP_LANG_email_address', "E-pošta");
|
|
define('OGP_LANG_register_a_new_user', "Registrirati novog korisnika");
|
|
define('OGP_LANG_password_mismatch', "Neodgovarajuće lozinke");
|
|
define('OGP_LANG_confirm_password', "Potvrditi lozinku");
|
|
define('OGP_LANG_subuser_password', "Lozinka Pod-Korisnika");
|
|
define('OGP_LANG_subuser_man', "Upravljanje Pod-Korisnikom");
|
|
define('OGP_LANG_successfull', "Uspješno");
|
|
define('OGP_LANG_click_here', "Kliknite Ovdje");
|
|
define('OGP_LANG_to_login', "za prijavu");
|
|
define('OGP_LANG_registered_on', "Registriran");
|
|
define('OGP_LANG_register_message', "Poštovani,<br><br> Vaš Open Game Panel račun je uspješno kreiran i za prijavu unesite Vaše podatke:<br><br>Korisničko Ime: %s<br>Lozinka: %s<br><br>Ne zaboravite često mijenjati lozinku nakon vaše prve prijave.<br><br>Molimo ne odgovarajte na ovu e-poštu!<br><br>______________________________<br>Black Market Servers");
|
|
define('OGP_LANG_err_password', "Lozinka ne može biti prazna");
|
|
define('OGP_LANG_err_confirm_password', "Polje za provjeru lozinke ne može biti prazno");
|
|
define('OGP_LANG_err_password_mismatch', "Lozinke se ne podudaraju");
|
|
define('OGP_LANG_err_captcha', "Captcha se ne podudara.");
|
|
define('OGP_LANG_err_login_name', "Korisiničko Ime je prazno ili je zauzeto.");
|
|
define('OGP_LANG_err_first_name', "Unesite vaše ime");
|
|
define('OGP_LANG_err_last_name', "Prezime nije unešeno");
|
|
define('OGP_LANG_err_phone_number', "Telefonski broj je prazan.");
|
|
define('OGP_LANG_err_email_address', "Prazna ili netočna adresa e-pošte.");
|
|
define('OGP_LANG_err_users_parent', "Računi pod-korisnika ne mogu stvarati druge korisnike.");
|
|
define('OGP_LANG_err_parent_user', "Matični ID korisnika mora uputiti na valjani postojeći korisnik.");
|
|
define('OGP_LANG_err_email_address_already_in_use_by', "Adresa e - pošte je zauzeta koju već upotrebljava korisnik <b>%s</b>.");
|
|
define('OGP_LANG_user_registration', "Registracija korisnika");
|
|
define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Podaci o vašem računu poslani su e-poštom na <b>%s</b>.");
|
|
define('OGP_LANG_subject', "Bok %s, dobo došao na %s!");
|
|
define('OGP_LANG_sub_user', "Pod-Korisnici");
|
|
define('OGP_LANG_create_sub_user', "Dodati Pod-Korisnika");
|
|
define('OGP_LANG_listdel_sub_user', "Popis, Izmjena podataka o Pod-korisnicima ili Izbriši Pod-Korisnike");
|
|
define('OGP_LANG_delete_sub_user', "Urediti/Izbrisati Pod-Korisnika");
|
|
define('OGP_LANG_del_subuser_conf', "Jeste li sigurni da želite izbrisati ovaj račun:");
|
|
define('OGP_LANG_no_subusers', "Na vašem računu još niste stvorili pod-korisnike!");
|
|
define('OGP_LANG_subuser_deleted', "Pod-Korisnik %s je uspješno izbrisan iz baze podataka!");
|
|
define('OGP_LANG_subuser_added', "Sub-User %s je uspješno stvoren i dodan u bazu podataka!");
|
|
define('OGP_LANG_your_subusers', "Pod-Korisnički Računi u Vlasništvu");
|
|
?>
|