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:
parent
c2464231b0
commit
884621825c
90 changed files with 615 additions and 99 deletions
|
@ -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 › Cataloging › ") + backend.titleForRecord.replace( '{ID}', parts[1] ) );
|
||||
$( 'title', document.head ).html( backend.titleForRecord.replace( '{ID}', parts[1] ) + " › " + _("Cataloging") + " › " + _("Koha") );
|
||||
$('#save-record span').text( backends[ state.saveBackend ].saveLabel );
|
||||
}
|
||||
|
||||
|
|
|
@ -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 %] › Cataloging › 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 %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
[% INCLUDE 'calendar.inc' %]
|
||||
[% Asset.js("lib/hc-sticky.js") | $raw %]
|
||||
|
|
|
@ -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 ) %] › Search results [% ELSIF ( query ) %] › No results found [% END %] › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% IF ( total || breeding_loop ) %]
|
||||
[% t("Search results") | html %]
|
||||
[% ELSIF ( query ) %]
|
||||
[% t("No results found") | html %]
|
||||
[% END %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -7,7 +7,17 @@
|
|||
[% USE TablesSettings %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Items › [% biblio.title | html %] [% IF ( biblio.author ) %] by [% biblio.author | html %][% END %] (Record #[% biblio.biblionumber | html %]) › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Items") | html %] ›
|
||||
[% 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 %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
[% Asset.css("css/addbiblio.css") | $raw %]
|
||||
[% INCLUDE 'datatables.inc' %]
|
||||
|
|
|
@ -1,9 +1,13 @@
|
|||
[% USE raw %]
|
||||
[% USE Koha %]
|
||||
[% USE Branches %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% USE TablesSettings %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Catalog concerns › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Catalog concerns") | html %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,7 +1,12 @@
|
|||
[% USE raw %]
|
||||
[% USE Asset %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Editor › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Editor") | html %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
[% Asset.css("css/cateditor.css") | $raw %]
|
||||
[% Asset.css("lib/codemirror/codemirror.min.css") | $raw %]
|
||||
|
|
|
@ -1,7 +1,12 @@
|
|||
[% USE raw %]
|
||||
[% USE HtmlTags %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Link to host record › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Link to host record") | html %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="catalog_linkitem" class="catalog">
|
||||
|
|
|
@ -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 › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Merging records") | html %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
<style>
|
||||
div.record ul, div.record li { float:none; display:block; }
|
||||
|
|
|
@ -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' %] › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Attach an item to") | html %] [% INCLUDE 'biblio-title-head.inc' %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="catalog_moveitem" class="catalog">
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Framework plugin example") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Call number browser") | html %] ›
|
||||
[% t("Cataloging") | 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>006 builder › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("006 builder") | html %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>007 builder › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("007 builder") | html %] ›
|
||||
[% t("Cataloging") | 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>008 builder › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("008 builder") | html %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>008 builder › Authorities › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("008 builder") | html %] ›
|
||||
[% t("Authorities") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>008 builder › Classifications › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("008 builder") | html %] ›
|
||||
[% t("Classifications") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("000 - Leader builder") | html %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Leader builder › Authorities › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Leader builder") | html %] ›
|
||||
[% t("Authorities") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>plugin for links › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Plugin for links") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
[% IF ( fillinput ) %]
|
||||
</head>
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="cat_unimarc_field_115a" class="cat" style="padding:1em;">
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="cat_unimarc_field_123a" class="cat" style="padding:1em;">
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="cat_unimarc_field_123d" class="cat" style="padding:1em;">
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="cat_unimarc_field_123e" class="cat" style="padding:1em;">
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="cat_unimarc_field_123f" class="cat" style="padding:1em;">
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="cat_unimarc_field_123g" class="cat" style="padding:1em;">
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="cat_unimarc_field_123ij" class="cat" style="padding:1em;">
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin unimarc_field_146a › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Framework plugin unimarc_field_146a") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin unimarc_field_146b › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Framework plugin unimarc_field_146b") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin unimarc_field_146c › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Framework plugin unimarc_field_146c") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin unimarc_field_146d › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Framework plugin unimarc_field_146d") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin unimarc_field_146e › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Framework plugin unimarc_field_146e") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin unimarc_field_146e › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Framework plugin unimarc_field_146e") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin unimarc_field_146h › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Framework plugin unimarc_field_146h") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin unimarc_field_146i › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Framework plugin unimarc_field_146i") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 181-2 builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 181a builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 181b builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 181c builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 182-2 builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 182a builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 182c builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 183-2 builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 183a builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>UNIMARC field 210c builder › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 210c builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% 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; }
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% SET footerjs = 1 %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>UNIMARC field 225a builder › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 225a builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 283-2 builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 283a builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 325h builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
[% USE raw %]
|
||||
[% PROCESS 'i18n.inc' %]
|
||||
[% INCLUDE 'doc-head-open.inc' %]
|
||||
<title>Framework plugin example › Cataloguing › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 325j builder") | html %] ›
|
||||
[% t("Cataloguing") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 › Cataloging › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("UNIMARC field 4XX builder") | html %] ›
|
||||
[% t("Cataloging") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
|
||||
|
|
|
@ -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 %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
</head>
|
||||
<body id="cat_unimarc_leader_authorities" class="cat" style="padding:1em;">
|
||||
|
|
|
@ -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 › Koha</title>
|
||||
[% ELSE %]
|
||||
<title>Z39.50 authority search results › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% IF ( opsearch ) %]
|
||||
[% t("Z39.50 authority search points") | html %] ›
|
||||
[% ELSE %]
|
||||
[% t("Z39.50 authority search results") | html %] ›
|
||||
[% 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; } }
|
||||
|
|
|
@ -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 › Koha</title>
|
||||
<title>[% FILTER collapse %]
|
||||
[% t("Z39.50/SRU search results") | html %] ›
|
||||
[% t("Koha") | html %]
|
||||
[% END %]</title>
|
||||
[% INCLUDE 'doc-head-close.inc' %]
|
||||
<style>
|
||||
#dataPreview {
|
||||
|
|
Loading…
Reference in a new issue