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

Update Vietnamese (vi) translation #5387

Merged
merged 1 commit into from Mar 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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