Merge pull request #2931 from dlion/ItalianTranslation
Added italian translation
This commit is contained in:
commit
061b432485
48
src/js/select2/i18n/it.js
vendored
Normal file
48
src/js/select2/i18n/it.js
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
define(function () {
|
||||
// Italian
|
||||
return {
|
||||
errorLoading: function () {
|
||||
return 'I risultati non possono essere caricati.';
|
||||
},
|
||||
inputTooLong: function (args) {
|
||||
var overChars = args.input.length - args.maximum;
|
||||
|
||||
var message = 'Per favore cancella ' + overChars + ' caratter';
|
||||
|
||||
if (overChars !== 1) {
|
||||
message += 'i';
|
||||
} else {
|
||||
message += 'e';
|
||||
}
|
||||
|
||||
return message;
|
||||
},
|
||||
inputTooShort: function (args) {
|
||||
var remainingChars = args.minimum - args.input.length;
|
||||
|
||||
var message = 'Per favore inserisci ' +remainingChars+ ' o più caratteri';
|
||||
|
||||
return message;
|
||||
},
|
||||
loadingMore: function () {
|
||||
return 'Caricando più risultati…';
|
||||
},
|
||||
maximumSelected: function (args) {
|
||||
var message = 'Puoi selezionare solo ' + args.maximum + ' element';
|
||||
|
||||
if (args.maximum !== 1) {
|
||||
message += 'i';
|
||||
} else {
|
||||
message += 'o';
|
||||
}
|
||||
|
||||
return message;
|
||||
},
|
||||
noResults: function () {
|
||||
return 'Nessun risultato trovato';
|
||||
},
|
||||
searching: function () {
|
||||
return 'Sto cercando…';
|
||||
}
|
||||
};
|
||||
});
|
Loading…
Reference in New Issue
Block a user