Skip to content

Commit

Permalink
Luxembourgish translation (select2#6131)
Browse files Browse the repository at this point in the history
* Luxembourgish translation

* Fixed linting issue in luxembourgish translation
  • Loading branch information
DavidMoraisFerreira authored Oct 25, 2022
1 parent 5895110 commit acef3ca
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions src/js/select2/i18n/lb.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
define(function () {
// Luxembourgish
return {
errorLoading: function () {
return 'D\'Resultater konnten net geluede ginn.';
},
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;

return 'Läscht ' + overChars + ' Schrëftzeechen';
},
inputTooShort: function (args) {
var remainingChars = args.minimum - args.input.length;

return 'Tippt mindestens ' + remainingChars + ' Schrëftzeechen an';
},
loadingMore: function () {
return 'Méi Resultater lueden…';
},
maximumSelected: function (args) {
return 'Dir kennt nëmmen ' + args.maximum + ' Element' +
((args.maximum > 1) ? 'er' : '') + ' auswielen';
},
noResults: function () {
return 'Keng Resultater fonnt';
},
searching: function () {
return 'Sichen…';
},
removeAllItems: function () {
return 'All Elementer läschen';
},
removeItem: function () {
return 'Element läschen';
},
search: function() {
return 'Sichen';
}
};
});

0 comments on commit acef3ca

Please sign in to comment.