Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. /*
  2. * English language translations for use in JavaScript.
  3. */
  4. (function(window, undefined) {
  5. if (window.locales === undefined) {
  6. window.locales = {};
  7. }
  8.  
  9. window.locales.en = {
  10. forms: {
  11. /* Form validation messages. */
  12. checkboxValueMissing: "Please check the required box.",
  13. emailFormat: "Please enter a valid email address.",
  14. numberPatternMismatch: "Please only enter numbers.",
  15. patternMismatch: "Please only enter numbers.",
  16. phone: "Please enter a valid phone number.",
  17. selectValueMissing: "Please select an option from the list.",
  18. valueMissing: "Please fill out this field.",
  19. amountRangeOutOfBounds: function(min, max) {
  20. return "Please input a load amount between $" + min + " and $" + max + ".";
  21. },
  22.  
  23. /* Form submission messages. */
  24. cancelText: "Nevermind",
  25. confirmText: "I'm Sure",
  26. workingValue: "Working…",
  27. }
  28. };
  29. })(window);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement