1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
jTable localization file for 'Vietnamese' language.
Author: Lê Hoàng Hiếu
*/
(function ($) {
$.extend(true, $.hik.jtable.prototype.options.messages, {
serverCommunicationError: 'Có Lỗi Khi Giao Tiếp Với Máy Chủ.',
loadingMessage: 'Đang Tải Dữ Liệu...',
noDataAvailable: 'Không Có Dữ Liệu!',
addNewRecord: '+ Thêm Dữ Liệu',
editRecord: 'Chỉnh Sửa',
areYouSure: 'Bạn Có Chắc Không?',
deleteConfirmation: 'Dữ Liệu Này Sẽ Bị Xóa, Bạn Có Chắc Không?',
save: 'Lưu',
saving: 'Đang Lưu',
cancel: 'Hủy',
deleteText: 'Xóa',
deleting: 'Đang Xóa',
error: 'Lỗi',
close: 'Đóng',
cannotLoadOptionsFor: 'Không Thể Tải Các Tùy Chọn Cho field {0}!',
pagingInfo: 'Hiện từ {0} Đến {1} Của {2} Records',
canNotDeletedRecords: 'Không thể xóa {0} Records của {1} Records!',
deleteProggress: 'Đã Xóa Được {0} Của {1} Records, Đang Xử Lý...',
pageSizeChangeLabel: 'Row count', //New. Must be localized.
gotoPageLabel: 'Go to page' //New. Must be localized.
});
})(jQuery);
|