Bug 11225: remove \n from some strings to be translated
authorJonathan Druart <jonathan.druart@biblibre.com>
Tue, 12 Nov 2013 14:31:56 +0000 (15:31 +0100)
committerGalen Charlton <gmc@esilibrary.com>
Fri, 6 Dec 2013 15:15:08 +0000 (15:15 +0000)
Some strings in the serials module contain linebreaks \n that cause
problems in translation.

Test plan:
- Update your po file
- Verify that strings in serials/subscription-add.tt and
  serials/subscription-numberpatterns.tt are present and don't contain
  "\n" character.

Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Template only change, passes all tests and QA script.
Updated po files now contain only the strings and no line breaks.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
No regressions found. Passes koha-qa.pl and xt.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt
koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-numberpatterns.tt

index 713b3b1..18f8962 100644 (file)
@@ -256,24 +256,24 @@ function testPredictionPattern() {
     var error = 0;
     var error_msg = "";
     if(frequencyid == undefined || frequencyid == ""){
-        error_msg += _("- Frequency is not defined\n");
+        error_msg += _("- Frequency is not defined") + "\n";
         error ++;
     }
     acquidate = $("#acqui_date").val();
     if(acquidate == undefined || acquidate == ""){
-        error_msg += _("- First publication date is not defined\n");
+        error_msg += _("- First publication date is not defined") + "\n";
         error ++;
     }
     [% IF (more_than_one_serial) %]
       var nextacquidate = $("#nextacquidate").val();
       if(nextacquidate == undefined || nextacquidate == ""){
-        error_msg += _("- Next issue publication date is not defined\n");
+        error_msg += _("- Next issue publication date is not defined") + "\n";
         error ++;
       }
     [% END %]
 
     if(error){
-        alert(_("Cannot test prediction pattern for the following reason(s):\n\n")
+        alert(_("Cannot test prediction pattern for the following reason(s):") + "\n\n"
             + error_msg);
         return false;
     }
index 686cdc8..953882f 100644 (file)
       var error = 0;
       var error_msg = "";
       if(frequencyid == undefined || frequencyid == "") {
-          error_msg += _("- Frequency is not defined\n");
+          error_msg += _("- Frequency is not defined") + "\n";
           error ++;
       }
       if(firstacquidate == undefined || firstacquidate == "") {
-          error_msg += _("- First publication date is not defined\n");
+          error_msg += _("- First publication date is not defined") + "\n";
           error ++;
       }
 
       if(error){
-          alert(_("Cannot test prediction pattern for the following reason(s):\n\n")
+          alert(_("Cannot test prediction pattern for the following reason(s):") + "\n\n"
               + error_msg);
           return false;
       }