Bugzilla – Attachment 156017 Details for
Bug 33911
Improve translation of title tags: Catalog, basket, and lists
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33911: Improve translation of title tags: Catalog, basket, and lists
Bug-33911-Improve-translation-of-title-tags-Catalo.patch (text/plain), 20.92 KB, created by
Katrin Fischer
on 2023-09-21 21:30:15 UTC
(
hide
)
Description:
Bug 33911: Improve translation of title tags: Catalog, basket, and lists
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2023-09-21 21:30:15 UTC
Size:
20.92 KB
patch
obsolete
>From 50f6aa8273a08b084345be548472a8bdbe6645d2 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Tue, 6 Jun 2023 15:10:37 +0000 >Subject: [PATCH] Bug 33911: Improve translation of title tags: Catalog, > basket, and lists > >This patch updates catalog, basket, and 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: > > - Advanced search > - Search results > - Bibliographic details > - MARC preview > - Image viewer (with local cover images) > - MARC details > - Labeled MARC details > - ISBD details > - Items > - Checkout history > - Rota > - Add titles to the cart and view the cart > - Send cart > - Item search > - Lists > - View list > - New list > - Edit list > - Send list > >Signed-off-by: David Nind <david@davidnind.com> >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > .../prog/en/modules/basket/basket.tt | 7 +++++- > .../prog/en/modules/basket/downloadcart.tt | 7 +++++- > .../prog/en/modules/basket/sendbasketform.tt | 7 +++++- > .../prog/en/modules/catalogue/ISBDdetail.tt | 17 ++++++++------ > .../prog/en/modules/catalogue/MARCdetail.tt | 17 ++++++++------ > .../prog/en/modules/catalogue/advsearch.tt | 7 +++++- > .../prog/en/modules/catalogue/detail.tt | 16 ++++++++------ > .../prog/en/modules/catalogue/imageviewer.tt | 8 ++++++- > .../prog/en/modules/catalogue/issuehistory.tt | 7 +++++- > .../prog/en/modules/catalogue/itemsearch.tt | 8 +++++-- > .../en/modules/catalogue/labeledMARCdetail.tt | 17 ++++++++------ > .../prog/en/modules/catalogue/moredetail.tt | 7 +++++- > .../prog/en/modules/catalogue/results.tt | 22 ++++++++++++++++++- > .../en/modules/catalogue/search-history.tt | 11 +++++++--- > .../prog/en/modules/catalogue/showelastic.tt | 6 ++++- > .../prog/en/modules/catalogue/showmarc.tt | 8 ++++++- > .../en/modules/catalogue/stockrotation.tt | 7 +++++- > .../virtualshelves/addbybiblionumber.tt | 8 ++++++- > .../modules/virtualshelves/downloadshelf.tt | 8 ++++++- > .../modules/virtualshelves/sendshelfform.tt | 8 ++++++- > .../prog/en/modules/virtualshelves/shelves.tt | 19 +++++++++------- > 21 files changed, 167 insertions(+), 55 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt >index 85cf354cd2..4b7d58aabe 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt >@@ -2,6 +2,7 @@ > [% USE Asset %] > [% USE AuthorisedValues %] > [% USE Branches %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% BLOCK controls %] > <p class="cart-controls"> >@@ -27,7 +28,11 @@ > </p> > [% END %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Your cart › Catalog › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Your cart") | html %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/downloadcart.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/downloadcart.tt >index f61355622c..026833d64e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/downloadcart.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/downloadcart.tt >@@ -1,5 +1,10 @@ >+[% USE raw %] >+[% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Download cart › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Download cart") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body style="padding:1em;" id="cart_downloadcart" class="cart"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasketform.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasketform.tt >index 108aa1ea92..7908430f76 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasketform.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasketform.tt >@@ -1,5 +1,10 @@ >+[% USE raw %] >+[% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Sending your cart › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title> >+<title>[% FILTER collapse %] >+ [% t("Sending your cart") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body style="padding: 1em;" id="cart_sendbasketform" class="cart"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/ISBDdetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/ISBDdetail.tt >index 479aad0d43..43d7d79913 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/ISBDdetail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/ISBDdetail.tt >@@ -1,15 +1,18 @@ > [% USE raw %] > [% USE Koha %] > [% USE Asset %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title> >- [% IF ( unknownbiblionumber ) %] >- Unknown record >- [% ELSE %] >- ISBD details for [% INCLUDE 'biblio-title-head.inc' %] >- [% END %] › Catalog › Koha >-</title> >+<title>[% FILTER collapse %] >+ [% IF ( unknownbiblionumber ) %] >+ [% t("Unknown record") | html %] >+ [% ELSE %] >+ [% t("ISBD details for") | html %] [% INCLUDE 'biblio-title-head.inc' %] >+ [% END %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body id="catalog_ISBDdetail" class="catalog"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt >index c5db687dc9..c3a8c468e4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt >@@ -1,15 +1,18 @@ > [% USE raw %] > [% USE Koha %] > [% USE Asset %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title> >- [% IF ( unknownbiblionumber ) %] >- Unknown record >- [% ELSE %] >- MARC details for [% INCLUDE 'biblio-title-head.inc' %] >- [% END %] › Catalog › Koha >-</title> >+<title>[% FILTER collapse %] >+ [% IF ( unknownbiblionumber ) %] >+ [% t("Unknown record") | html %] >+ [% ELSE %] >+ [% t("MARC details for") | html %] [% INCLUDE 'biblio-title-head.inc' %] >+ [% END %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt >index d7b340b58a..a176d73de7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt >@@ -2,9 +2,14 @@ > [% USE Koha %] > [% USE Asset %] > [% USE Branches %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Advanced search › Catalog › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Advanced search") | html %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >index ffe3127816..c4e9eb6c00 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >@@ -35,13 +35,15 @@ > > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title> >- [% IF ( unknownbiblionumber ) %] >- Unknown record >- [% ELSE %] >- Details for [% INCLUDE 'biblio-title-head.inc' %] >- [% END %] › Catalog › Koha >-</title> >+<title>[% FILTER collapse %] >+ [% IF ( unknownbiblionumber ) %] >+ [% t("Unknown record") | html %] >+ [% ELSE %] >+ [% t("Details for") | html %] [% INCLUDE 'biblio-title-head.inc' %] >+ [% END %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.css("lib/Chocolat/css/chocolat.css") | $raw %] > </head> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/imageviewer.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/imageviewer.tt >index 4cd3f0d5e9..abe62a938e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/imageviewer.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/imageviewer.tt >@@ -1,8 +1,14 @@ > [% USE raw %] > [% USE Asset %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Images › [% INCLUDE 'biblio-title-head.inc' %] › Catalog › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Images") | html %] › >+ [% INCLUDE 'biblio-title-head.inc' %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > <style> > #largeCover { >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt >index ba2c56a392..da5dbeb08a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt >@@ -4,9 +4,14 @@ > [% USE KohaDates %] > [% USE Branches %] > [% USE TablesSettings %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Checkout history for [% INCLUDE 'biblio-title-head.inc' %] › Catalog › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Checkout history for") | html %] [% INCLUDE 'biblio-title-head.inc' %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt >index 402001d33d..67d7fd0552 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt >@@ -2,7 +2,7 @@ > [% USE To %] > [% USE Asset %] > [% USE AuthorisedValues %] >- >+[% PROCESS 'i18n.inc' %] > [%- BLOCK form_label -%] > [%- SWITCH label -%] > [%- CASE 'barcode' %]<span>Barcode</span> >@@ -142,7 +142,11 @@ > > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >- <title>Item search › Catalog › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Item search") | html %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.css("css/itemsearchform.css") | $raw %] > </head> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt >index b8aff7b211..e16b5c47db 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt >@@ -1,16 +1,19 @@ > [% USE raw %] > [% USE Koha %] > [% USE Asset %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] > >-<title> >- [% IF ( unknownbiblionumber ) %] >- Unknown record >- [% ELSE %] >- Labeled MARC details for [% bibliotitle | html %] >- [% END %] › Catalog › Koha >-</title> >+<title>[% FILTER collapse %] >+ [% IF ( unknownbiblionumber ) %] >+ [% t("Unknown record") | html %] >+ [% ELSE %] >+ [% t("Labeled MARC details for") | html %] [% bibliotitle | html %] >+ [% END %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > > [% INCLUDE 'doc-head-close.inc' %] > </head> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt >index 4ff7adc54e..2d8e6f0bdf 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/moredetail.tt >@@ -4,9 +4,14 @@ > [% USE Koha %] > [% USE Branches %] > [% USE Price %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Item details for [% INCLUDE 'biblio-title-head.inc' %] › Catalog › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Item details for") | html %] [% INCLUDE 'biblio-title-head.inc' %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > <style>.listgroup .rows{margin-left:1em;}</style> > </head> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt >index 231eec76d3..7e7eeaa657 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt >@@ -12,7 +12,27 @@ > [% USE AuthorisedValues %] > [% INCLUDE 'doc-head-open.inc' %] > >-<title>[% IF ( searchdesc ) %]Results of search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %][% ELSE %]You did not specify any search criteria[% END %] › Catalog › Koha</title> >+<title>[% FILTER collapse %] >+ [% IF ( searchdesc ) %] >+ [% IF ( query_desc ) %] >+ [% IF ( limit_desc ) %] >+ [% tx("Results of search for {query_desc} with limit(s): '{limit_desc}'", { query_desc = query_desc, limit_desc = limit_desc }) | html %] >+ [% ELSE %] >+ [% tx("Results of search for {query_desc}", { query_desc = query_desc }) | html %] >+ [% END %] >+ [% ELSE %] >+ [% IF ( limit_desc ) %] >+ [% tx("Results of search for {limit_desc}", { limit_desc = limit_desc }) | html %] >+ [% ELSE %] >+ [% t("Results of search") | html %] >+ [% END %] >+ [% END %] >+ [% ELSE %] >+ [% t("You did not specify any search criteria") | html %] >+ [% END %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt >index 1aee560715..d41d0ad7b3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt >@@ -1,10 +1,15 @@ > [% USE raw %] > [% USE Asset %] >-[% SET footerjs = 1 %] >-[% INCLUDE 'doc-head-open.inc' %] > [% USE Koha %] > [% USE KohaDates %] >-<title>Search history › Catalog › Koha</title> >+[% PROCESS 'i18n.inc' %] >+[% SET footerjs = 1 %] >+[% INCLUDE 'doc-head-open.inc' %] >+<title>[% FILTER collapse %] >+ [% t("Search history") | html %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/showelastic.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/showelastic.tt >index c90e6d6e3b..5c35945910 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/showelastic.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/showelastic.tt >@@ -1,6 +1,10 @@ > [% INCLUDE 'doc-head-open.inc' %] > [% USE raw %] >-<title>Elasticsearch record › Catalog › Koha</title> >+<title>[% FILTER collapse %] >+ Elasticsearch record › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> > </head> > <body id="catalog_showelastic" class="catalog"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/showmarc.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/showmarc.tt >index fe001d0fd2..6854391eaf 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/showmarc.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/showmarc.tt >@@ -1,5 +1,11 @@ >+[% USE raw %] >+[% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>MARC import › Cataloging › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("MARC import") | html %] › >+ [% t("Cataloging") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> > </head> > <body id="catalog_showmarc" class="catalog"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/stockrotation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/stockrotation.tt >index 8fbf62a783..f7e8199952 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/stockrotation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/stockrotation.tt >@@ -2,9 +2,14 @@ > [% USE Koha %] > [% USE Asset %] > [% USE Branches %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Stock rotation details for [% INCLUDE 'biblio-title-head.inc' %] › Catalog › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Stock rotation details for") | html %] [% INCLUDE 'biblio-title-head.inc' %] › >+ [% t("Catalog") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body id="catalog_stockrotation" class="catalog"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/addbybiblionumber.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/addbybiblionumber.tt >index 51b9dde8e6..76631902ba 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/addbybiblionumber.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/addbybiblionumber.tt >@@ -1,5 +1,11 @@ >+[% USE raw %] >+[% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Add to list › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Add to list") | html %] › >+ [% t("Lists") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/downloadshelf.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/downloadshelf.tt >index ebc7d8d9a1..61fdbd824c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/downloadshelf.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/downloadshelf.tt >@@ -1,5 +1,11 @@ >+[% USE raw %] >+[% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Download list › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Download list") | html %] › >+ [% t("Lists") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body id="lists_downloadshelf" class="lists" style="padding:1em;"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelfform.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelfform.tt >index 3817c57034..92546a120d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelfform.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/sendshelfform.tt >@@ -1,5 +1,11 @@ >+[% USE raw %] >+[% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Sending your list › Lists › Koha</title> >+<title>[% FILTER collapse %] >+ [% t("Sending your list") | html %] › >+ [% t("Lists") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body id="lists_sendshelfform" class="lists" style="padding: 1em;"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt >index ee7b98290c..397d5f745d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt >@@ -4,19 +4,22 @@ > [% USE KohaDates %] > [% USE AuthorisedValues %] > [% USE Branches %] >+[% PROCESS 'i18n.inc' %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title> >+<title>[% FILTER collapse %] > [% IF op == 'view' %] >- Contents of [% shelf.shelfname | html %] › [% END %] >- >+ [% tx("Contents of {list_name}", { list_name = shelf.shelfname }) | html %] › >+ [% END %] > [% IF op == 'add_form' %] >- Create new list › [% END %] >- >+ [% t("Create new list") | html %] › >+ [% END %] > [% IF op == 'edit_form' %] >- Edit list [% shelf.shelfname | html %] › [% END %] >- Lists › Koha >-</title> >+ [% tx("Edit list {list_name}", { list_name = shelf.shelfname }) | html %] › >+ [% END %] >+ [% t("Lists") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > <style>textarea { width: 100%; }</style> > >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 33911
:
152128
|
155239
| 156017 |
156018