Bug 33920: Improve translation of title tags: Patrons
This patch updates patron module templates so that title tags can be more easily translated. To test, apply the patch and confirm that the following patron-related pages have the correct title tags: - Patrons home page - Patron search -> - Select two patrons -> Merge selected - Add patron -> - Add a patron with the same name and email address -> - Click "View existing record" in "Duplicate patron record?" dialog. - Patron details - Manage API keys (must have RESTOAuth2ClientCredentials enabled) - Accounting - Transactions - Print fee receipt - Print invoice - Make a payment - Create manual invoice - Create manual credit - Routing lists (must have RoutingSerials enabled) - Circulation history - Notices - Statistics - Files (must have EnableBorrowerFiles enabled) - Purchase suggestions - Discharges (must have useDischarge enabled) - Housebound (must have HouseboundModule enabled) - ILL requests history (must have ILLModule enabled) - Set permissions - Change password - Print summary - Print account balance - Two-factor authentication (must have TwoFactorAuthentication enabled) - Edit patron - Update child to adult patron: - Must have more than one "adult" type category defined - Locate a patron with a "child" type category - Choose More -> Update child to adult patron - Delete patron (confirmation page) - Pending discharge requests - Patrons requesting modifications Signed-off-by: Caroline Cyr La Rose <caroline.cyr-la-rose@inlibro.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
749783debf
commit
5d2ff2f80a
35 changed files with 231 additions and 64 deletions
|
@ -4,10 +4,20 @@
|
|||
[%- USE KohaDates -%]
|
||||
[%- USE AuthorisedValues -%]
|
||||
[%- USE Branches -%]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% PROCESS 'accounts.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Details of [% IF type == 'credit' %]credit[% ELSE %]debit[% END %] › [% INCLUDE 'patron-title.inc' no_html = 1 %] › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% IF type == 'credit' %]
|
||||
[% t("Details of credit") | html %]
|
||||
[% ELSE %]
|
||||
[% t("Details of debit") | html %]
|
||||
[% END %] ›
|
||||
[% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
[% USE raw %]
|
||||
[% USE Koha %]
|
||||
[% USE Asset %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>API Keys › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("API Keys") | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="pat_apikeys" class="pat">
|
||||
|
|
|
@ -8,13 +8,18 @@
|
|||
[% USE Price %]
|
||||
[% USE Branches %]
|
||||
[% USE Registers %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% SET registers = Registers.all( filters => { current_branch => 1 } ) %]
|
||||
|
||||
[% PROCESS 'accounts.inc' %]
|
||||
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Account for [% INCLUDE 'patron-title.inc' no_html = 1 %] › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Account for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -2,9 +2,14 @@
|
|||
[% USE Asset %]
|
||||
[% USE Price %]
|
||||
[% USE Branches %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Delete patron [% patron.firstname | html %] [% patron.surname | html %] › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Delete patron") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="pat_deletemem" class="pat">
|
||||
|
|
|
@ -3,9 +3,16 @@
|
|||
[% USE KohaDates %]
|
||||
[% USE AuthorisedValues %]
|
||||
[% USE Branches %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>[% UNLESS blocking_error %]Discharge for [% patron.firstname | html %] [% patron.surname | html %] ([% patron.cardnumber | html %])[% END %] › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% UNLESS blocking_error %]
|
||||
[% t("Discharge for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% END %]
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="discharge" class="discharge">
|
||||
|
|
|
@ -2,9 +2,14 @@
|
|||
[% USE Asset %]
|
||||
[% USE Branches %]
|
||||
[% USE KohaDates %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Pending discharge requests › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Pending discharge requests") | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="pat_discharges" class="pat">
|
||||
|
|
|
@ -3,9 +3,14 @@
|
|||
[% USE KohaDates %]
|
||||
[% USE Branches %]
|
||||
[% USE AuthorisedValues %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Files for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Files for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -6,9 +6,14 @@
|
|||
[% USE Branches %]
|
||||
[% USE TablesSettings %]
|
||||
[% USE ItemTypes %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Holds history for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Holds history for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -4,9 +4,14 @@
|
|||
[% USE KohaDates %]
|
||||
[% USE AuthorisedValues %]
|
||||
[% USE Branches %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Details for [% INCLUDE 'patron-title.inc' no_html = 1 %] › Housebound › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Details for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Housebound") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -3,12 +3,17 @@
|
|||
[% USE Branches %]
|
||||
[% USE Koha %]
|
||||
[% USE KohaDates %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% USE AuthorisedValues %]
|
||||
[% USE TablesSettings %]
|
||||
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>ILL requests history for [% INCLUDE 'patron-title.inc' no_html = 1 %] › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("ILL requests history for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -3,13 +3,16 @@
|
|||
[% USE Koha %]
|
||||
[% USE Branches %]
|
||||
[% USE Registers %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
|
||||
[% PROCESS 'accounts.inc' %]
|
||||
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
[% SET registers = Registers.all( { filters => { current_branch => 1 } } ) %]
|
||||
<title>Create manual credit › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Create manual credit") | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -3,12 +3,15 @@
|
|||
[% USE Koha %]
|
||||
[% USE Price %]
|
||||
[% USE Branches %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
|
||||
[% PROCESS 'accounts.inc' %]
|
||||
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Create manual invoice › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Create manual invoice") | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,12 +1,15 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% USE Branches %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% PROCESS 'permissions.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>
|
||||
Set permissions for [% INCLUDE 'patron-title.inc' no_html = 1 %] › Patrons › Koha
|
||||
</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Set permissions for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -2,11 +2,18 @@
|
|||
[% USE Asset %]
|
||||
[% USE Koha %]
|
||||
[% USE Branches %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>
|
||||
[% IF ( newpassword ) %]Password updated [% ELSE %]Update password for [% patron.surname | html %], [% patron.firstname | html %][% END %] › Patrons › Koha
|
||||
</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% IF ( newpassword ) %]
|
||||
[% t("Password updated") | html %]
|
||||
[% ELSE %]
|
||||
[% t("Update password for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% END %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
[% USE TablesSettings %]
|
||||
[% USE Branches %]
|
||||
[% USE Categories %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% PROCESS 'patronfields.inc' %]
|
||||
[% SET libraries = Branches.all %]
|
||||
|
@ -12,7 +13,13 @@
|
|||
[% SET searchtype = Koha.Preference('DefaultPatronSearchMethod') %]
|
||||
[% PROCESS 'patron-search.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Patrons[% IF ( searching ) %] › Search results[% END %] › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% IF ( searching ) %]
|
||||
[% t("Search results") | html %] ›
|
||||
[% END %]
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
[% PROCESS 'i18n.inc' %]
|
||||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% USE To %]
|
||||
|
@ -9,19 +8,22 @@
|
|||
[% PROCESS 'member-alt-address-style.inc' %]
|
||||
[% PROCESS 'member-alt-contact-style.inc' %]
|
||||
[% PROCESS 'restriction-types.inc' %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% UNLESS blocking_error %]
|
||||
[% IF ( opadd ) %]
|
||||
Add patron
|
||||
[% t("Add patron") | html %]
|
||||
[% ELSE %]
|
||||
Modify patron
|
||||
[% t("Modify patron") | html %]
|
||||
[% END %]
|
||||
[% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% IF patron_category %]([% patron_category.description | html %])[% END %]
|
||||
[% END %] › Patrons › Koha
|
||||
</title>
|
||||
[% END %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
<style>
|
||||
legend:hover {
|
||||
cursor: pointer;
|
||||
|
|
|
@ -4,9 +4,14 @@
|
|||
[% USE Branches %]
|
||||
[% USE Categories %]
|
||||
[% USE KohaDates %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Update patron records › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Update patron records") | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -3,9 +3,14 @@
|
|||
[% USE Branches %]
|
||||
[% USE Categories %]
|
||||
[% USE KohaDates %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Merge patron records › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Merge patron records") | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
[% FILTER collapse %]
|
||||
<style>
|
||||
|
|
|
@ -2,9 +2,14 @@
|
|||
[% USE Koha %]
|
||||
[% USE KohaDates %]
|
||||
[% PROCESS 'member-display-address-style.inc' %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Check duplicate patron › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Check duplicate patron") | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
[% USE raw %]
|
||||
[% USE Koha %]
|
||||
[% USE Branches %]
|
||||
[% USE KohaDates %]
|
||||
|
@ -5,18 +6,21 @@
|
|||
[% USE ItemTypes %]
|
||||
[% USE TablesSettings %]
|
||||
[% PROCESS 'member-display-address-style.inc' %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
|
||||
[% PROCESS 'accounts.inc' %]
|
||||
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Summary for [% patron.firstname | html %] [% patron.surname | html %] ([% patron.cardnumber | html %])</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Summary for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
<body id="pat_moremember-print" class="pat">
|
||||
<div id="main">
|
||||
<h3><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% patron.cardnumber | uri %]">Account summary: [% patron.firstname | html %] [% patron.surname | html %] ([% patron.cardnumber | html %])</a></h3>
|
||||
<h3><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% patron.cardnumber | uri %]">Account summary: [% INCLUDE 'patron-title.inc' no_html = 1 %] ›</a></h3>
|
||||
|
||||
<ul>
|
||||
[% PROCESS 'display-address-style' %]
|
||||
|
|
|
@ -10,14 +10,17 @@
|
|||
[% USE Price %]
|
||||
[% PROCESS 'member-display-address-style.inc' %]
|
||||
[% PROCESS 'member-display-alt-address-style.inc' %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
[% Asset.css("lib/jquery/plugins/rowGroup/stylesheets/rowGroup.dataTables.min.css") | $raw %]
|
||||
<title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% UNLESS blocking_error %]
|
||||
Patron details for [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% END %] › Patrons › Koha
|
||||
</title>
|
||||
[% t("Patron details for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% END %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -4,9 +4,14 @@
|
|||
[% USE AuthorisedValues %]
|
||||
[% USE Branches %]
|
||||
[% USE KohaDates %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Sent notices for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Sent notices for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
<style>
|
||||
.notice { display: none; }
|
||||
|
|
|
@ -6,10 +6,15 @@
|
|||
[% USE Price %]
|
||||
[% USE TablesSettings %]
|
||||
[% USE KohaDates %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% PROCESS 'accounts.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Make a payment for [% INCLUDE 'patron-title.inc' no_html = 1 %] › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Make a payment for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
[% USE Branches %]
|
||||
[% USE Registers %]
|
||||
[% USE Price %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% PROCESS 'accounts.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
|
@ -21,13 +22,15 @@
|
|||
</div>
|
||||
[% END %]
|
||||
[% SET registers = Registers.all( filters => { current_branch => 1 } ) %]
|
||||
<title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% IF type == 'WRITEOFF' %]
|
||||
Write off an amount for [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% tx("Write off an amount for {patron}", patron = "") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% ELSE %]
|
||||
Collect payment for [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% END %] › Patrons › Koha
|
||||
</title>
|
||||
[% tx("Collect payment for {patron}", patron = "") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% END %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% USE Koha %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Print receipt for [% patron.cardnumber | html %]</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Print receipt for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% USE Koha %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Print receipt for [% patron.cardnumber | html %]</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Print receipt for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% USE Koha %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>[% title | html %] › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% title | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
|
|
@ -4,9 +4,14 @@
|
|||
[% USE KohaDates %]
|
||||
[% USE AuthorisedValues %]
|
||||
[% USE Branches %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Purchase suggestions for [% INCLUDE 'patron-title.inc' no_html = 1 %] › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Purchase suggestions for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -5,9 +5,14 @@
|
|||
[% USE AuthorisedValues %]
|
||||
[% USE Branches %]
|
||||
[% USE TablesSettings %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Circulation history for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Circulation history for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -2,9 +2,14 @@
|
|||
[% USE KohaDates %]
|
||||
[% USE Koha %]
|
||||
[% USE Asset %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Recalls history for [% INCLUDE 'patron-title.inc' %]</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Recalls history for") | html %] [% INCLUDE 'patron-title.inc' %]
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -3,9 +3,14 @@
|
|||
[% USE Koha %]
|
||||
[% USE AuthorisedValues %]
|
||||
[% USE Branches %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Subscription routing lists for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Subscription routing lists for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -3,12 +3,17 @@
|
|||
[% USE Koha %]
|
||||
[% USE Branches %]
|
||||
[% USE Categories %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
[% SET libraries = Branches.all %]
|
||||
[% SET categories = Categories.all.unblessed %]
|
||||
[% PROCESS 'patron-search.inc' %]
|
||||
<title>Patron search › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Patron search") | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
<style> .modal-body .close { display: none; } </style>[%# FIXME This is not great, we should make members/memberentrygen.tt use a modal as well and we won't need that here %]
|
||||
</head>
|
||||
|
|
|
@ -3,13 +3,16 @@
|
|||
[% USE Koha %]
|
||||
[% USE AuthorisedValues %]
|
||||
[% USE Branches %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% UNLESS blocking_error %]
|
||||
Statistics for [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% END %] › Patrons › Koha
|
||||
</title>
|
||||
[% t("Statistics for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %]
|
||||
[% END %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
[% USE raw %]
|
||||
[% USE Koha %]
|
||||
[% USE Asset %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Two-factor authentication › Patrons › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Two-factor authentication") | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="pat_two_factor_auth" class="pat">
|
||||
|
|
|
@ -1,8 +1,13 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Choose adult category › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Choose adult category") | html %] ›
|
||||
[% t("Patrons") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
Loading…
Reference in a new issue