vi.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*!
  2. * FileInput Vietnamese 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.fileinputLocales['vi'] = {
  14. fileSingle: 'tập tin',
  15. filePlural: 'các tập tin',
  16. browseLabel: 'Duyệt …',
  17. removeLabel: 'Gỡ bỏ',
  18. removeTitle: 'Bỏ tập tin đã chọn',
  19. cancelLabel: 'Hủy',
  20. cancelTitle: 'Hủy upload',
  21. uploadLabel: 'Upload',
  22. uploadTitle: 'Upload tập tin đã chọn',
  23. msgNo: 'Không',
  24. msgNoFilesSelected: 'Không tập tin nào được chọn',
  25. msgCancelled: 'Đã hủy',
  26. msgZoomModalHeading: 'Chi tiết xem trước',
  27. msgSizeTooSmall: 'File "{name}" (<b>{size} KB</b>) is too small and must be larger than <b>{minSize} KB</b>.',
  28. msgSizeTooLarge: 'Tập tin "{name}" (<b>{size} KB</b>) vượt quá kích thước giới hạn cho phép <b>{maxSize} KB</b>.',
  29. msgFilesTooLess: 'Bạn phải chọn ít nhất <b>{n}</b> {files} để upload.',
  30. msgFilesTooMany: 'Số lượng tập tin upload <b>({n})</b> vượt quá giới hạn cho phép là <b>{m}</b>.',
  31. msgFileNotFound: 'Không tìm thấy tập tin "{name}"!',
  32. msgFileSecured: 'Các hạn chế về bảo mật không cho phép đọc tập tin "{name}".',
  33. msgFileNotReadable: 'Không đọc được tập tin "{name}".',
  34. msgFilePreviewAborted: 'Đã dừng xem trước tập tin "{name}".',
  35. msgFilePreviewError: 'Đã xảy ra lỗi khi đọc tập tin "{name}".',
  36. msgInvalidFileName: 'Invalid or unsupported characters in file name "{name}".',
  37. msgInvalidFileType: 'Tập tin "{name}" không hợp lệ. Chỉ hỗ trợ loại tập tin "{types}".',
  38. msgInvalidFileExtension: 'Phần mở rộng của tập tin "{name}" không hợp lệ. Chỉ hỗ trợ phần mở rộng "{extensions}".',
  39. msgFileTypes: {
  40. 'image': 'image',
  41. 'html': 'HTML',
  42. 'text': 'text',
  43. 'video': 'video',
  44. 'audio': 'audio',
  45. 'flash': 'flash',
  46. 'pdf': 'PDF',
  47. 'object': 'object'
  48. },
  49. msgUploadAborted: 'Đã dừng upload',
  50. msgUploadThreshold: 'Đang xử lý...',
  51. msgValidationError: 'Lỗi xác nhận',
  52. msgLoading: 'Đang nạp {index} tập tin trong số {files} &hellip;',
  53. msgProgress: 'Đang nạp {index} tập tin trong số {files} - {name} - {percent}% hoàn thành.',
  54. msgSelected: '{n} {files} được chọn',
  55. msgFoldersNotAllowed: 'Chỉ kéo thả tập tin! Đã bỏ qua {n} thư mục.',
  56. msgImageWidthSmall: 'Chiều rộng của hình ảnh "{name}" phải tối thiểu là {size} px.',
  57. msgImageHeightSmall: 'Chiều cao của hình ảnh "{name}" phải tối thiểu là {size} px.',
  58. msgImageWidthLarge: 'Chiều rộng của hình ảnh "{name}" không được quá {size} px.',
  59. msgImageHeightLarge: 'Chiều cao của hình ảnh "{name}" không được quá {size} px.',
  60. msgImageResizeError: 'Không lấy được kích thước của hình ảnh để resize.',
  61. msgImageResizeException: 'Resize hình ảnh bị lỗi.<pre>{errors}</pre>',
  62. msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
  63. msgAjaxProgressError: '{operation} failed',
  64. ajaxOperations: {
  65. deleteThumb: 'file delete',
  66. uploadThumb: 'single file upload',
  67. uploadBatch: 'batch file upload',
  68. uploadExtra: 'form data upload'
  69. },
  70. dropZoneTitle: 'Kéo thả tập tin vào đây &hellip;',
  71. dropZoneClickTitle: '<br>(hoặc click để chọn {files})',
  72. fileActionSettings: {
  73. removeTitle: 'Gỡ bỏ',
  74. uploadTitle: 'Upload tập tin',
  75. zoomTitle: 'Phóng lớn',
  76. dragTitle: 'Di chuyển / Sắp xếp lại',
  77. indicatorNewTitle: 'Chưa được upload',
  78. indicatorSuccessTitle: 'Đã upload',
  79. indicatorErrorTitle: 'Upload bị lỗi',
  80. indicatorLoadingTitle: 'Đang upload ...'
  81. },
  82. previewZoomButtonTitles: {
  83. prev: 'Xem tập tin phía trước',
  84. next: 'Xem tập tin tiếp theo',
  85. toggleheader: 'Ẩn/hiện tiêu đề',
  86. fullscreen: 'Bật/tắt toàn màn hình',
  87. borderless: 'Bật/tắt chế độ không viền',
  88. close: 'Đóng'
  89. }
  90. };
  91. })(window.jQuery);