Skip to content

Commit

Permalink
Update Vietnamese (vi) translation (#5387)
Browse files Browse the repository at this point in the history
  • Loading branch information
thanhpd authored and kevin-brown committed Mar 13, 2019
1 parent b3705b1 commit 97c5304
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/js/select2/i18n/vi.js
Expand Up @@ -4,18 +4,15 @@ define(function () {
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;

var message = 'Vui lòng nhập ít hơn ' + overChars + ' ký tự';

if (overChars != 1) {
message += 's';
}
var message = 'Vui lòng xóa bớt ' + overChars + ' ký tự';

return message;
},
inputTooShort: function (args) {
var remainingChars = args.minimum - args.input.length;

var message = 'Vui lòng nhập nhiều hơn ' + remainingChars + ' ký tự';
var message = 'Vui lòng nhập thêm từ ' + remainingChars +
' ký tự trở lên';

return message;
},
Expand All @@ -33,7 +30,7 @@ define(function () {
searching: function () {
return 'Đang tìm…';
},
removeAllItems: function () {
removeAllItems: function () {
return 'Xóa tất cả các mục';
}
};
Expand Down

0 comments on commit 97c5304

Please sign in to comment.