| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?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', "服务器上未找到目录 '%s'。");
- define('OGP_LANG_filename', "文件名");
- define('OGP_LANG_filesize', "文件大小");
- define('OGP_LANG_bytes', "字节");
- define('OGP_LANG_owner', "所有者");
- define('OGP_LANG_group', "组");
- define('OGP_LANG_empty_directory', "目录为空。");
- define('OGP_LANG_currently_viewing', "当前查看目录 '%s'");
- define('OGP_LANG_wrote_changes', "更改保存成功。");
- define('OGP_LANG_failed_write', "无法将文件写入远程服务器。");
- define('OGP_LANG_failed_read', "无法从远程服务器读取文件。");
- define('OGP_LANG_failed_list', "无法检索目录列表。");
- define('OGP_LANG_level_up', "^上一级^");
- define('OGP_LANG_unallowed_char', "路径中发现不允许的字符。");
- define('OGP_LANG_button_edit', "[编辑]");
- define('OGP_LANG_save', "保存");
- define('OGP_LANG_home_id_missing', "缺少主页 ID。");
- define('OGP_LANG_upload', "上传");
- define('OGP_LANG_upload_failed', "上传失败,错误是:%s。");
- define('OGP_LANG_can_not_create_upload_folder_path', "无法创建上传文件夹路径 %s");
- define('OGP_LANG_url_is_not_accesible_from_agent', "代理无法访问 URL %s");
- define('OGP_LANG_upload_file', "上传文件");
- define('OGP_LANG_uncompress', "解压");
- define('OGP_LANG_create_folder', "创建文件夹");
- define('OGP_LANG_create', "创建");
- define('OGP_LANG_delete_item', "删除 %s?");
- define('OGP_LANG_upload_in_progress', "上传中...");
- define('OGP_LANG_upload_complete', "上传完成。");
- define('OGP_LANG_chattr_yes', "锁定文件");
- define('OGP_LANG_chattr_no', "解锁文件");
- define('OGP_LANG_secure_item', "安全/不安全 %s?");
- define('OGP_LANG_filesecure', "文件安全");
- define('OGP_LANG_chattr_locked', "文件已锁定");
- define('OGP_LANG_chattr_unlocked', "文件已解锁");
- define('OGP_LANG_rename', "重命名");
- define('OGP_LANG_move', "移动");
- define('OGP_LANG_copy', "复制");
- define('OGP_LANG_compress', "压缩");
- define('OGP_LANG_create_file', "创建文件");
- define('OGP_LANG_select_at_least_one_item', "至少选择一项");
- define('OGP_LANG_rename_item', "重命名项目(s)");
- define('OGP_LANG_move_item', "移动项目(s)");
- define('OGP_LANG_copy_item', "复制项目(s)");
- define('OGP_LANG_compress_item', "压缩项目(s)");
- define('OGP_LANG_uncompress_item', "解压项目(s)");
- define('OGP_LANG_archive_name', "归档名称");
- define('OGP_LANG_archive_type', "归档类型");
- define('OGP_LANG_file_name', "文件名");
- define('OGP_LANG_folder_name', "文件夹名称");
- define('OGP_LANG_compresses_files_separately', "分别压缩文件");
- define('OGP_LANG_to', "到");
- define('OGP_LANG_upload_to_web', "上传到网页");
- define('OGP_LANG_transfer_to_server', "传输到服务器");
- define('OGP_LANG_mail_sent_successfully', "邮件发送成功");
- define('OGP_LANG_send_item_by_email', "通过电子邮件发送项目(s)");
- define('OGP_LANG_subject', "主题");
- define('OGP_LANG_message', "信息");
- define('OGP_LANG_dest_email', "目标电子邮件");
- define('OGP_LANG_remove', "移除");
- define('OGP_LANG_send_by_email', "通过电子邮件发送");
- define('OGP_LANG_send_by_email_info', "发送文件需要在所有可用的代理上安装 'mutt' 包。");
- define('OGP_LANG_settings_updated', "设置已更新");
- define('OGP_LANG_update_settings', "更新设置");
- ?>
|