Bug 33912: Improve translation of title tags: Cataloging

This patch updates cataloging templates, including cataloging "value
builder" plugins, so that title tags can be more easily translated.

To test, apply the patch and confirm that the following cataloging
pages have the correct title tags:

- Cataloging home page
- Catalog concerns
- Cataloging search results
  - Select two results ->
    - Merge selected
- Basic MARC editor (Add, edit)
  - Replace via Z39.50
- Advanced MARC editor
- Item editor
- Bibliographic detail page ->
  - Edit ->
    - Attach item
  - Edit ->
    - Link to host record (with EasyAnalytics enabled)
- Authorities -> New from Z39.50/SRU

The patch updates 81 different cataloging plugins. It's not necessary to
configure your MARC framework to use any particular plugin. The plugins
can be loaded in their own tab for the purpose of testing just the
title. I've made a list of direct links here:

https://gitlab.com/-/snippets/2555254
Signed-off-by: Phil Ringnalda <phil@chetcolibrary.org>

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:
Owen Leonard 2023-06-12 17:21:02 +00:00 committed by Tomas Cohen Arazi
parent c2464231b0
commit 884621825c
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F
90 changed files with 615 additions and 99 deletions

View file

@ -367,7 +367,7 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr
$.each( backend.links || [], function( i, link ) {
$('#title').append(' <a target="_blank" href="' + link.href.replace( '{ID}', parts[1] ) + '">(' + link.title + ')</a>' );
} );
$( 'title', document.head ).html( _("Koha &rsaquo; Cataloging &rsaquo; ") + backend.titleForRecord.replace( '{ID}', parts[1] ) );
$( 'title', document.head ).html( backend.titleForRecord.replace( '{ID}', parts[1] ) + " &rsaquo; " + _("Cataloging") + " &rsaquo; " + _("Koha") );
$('#save-record span').text( backends[ state.saveBackend ].saveLabel );
}

View file

@ -2,8 +2,17 @@
[% USE Asset %]
[% USE Koha %]
[% USE HtmlTags %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>[% IF ( biblionumber ) %]Editing [% title | html %] (Record number [% biblionumber | html %])[% ELSE %]Add MARC record[% END %] &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% IF( biblionumber ) %]
[% tx("Editing {title} (Record number {biblionumber})", { title = title, biblionumber = biblionumber }) | html %]
[% ELSE %]
[% t("Add MARC record") | html %]
[% END %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
[% INCLUDE 'calendar.inc' %]
[% Asset.js("lib/hc-sticky.js") | $raw %]

View file

@ -2,9 +2,18 @@
[% USE Koha %]
[% USE KohaDates %]
[% USE TablesSettings %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Cataloging [% IF ( total || breeding_loop ) %] &rsaquo; Search results [% ELSIF ( query ) %] &rsaquo; No results found [% END %] &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% IF ( total || breeding_loop ) %]
[% t("Search results") | html %]
[% ELSIF ( query ) %]
[% t("No results found") | html %]
[% END %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -7,7 +7,17 @@
[% USE TablesSettings %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Items &rsaquo; [% biblio.title | html %] [% IF ( biblio.author ) %] by [% biblio.author | html %][% END %] (Record #[% biblio.biblionumber | html %]) &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Items") | html %] &rsaquo;
[% IF ( biblio.author ) %]
[% tx("{title} by {author}", { title = biblio.title, author = biblio.author }) | html %]
[% ELSE %]
[% biblio.title | html %]
[% END %]
[% tx("(Record #{biblionumber})", { biblionumber = biblio.biblionumber }) | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
[% Asset.css("css/addbiblio.css") | $raw %]
[% INCLUDE 'datatables.inc' %]

View file

@ -1,9 +1,13 @@
[% USE raw %]
[% USE Koha %]
[% USE Branches %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,9 +1,14 @@
[% USE raw %]
[% USE Asset %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% USE TablesSettings %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Catalog concerns &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Catalog concerns") | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,7 +1,12 @@
[% USE raw %]
[% USE Asset %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Editor &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Editor") | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
[% Asset.css("css/cateditor.css") | $raw %]
[% Asset.css("lib/codemirror/codemirror.min.css") | $raw %]

View file

@ -1,7 +1,12 @@
[% USE raw %]
[% USE HtmlTags %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Link to host record &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Link to host record") | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="catalog_linkitem" class="catalog">

View file

@ -1,10 +1,14 @@
[% USE raw %]
[% USE Asset %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% PROCESS 'merge-record.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Merging records &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Merging records") | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
<style>
div.record ul, div.record li { float:none; display:block; }

View file

@ -1,7 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Attach an item to [% INCLUDE 'biblio-title-head.inc' %] &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Attach an item to") | html %] [% INCLUDE 'biblio-title-head.inc' %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="catalog_moveitem" class="catalog">

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Framework plugin example") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,10 +1,16 @@
[% USE raw %]
[% USE Asset %]
[% USE AuthorisedValues %]
[% USE ItemTypes %]
[% USE Koha %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Call number browser &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Call number browser") | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,8 +1,13 @@
[% USE raw %]
[% USE Asset %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>006 builder &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("006 builder") | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>007 builder &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("007 builder") | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,8 +1,13 @@
[% USE raw %]
[% USE Asset %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>008 builder &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("008 builder") | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>008 builder &rsaquo; Authorities &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("008 builder") | html %] &rsaquo;
[% t("Authorities") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>008 builder &rsaquo; Classifications &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("008 builder") | html %] &rsaquo;
[% t("Classifications") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,7 +1,13 @@
[% SET footerjs = 1 %]
[% USE raw %]
[% USE Koha %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>000 - Leader builder &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("000 - Leader builder") | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Leader builder &rsaquo; Authorities &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Leader builder") | html %] &rsaquo;
[% t("Authorities") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>plugin for links &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Plugin for links") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
[% IF ( fillinput ) %]
</head>

View file

@ -1,6 +1,10 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 100 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 100 builder") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,10 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 100 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 100 builder") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,10 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 105 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 105 builder") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 106 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 106 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 110 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 110 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 115a builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 115a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="cat_unimarc_field_115a" class="cat" style="padding:1em;">

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 115b builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 115b builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,7 +1,13 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 116 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 116 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 117 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 117 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 120 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 120 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 121a builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 121a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 121b builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 121b builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 122 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 122 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 123a builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 123a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="cat_unimarc_field_123a" class="cat" style="padding:1em;">

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 123d builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 123d builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="cat_unimarc_field_123d" class="cat" style="padding:1em;">

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 123e builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 123e builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="cat_unimarc_field_123e" class="cat" style="padding:1em;">

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 123f builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 123f builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="cat_unimarc_field_123f" class="cat" style="padding:1em;">

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 123g builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 123g builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="cat_unimarc_field_123g" class="cat" style="padding:1em;">

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 123i/j builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 123i/j builder") | html %]
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="cat_unimarc_field_123ij" class="cat" style="padding:1em;">

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 124a builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 124a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 124b builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 124b builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 124c builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 124c builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 124d builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 124d builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 124e builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 124e builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 124f builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 124f builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 124g builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 124g builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 125a builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 125a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 125b builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 125b builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 126a builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 126a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 126b builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 126b builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 127 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 127 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 128a builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 128a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 128b builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 128b builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 128c builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 128c builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 130 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 130 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,10 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 135a builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 135a builder") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 140 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 140 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 141 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 141 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin unimarc_field_146a &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Framework plugin unimarc_field_146a") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin unimarc_field_146b &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Framework plugin unimarc_field_146b") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin unimarc_field_146c &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Framework plugin unimarc_field_146c") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin unimarc_field_146d &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Framework plugin unimarc_field_146d") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin unimarc_field_146e &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Framework plugin unimarc_field_146e") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin unimarc_field_146e &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Framework plugin unimarc_field_146e") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin unimarc_field_146h &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Framework plugin unimarc_field_146h") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin unimarc_field_146i &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Framework plugin unimarc_field_146i") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 181-2 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 181a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 181b builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 181c builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 182-2 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 182a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 182c builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 183-2 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 183a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,8 +1,13 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% PROCESS 'authorities-search-results.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 210c builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 210c builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 210c builder &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 210c builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
<style>
#custom-doc { width:37.85em;*width:36.93em;min-width:492px; margin:auto; text-align:left; }

View file

@ -1,6 +1,10 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 225a builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 225a builder") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 225a builder &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 225a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 283-2 builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 283a builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,8 +1,12 @@
[%# ATTENTION c'est le contenu du fichier unimarc_field_181-2.tt %]
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 325h builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Framework plugin example &rsaquo; Cataloguing &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 325j builder") | html %] &rsaquo;
[% t("Cataloguing") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,8 +1,13 @@
[% SET footerjs = 1 %]
[% USE raw %]
[% USE To %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>4XX plugin &rsaquo; Cataloging &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 4XX builder") | html %] &rsaquo;
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 686a builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 686a builder") | html %]
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC field 700-4 builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC field 700-4 builder") | html %]
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,6 +1,12 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC leader builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC leader builder") | html %]
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>

View file

@ -1,5 +1,11 @@
[% USE raw %]
[% PROCESS 'i18n.inc' %]
[% INCLUDE 'doc-head-open.inc' %]
<title>UNIMARC leader builder</title>
<title>[% FILTER collapse %]
[% t("UNIMARC leader builder") | html %]
[% t("Cataloging") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="cat_unimarc_leader_authorities" class="cat" style="padding:1em;">

View file

@ -1,12 +1,16 @@
[% USE raw %]
[% USE Asset %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
[% IF ( opsearch ) %]
<title>Z39.50 authority search points &rsaquo; Koha</title>
[% ELSE %]
<title>Z39.50 authority search results &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% IF ( opsearch ) %]
[% t("Z39.50 authority search points") | html %] &rsaquo;
[% ELSE %]
[% t("Z39.50 authority search results") | html %] &rsaquo;
[% END %]
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
<style>
#marcPreview { width : 90%; top: 5%; } .modal-body { max-height: 380px; } .modal-header { padding: 0 14px; } @media (max-width: 767px) { #marcPreview { margin: 0; width : auto; } }

View file

@ -1,10 +1,14 @@
[% USE raw %]
[% USE Asset %]
[% SET footerjs = 1 %]
[% USE Koha %]
[% USE TablesSettings %]
[% PROCESS 'i18n.inc' %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Z39.50/SRU search results &rsaquo; Koha</title>
<title>[% FILTER collapse %]
[% t("Z39.50/SRU search results") | html %] &rsaquo;
[% t("Koha") | html %]
[% END %]</title>
[% INCLUDE 'doc-head-close.inc' %]
<style>
#dataPreview {