mysql.php 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2018 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. define('OGP_LANG_configured_mysql_hosts', "Konfigurirani MySQL hostovi");
  25. define('OGP_LANG_add_new_mysql_host', "Dodati MySQL host");
  26. define('OGP_LANG_enter_mysql_ip', "Upisati MySQL IP");
  27. define('OGP_LANG_enter_valid_port', "Unesite valjani port.");
  28. define('OGP_LANG_enter_mysql_root_password', "Unesite root lozinku za MySQL");
  29. define('OGP_LANG_enter_mysql_name', "Unesite korisničko ime za MySQL");
  30. define('OGP_LANG_could_not_add_mysql_server', "Nije moguće dodati MySQL poslužitelj.");
  31. define('OGP_LANG_game_server_name_info', "Ime poslužitelja pomaže korisnicima da identificiraju svoje poslužitelje.");
  32. define('OGP_LANG_note_mysql_host', "Napomena: Korištenjem \"Izravne veze\" poslužitelj mora prihvatiti vanjske veze tako da se poslužitelji mogu povezati na daljinu, dok će se povezivanje putem udaljenog poslužitelja koristiti kao lokalna veza.");
  33. define('OGP_LANG_direct_connection', "Izravna veza");
  34. define('OGP_LANG_connection_through_remote_server_named', "Povezivanje putem udaljenog poslužitelja nazvanog %s");
  35. define('OGP_LANG_add_mysql_server', "Dodati MySQL poslužitelj");
  36. define('OGP_LANG_mysql_online', "MySQL na mreži");
  37. define('OGP_LANG_mysql_offline', "MySQL nije na mreži");
  38. define('OGP_LANG_encryption_key_mismatch', "Nepodudaranje ključa za šifriranje");
  39. define('OGP_LANG_unknown_error', "Nepoznata pogreška");
  40. define('OGP_LANG_remove', "Izbrisati");
  41. define('OGP_LANG_assign_db', "Dodijeli bazu podataka");
  42. define('OGP_LANG_mysql_server_name', "Naziv MySQL poslužitelja");
  43. define('OGP_LANG_server_status', "Status poslužitelja");
  44. define('OGP_LANG_mysql_ip_port', "MySQL IP:port");
  45. define('OGP_LANG_mysql_root_passwd', "MySQL root lozinka");
  46. define('OGP_LANG_connection_method', "Način povezivanja");
  47. define('OGP_LANG_user_privilegies', "Korisničke privilegije");
  48. define('OGP_LANG_current_dbs', "Trenutne baze podataka");
  49. define('OGP_LANG_mysql_name', "Naziv MySQL poslužitelja");
  50. define('OGP_LANG_mysql_ip', "MySQL IP");
  51. define('OGP_LANG_mysql_port', "MySQL port");
  52. define('OGP_LANG_privilegies', "privilegije");
  53. define('OGP_LANG_all', "Sve");
  54. define('OGP_LANG_custom', "Prilagođeno");
  55. define('OGP_LANG_server_added', "Poslužitelj uspješno dodan.");
  56. define('OGP_LANG_sql_alter', "ALTER");
  57. define('OGP_LANG_sql_create', "KREIRATI");
  58. define('OGP_LANG_sql_create_temporary_tables', "IZRADE TEMPORARNE TABLICE");
  59. define('OGP_LANG_sql_drop', "OTPUSTITI");
  60. define('OGP_LANG_sql_index', "INDEKS");
  61. define('OGP_LANG_sql_insert', "UBACIVATI");
  62. define('OGP_LANG_sql_lock_tables', "ZAKLJUČATI TABLICE");
  63. define('OGP_LANG_sql_select', "ODABRATI");
  64. define('OGP_LANG_sql_grant_option', "POTVRDA OPCIJA");
  65. define('OGP_LANG_sql_update', "AŽURIRATI");
  66. define('OGP_LANG_sql_delete', "IZBRISATI");
  67. define('OGP_LANG_sql_alter_info', "<b>Omogućuje upotrebu ALTER TABLICE.</b>");
  68. define('OGP_LANG_sql_create_info', "<b>Omogućuje upotrebu KREIRAJ TABLICE.</b>");
  69. define('OGP_LANG_sql_create_temporary_tables_info', "<b>Omogućuje upotrebu IZRADE TEMPORARNE TABLICE.</b>");
  70. define('OGP_LANG_sql_delete_info', "<b>Omogućuje upotrebu IZBRISATI.</b>");
  71. define('OGP_LANG_sql_drop_info', "<b>Omogućuje upotrebu OTPUSTITI TABLICE.</b>");
  72. define('OGP_LANG_sql_index_info', "<b>Omogućuje upotrebu KREIRAJ INDEKS i OTPUSTITI INDEKS.</b>");
  73. define('OGP_LANG_sql_insert_info', "<b>Omogućuje upotrebu UBACIVATI.</b>");
  74. define('OGP_LANG_sql_lock_tables_info', "<b>Omogućuje upotrebu ZAKLJUČATI TABLICE na tablicama na koje imate ODABRATI privilegije.</b>");
  75. define('OGP_LANG_sql_select_info', "<b>Omogućuje upotrebu ODABRATI.</b>");
  76. define('OGP_LANG_sql_update_info', "<b>Omogućuje upotrebu AŽURIRATI.</b>");
  77. define('OGP_LANG_sql_grant_option_info', "<b>Omogućuje privilegije za potvrdu.</b>");
  78. define('OGP_LANG_select_game_server', "Odaberite igre");
  79. define('OGP_LANG_invalid_mysql_server_id', "Nevažeći ID MySQL poslužitelja.");
  80. define('OGP_LANG_there_is_another_db_named_or_user_named', "Postoji još jedna baza podataka pod nazivom <b>%s</b> ili drugog imenovanog korisnika<b>%s</b>.");
  81. define('OGP_LANG_db_added_for_home_id', "Dodana baza podataka za Home ID <b>%s</b>.");
  82. define('OGP_LANG_could_not_remove_db', "Odabrana baza podataka nije mogla biti uklonjena.");
  83. define('OGP_LANG_db_removed_successfully_from_mysql_server_named', "Baza podataka je uklonjena s poslužitelja %s.");
  84. define('OGP_LANG_areyousure_remove_mysql_server', "Jeste li sigurni da želite ukloniti MySQL poslužitelj nazvan <b>%s</b>?");
  85. define('OGP_LANG_db_changed_successfully', "Baza podataka pod nazivom %s je uspješno promijenjena.");
  86. define('OGP_LANG_error_while_remove', "Pogreška prilikom uklanjanja.");
  87. define('OGP_LANG_mysql_server_removed', "MySQL poslužitelj nazvan <b>%s</b> je uspješno uklonjen.");
  88. define('OGP_LANG_unable_to_set_changes_to', "Nije moguće postaviti promjene na MySQL poslužitelj nazvan <b>%s</b>.");
  89. define('OGP_LANG_mysql_server_settings_changed', "MySQL poslužitelj nazvan <b>%s</b> je uspješno promijenjen.");
  90. define('OGP_LANG_editing_mysql_server', "Uređivanje MySQL poslužitelja nazvanog <b>%s</b>.");
  91. define('OGP_LANG_save_settings', "Spremi postavke");
  92. define('OGP_LANG_mysql_dbs_for', "Baze podataka za poslužitelj %s");
  93. define('OGP_LANG_edit_dbs', "Uredite baze podataka");
  94. define('OGP_LANG_edit_db_settings', "Uredite postavke baze podataka");
  95. define('OGP_LANG_remove_db', "Ukloniti bazu podataka");
  96. define('OGP_LANG_save_db_changes', "Spremi promjene baze podataka.");
  97. define('OGP_LANG_add_db', "Dodaj bazu podataka");
  98. define('OGP_LANG_select_db', "Odaberite bazu podataka");
  99. define('OGP_LANG_db_user', "BP Korisnik");
  100. define('OGP_LANG_db_passwd', "BP Lozinka");
  101. define('OGP_LANG_db_name', "BP Naziv");
  102. define('OGP_LANG_enabled', "Omogućeno");
  103. define('OGP_LANG_game_server', "Igrice");
  104. define('OGP_LANG_there_are_no_databases_assigned_for', "Nema dodijeljenih baza podataka za <b>%s</b>.");
  105. define('OGP_LANG_unable_to_connect_to_mysql_server_as', "Nije moguće povezati se na MySQL poslužitelj kao %s.");
  106. define('OGP_LANG_unable_to_create_db', "Nije moguće stvoriti bazu podataka.");
  107. define('OGP_LANG_unable_to_select_db', "Nije moguće odabrati %s bazu podataka.");
  108. define('OGP_LANG_db_info', "Informacije o bazama podataka");
  109. define('OGP_LANG_db_tables', "Tablice baza podataka");
  110. define('OGP_LANG_db_backup', "BP Backup");
  111. define('OGP_LANG_download_db_backup', "Skini BP Backup");
  112. define('OGP_LANG_restore_db_backup', "Vratite DB Backup");
  113. define('OGP_LANG_sql_file', "datoteka(.sql)");
  114. ?>