install.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_install_lang', "Select your preferred language");
  25. define('OGP_LANG_install_welcome', "Welcome to the Open Game Panel Installer");
  26. define('OGP_LANG_file_permission_check', "Checking required file permissions");
  27. define('OGP_LANG_OK', "OK");
  28. define('OGP_LANG_write_permission_required', "Write permission required");
  29. define('OGP_LANG_execute_permission_required', "Execute permission required");
  30. define('OGP_LANG_create_an_empty_file', "Create an empty file.");
  31. define('OGP_LANG_found', "Found");
  32. define('OGP_LANG_not_found', "Not found");
  33. define('OGP_LANG_pear_xxtea_info', "Pear Crypt_XXTEA is required for OGP usage. In the most of the Linux distributions this module can be installed with the following Pear command 'pear install Crypt_XXTEA-beta'.");
  34. define('OGP_LANG_refresh', "Refresh");
  35. define('OGP_LANG_checking_required_modules', "Checking required modules");
  36. define('OGP_LANG_checking_optional_modules', "Checking optional modules");
  37. define('OGP_LANG_database_type', "Database type");
  38. define('OGP_LANG_database_settings', "Database access settings");
  39. define('OGP_LANG_database_hostname', "Database Hostname");
  40. define('OGP_LANG_database_username', "Database Username");
  41. define('OGP_LANG_database_password', "Database Password");
  42. define('OGP_LANG_database_name', "Database Name");
  43. define('OGP_LANG_database_prefix', "Database Prefix");
  44. define('OGP_LANG_next', "Next");
  45. define('OGP_LANG_encryption_key', "Encyption key (Agent)");
  46. define('OGP_LANG_agent_port', "Port (Agent)");
  47. define('OGP_LANG_unable_to_write_config', "Unable to write to configuration file. Please recheck the write permission.");
  48. define('OGP_LANG_admin_login_details', "Admin login details");
  49. define('OGP_LANG_config_written', "The config files created successfully.");
  50. define('OGP_LANG_database_created', "Database tables created succesfully.");
  51. define('OGP_LANG_admin_login_details_info', "Now we create admin user for your Open Game Panel.");
  52. define('OGP_LANG_username', "Username");
  53. define('OGP_LANG_repeat_password', "Repeat password");
  54. define('OGP_LANG_email', "E-mail address");
  55. define('OGP_LANG_back', "Back");
  56. define('OGP_LANG_database_setup_failure', "Setup was unable to create the database. Please recheck your database configs.");
  57. define('OGP_LANG_php_version_check', "Checking PHP version");
  58. define('OGP_LANG_invalid_username', "You entered invalid username.");
  59. define('OGP_LANG_password_too_short', "Your password is too short. It must be at least '%d' characters long.");
  60. define('OGP_LANG_password_contains_invalid_characters', "Your password contains invalid characters.");
  61. define('OGP_LANG_invalid_email_address', "You entered invalid e-mail address.");
  62. define('OGP_LANG_setup_complete', "Setup has been completed successfully. The Open Game Panel is now ready for use.");
  63. define('OGP_LANG_remove_install_and_secure_config', "You should delete install.php from your server and chmod your includes/config.inc.php back to 644 for security purposes.");
  64. define('OGP_LANG_go_to_panel', "Click here to login to your OGP.");
  65. define('OGP_LANG_unable_to_resolve', "If you are unable to resolve this problem please visit OGP website ");
  66. define('OGP_LANG_slogan', "The Open-Source one!");
  67. define('OGP_LANG_default_welcome_title_message', "Welcome! <b style='font-size:12px; font-weight:normal;'>You can change this title in '<a href='?m=settings&p=themes'>Theme Settings</a>' under the '<a href='?m=administration&p=main'>Administration</a>' tab.</b>");
  68. ?>