Bug 10170: expose more managed staged MARC strings to translation
authorGalen Charlton <gmc@esilibrary.com>
Mon, 20 May 2013 15:38:46 +0000 (08:38 -0700)
committerGalen Charlton <gmc@esilibrary.com>
Tue, 16 Jul 2013 15:45:20 +0000 (15:45 +0000)
This commit makes it possible to translated the 'staged'
and 'error' record statuses as well as the 'auto_match'
overlay status.

Also takes out a bit of HTML cruft in one string that is
not needed for translation.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
All tests pass. New strings are parsed into the po files:
"%s Always add items %s Add items only if matching bib was found %s Add items only if no matching bib was found %s Ignore items %s %s %s %s "
"%s No match %s Match applied %s Match found %s %s %s "
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt

index 74f2ef8..789b02a 100644 (file)
@@ -393,15 +393,21 @@ Page
             Ignored
         [% ELSIF ( record_lis.status == 'reverted' ) %]
             Reverted
+        [% ELSIF ( record_lis.status == 'staged' ) %]
+            Staged
+        [% ELSIF ( record_lis.status == 'error' ) %]
+            Error
         [% ELSE %]
           [% record_lis.status %]
         [% END %]
     </td>
     <td>
         [% IF ( record_lis.overlay_status == 'no_match' ) %]
-            No&nbsp;match
+            No match
         [% ELSIF ( record_lis.overlay_status == 'match_applied' ) %]
             Match applied
+        [% ELSIF ( record_lis.overlay_status == 'auto_match' ) %]
+            Match found
         [% ELSE %]
             [% record_lis.overlay_status %]
         [% END %]