1
0
mirror of synced 2024-11-21 20:46:07 +03:00

Added the formatMatches string

This commit is contained in:
Bjørn Johansen 2014-10-29 22:36:54 +01:00
parent 3a9896dc4b
commit d1c19eb012

View File

@ -8,6 +8,7 @@
"use strict";
$.fn.select2.locales['nb'] = {
formatMatches: function (matches) { if (matches === 1) { return "Ett resultat er tilgjengelig, trykk enter for å velge det."; } return matches + " resultater er tilgjengelig. Bruk piltastene opp og ned for å navigere."; },
formatNoMatches: function () { return "Ingen treff"; },
formatInputTooShort: function (input, min) { var n = min - input.length; return "Vennligst skriv inn " + n + (n>1 ? " flere tegn" : " tegn til"); },
formatInputTooLong: function (input, max) { var n = input.length - max; return "Vennligst fjern " + n + " tegn"; },