@@ -, +, @@ - In fr-FR-staff-prog.po you should no longer see a reference to cities.tt line 6, "#: koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt:6" - In fr-FR-messages.po you should see several strings which have been pulled individually from the tag: - cities.tt:9, msgid "Modify city" - cities.tt:11, msgid "New city" - cities.tt:15, msgid "Confirm deletion of city" - cities.tt:19, msgid "Administration", msgid "Cities", msgid "Koha", and msgid "Administration" --- .../prog/en/modules/admin/cities.tt | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt @@ -2,19 +2,22 @@ [% USE Asset %] [% SET footerjs = 1 %] [% USE TablesSettings %] +[% PROCESS 'i18n.inc' %] [% INCLUDE 'doc-head-open.inc' %] -<title> +<title>[% FILTER collapse %] [% IF op =='add_form' %] [% IF city.cityid %] - Modify city + [% t("Modify city") | html %] [% ELSE %] - New city - [% END %] › [% ELSE %] + [% t("New city") | html %] + [% END %] › + [% ELSE %] [% IF op == 'delete_confirm' %] - Confirm deletion of city › [% END %] + [% t("Confirm deletion of city") | html %] › + [% END %] [% END %] - Cities › Administration › Koha - + [% t("Cities") | html %] › [% t("Administration") | html %] › [% t("Koha") | html %] +[% END %] [% INCLUDE 'doc-head-close.inc' %] --