litefm.php 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2018 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. define('OGP_LANG_dir_not_found', "服务器上未找到目录 '%s'。");
  25. define('OGP_LANG_filename', "文件名");
  26. define('OGP_LANG_filesize', "文件大小");
  27. define('OGP_LANG_bytes', "字节");
  28. define('OGP_LANG_owner', "所有者");
  29. define('OGP_LANG_group', "组");
  30. define('OGP_LANG_empty_directory', "目录为空。");
  31. define('OGP_LANG_currently_viewing', "当前查看目录 '%s'");
  32. define('OGP_LANG_wrote_changes', "更改保存成功。");
  33. define('OGP_LANG_failed_write', "无法将文件写入远程服务器。");
  34. define('OGP_LANG_failed_read', "无法从远程服务器读取文件。");
  35. define('OGP_LANG_failed_list', "无法检索目录列表。");
  36. define('OGP_LANG_level_up', "^上一级^");
  37. define('OGP_LANG_unallowed_char', "路径中发现不允许的字符。");
  38. define('OGP_LANG_button_edit', "[编辑]");
  39. define('OGP_LANG_save', "保存");
  40. define('OGP_LANG_home_id_missing', "缺少主页 ID。");
  41. define('OGP_LANG_upload', "上传");
  42. define('OGP_LANG_upload_failed', "上传失败,错误是:%s。");
  43. define('OGP_LANG_can_not_create_upload_folder_path', "无法创建上传文件夹路径 %s");
  44. define('OGP_LANG_url_is_not_accesible_from_agent', "代理无法访问 URL %s");
  45. define('OGP_LANG_upload_file', "上传文件");
  46. define('OGP_LANG_uncompress', "解压");
  47. define('OGP_LANG_create_folder', "创建文件夹");
  48. define('OGP_LANG_create', "创建");
  49. define('OGP_LANG_delete_item', "删除 %s?");
  50. define('OGP_LANG_upload_in_progress', "上传中...");
  51. define('OGP_LANG_upload_complete', "上传完成。");
  52. define('OGP_LANG_chattr_yes', "锁定文件");
  53. define('OGP_LANG_chattr_no', "解锁文件");
  54. define('OGP_LANG_secure_item', "安全/不安全 %s?");
  55. define('OGP_LANG_filesecure', "文件安全");
  56. define('OGP_LANG_chattr_locked', "文件已锁定");
  57. define('OGP_LANG_chattr_unlocked', "文件已解锁");
  58. define('OGP_LANG_rename', "重命名");
  59. define('OGP_LANG_move', "移动");
  60. define('OGP_LANG_copy', "复制");
  61. define('OGP_LANG_compress', "压缩");
  62. define('OGP_LANG_create_file', "创建文件");
  63. define('OGP_LANG_select_at_least_one_item', "至少选择一项");
  64. define('OGP_LANG_rename_item', "重命名项目(s)");
  65. define('OGP_LANG_move_item', "移动项目(s)");
  66. define('OGP_LANG_copy_item', "复制项目(s)");
  67. define('OGP_LANG_compress_item', "压缩项目(s)");
  68. define('OGP_LANG_uncompress_item', "解压项目(s)");
  69. define('OGP_LANG_archive_name', "归档名称");
  70. define('OGP_LANG_archive_type', "归档类型");
  71. define('OGP_LANG_file_name', "文件名");
  72. define('OGP_LANG_folder_name', "文件夹名称");
  73. define('OGP_LANG_compresses_files_separately', "分别压缩文件");
  74. define('OGP_LANG_to', "到");
  75. define('OGP_LANG_upload_to_web', "上传到网页");
  76. define('OGP_LANG_transfer_to_server', "传输到服务器");
  77. define('OGP_LANG_mail_sent_successfully', "邮件发送成功");
  78. define('OGP_LANG_send_item_by_email', "通过电子邮件发送项目(s)");
  79. define('OGP_LANG_subject', "主题");
  80. define('OGP_LANG_message', "信息");
  81. define('OGP_LANG_dest_email', "目标电子邮件");
  82. define('OGP_LANG_remove', "移除");
  83. define('OGP_LANG_send_by_email', "通过电子邮件发送");
  84. define('OGP_LANG_send_by_email_info', "发送文件需要在所有可用的代理上安装 'mutt' 包。");
  85. define('OGP_LANG_settings_updated', "设置已更新");
  86. define('OGP_LANG_update_settings', "更新设置");
  87. ?>