| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2017 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_plugin', "Install Plugins");
- define('install_mappack', "Install Maps");
- define('install_config', "Install Configs");
- define('game_name', "Game Name");
- define('directory', "Directory Path");
- define('remote_server', "Remote server");
- define('select_addon', "Select Addon");
- define('install', "Install");
- define('failed_to_start_file_download', "Failed to start file download.");
- define('no_games_servers_available', "There are no game servers available in your account.");
- define('addon_installed_successfully', "Addon installed successfully");
- define('path', "Path");
- define('wait_while_decompressing', "Wait while the file %s is decompressed.");
- define('addon_name', "Addon Name");
- define('url', "URL");
- define('select_game_type', "Select Game Type");
- define('plugin', "Plugin");
- define('mappack', "MapPack");
- define('config', "Config");
- define('type', "Addon Type");
- define('game', "Game");
- define('show_all_addons', "Show All Addons");
- define('show_addons_for_selected_type', "Show Addons For Selected Type");
- define('show_addons_for_selected_game', "Show Addons For Selected Game");
- define('linux_games', "Linux Games:");
- define('windows_games', "Windows Games:");
- define('create_addon', "Create Addon");
- define('addons_db', "Addons DataBase");
- define('addon_has_been_created', "The addon %s has been created.");
- define('remove_addon', "Remove Addon");
- define('fill_the_url_address_to_a_compressed_file', "Please, fill an URL address for a compressed file.");
- define('fill_the_addon_name', "Please, fill a name for the addon package.");
- define('select_an_addon_type', "Please, select an addon type.");
- define('select_a_game_type', "Please, select a game type.");
- define('edit_addon', "Edit Addon");
- define('post-script', "Post-install script(bash)");
- define('replacements', "Replacements:");
- define('addon_name_info', "Enter a name for this addon, this is the name that the user sees.");
- define('url_info', "Enter a web address that contains a file to download, if compressed in zip or tar.gz will be unpacked in the root directory of the server or on the path given below.");
- define('path_info', "The path must be relative to the server folder and contain no slashes at the beginning or end, eg: cstrike/cfg. If left blank will use the server root path.");
- define('post-script_info', "Enter Bash language code, this will be executed as a script, you can use text replacements to customize the installation, they will be replaced by data from the server on which you install the addon. The script will start from the root folder of the server or the specified path.");
- ?>
|