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 georgian (ka) localization #5179

Merged
merged 3 commits into from Feb 11, 2018
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
37 changes: 37 additions & 0 deletions src/js/select2/i18n/ka.js
@@ -0,0 +1,37 @@
define(function () {
// Georgian
return {
errorLoading: function () {
return 'მონაცემების ჩატვირთვა შეუძლებელია.';
},
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;

var message = 'გთხოვთ აკრიფეთ ' + overChars + ' სიმბოლოთი ნაკლები';

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

var message = 'გთხოვთ აკრიფეთ ' + remainingChars + ' სიმბოლო ან მეტი';

return message;
},
loadingMore: function () {
return 'მონაცემების ჩატვირთვა…';
},
maximumSelected: function (args) {
var message = 'თქვენ შეგიძლიათ აირჩიოთ არაუმეტეს ' + args.maximum +
' ელემენტი';

return message;
},
noResults: function () {
return 'რეზულტატი არ მოიძებნა';
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

return 'რეზულტატები არ მოიძებნა'; სლენგს. ჩემი აზრით უკეთესი იქნება return 'შედეგები ვერ მოიძებნა';

},
searching: function () {
return 'ძიება…';
}
};
});