Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Vietnamese translations #741

Merged
merged 1 commit into from
Aug 11, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions js/locales/vi.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*!
* FileInput Vietnamese Translations
*
* This file must be loaded after 'fileinput.js'. Patterns in braces '{}', or
* any HTML markup tags in the messages must not be converted or translated.
*
* @see http://github.com/kartik-v/bootstrap-fileinput
*
* NOTE: this file must be saved in UTF-8 encoding.
*/

(function ($) {
"use strict";

$.fn.fileinputLocales['vi'] = {
fileSingle: 'tập tin',
filePlural: 'các tập tin',
browseLabel: 'Duyệt …',
removeLabel: 'Gỡ bỏ',
removeTitle: 'Bỏ tập tin đã chọn',
cancelLabel: 'Hủy',
cancelTitle: 'Hủy upload',
uploadLabel: 'Upload',
uploadTitle: 'Upload tập tin đã chọn',
msgNo: 'Không',
msgNoFilesSelected: 'Không tập tin nào được chọn',
msgCancelled: 'Đã hủy',
msgZoomModalHeading: 'Chi tiết xem trước',
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>.',
msgFilesTooLess: 'Bạn phải chọn ít nhất <b>{n}</b> {files} để upload.',
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>.',
msgFileNotFound: 'Không tìm thấy tập tin "{name}"!',
msgFileSecured: 'Các hạn chế về bảo mật không cho phép đọc tập tin "{name}".',
msgFileNotReadable: 'Không đọc được tập tin "{name}".',
msgFilePreviewAborted: 'Đã dừng xem trước tập tin "{name}".',
msgFilePreviewError: 'Đã xảy ra lỗi khi đọc tập tin "{name}".',
msgInvalidFileType: 'Tập tin "{name}" không hợp lệ. Chỉ hỗ trợ loại tập tin "{types}".',
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}".',
msgUploadAborted: 'Đã dừng upload',
msgUploadThreshold: 'Đang xử lý...',
msgValidationError: 'Lỗi xác nhận',
msgLoading: 'Đang nạp {index} tập tin trong số {files} &hellip;',
msgProgress: 'Đang nạp {index} tập tin trong số {files} - {name} - {percent}% hoàn thành.',
msgSelected: '{n} {files} được chọn',
msgFoldersNotAllowed: 'Chỉ kéo thả tập tin! Đã bỏ qua {n} thư mục.',
msgImageWidthSmall: 'Chiều rộng của hình ảnh "{name}" phải tối thiểu là {size} px.',
msgImageHeightSmall: 'Chiều cao của hình ảnh "{name}" phải tối thiểu là {size} px.',
msgImageWidthLarge: 'Chiều rộng của hình ảnh "{name}" không được quá {size} px.',
msgImageHeightLarge: 'Chiều cao của hình ảnh "{name}" không được quá {size} px.',
msgImageResizeError: 'Không lấy được kích thước của hình ảnh để resize.',
msgImageResizeException: 'Resize hình ảnh bị lỗi.<pre>{errors}</pre>',
dropZoneTitle: 'Kéo thả tập tin vào đây &hellip;',
dropZoneClickTitle: '<br>(hoặc click để chọn {files})',
fileActionSettings: {
removeTitle: 'Gỡ bỏ',
uploadTitle: 'Upload tập tin',
zoomTitle: 'Phóng lớn',
dragTitle: 'Di chuyển / Sắp xếp lại',
indicatorNewTitle: 'Chưa được upload',
indicatorSuccessTitle: 'Đã upload',
indicatorErrorTitle: 'Upload bị lỗi',
indicatorLoadingTitle: 'Đang upload ...'
},
previewZoomButtonTitles: {
prev: 'Xem tập tin phía trước',
next: 'Xem tập tin tiếp theo',
toggleheader: 'Ẩn/hiện tiêu đề',
fullscreen: 'Bật/tắt toàn màn hình',
borderless: 'Bật/tắt chế độ không viền',
close: 'Đóng'
}
};
})(window.jQuery);