CRM-12892 - CRM/Form/validate.tpl - Clarify error about date formatting
authorTim Otten <totten@civicrm.org>
Tue, 13 Aug 2013 23:45:30 +0000 (16:45 -0700)
committerTim Otten <totten@civicrm.org>
Tue, 13 Aug 2013 23:45:30 +0000 (16:45 -0700)
Also: Fix loading of custom error messages

----------------------------------------
* CRM-12892: CiviHR - Entity - Job Positions & Roles
  http://issues.civicrm.org/jira/browse/CRM-12892

templates/CRM/Form/validate.tpl

index 419e696dbc59d934dbffb9951d2a8cb102883abf..ea5e683d1c4d5a0171bdc9836fdf710e003c5e9c 100644 (file)
@@ -41,7 +41,7 @@ cj(function($) {
       email: "{ts escape='js'}Please enter a valid email address.{/ts}",
       url: "{ts escape='js'}Please enter a valid URL.{/ts}",
       date: "{ts escape='js'}Please enter a valid date.{/ts}",
-      dateISO: "{ts escape='js'}Please enter a valid date (ISO).{/ts}",
+      dateISO: "{ts escape='js'}Please enter a valid date (YYYY-MM-DD).{/ts}",
       number: "{ts escape='js'}Please enter a valid number.{/ts}",
       digits: "{ts escape='js'}Please enter only digits.{/ts}",
       creditcard: "{ts escape='js'}Please enter a valid credit card number.{/ts}",
@@ -70,6 +70,7 @@ cj(function($) {
 
   CRM.validate.params = CRM.validate.params || {};
   $.extend(CRM.validate.params, params);
+  $.extend($.validator.messages, CRM.validate.params.messages);
 
   {/literal}
   {if $form && $form.formName}