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

Norwegian translations #6213

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
49 changes: 49 additions & 0 deletions src/js/select2/i18n/no.js
@@ -0,0 +1,49 @@
define(function () {
// Norwegian
return {
errorLoading: function () {
return 'Resultatene kunne ikke lastes.';
},
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;

var message = 'Vennligst slett ' + overChars + ' tegn';

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

var message = 'Vennligst skriv inn ' + remainingChars + ' eller flere tegn';

return message;
},
loadingMore: function () {
return 'Laster flere resultater...';
},
maximumSelected: function (args) {
var message = 'Du kan bare velge ' + args.maximum + ' element';

if (args.maximum != 1) {
message += 'er';
}

return message;
},
noResults: function () {
return 'Ingen resultater funnet';
},
searching: function () {
return 'Søker...';
},
removeAllItems: function () {
return 'Fjern alle elementer';
},
removeItem: function () {
return 'Fjerne element';
},
search: function() {
return 'Søk';
}
};
});