| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2016 The OGP Development Team
- *
- * http://www.opengamepanel.org/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- */
- define('install_lang', "Select your preferred language");
- define('install_welcome', "Welcome to the Open Game Panel Setup");
- define('file_permission_check', "Checking required file permissions");
- define('OK', "OK");
- define('write_permission_required', "Write permission required");
- define('execute_permission_required', "Execute permission required");
- define('create_an_empty_file', "Create an empty file.");
- define('found', "Found");
- define('not_found', "Not Found");
- 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'.");
- define('refresh', "Refresh");
- define('checking_required_modules', "Checking required modules");
- define('database_type', "Database type");
- define('database_settings', "Database access settings");
- define('database_hostname', "Database Hostname");
- define('database_username', "Database Username");
- define('database_password', "Database Password");
- define('database_name', "Database Name");
- define('database_prefix', "Database Prefix");
- define('next', "Next");
- define('encryption_key', "Encyption key (Agent)");
- define('agent_port', "Port (Agent)");
- define('unable_to_write_config', "Unable to write to config. Please recheck write permissions.");
- define('admin_login_details', "Admin login details");
- define('config_written', "The config files created successfully.");
- define('database_created', "Database tables created succesfully.");
- define('admin_login_details_info', "Now we create admin user for your Open Game Panel.");
- define('username', "Username");
- define('repeat_password', "Repeat password");
- define('email', "Email address");
- define('back', "Back");
- define('database_setup_failure', "Setup was unable to create the database. Please recheck your database configs.");
- define('php_version_check', "Checking PHP version.");
- define('invalid_username', "You entered invalid username.");
- define('password_too_short', "Your password is too short. It must be at least '%d' characters long.");
- define('password_contains_invalid_characters', "Your password contains invalid characters.");
- define('invalid_email_address', "You entered invalid email address.");
- define('setup_complete', "Setup has been completed successfully. The Open Game Panel is now ready for use.");
- 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.");
- define('go_to_panel', "Click here to login to your OGP.");
- define('unable_to_resolve', "If you are unable to resolve this problem please visit OGP website ");
- define('slogan', "The Open-Source one!");
- 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>");
- ?>
|