Bug 33917: Improve translation of title tags: Offline circulation and patron lists
This patch updates offline circulation and patron lists templates so that title tags can be more easily translated. To test, apply the patch and confirm that the following pages have the correct title tags: - Circulation -> Upload offline circulation file - Add to queue - View pending offline circulations - Tools -> Patron lists - New list, edit list - View list Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
f895e8be4c
commit
fe22e14775
6 changed files with 42 additions and 10 deletions
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Add offline circulations to queue › Circulation › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Add offline circulations to queue") | html %] ›
|
||||
[% t("Circulation") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="ocirc_enqueue_koc" class="circ ocirc">
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% USE KohaDates %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE "doc-head-open.inc" %]
|
||||
<title>Offline circulation › Circulation › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Offline circulation") | html %] ›
|
||||
[% t("Circulation") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE "doc-head-close.inc" %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,8 +1,13 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Offline circulation file upload › Circulation › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Offline circulation file upload") | html %] ›
|
||||
[% t("Circulation") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,14 +1,18 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% IF list.patron_list_id %]
|
||||
Modify patron list
|
||||
[% t("Modify patron list") | html %]
|
||||
[% ELSE %]
|
||||
New patron list
|
||||
[% END %] › Patron lists › Tools › Koha
|
||||
</title>
|
||||
[% t("New patron list") | html %]
|
||||
[% END %] ›
|
||||
[% t("Patron lists") | html %] ›
|
||||
[% t("Tools") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -2,10 +2,17 @@
|
|||
[% USE Asset %]
|
||||
[% USE KohaDates %]
|
||||
[% USE TablesSettings %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
[% INCLUDE 'columns_settings.inc' %]
|
||||
<title>Add patrons › [% list.name | html %] › Patron lists › Tools › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Add patrons") | html %] ›
|
||||
[% list.name | html %] ›
|
||||
[% t("Patron lists") | html %] ›
|
||||
[% t("Tools") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
|
||||
<style>
|
||||
|
|
|
@ -1,8 +1,13 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Patron lists › Tools › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Patron lists") | html %] ›
|
||||
[% t("Tools") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
[% INCLUDE 'greybox.inc' %]
|
||||
</head>
|
||||
|
|
Loading…
Reference in a new issue