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_he.js 1.6KB

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: HE (Hebrew; עברית)
  13. */
  14. $.extend($.validator.messages, {
  15. required: "השדה הזה הינו שדה חובה",
  16. remote: "נא לתקן שדה זה",
  17. email: "נא למלא כתובת דוא\"ל חוקית",
  18. url: "נא למלא כתובת אינטרנט חוקית",
  19. date: "נא למלא תאריך חוקי",
  20. dateISO: "נא למלא תאריך חוקי (ISO)",
  21. number: "נא למלא מספר",
  22. digits: "נא למלא רק מספרים",
  23. creditcard: "נא למלא מספר כרטיס אשראי חוקי",
  24. equalTo: "נא למלא את אותו ערך שוב",
  25. extension: "נא למלא ערך עם סיומת חוקית",
  26. maxlength: $.validator.format(".נא לא למלא יותר מ- {0} תווים"),
  27. minlength: $.validator.format("נא למלא לפחות {0} תווים"),
  28. rangelength: $.validator.format("נא למלא ערך בין {0} ל- {1} תווים"),
  29. range: $.validator.format("נא למלא ערך בין {0} ל- {1}"),
  30. max: $.validator.format("נא למלא ערך קטן או שווה ל- {0}"),
  31. min: $.validator.format("נא למלא ערך גדול או שווה ל- {0}")
  32. });
  33. return $;
  34. }));