install.php 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2016 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('install_lang', "Select your preferred language");
  25. define('install_welcome', "Welcome to the Open Game Panel Setup");
  26. define('file_permission_check', "Checking required file permissions");
  27. define('OK', "OK");
  28. define('write_permission_required', "Write permission required");
  29. define('execute_permission_required', "Execute permission required");
  30. define('create_an_empty_file', "Create an empty file.");
  31. define('found', "Found");
  32. define('not_found', "Not Found");
  33. define('pear_xxtea_info', "Pear Crypt_XXTEA is required for OGP usage. In most of the Linux systems this module can be installed with pear with the following command 'pear install Crypt_XXTEA-beta'.");
  34. define('refresh', "Refresh");
  35. define('checking_required_modules', "Checking required modules");
  36. define('database_type', "Database type");
  37. define('database_settings', "Database access settings");
  38. define('database_hostname', "Database Hostname");
  39. define('database_username', "Database Username");
  40. define('database_password', "Database Password");
  41. define('database_name', "Database Name");
  42. define('database_prefix', "Database Prefix");
  43. define('next', "Next");
  44. define('encryption_key', "Encyption key (Agent)");
  45. define('agent_port', "Port (Agent)");
  46. define('unable_to_write_config', "Unable to write to config. Please recheck write permissions.");
  47. define('admin_login_details', "Admin login details");
  48. define('config_written', "The config files created successfully.");
  49. define('database_created', "Database tables created succesfully.");
  50. define('admin_login_details_info', "Now we create admin user for your Open Game Panel.");
  51. define('username', "Username");
  52. define('repeat_password', "Repeat password");
  53. define('email', "Email address");
  54. define('back', "Back");
  55. define('database_setup_failure', "Setup was unable to create the database. Please recheck your database configs.");
  56. define('php_version_check', "Checking PHP version.");
  57. define('invalid_username', "You entered invalid username.");
  58. define('password_too_short', "Your password is too short. It must be at least '%d' characters long.");
  59. define('password_contains_invalid_characters', "Your password contains invalid characters.");
  60. define('invalid_email_address', "You entered invalid email address.");
  61. define('setup_complete', "Setup has been completed successfully. The Open Game Panel is now ready for use.");
  62. define('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.");
  63. define('go_to_panel', "Click here to login to your OGP.");
  64. define('unable_to_resolve', "If you are unable to resolve this problem please visit OGP website ");
  65. define('slogan', "The Open-Source one!");
  66. define('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>");
  67. ?>