mysql.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2017 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('configured_mysql_hosts', "Configured MySQL Hosts");
  25. define('add_new_mysql_host', "Add MySQL host");
  26. define('enter_mysql_ip', "Enter MySQL IP.");
  27. define('enter_valid_port', "Enter a valid port.");
  28. define('enter_mysql_root_password', "Enter MySQL root password.");
  29. define('enter_mysql_name', "Enter MySQL name.");
  30. define('could_not_add_mysql_server', "Could not add MySQL server.");
  31. define('game_server_name_info', "Server name helps users to identify their servers.");
  32. define('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('direct_connection', "Direct connection");
  34. define('connection_through_remote_server_named', "Connection through remote server named %s");
  35. define('add_mysql_server', "Add MySQL server");
  36. define('mysql_online', "MySQL online");
  37. define('mysql_offline', "MySQL offline");
  38. define('encryption_key_mismatch', "Encryption key mismatch");
  39. define('unknown_error', "Unknown error");
  40. define('remove', "Delete");
  41. define('assign_db', "Assign Database");
  42. define('mysql_server_name', "MySQL server name");
  43. define('server_status', "Server status");
  44. define('mysql_ip_port', "MySQL IP:port");
  45. define('mysql_root_passwd', "MySQL root password");
  46. define('connection_method', "Connection method");
  47. define('user_privilegies', "User privileges");
  48. define('current_dbs', "Current databases");
  49. define('mysql_name', "MySQL server name");
  50. define('mysql_ip', "MySQL IP");
  51. define('mysql_port', "MySQL port");
  52. define('privilegies', "privileges");
  53. define('all', "All");
  54. define('custom', "Custom");
  55. define('server_added', "Server added.");
  56. define('sql_alter', "ALTER");
  57. define('sql_create', "CREATE");
  58. define('sql_create_temporary_tables', "CREATE TEMPORARY TABLES");
  59. define('sql_drop', "DROP");
  60. define('sql_index', "INDEX");
  61. define('sql_insert', "INSERT");
  62. define('sql_lock_tables', "LOCK TABLES");
  63. define('sql_select', "SELECT");
  64. define('sql_grant_option', "GRANT OPTION");
  65. define('sql_update', "UPDATE");
  66. define('sql_delete', "DELETE");
  67. define('sql_alter_info', "<b>Enables use of ALTER TABLE.</b>");
  68. define('sql_create_info', "<b>Enables use of CREATE TABLE.</b>");
  69. define('sql_create_temporary_tables_info', "<b>Enables use of CREATE TEMPORARY TABLE.</b>");
  70. define('sql_delete_info', "<b>Enables use of DELETE.</b>");
  71. define('sql_drop_info', "<b>Enables use of DROP TABLE.</b>");
  72. define('sql_index_info', "<b>Enables use of CREATE INDEX and DROP INDEX.</b>");
  73. define('sql_insert_info', "<b>Enables use of INSERT.</b>");
  74. define('sql_lock_tables_info', "<b>Enables use of LOCK TABLES on tables for which you have the SELECT privilege.</b>");
  75. define('sql_select_info', "<b>Enables use of SELECT.</b>");
  76. define('sql_update_info', "<b>Enables use of UPDATE.</b>");
  77. define('sql_grant_option_info', "<b>Enables privileges to be granted.</b>");
  78. define('select_game_server', "Select game server");
  79. define('invalid_mysql_server_id', "Invalid MySQL server ID.");
  80. define('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('db_added_for_home_id', "Added database for home ID <b>%s</b>.");
  82. define('could_not_remove_db', "The selected database could not be removed.");
  83. define('db_removed_successfully_from_mysql_server_named', "The database was removed from server %s.");
  84. define('areyousure_remove_mysql_server', "Are you sure that you want remove MySQL server named <b>%s</b>?");
  85. define('db_changed_successfully', "The database named %s was changed successfully.");
  86. define('error_while_remove', "Error while remove.");
  87. define('mysql_server_removed', "MySQL server named <b>%s</b> has been removed successfully.");
  88. define('unable_to_set_changes_to', "Unable to set changes to MySQL server named <b>%s</b>.");
  89. define('mysql_server_settings_changed', "MySQL server named <b>%s</b> has been changed successfully.");
  90. define('editing_mysql_server', "Editing MySQL server named <b>%s</b>.");
  91. define('save_settings', "Save settings");
  92. define('mysql_dbs_for', "Databases for server %s");
  93. define('edit_dbs', "Edit databases");
  94. define('edit_db_settings', "Edit database settings");
  95. define('remove_db', "Remove database");
  96. define('save_db_changes', "Save database changes.");
  97. define('add_db', "Add database");
  98. define('select_db', "Select database");
  99. define('db_user', "DB User");
  100. define('db_passwd', "DB Password");
  101. define('db_name', "DB name");
  102. define('enabled', "Enabled");
  103. define('game_server', "Game server");
  104. define('there_are_no_databases_assigned_for', "There are no databases assigned for <b>%s</b>.");
  105. define('unable_to_connect_to_mysql_server_as', "Unable to connect to MySQL server as %s.");
  106. define('unable_to_create_db', "Unable to create database.");
  107. define('unable_to_select_db', "Unable to select database %s.");
  108. define('db_info', "Database Information");
  109. define('db_tables', "Database tables");
  110. define('db_backup', "DB Backup");
  111. define('download_db_backup', "Download DB Backup");
  112. define('restore_db_backup', "Restore DB Backup");
  113. define('sql_file', "file(.sql)");
  114. ?>