vi.js 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. 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>.',
  28. msgFilesTooLess: 'Bạn phải chọn ít nhất <b>{n}</b> {files} để upload.',
  29. 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>.',
  30. msgFileNotFound: 'Không tìm thấy tập tin "{name}"!',
  31. msgFileSecured: 'Các hạn chế về bảo mật không cho phép đọc tập tin "{name}".',
  32. msgFileNotReadable: 'Không đọc được tập tin "{name}".',
  33. msgFilePreviewAborted: 'Đã dừng xem trước tập tin "{name}".',
  34. msgFilePreviewError: 'Đã xảy ra lỗi khi đọc tập tin "{name}".',
  35. msgInvalidFileType: 'Tập tin "{name}" không hợp lệ. Chỉ hỗ trợ loại tập tin "{types}".',
  36. 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}".',
  37. msgUploadAborted: 'Đã dừng upload',
  38. msgUploadThreshold: 'Đang xử lý...',
  39. msgValidationError: 'Lỗi xác nhận',
  40. msgLoading: 'Đang nạp {index} tập tin trong số {files} &hellip;',
  41. msgProgress: 'Đang nạp {index} tập tin trong số {files} - {name} - {percent}% hoàn thành.',
  42. msgSelected: '{n} {files} được chọn',
  43. msgFoldersNotAllowed: 'Chỉ kéo thả tập tin! Đã bỏ qua {n} thư mục.',
  44. msgImageWidthSmall: 'Chiều rộng của hình ảnh "{name}" phải tối thiểu là {size} px.',
  45. msgImageHeightSmall: 'Chiều cao của hình ảnh "{name}" phải tối thiểu là {size} px.',
  46. msgImageWidthLarge: 'Chiều rộng của hình ảnh "{name}" không được quá {size} px.',
  47. msgImageHeightLarge: 'Chiều cao của hình ảnh "{name}" không được quá {size} px.',
  48. msgImageResizeError: 'Không lấy được kích thước của hình ảnh để resize.',
  49. msgImageResizeException: 'Resize hình ảnh bị lỗi.<pre>{errors}</pre>',
  50. dropZoneTitle: 'Kéo thả tập tin vào đây &hellip;',
  51. dropZoneClickTitle: '<br>(hoặc click để chọn {files})',
  52. fileActionSettings: {
  53. removeTitle: 'Gỡ bỏ',
  54. uploadTitle: 'Upload tập tin',
  55. zoomTitle: 'Phóng lớn',
  56. dragTitle: 'Di chuyển / Sắp xếp lại',
  57. indicatorNewTitle: 'Chưa được upload',
  58. indicatorSuccessTitle: 'Đã upload',
  59. indicatorErrorTitle: 'Upload bị lỗi',
  60. indicatorLoadingTitle: 'Đang upload ...'
  61. },
  62. previewZoomButtonTitles: {
  63. prev: 'Xem tập tin phía trước',
  64. next: 'Xem tập tin tiếp theo',
  65. toggleheader: 'Ẩn/hiện tiêu đề',
  66. fullscreen: 'Bật/tắt toàn màn hình',
  67. borderless: 'Bật/tắt chế độ không viền',
  68. close: 'Đóng'
  69. }
  70. };
  71. })(window.jQuery);