From cff0aa9375a0e795ac73eade0087b7ee03c38b26 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 20 May 2013 08:38:46 -0700 Subject: [PATCH] [PASSED QA] Bug 10170: expose more managed staged MARC strings to translation 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 Signed-off-by: Jonathan Druart Signed-off-by: Katrin Fischer 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 " --- .../prog/en/modules/tools/manage-marc-import.tt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt index 74f2ef8..789b02a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt @@ -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 %] [% IF ( record_lis.overlay_status == 'no_match' ) %] - No 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 %] -- 1.7.9.5