| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?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('dir_not_found', "Directory '%s' not found from the server.");
- define('filename', "Filename");
- define('filesize', "Filesize");
- define('bytes', "Bytes");
- define('owner', "Owner");
- define('group', "Group");
- define('empty_directory', "Directory is empty.");
- define('currently_viewing', "Currently viewing directory '%s'");
- define('wrote_changes', "Changes saved successfully.");
- define('failed_write', "Failed to write file to remote server.");
- define('failed_read', "Failed to read file from the remote server.");
- define('failed_list', "Failed to retrieve directory list.");
- define('level_up', "^Up one Level^");
- define('unallowed_char', "Unallowed characters found from the path.");
- define('button_edit', "[Edit]");
- define('save', "Save");
- define('home_id_missing', "Home ID is missing.");
- define('upload', "Upload");
- define('upload_failed', "Upload failed, the error was: %s.");
- define('can_not_create_upload_folder_path', "Can not create upload folder path %s");
- define('url_is_not_accesible_from_agent', "URL %s is not accessible from the Agent");
- define('upload_file', "Upload file");
- define('uncompress', "Uncompress");
- define('create_folder', "Create folder");
- define('create', "Create");
- define('delete_item', "Delete %s?");
- define('upload_in_progress', "Upload in progress...");
- define('upload_complete', "Upload complete.");
- define('chattr_yes', "Lock File");
- define('chattr_no', "Unlock File");
- define('secure_item', "Secure/Unsecure %s?");
- define('filesecure', "File Security");
- define('chattr_locked', "File Locked");
- define('chattr_unlocked', "File Unlocked");
- define('rename', "Rename");
- define('move', "Move");
- define('copy', "Copy");
- define('compress', "Compress");
- define('create_file', "Create File");
- define('select_at_least_one_item', "Select at least one item");
- define('rename_item', "Rename item(s)");
- define('move_item', "Move item(s)");
- define('copy_item', "Copy item(s)");
- define('compress_item', "Compress item(s)");
- define('uncompress_item', "Uncompress item(s)");
- define('archive_name', "Archive name");
- define('archive_type', "Archive type");
- define('file_name', "File name");
- define('folder_name', "folder name");
- define('compresses_files_separately', "compresses files separately");
- define('to', "to");
- define('upload_to_web', "Upload to web");
- define('transfer_to_server', "Transfer to server");
- define('mail_sent_successfully', "Email sent successfully");
- define('send_item_by_email', "Send item(s) by email");
- define('subject', "Subject");
- define('message', "Message");
- define('dest_email', "Destination email");
- define('remove', "Remove");
- define('send_by_email', "Send by email");
- define('send_by_email_info', "For mailing files the packet 'mutt' must be installed in the agent side.");
- define('settings_updated', "Settings updated");
- define('update_settings', "Update settings");
- ?>
|