Просмотр файла vendor/verot/class.upload.php/src/lang/class.upload.zh_CN.php

Размер файла: 6.21Kb
  1. <?php
  2. // +------------------------------------------------------------------------+
  3. // | class.upload.zh_CN.php |
  4. // +------------------------------------------------------------------------+
  5. // | Copyright (c) caoshiwei 2008. All rights reserved. |
  6. // | Version 0.25 |
  7. // | Last modified 09/29/2008 |
  8. // | Email caoshiwei@gmail.com |
  9. // | Web http://www.hfut.edu.cn |
  10. // +------------------------------------------------------------------------+
  11. // | This program is free software; you can redistribute it and/or modify |
  12. // | it under the terms of the GNU General Public License version 2 as |
  13. // | published by the Free Software Foundation. |
  14. // | |
  15. // | This program is distributed in the hope that it will be useful, |
  16. // | but WITHOUT ANY WARRANTY; without even the implied warranty of |
  17. // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
  18. // | GNU General Public License for more details. |
  19. // | |
  20. // | You should have received a copy of the GNU General Public License |
  21. // | along with this program; if not, write to the |
  22. // | Free Software Foundation, Inc., 59 Temple Place, Suite 330, |
  23. // | Boston, MA 02111-1307 USA |
  24. // | |
  25. // | Please give credit on sites that use class.upload and submit changes |
  26. // | of the script so other people can use them as well. |
  27. // | This script is free to use, don't abuse. |
  28. // +------------------------------------------------------------------------+
  29.  
  30. /**
  31. * Class upload Chinese translation
  32. *
  33. * @version 0.25
  34. * @author Shiwei Cao (caoshiwei@gmail.com)
  35. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  36. * @copyright Shiwei Cao
  37. * @package cmf
  38. * @subpackage external
  39. */
  40.  
  41. $translation = array();
  42. $translation['file_error'] = '文件错误,请重试。';
  43. $translation['local_file_missing'] = '本地文件不存在。';
  44. $translation['local_file_not_readable'] = '本地文件不可读。';
  45. $translation['uploaded_too_big_ini'] = '文件上件出错 (上传的文件大小超过了php.ini中upload_max_filesize设置的大小)。';
  46. $translation['uploaded_too_big_html'] = '文件上件出错 (上传的文件大小超过了HTML 表单设置的大小)。';
  47. $translation['uploaded_partial'] = '文件上件出错 (上传的文件部分丢失)。';
  48. $translation['uploaded_missing'] = '文件上件出错 (上传文件丢失)。';
  49. $translation['uploaded_unknown'] = '文件上件出错 (未知错误).';
  50. $translation['try_again'] = '文件上件出错。 请重试。';
  51. $translation['file_too_big'] = '文件太大。';
  52. $translation['no_mime'] = '未知文件类型。';
  53. $translation['incorrect_file'] = '不正确的文件格式。';
  54. $translation['image_too_wide'] = '图片宽度太大。';
  55. $translation['image_too_narrow'] = '图片宽度太小。';
  56. $translation['image_too_high'] = '图片高度太大。';
  57. $translation['image_too_short'] = '图片高度太小。';
  58. $translation['ratio_too_high'] = '图片宽/高比率太高(图片宽度太大)。';
  59. $translation['ratio_too_low'] = '图片宽/高比率太低(图片高度太大).';
  60. $translation['too_many_pixels'] = '图片位数太高。';
  61. $translation['not_enough_pixels'] = '图片位数不够';
  62. $translation['file_not_uploaded'] = '文件未上传,不能进行处理。';
  63. $translation['already_exists'] = '%s 已经存在,请更换文件名。';
  64. $translation['temp_file_missing'] = '处理的(临时)源文件不正确,不能进行处理。';
  65. $translation['source_missing'] = '已上传的文件丢失,不能进行处理。';
  66. $translation['destination_dir'] = '目标文件目录不能被创建,不能进行处理。';
  67. $translation['destination_dir_missing'] = '目标文件目录不存在,不能进行处理。';
  68. $translation['destination_path_not_dir'] = '目录路径不是一个有效的目录,不能进行处理。';
  69. $translation['destination_dir_write'] = '不能让目标文件目录设置为可写的,不能进行处理。';
  70. $translation['destination_path_write'] = '目录路径是不可以写的,不能进行处理。';
  71. $translation['temp_file'] = '不能创建临时文件,不能进行处理。';
  72. $translation['source_not_readable'] = '源文件不可以读,不能进行处理。';
  73. $translation['no_create_support'] = '%s 不支持创建';
  74. $translation['create_error'] = '从源文件创建 %s 图片过程中出错。';
  75. $translation['source_invalid'] = '无法读取原始图片,确认是不是正确的图片文件?';
  76. $translation['gd_missing'] = 'GD 好像不可以使用。';
  77. $translation['watermark_no_create_support'] = '%s 创建不支持, 不能读取水印文件。';
  78. $translation['watermark_create_error'] = '%s 不支持读, 不能创建水印。';
  79. $translation['watermark_invalid'] = '未知文件格式, 无法读取水印文件。';
  80. $translation['file_create'] = '%s 不支持创建。';
  81. $translation['no_conversion_type'] = '未定义转换类型';
  82. $translation['copy_failed'] = '在服务器上复制文件时出错。 copy() 操作失败.';
  83. $translation['reading_failed'] = '读取过程中出错。';
  84.  
  85. ?>