fileinput_locale_zh.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*!
  2. * FileInput Spanish (Latin American) Translations
  3. *
  4. * This file must be loaded after 'fileinput.js'. Patterns in braces '{}', or
  5. * any HTML markup tags in the messages must not be converted or translated.
  6. *
  7. * @see http://github.com/kartik-v/bootstrap-fileinput
  8. *
  9. * NOTE: this file must be saved in UTF-8 encoding.
  10. */
  11. (function ($) {
  12. "use strict";
  13. $.fn.fileinput.locales.es = {
  14. fileSingle: '单个文件',
  15. filePlural: '多个文件',
  16. browseLabel: '选择文件 …',
  17. removeLabel: '删除文件',
  18. removeTitle: '删除选中文件',
  19. cancelLabel: '取消',
  20. cancelTitle: '取消上传',
  21. uploadLabel: '上传',
  22. uploadTitle: '上传选中文件',
  23. msgSizeTooLarge: 'File "{name}" (<b>{size} KB</b>) exceeds maximum allowed upload size of <b>{maxSize} KB</b>. Please retry your upload!',
  24. msgFilesTooLess: '文件数量必须大于 <b>{n}</b> {files} ,请重新上传!',
  25. msgFilesTooMany: 'Number of files selected for upload <b>({n})</b> exceeds maximum allowed limit of <b>{m}</b>. Please retry your upload!',
  26. msgFileNotFound: '文件 "{name}" 未找到!',
  27. msgFileSecured: 'Security restrictions prevent reading the file "{name}".',
  28. msgFileNotReadable: 'File "{name}" is not readable.',
  29. msgFilePreviewAborted: 'File preview aborted for "{name}".',
  30. msgFilePreviewError: 'An error occurred while reading the file "{name}".',
  31. msgInvalidFileType: 'Invalid type for file "{name}". Only "{types}" files are supported.',
  32. msgInvalidFileExtension: 'Invalid extension for file "{name}". Only "{extensions}" files are supported.',
  33. msgValidationError: 'File Upload Error',
  34. msgLoading: 'Loading file {index} of {files} &hellip;',
  35. msgProgress: 'Loading file {index} of {files} - {name} - {percent}% completed.',
  36. msgSelected: '选中{n}个文件',
  37. msgFoldersNotAllowed: 'Drag & drop files only! {n} folder(s) dropped were skipped.',
  38. dropZoneTitle: 'Drag & drop files here &hellip;'
  39. };
  40. $.extend($.fn.fileinput.defaults, $.fn.fileinput.locales.es);
  41. })(window.jQuery);