BUG 4499: Javascript error messages not translatable
authorKatrin Fischer <katrin.fischer.83@web.de>
Fri, 23 Apr 2010 16:37:01 +0000 (18:37 +0200)
committerGalen Charlton <gmcharlt@gmail.com>
Thu, 13 May 2010 18:20:05 +0000 (14:20 -0400)
- Cataloging > New Record (addbiblio.tmpl)
- Administration > Currencies > New Currency (currency.tmpl)

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tmpl
koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tmpl

index e9e1c9d..97f6399 100644 (file)
         var _alertString="";
         var alertString2;
         if (f.currency.value.length==0) {
-            _alertString += "- Currency name missing\n";
+            _alertString += _("- Currency name missing") + "\n";
         }
         if (f.rate.value.length==0) {
-            _alertString += "- Rate missing\n";
+            _alertString += _("- Rate missing") + "\n";
         }
         if (f.symbol.value.length==0) {
-            _alertString += "- Symbol missing\n";
+            _alertString += _("- Symbol missing") + "\n";
         }
         if (_alertString.length==0) {
             document.Aform.submit();
         } else {
-            alertString2 = "Form not submitted because of the following problem(s)\n";
+            alertString2 = _("Form not submitted because of the following problem(s)") + "\n";
             alertString2 += "------------------------------------------------------------------------------------\n";
             alertString2 += _alertString;
             alert(alertString2);
index a091adc..6c4a2c4 100644 (file)
@@ -90,7 +90,8 @@ function AreMandatoriesNotOk(){
             <!-- /TMPL_LOOP -->
         <!-- /TMPL_LOOP -->
     <!-- /TMPL_LOOP -->
-    var StrAlert = _("Can't save this record because the following field aren't filled :\n\n");
+    var StrAlert = _("Can't save this record because the following field aren't filled:");
+    StrAlert += "\n\n";
     for(var i=0,len=mandatories.length; i<len ; i++){
         var tag=mandatories[i].substr(4,3);
         var subfield=mandatories[i].substr(17,1);
@@ -153,7 +154,7 @@ function AreMandatoriesNotOk(){
        
        if(isempty){
                flag = 1;
-               StrAlert += _("\t* Field ") + arr[0] + _(" is mandatory, at least one of its subfields must be filled.\n");
+               StrAlert += _("\t* Field ") + arr[0] + _(" is mandatory, at least one of its subfields must be filled.") + "\n";
        }
        
     }