From: Kathy Lussier Date: Tue, 21 Mar 2017 01:25:25 +0000 (-0400) Subject: LP#1673891: Fix untranslatable strings in metarecord sibling links X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2d8036d0055f282bcab1cd6b8ca634d3c46c68fd;p=contrib%2FConifer.git LP#1673891: Fix untranslatable strings in metarecord sibling links We had a couple of untrasnlatable strings in the new sibling link section of the record summary page. This commit makes the strings translatable and also rewords one of the strings, as recommended by Eva Cerninakova, to make it easier to translate in other languages. Signed-off-by: Kathy Lussier Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/templates/opac/parts/record/summary.tt2 b/Open-ILS/src/templates/opac/parts/record/summary.tt2 index 33af39fd85..cf98891fa2 100644 --- a/Open-ILS/src/templates/opac/parts/record/summary.tt2 +++ b/Open-ILS/src/templates/opac/parts/record/summary.tt2 @@ -229,7 +229,7 @@ PROCESS get_marc_attrs args=mmr_attrs; IF args.mmr_unique_bib.size > 1; %] -

View other formats and editions

+

[% l("View other formats and editions") %]

[%- IF mmr_attrs.format_label; FOR format IN mmr_attrs.all_formats; @@ -267,7 +267,7 @@ IF args.mmr_unique_bib.size > 1; link = mkurl( ctx.opac_root _ '/results', { modifier => 'metabib', metarecord => ctx.mmr_id, 'fi:from_metarecord' => ctx.mmr_id }, stop_parms.merge(expert_search_parms, general_search_parms, browse_search_parms, facet_search_parms, ['qtype','fi:search_format','fi:icon_format','fi:item_lang','fi:from_metarecord'] ) ); %] - View all [%- args.mmr_unique_bib.size %] formats and editions + [% l("View all formats and editions ") %] ([%- args.mmr_unique_bib.size %])
[%- END;