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 Bangla (bn) localization #5248

Merged
merged 1 commit into from Sep 7, 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
45 changes: 45 additions & 0 deletions src/js/select2/i18n/bn.js
@@ -0,0 +1,45 @@
define(function () {
// Bangla
return {
errorLoading: function () {
return 'ফলাফলগুলি লোড করা যায়নি।';
},
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;

var message = 'অনুগ্রহ করে ' + overChars + ' টি অক্ষর মুছে দিন।';

if (overChars != 1) {
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 + ' টি আইটেম নির্বাচন করতে পারবেন।';

if (args.maximum != 1) {
message = args.maximum + ' টি আইটেম নির্বাচন করতে পারবেন।';
}

return message;
},
noResults: function () {
return 'কোন ফলাফল পাওয়া যায়নি।';
},
searching: function () {
return 'অনুসন্ধান করা হচ্ছে ...';
}
};
});