zh-TW.js 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*!
  2. * FileInput Chinese Traditional 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. * @author kangqf <[email protected]>
  9. *
  10. * NOTE: this file must be saved in UTF-8 encoding.
  11. */
  12. (function ($) {
  13. "use strict";
  14. $.fn.fileinputLocales['zh-TW'] = {
  15. fileSingle: '單一檔案',
  16. filePlural: '複選檔案',
  17. browseLabel: '瀏覽 &hellip;',
  18. removeLabel: '移除',
  19. removeTitle: '清除選取檔案',
  20. cancelLabel: '取消',
  21. cancelTitle: '取消上傳中檔案',
  22. uploadLabel: '上傳',
  23. uploadTitle: '上傳選取檔案',
  24. msgNo: '沒有',
  25. msgNoFilesSelected: '',
  26. msgCancelled: '取消',
  27. zoomTitle: '詳細資料',
  28. msgZoomModalHeading: '內容預覽',
  29. msgSizeTooSmall: 'File "{name}" (<b>{size} KB</b>) is too small and must be larger than <b>{minSize} KB</b>.',
  30. msgSizeTooLarge: '檔案 "{name}" (<b>{size} KB</b>) 大小超過上限 <b>{maxSize} KB</b>.',
  31. msgFilesTooLess: '最少必須選擇 <b>{n}</b> {files} 來上傳. ',
  32. msgFilesTooMany: '上傳的檔案數量 <b>({n})</b> 超過最大檔案上傳限制 <b>{m}</b>.',
  33. msgFileNotFound: '檔案 "{name}" 未發現!',
  34. msgFileSecured: '安全限制,禁止讀取檔案 "{name}".',
  35. msgFileNotReadable: '文件 "{name}" 不可讀取.',
  36. msgFilePreviewAborted: '檔案 "{name}" 預覽中止.',
  37. msgFilePreviewError: '讀取 "{name}" 發生錯誤.',
  38. msgInvalidFileName: 'Invalid or unsupported characters in file name "{name}".',
  39. msgInvalidFileType: '檔案類型錯誤 "{name}". 只能使用 "{types}" 類型的檔案.',
  40. msgInvalidFileExtension: '附檔名錯誤 "{name}". 只能使用 "{extensions}" 的檔案.',
  41. msgFileTypes: {
  42. 'image': 'image',
  43. 'html': 'HTML',
  44. 'text': 'text',
  45. 'video': 'video',
  46. 'audio': 'audio',
  47. 'flash': 'flash',
  48. 'pdf': 'PDF',
  49. 'object': 'object'
  50. },
  51. msgUploadAborted: '該文件上傳被中止',
  52. msgUploadThreshold: 'Processing...',
  53. msgUploadBegin: 'Initializing...',
  54. msgUploadEnd: 'Done',
  55. msgUploadEmpty: 'No valid data available for upload.',
  56. msgValidationError: '驗證錯誤',
  57. msgLoading: '載入第 {index} 個檔案,共 {files} &hellip;',
  58. msgProgress: '載入第 {index} 個檔案,共 {files} - {name} - {percent}% 成功.',
  59. msgSelected: '{n} {files} 選取',
  60. msgFoldersNotAllowed: '只支援單檔拖曳! 無法使用 {n} 拖拽的資料夹.',
  61. msgImageWidthSmall: '圖檔寬度"{name}"必須至少為{size}像素(px).',
  62. msgImageHeightSmall: '圖檔高度"{name}"必須至少為{size}像素(px).',
  63. msgImageWidthLarge: '圖檔寬度"{name}"不能超過{size}像素(px).',
  64. msgImageHeightLarge: '圖檔高度"{name}"不能超過{size}像素(px).',
  65. msgImageResizeError: '無法獲取的圖像尺寸調整。',
  66. msgImageResizeException: '錯誤而調整圖像大小。<pre>{errors}</pre>',
  67. msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
  68. msgAjaxProgressError: '{operation} failed',
  69. ajaxOperations: {
  70. deleteThumb: 'file delete',
  71. uploadThumb: 'file upload',
  72. uploadBatch: 'batch file upload',
  73. uploadExtra: 'form data upload'
  74. },
  75. dropZoneTitle: '拖曳檔案至此 &hellip;',
  76. dropZoneClickTitle: '<br>(or click to select {files})',
  77. fileActionSettings: {
  78. removeTitle: '刪除檔案',
  79. uploadTitle: '上傳檔案',
  80. zoomTitle: '詳細資料',
  81. dragTitle: 'Move / Rearrange',
  82. indicatorNewTitle: '尚未上傳',
  83. indicatorSuccessTitle: '上傳成功',
  84. indicatorErrorTitle: '上傳失敗',
  85. indicatorLoadingTitle: '上傳中 ...'
  86. },
  87. previewZoomButtonTitles: {
  88. prev: 'View previous file',
  89. next: 'View next file',
  90. toggleheader: 'Toggle header',
  91. fullscreen: 'Toggle full screen',
  92. borderless: 'Toggle borderless mode',
  93. close: 'Close detailed preview'
  94. }
  95. };
  96. })(window.jQuery);