zh-TW.js 4.5 KB

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