f2b3e3fcee5c5c9fdf01d461f8f954e2082fee0c
[msb/discovery.git] / discovery-ui / src / main / resources / iui / microservices / js / jquery-validation / localization / messages_cs.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: CS (Czech; čeština, český jazyk)
27  */
28 $.extend($.validator.messages, {
29         required: "Tento údaj je povinný.",
30         remote: "Prosím, opravte tento údaj.",
31         email: "Prosím, zadejte platný e-mail.",
32         url: "Prosím, zadejte platné URL.",
33         date: "Prosím, zadejte platné datum.",
34         dateISO: "Prosím, zadejte platné datum (ISO).",
35         number: "Prosím, zadejte číslo.",
36         digits: "Prosím, zadávejte pouze číslice.",
37         creditcard: "Prosím, zadejte číslo kreditní karty.",
38         equalTo: "Prosím, zadejte znovu stejnou hodnotu.",
39         extension: "Prosím, zadejte soubor se správnou příponou.",
40         maxlength: $.validator.format("Prosím, zadejte nejvíce {0} znaků."),
41         minlength: $.validator.format("Prosím, zadejte nejméně {0} znaků."),
42         rangelength: $.validator.format("Prosím, zadejte od {0} do {1} znaků."),
43         range: $.validator.format("Prosím, zadejte hodnotu od {0} do {1}."),
44         max: $.validator.format("Prosím, zadejte hodnotu menší nebo rovnu {0}."),
45         min: $.validator.format("Prosím, zadejte hodnotu větší nebo rovnu {0}.")
46 });
47
48 }));