mysql.php 6.8 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', "Configured MySQL Hosts");
  25. define('OGP_LANG_add_new_mysql_host', "إضافة مضيف ميسكل");
  26. define('OGP_LANG_enter_mysql_ip', "تفعيل ايبي ميسكل.");
  27. define('OGP_LANG_enter_valid_port', "أدخل بورت صالح.");
  28. define('OGP_LANG_enter_mysql_root_password', "أدخل كلمة مرور روت الميسكل.");
  29. define('OGP_LANG_enter_mysql_name', "أدخل إسم الميسكل.");
  30. define('OGP_LANG_could_not_add_mysql_server', "تعذر إضافة خادم ميسكل.");
  31. define('OGP_LANG_game_server_name_info', "Server name helps users to identify their servers.");
  32. define('OGP_LANG_note_mysql_host', "Note: Using a 'Direct connection' the server must accept external connections so the servers can connect remotely, whereas connecting through a remote server it will be used just as a local connection.");
  33. define('OGP_LANG_direct_connection', "اتصال مباشر");
  34. define('OGP_LANG_connection_through_remote_server_named', "Connection through remote server named %s");
  35. define('OGP_LANG_add_mysql_server', "إضافة سيرفر ميسكل");
  36. define('OGP_LANG_mysql_online', "ميسكل متصل");
  37. define('OGP_LANG_mysql_offline', "ميسكل غير-متصل");
  38. define('OGP_LANG_encryption_key_mismatch', "عدم تطابق مفتاح التشفير");
  39. define('OGP_LANG_unknown_error', "خطأ غير معروف");
  40. define('OGP_LANG_remove', "حذف");
  41. define('OGP_LANG_assign_db', "تعيين قاعدة البيانات");
  42. define('OGP_LANG_mysql_server_name', "اسم سيرفر ميسكل");
  43. define('OGP_LANG_server_status', "حالة السيرفر");
  44. define('OGP_LANG_mysql_ip_port', "ميسكل أيبي:بورت");
  45. define('OGP_LANG_mysql_root_passwd', "كلمة مرور روت الميسكل");
  46. define('OGP_LANG_connection_method', "Connection method");
  47. define('OGP_LANG_user_privilegies', "User privileges");
  48. define('OGP_LANG_current_dbs', "Current databases");
  49. define('OGP_LANG_mysql_name', "MySQL server name");
  50. define('OGP_LANG_mysql_ip', "MySQL IP");
  51. define('OGP_LANG_mysql_port', "MySQL port");
  52. define('OGP_LANG_privilegies', "privileges");
  53. define('OGP_LANG_all', "All");
  54. define('OGP_LANG_custom', "Custom");
  55. define('OGP_LANG_server_added', "Server added.");
  56. define('OGP_LANG_sql_alter', "ALTER");
  57. define('OGP_LANG_sql_create', "CREATE");
  58. define('OGP_LANG_sql_create_temporary_tables', "CREATE TEMPORARY TABLES");
  59. define('OGP_LANG_sql_drop', "DROP");
  60. define('OGP_LANG_sql_index', "INDEX");
  61. define('OGP_LANG_sql_insert', "INSERT");
  62. define('OGP_LANG_sql_lock_tables', "LOCK TABLES");
  63. define('OGP_LANG_sql_select', "SELECT");
  64. define('OGP_LANG_sql_grant_option', "GRANT OPTION");
  65. define('OGP_LANG_sql_update', "UPDATE");
  66. define('OGP_LANG_sql_delete', "DELETE");
  67. define('OGP_LANG_sql_alter_info', "<b>Enables use of ALTER TABLE.</b>");
  68. define('OGP_LANG_sql_create_info', "<b>Enables use of CREATE TABLE.</b>");
  69. define('OGP_LANG_sql_create_temporary_tables_info', "<b>Enables use of CREATE TEMPORARY TABLE.</b>");
  70. define('OGP_LANG_sql_delete_info', "<b>Enables use of DELETE.</b>");
  71. define('OGP_LANG_sql_drop_info', "<b>Enables use of DROP TABLE.</b>");
  72. define('OGP_LANG_sql_index_info', "<b>Enables use of CREATE INDEX and DROP INDEX.</b>");
  73. define('OGP_LANG_sql_insert_info', "<b>Enables use of INSERT.</b>");
  74. define('OGP_LANG_sql_lock_tables_info', "<b>Enables use of LOCK TABLES on tables for which you have the SELECT privilege.</b>");
  75. define('OGP_LANG_sql_select_info', "<b>Enables use of SELECT.</b>");
  76. define('OGP_LANG_sql_update_info', "<b>Enables use of UPDATE.</b>");
  77. define('OGP_LANG_sql_grant_option_info', "<b>Enables privileges to be granted.</b>");
  78. define('OGP_LANG_select_game_server', "Select game server");
  79. define('OGP_LANG_invalid_mysql_server_id', "Invalid MySQL server ID.");
  80. define('OGP_LANG_there_is_another_db_named_or_user_named', "There is another database named <b>%s</b> or another user named <b>%s</b>.");
  81. define('OGP_LANG_db_added_for_home_id', "Added database for home ID <b>%s</b>.");
  82. define('OGP_LANG_could_not_remove_db', "The selected database could not be removed.");
  83. define('OGP_LANG_db_removed_successfully_from_mysql_server_named', "The database was removed from server %s.");
  84. define('OGP_LANG_areyousure_remove_mysql_server', "Are you sure that you want remove MySQL server named <b>%s</b>?");
  85. define('OGP_LANG_db_changed_successfully', "The database named %s was changed successfully.");
  86. define('OGP_LANG_error_while_remove', "Error while remove.");
  87. define('OGP_LANG_mysql_server_removed', "MySQL server named <b>%s</b> has been removed successfully.");
  88. define('OGP_LANG_unable_to_set_changes_to', "Unable to set changes to MySQL server named <b>%s</b>.");
  89. define('OGP_LANG_mysql_server_settings_changed', "MySQL server named <b>%s</b> has been changed successfully.");
  90. define('OGP_LANG_editing_mysql_server', "Editing MySQL server named <b>%s</b>.");
  91. define('OGP_LANG_save_settings', "Save settings");
  92. define('OGP_LANG_mysql_dbs_for', "Databases for server %s");
  93. define('OGP_LANG_edit_dbs', "Edit databases");
  94. define('OGP_LANG_edit_db_settings', "Edit database settings");
  95. define('OGP_LANG_remove_db', "Remove database");
  96. define('OGP_LANG_save_db_changes', "Save database changes.");
  97. define('OGP_LANG_add_db', "Add database");
  98. define('OGP_LANG_select_db', "Select database");
  99. define('OGP_LANG_db_user', "DB User");
  100. define('OGP_LANG_db_passwd', "DB Password");
  101. define('OGP_LANG_db_name', "DB name");
  102. define('OGP_LANG_enabled', "Enabled");
  103. define('OGP_LANG_game_server', "Game server");
  104. define('OGP_LANG_there_are_no_databases_assigned_for', "There are no databases assigned for <b>%s</b>.");
  105. define('OGP_LANG_unable_to_connect_to_mysql_server_as', "Unable to connect to MySQL server as %s.");
  106. define('OGP_LANG_unable_to_create_db', "Unable to create database.");
  107. define('OGP_LANG_unable_to_select_db', "Unable to select database %s.");
  108. define('OGP_LANG_db_info', "Database Information");
  109. define('OGP_LANG_db_tables', "Database tables");
  110. define('OGP_LANG_db_backup', "DB Backup");
  111. define('OGP_LANG_download_db_backup', "Download DB Backup");
  112. define('OGP_LANG_restore_db_backup', "Restore DB Backup");
  113. define('OGP_LANG_sql_file', "file(.sql)");
  114. ?>