| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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_users_fname', "Vaše Ime");
- define('OGP_LANG_users_lname', "Prezime");
- define('OGP_LANG_users_passwd', "Lozinka");
- define('OGP_LANG_users_cpasswd', "Potvrditi lozinku");
- define('OGP_LANG_passwd_len', "Lozinka mora sadržati više od 6 znakova");
- define('OGP_LANG_err_password', "Lozinka ne smije biti prazna");
- define('OGP_LANG_err_confirm_password', "Polje za potvrdu lozinke ne smije biti prazna");
- define('OGP_LANG_err_password_mismatch', "Lozinke se ne podudaraju");
- define('OGP_LANG_phone_number', "Broj telefona");
- define('OGP_LANG_users_email', "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_successfull', "Uspješno");
- define('OGP_LANG_click_here', "Kliknite ovdje");
- define('OGP_LANG_to_login', "za prijavu.");
- define('OGP_LANG_registered_on', "Registriran na %s.");
- define('OGP_LANG_register_message', "Poštovani,<br><br>Vaš Open Game Panel račun je uspješno kreiran i vi se sada <a href='%s' target='_blank'>možete prijaviti</a>.<br><br>Korisničko ime: %s<br><br>Ne zaboravite često mijenjati zaporku i prvi put kada se prijavite.<br><br>Molimo ne odgovarajte na ovaj email!<br><br>______________________________<br>OGP Pošta");
- define('OGP_LANG_err_captcha', "Captcha se ne podudara.");
- define('OGP_LANG_err_login_name', "Korisničko Ime je prazno ili 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', "Broj telefona nije unešen.");
- define('OGP_LANG_err_email_address', "Prazna ili nepostojeća adresa e-pošte.");
- define('OGP_LANG_err_email_address_already_in_use_by', "E-pošta je več zauzeta od <b>%s</b>.");
- define('OGP_LANG_user_registration', "Registracija Korisnika");
- define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Podaci vašeg računa poslani su preko e-pošte na <b>%s</b>.");
- define('OGP_LANG_account_created', "Vaš račun je uspješno kreiran.");
- define('OGP_LANG_subject', "%s :: Detalji Računa");
- ?>
|