69 lines
4.4 KiB
PHP
69 lines
4.4 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_install_lang', "Odaberite vaš željeni jezik");
|
||
define('OGP_LANG_install_welcome', "Dobrodošli u Open Game Panel Instalaciju");
|
||
define('OGP_LANG_file_permission_check', "Provjera potrebnih dozvola datoteka");
|
||
define('OGP_LANG_OK', "OK");
|
||
define('OGP_LANG_write_permission_required', "Potrebna je pisana dozvola");
|
||
define('OGP_LANG_execute_permission_required', "Potrebna je dozvola za izvršavanje");
|
||
define('OGP_LANG_create_an_empty_file', "Izradite praznu datoteku.");
|
||
define('OGP_LANG_found', "Pronađeno");
|
||
define('OGP_LANG_not_found', "Nije pronađeno");
|
||
define('OGP_LANG_pear_xxtea_info', "Pear Crypt_XXTEA je potreban za korištenje OGP-a. U većini Linux distribucija ovaj modul se može instalirati pomoću sljedeće Pear naredbe 'pear install Crypt_XXTEA-beta'.");
|
||
define('OGP_LANG_refresh', "Osvježiti");
|
||
define('OGP_LANG_checking_required_modules', "Provjera potrebnih modula");
|
||
define('OGP_LANG_checking_optional_modules', "Provjera dodatnih modula");
|
||
define('OGP_LANG_database_type', "Vrsta Baze Podataka");
|
||
define('OGP_LANG_database_settings', "Postavke pristupa bazi podataka");
|
||
define('OGP_LANG_database_hostname', "Hostname za bazu podataka");
|
||
define('OGP_LANG_database_username', "Korisičko ime za bazu podataka");
|
||
define('OGP_LANG_database_password', "Lozinka za bazu podataka");
|
||
define('OGP_LANG_database_name', "Ime za bazu podataka");
|
||
define('OGP_LANG_database_prefix', "Prefix za bazu podataka");
|
||
define('OGP_LANG_next', "Sljedeće");
|
||
define('OGP_LANG_encryption_key', "Encyption ključ (Agent)");
|
||
define('OGP_LANG_agent_port', "Port (Agent)");
|
||
define('OGP_LANG_unable_to_write_config', "Nije moguće pisati u konfiguracijsku datoteku. Ponovno provjerite dopuštenje za pisanje.");
|
||
define('OGP_LANG_admin_login_details', "Pojedinosti prijave administratora");
|
||
define('OGP_LANG_config_written', "Konfigurirane datoteke uspješno su stvorene.");
|
||
define('OGP_LANG_database_created', "Uspješno su stvorene tablice baza podataka.");
|
||
define('OGP_LANG_admin_login_details_info', "Sad stvaramo admin korisnika za vaš Open Game Panel.");
|
||
define('OGP_LANG_username', "Korisničko Ime");
|
||
define('OGP_LANG_repeat_password', "Potvrdi Lozinku");
|
||
define('OGP_LANG_email', "Adresa E-pošte");
|
||
define('OGP_LANG_back', "Natrag");
|
||
define('OGP_LANG_database_setup_failure', "Postavljanje nije uspjelo izraditi bazu podataka. Ponovno provjerite konfiguracije baze podataka.");
|
||
define('OGP_LANG_php_version_check', "Provjera PHP verzije");
|
||
define('OGP_LANG_invalid_username', "Unijeli ste nevaljano korisničko ime.");
|
||
define('OGP_LANG_password_too_short', "Vaša zaporka je prekratka. Mora biti barem '%d' znakova dugo.");
|
||
define('OGP_LANG_password_contains_invalid_characters', "Vaša zaporka sadrži nevažeće znakove.");
|
||
define('OGP_LANG_invalid_email_address', "Unijeli ste nevažeću adresu e-pošte.");
|
||
define('OGP_LANG_setup_complete', "Uspostava je uspješno završena. Open Game Panel sad je spreman za upotrebu.");
|
||
define('OGP_LANG_remove_install_and_secure_config', "Trebali biste izbrisati install.php s vašeg poslužitelja i include/config.inc.php vratiti natrag na 644 zbog sigurnosnih razloga.");
|
||
define('OGP_LANG_go_to_panel', "Kliknite ovdje za prijavu na OGP.");
|
||
define('OGP_LANG_unable_to_resolve', "Ako ne možete riješiti ovaj problem, posjetite web stranicu OGP-a");
|
||
define('OGP_LANG_slogan', "The Open-Source one!");
|
||
define('OGP_LANG_default_welcome_title_message', "Dobrodošli! <b style='font-size:12px; font-weight:normal;'>Možete promjeniti ovaj tekst na '<a href='?m=settings&p=themes'>Postavke teme</a>' ispod '<a href='?m=administration&p=main'>Administracija</a>'</b>");
|
||
?>
|