88 lines
No EOL
4.1 KiB
PHP
Executable file
88 lines
No EOL
4.1 KiB
PHP
Executable file
<?php
|
|
/*
|
|
*
|
|
* OGP - Open Game Panel
|
|
* Copyright (C) 2008 - 2018 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('OGP_LANG_dir_not_found', "Directory '%s' not found from the server.");
|
|
define('OGP_LANG_filename', "Filename");
|
|
define('OGP_LANG_filesize', "Filesize");
|
|
define('OGP_LANG_bytes', "Bytes");
|
|
define('OGP_LANG_owner', "Owner");
|
|
define('OGP_LANG_group', "Group");
|
|
define('OGP_LANG_empty_directory', "Directory is empty.");
|
|
define('OGP_LANG_currently_viewing', "Currently viewing directory '%s'");
|
|
define('OGP_LANG_wrote_changes', "Changes saved successfully.");
|
|
define('OGP_LANG_failed_write', "Failed to write file to remote server.");
|
|
define('OGP_LANG_failed_read', "Failed to read file from the remote server.");
|
|
define('OGP_LANG_failed_list', "Failed to retrieve directory list.");
|
|
define('OGP_LANG_level_up', "^Up one Level^");
|
|
define('OGP_LANG_unallowed_char', "Unallowed characters found from the path.");
|
|
define('OGP_LANG_button_edit', "[Edit]");
|
|
define('OGP_LANG_save', "Save");
|
|
define('OGP_LANG_home_id_missing', "Home ID is missing.");
|
|
define('OGP_LANG_upload', "Upload");
|
|
define('OGP_LANG_upload_failed', "Upload failed, the error was: %s.");
|
|
define('OGP_LANG_can_not_create_upload_folder_path', "Can not create upload folder path %s");
|
|
define('OGP_LANG_url_is_not_accesible_from_agent', "URL %s is not accessible from the Agent");
|
|
define('OGP_LANG_upload_file', "Upload file");
|
|
define('OGP_LANG_uncompress', "Uncompress");
|
|
define('OGP_LANG_create_folder', "Create folder");
|
|
define('OGP_LANG_create', "Create");
|
|
define('OGP_LANG_delete_item', "Delete %s?");
|
|
define('OGP_LANG_upload_in_progress', "Upload in progress...");
|
|
define('OGP_LANG_upload_complete', "Upload complete.");
|
|
define('OGP_LANG_chattr_yes', "Lock File");
|
|
define('OGP_LANG_chattr_no', "Unlock File");
|
|
define('OGP_LANG_secure_item', "Secure/Unsecure %s?");
|
|
define('OGP_LANG_filesecure', "File Security");
|
|
define('OGP_LANG_chattr_locked', "File Locked");
|
|
define('OGP_LANG_chattr_unlocked', "File Unlocked");
|
|
define('OGP_LANG_rename', "Rename");
|
|
define('OGP_LANG_move', "Move");
|
|
define('OGP_LANG_copy', "Copy");
|
|
define('OGP_LANG_compress', "Compress");
|
|
define('OGP_LANG_create_file', "Create File");
|
|
define('OGP_LANG_select_at_least_one_item', "Select at least one item");
|
|
define('OGP_LANG_rename_item', "Rename item(s)");
|
|
define('OGP_LANG_move_item', "Move item(s)");
|
|
define('OGP_LANG_copy_item', "Copy item(s)");
|
|
define('OGP_LANG_compress_item', "Compress item(s)");
|
|
define('OGP_LANG_uncompress_item', "Uncompress item(s)");
|
|
define('OGP_LANG_archive_name', "Archive name");
|
|
define('OGP_LANG_archive_type', "Archive type");
|
|
define('OGP_LANG_file_name', "File name");
|
|
define('OGP_LANG_folder_name', "folder name");
|
|
define('OGP_LANG_compresses_files_separately', "compresses files separately");
|
|
define('OGP_LANG_to', "to");
|
|
define('OGP_LANG_upload_to_web', "Upload to web");
|
|
define('OGP_LANG_transfer_to_server', "Transfer to server");
|
|
define('OGP_LANG_mail_sent_successfully', "Email sent successfully");
|
|
define('OGP_LANG_send_item_by_email', "Send item(s) by email");
|
|
define('OGP_LANG_subject', "Subject");
|
|
define('OGP_LANG_message', "Message");
|
|
define('OGP_LANG_dest_email', "Destination email");
|
|
define('OGP_LANG_remove', "Remove");
|
|
define('OGP_LANG_send_by_email', "Send by email");
|
|
define('OGP_LANG_send_by_email_info', "For sending files the 'mutt' package must be installed on all available Agents.");
|
|
define('OGP_LANG_settings_updated', "Settings updated");
|
|
define('OGP_LANG_update_settings', "Update settings");
|
|
?>
|