6056 |
efrain |
1 |
(function( factory ) {
|
|
|
2 |
if ( typeof define === "function" && define.amd ) {
|
|
|
3 |
define( ["jquery", "../jquery.validate"], factory );
|
|
|
4 |
} else if (typeof module === "object" && module.exports) {
|
|
|
5 |
module.exports = factory( require( "jquery" ) );
|
|
|
6 |
} else {
|
|
|
7 |
factory( jQuery );
|
|
|
8 |
}
|
|
|
9 |
}(function( $ ) {
|
|
|
10 |
|
|
|
11 |
/*
|
|
|
12 |
* Translated default messages for the jQuery validation plugin.
|
|
|
13 |
* Locale: LT (Lithuanian; lietuvių kalba)
|
|
|
14 |
*/
|
|
|
15 |
$.extend( $.validator.messages, {
|
|
|
16 |
required: "Šis laukas yra privalomas.",
|
|
|
17 |
remote: "Prašau pataisyti šį lauką.",
|
|
|
18 |
email: "Prašau įvesti teisingą elektroninio pašto adresą.",
|
|
|
19 |
url: "Prašau įvesti teisingą URL.",
|
|
|
20 |
date: "Prašau įvesti teisingą datą.",
|
|
|
21 |
dateISO: "Prašau įvesti teisingą datą (ISO).",
|
|
|
22 |
number: "PraÅ¡au įvesti teisingÄ… skaiÄių.",
|
|
|
23 |
digits: "Prašau naudoti tik skaitmenis.",
|
|
|
24 |
creditcard: "Prašau įvesti teisingą kreditinės kortelės numerį.",
|
|
|
25 |
equalTo: "Prašau įvestį tą pačią reikšmę dar kartą.",
|
|
|
26 |
extension: "Prašau įvesti reikšmę su teisingu plėtiniu.",
|
|
|
27 |
maxlength: $.validator.format( "Prašau įvesti ne daugiau kaip {0} simbolių." ),
|
|
|
28 |
minlength: $.validator.format( "Prašau įvesti bent {0} simbolius." ),
|
|
|
29 |
rangelength: $.validator.format( "Prašau įvesti reikšmes, kurių ilgis nuo {0} iki {1} simbolių." ),
|
|
|
30 |
range: $.validator.format( "Prašau įvesti reikšmę intervale nuo {0} iki {1}." ),
|
|
|
31 |
max: $.validator.format( "Prašau įvesti reikšmę mažesnę arba lygią {0}." ),
|
|
|
32 |
min: $.validator.format( "Prašau įvesti reikšmę didesnę arba lygią {0}." )
|
|
|
33 |
} );
|
|
|
34 |
|
|
|
35 |
}));
|