2013-05-13 10:03:42 +04:00
|
|
|
/**
|
|
|
|
* Select2 Vietnamese translation.
|
|
|
|
*
|
2014-12-11 07:17:16 +03:00
|
|
|
* Author: Long Nguyen <olragon@gmail.com>, Nguyen Chien Cong
|
2013-05-13 10:03:42 +04:00
|
|
|
*/
|
|
|
|
(function ($) {
|
|
|
|
"use strict";
|
|
|
|
|
2014-04-15 11:20:22 +04:00
|
|
|
$.fn.select2.locales['vi'] = {
|
2013-05-13 10:03:42 +04:00
|
|
|
formatNoMatches: function () { return "Không tìm thấy kết quả"; },
|
2014-12-11 07:17:16 +03:00
|
|
|
formatInputTooShort: function (input, min) { var n = min - input.length; return "Vui lòng nhập nhiều hơn " + n + " ký tự"; },
|
|
|
|
formatInputTooLong: function (input, max) { var n = input.length - max; return "Vui lòng nhập ít hơn " + n + " ký tự"; },
|
|
|
|
formatSelectionTooBig: function (limit) { return "Chỉ có thể chọn được " + limit + " lựa chọn"; },
|
2014-01-08 13:35:47 +04:00
|
|
|
formatLoadMore: function (pageNumber) { return "Đang lấy thêm kết quả…"; },
|
|
|
|
formatSearching: function () { return "Đang tìm…"; }
|
2014-05-16 12:55:03 +04:00
|
|
|
};
|
2014-05-15 14:55:44 +04:00
|
|
|
|
2014-05-16 13:02:10 +04:00
|
|
|
$.extend($.fn.select2.defaults, $.fn.select2.locales['vi']);
|
2013-05-13 10:03:42 +04:00
|
|
|
})(jQuery);
|
|
|
|
|