From 0247228567854dee02026cbf6a2629b98d1a75a0 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 20 May 2013 08:38:46 -0700 Subject: [PATCH] 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 --- .../prog/en/modules/tools/manage-marc-import.tt | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) 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 a724f7e..9459dfc 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.2.5