You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

messages_lt.js 1.7KB

1234567891011121314151617181920212223242526272829303132333435
  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. * Translated default messages for the jQuery validation plugin.
  12. * Locale: LT (Lithuanian; lietuvių kalba)
  13. */
  14. $.extend($.validator.messages, {
  15. required: "Šis laukas yra privalomas.",
  16. remote: "Prašau pataisyti šį lauką.",
  17. email: "Prašau įvesti teisingą elektroninio pašto adresą.",
  18. url: "Prašau įvesti teisingą URL.",
  19. date: "Prašau įvesti teisingą datą.",
  20. dateISO: "Prašau įvesti teisingą datą (ISO).",
  21. number: "Prašau įvesti teisingą skaičių.",
  22. digits: "Prašau naudoti tik skaitmenis.",
  23. creditcard: "Prašau įvesti teisingą kreditinės kortelės numerį.",
  24. equalTo: "Prašau įvestį tą pačią reikšmę dar kartą.",
  25. extension: "Prašau įvesti reikšmę su teisingu plėtiniu.",
  26. maxlength: $.validator.format("Prašau įvesti ne daugiau kaip {0} simbolių."),
  27. minlength: $.validator.format("Prašau įvesti bent {0} simbolius."),
  28. rangelength: $.validator.format("Prašau įvesti reikšmes, kurių ilgis nuo {0} iki {1} simbolių."),
  29. range: $.validator.format("Prašau įvesti reikšmę intervale nuo {0} iki {1}."),
  30. max: $.validator.format("Prašau įvesti reikšmę mažesnę arba lygią {0}."),
  31. min: $.validator.format("Prašau įvesti reikšmę didesnę arba lygią {0}.")
  32. });
  33. return $;
  34. }));