b6488ff836ac68a6313135825e4320bc5a73cdda
[msb/discovery.git] / discovery-ui / src / main / resources / iui / microservices / js / jquery-validation / localization / messages_no.js
1 /*
2  * Copyright 2016 ZTE, Inc. and others.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 (function( factory ) {
17         if ( typeof define === "function" && define.amd ) {
18                 define( ["jquery", "../jquery.validate"], factory );
19         } else {
20                 factory( jQuery );
21         }
22 }(function( $ ) {
23
24 /*
25  * Translated default messages for the jQuery validation plugin.
26  * Locale: NO (Norwegian; Norsk)
27  */
28 $.extend($.validator.messages, {
29         required: "Dette feltet er obligatorisk.",
30         maxlength: $.validator.format("Maksimalt {0} tegn."),
31         minlength: $.validator.format("Minimum {0} tegn."),
32         rangelength: $.validator.format("Angi minimum {0} og maksimum {1} tegn."),
33         email: "Oppgi en gyldig epostadresse.",
34         url: "Angi en gyldig URL.",
35         date: "Angi en gyldig dato.",
36         dateISO: "Angi en gyldig dato (ÅÅÅÅ-MM-DD).",
37         dateSE: "Angi en gyldig dato.",
38         number: "Angi et gyldig nummer.",
39         numberSE: "Angi et gyldig nummer.",
40         digits: "Skriv kun tall.",
41         equalTo: "Skriv samme verdi igjen.",
42         range: $.validator.format("Angi en verdi mellom {0} og {1}."),
43         max: $.validator.format("Angi en verdi som er mindre eller lik {0}."),
44         min: $.validator.format("Angi en verdi som er større eller lik {0}."),
45         creditcard: "Angi et gyldig kredittkortnummer."
46 });
47
48 }));