Bugzilla – Attachment 76344 Details for
Bug 20988
[OMNIBUS] Internationalization: wrap all translatable text inside t() calls
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20988: koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing
Bug-20988-koha-tmplintranet-tmplprogenmodulescatal.patch (text/plain), 117.23 KB, created by
Julian Maurice
on 2018-06-25 07:22:20 UTC
(
hide
)
Description:
Bug 20988: koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2018-06-25 07:22:20 UTC
Size:
117.23 KB
patch
obsolete
>From ee941b4ce10105f56a26451af12c5832d5d6c2a2 Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Mon, 25 Jun 2018 08:46:50 +0200 >Subject: [PATCH] Bug 20988: > koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing > >--- > .../prog/en/modules/cataloguing/addbiblio.tt | 137 ++++++--------- > .../prog/en/modules/cataloguing/addbooks.tt | 91 +++++----- > .../prog/en/modules/cataloguing/additem.tt | 77 +++++---- > .../prog/en/modules/cataloguing/editor.tt | 163 +++++++++--------- > .../prog/en/modules/cataloguing/linkitem.tt | 19 +- > .../prog/en/modules/cataloguing/merge.tt | 39 +++-- > .../prog/en/modules/cataloguing/moveitem.tt | 31 ++-- > .../modules/cataloguing/z3950_auth_search.tt | 87 +++++----- > .../en/modules/cataloguing/z3950_search.tt | 105 +++++------ > 9 files changed, 362 insertions(+), 387 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt >index 2f31727fbd..bb2b807dc3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt >@@ -1,7 +1,8 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% USE Koha %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Cataloging › [% IF ( biblionumber ) %]Editing [% title |html %] (Record number [% biblionumber %])[% ELSE %]Add MARC record[% END %]</title> >+<title>[% t('Koha ⺠Cataloging âº') %] [% IF ( biblionumber ) %][% t('Editing') %] [% title |html %] [% t('(Record number') %] [% biblionumber %])[% ELSE %][% t('Add MARC record') %][% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.js("lib/jquery/plugins/jquery.fixFloat.js") %] > [% Asset.js("js/cataloging.js") %] >@@ -406,12 +407,12 @@ function Changefwk() { > <body id="cat_addbiblio" class="cat"> > > <div id="loading"> >- <div>Loading, please wait...</div> >+ <div>[% t('Loading, please wait...') %]</div> > </div> > > [% INCLUDE 'header.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a> › [% IF ( biblionumber ) %]Editing <em>[% title |html %]</em> (Record number [% biblionumber %])[% ELSE %]Add MARC record[% END %]</div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/cataloguing/addbooks.pl">[% t('Cataloging') %]</a> ⺠[% IF ( biblionumber ) %][% t('Editing') %] <em>[% title |html %]</em> [% t('(Record number') %] [% biblionumber %])[% ELSE %][% t('Add MARC record') %][% END %]</div> > > <div id="doc" class="yui-t7"> > >@@ -420,8 +421,8 @@ function Changefwk() { > <div class="yui-g"> > > <h1> >-[% IF ( biblionumber ) %]Editing <em>[% title |html %]</em> (Record number [% biblionumber %]) >-[% ELSE %]Add MARC record [% IF (circborrowernumber) %]<em>(fast cataloging)</em>[% END %] >+[% IF ( biblionumber ) %][% t('Editing') %] <em>[% title |html %]</em> [% t('(Record number') %] [% biblionumber %]) >+[% ELSE %][% t('Add MARC record') %] [% IF (circborrowernumber) %]<em>[% t('(fast cataloging)') %]</em>[% END %] > [% END %] > </h1> > >@@ -429,17 +430,17 @@ function Changefwk() { > <!-- show duplicate warning on tab 0 only --> > [% IF ( duplicatebiblionumber ) %] > <div class="dialog alert"> >- <h3>Duplicate record suspected</h3> >- <p>Is this a duplicate of <a class="popup" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% duplicatebiblionumber %]" onclick="openWindow('/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% duplicatebiblionumber %]&popup=1', 'DuplicateBiblio','800','600'); return false;">[% duplicatetitle %]</a> ?</p> >+ <h3>[% t('Duplicate record suspected') %]</h3> >+ <p>[% t('Is this a duplicate of') %] <a class="popup" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% duplicatebiblionumber %]" onclick="openWindow('/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% duplicatebiblionumber %]&popup=1', 'DuplicateBiblio','800','600'); return false;">[% duplicatetitle %]</a> ?</p> > [% IF ( CAN_user_editcatalogue_edit_items ) %]<form action="/cgi-bin/koha/cataloguing/additem.pl" method="get"> > <input type="hidden" name="biblionumber" value="[% duplicatebiblionumber %]" /> >- <button type="submit" class="new"><i class="fa fa-fw fa-pencil"></i> Yes, edit existing items</button> >+ <button type="submit" class="new"><i class="fa fa-fw fa-pencil"></i> [% t('Yes, edit existing items') %]</button> > </form>[% ELSE %]<form action="/cgi-bin/koha/catalogue/detail.pl" method="get"> > <input type="hidden" name="biblionumber" value="[% duplicatebiblionumber %]" /> > <input type="submit" value="Yes: View existing items" /> > </form>[% END %] > <form action="/cgi-bin/koha/cataloguing/addbiblio.pl" method="get"> >- [% IF ( CAN_user_editcatalogue_edit_items ) %]<button type="submit" class="new" onclick="confirmnotdup('items'); return false;"><i class="fa fa-fw fa-save"></i> No, save as new record</button>[% ELSE %]<button type="submit" class="new" onclick="confirmnotdup('view'); return false;"><i class="fa fa-fw fa-save"></i> No, save as new record</button>[% END %] >+ [% IF ( CAN_user_editcatalogue_edit_items ) %]<button type="submit" class="new" onclick="confirmnotdup('items'); return false;"><i class="fa fa-fw fa-save"></i> [% t('No, save as new record') %]</button>[% ELSE %]<button type="submit" class="new" onclick="confirmnotdup('view'); return false;"><i class="fa fa-fw fa-save"></i> [% t('No, save as new record') %]</button>[% END %] > </form> > </div> > [% END %] >@@ -462,53 +463,53 @@ function Changefwk() { > [% IF CAN_user_editcatalogue_edit_items or ( frameworkcode == 'FA' and CAN_user_editcatalogue_fast_cataloging ) %] > [% IF (circborrowernumber) %][%# fast cataloging must lead to items %] > <!-- Action is under fast cataloging - Save button redirecting to items --> >- <div class="btn-group"><a href="#" id="saveanditems" class="btn btn-default btn-sm"><i class="fa fa-save"></i> Save</a></div> >+ <div class="btn-group"><a href="#" id="saveanditems" class="btn btn-default btn-sm"><i class="fa fa-save"></i> [% t('Save') %]</a></div> > [% ELSE %] > <!-- Not using fast cataloging - Display split menu --> > <div class="btn-group"> >- <button class="btn btn-default btn-sm" id="saverecord"><i class="fa fa-save"></i> Save</button> >+ <button class="btn btn-default btn-sm" id="saverecord"><i class="fa fa-save"></i> [% t('Save') %]</button> > <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"> > <span class="caret"></span> > </button> > <ul class="dropdown-menu"> >- <li><a id="saveandview" href="#">Save and view record</a></li> >- <li><a id="saveanditems" href="#">Save and edit items</a></li> >- <li><a id="saveandcontinue" href="#">Save and continue editing</a></li> >+ <li><a id="saveandview" href="#">[% t('Save and view record') %]</a></li> >+ <li><a id="saveanditems" href="#">[% t('Save and edit items') %]</a></li> >+ <li><a id="saveandcontinue" href="#">[% t('Save and continue editing') %]</a></li> > </ul> > </div> > [% END %] > [% ELSE %] > <!-- User cannot edit items - single button redirecting to view --> >- <div class="btn-group"><a href="#" id="saveandview" class="btn btn-default btn-sm"><i class="fa fa-save"></i> Save</a></div> >+ <div class="btn-group"><a href="#" id="saveandview" class="btn btn-default btn-sm"><i class="fa fa-save"></i> [% t('Save') %]</a></div> > [% END %] > > [% UNLESS (circborrowernumber) %][%# Hide in fast cataloging %] >- <div class="btn-group"><a class="btn btn-default btn-sm" href="#" id="z3950search"><i class="fa fa-search"></i> Z39.50/SRU search</a></div> >+ <div class="btn-group"><a class="btn btn-default btn-sm" href="#" id="z3950search"><i class="fa fa-search"></i> [% t('Z39.50/SRU search') %]</a></div> > [% END %] > > <div class="btn-group"> >- <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"><i class="fa fa-cog"></i> Settings <span class="caret"></span></button> >+ <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"><i class="fa fa-cog"></i> [% t('Settings') %] <span class="caret"></span></button> > <ul id="settings-menu" class="dropdown-menu"> > [% IF Koha.Preference( 'EnableAdvancedCatalogingEditor' ) == 1 %] >- <li><a href="#" id="switcheditor">Switch to advanced editor</a></li> >+ <li><a href="#" id="switcheditor">[% t('Switch to advanced editor') %]</a></li> > [% END %] > [% IF marcflavour != 'NORMARC' AND NOT advancedMARCEditor %] > <li> >- <a href="#" id="marcDocsSelect"><i class="fa fa-check-square-o"></i> Show MARC tag documentation links</a> >+ <a href="#" id="marcDocsSelect"><i class="fa fa-check-square-o"></i> [% t('Show MARC tag documentation links') %]</a> > <li> >- <a href="#" id="marcTagsSelect"><i class="fa fa-check-square-o"></i> Show tags</a> >+ <a href="#" id="marcTagsSelect"><i class="fa fa-check-square-o"></i> [% t('Show tags') %]</a> > </li> > [% END %] > <li class="divider"></li> >- <li class="nav-header">Change framework</li> >+ <li class="nav-header">[% t('Change framework') %]</li> > <li> > <a href="#" class="change-framework" data-frameworkcode=""> > [% IF ( frameworkcode ) %] >- <i class="fa fa-fw"> </i> >+ <i class="fa fa-fw"> </i> > [% ELSE %] > <i class="fa fa-fw fa-check"></i> > [% END %] >- Default >+ [% t('Default') %] > </a> > </li> > [% FOREACH framework IN frameworks%] >@@ -517,7 +518,7 @@ function Changefwk() { > [% IF framework.frameworkcode == frameworkcode %] > <i class="fa fa-fw fa-check"></i> > [% ELSE %] >- <i class="fa fa-fw"> </i> >+ <i class="fa fa-fw"> </i> > [% END %] > [% framework.frameworktext %] > </a> >@@ -529,31 +530,31 @@ function Changefwk() { > [% IF (biblionumber) %] > [% IF ( BiblioDefaultViewmarc ) %] > <div class="btn-group"> >- <a class="btn btn-default btn-sm" id="cancel" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% biblionumber |url %]">Cancel</a> >+ <a class="btn btn-default btn-sm" id="cancel" href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% biblionumber |url %]">[% t('Cancel') %]</a> > </div> > [% ELSIF ( BiblioDefaultViewlabeled_marc ) %] > <div class="btn-group"> >- <a class="btn btn-default btn-sm" id="cancel" href="/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=[% biblionumber |url %]">Cancel</a> >+ <a class="btn btn-default btn-sm" id="cancel" href="/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=[% biblionumber |url %]">[% t('Cancel') %]</a> > </div> > [% ELSIF ( BiblioDefaultViewisbd ) %] > <div class="btn-group"> >- <a class="btn btn-default btn-sm" id="cancel" href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=[% biblionumber |url %]">Cancel</a> >+ <a class="btn btn-default btn-sm" id="cancel" href="/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=[% biblionumber |url %]">[% t('Cancel') %]</a> > </div> > [% ELSE %] > <div class="btn-group"> >- <a class="btn btn-default btn-sm" id="cancel" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber |url %]">Cancel</a> >+ <a class="btn btn-default btn-sm" id="cancel" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber |url %]">[% t('Cancel') %]</a> > </div> > [% END %] > [% ELSE %] >- <a class="btn btn-default btn-sm" id="cancel" href="/cgi-bin/koha/cataloguing/addbooks.pl">Cancel</a> >+ <a class="btn btn-default btn-sm" id="cancel" href="/cgi-bin/koha/cataloguing/addbooks.pl">[% t('Cancel') %]</a> > [% END %] > [% END %] > </div> > > [% IF bib_doesnt_exist %] > <div class="dialog alert"> >- The record you are trying to edit doesn't exist.<br> >- <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=">Add a new record</a> or <a href="/cgi-bin/koha/catalogue/search.pl">do a catalog search</a>. >+ [% t('The record you are trying to edit doesn\'t exist.') %]<br> >+ <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=">[% t('Add a new record') %]</a> [% t('or') %] <a href="/cgi-bin/koha/catalogue/search.pl">[% t('do a catalog search') %]</a>. > </div> > [% END %] > >@@ -581,56 +582,30 @@ function Changefwk() { > <div class="tag" id="tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]"> > <div class="tag_title" id="div_indicator_tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]"> > [% IF advancedMARCEditor %] >- <a href="#" tabindex="1" class="tagnum" title="[% innerloo.tag_lib %] - Click to Expand this Tag" onclick="ExpandField('tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]'); return false;">[% innerloo.tag %]</a> >+ <a href="#" tabindex="1" class="tagnum" title="[% innerloo.tag_lib %] [% t('- Click to Expand this Tag') %]" onclick="ExpandField('tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]'); return false;">[% innerloo.tag %]</a> > [% ELSE %] > <span class="tagnum" title="[% innerloo.tag_lib %]">[% innerloo.tag %]</span> >- [% IF marcflavour != 'NORMARC' %]<a href="#" class="marcdocs" onclick="PopupMARCFieldDoc('[% innerloo.tag %]'); return false;"> ?</a>[% END %] >+ [% IF marcflavour != 'NORMARC' %]<a href="#" class="marcdocs" onclick="PopupMARCFieldDoc('[% innerloo.tag %]'); return false;"> ?</a>[% END %] > [% END %] > [% IF ( innerloo.fixedfield ) %] >- <input type="text" >- tabindex="1" >- class="indicator flat" >- style="display:none;" >- name="tag_[% innerloo.tag %]_indicator1_[% innerloo.index %][% innerloo.random %]" >- size="1" >- maxlength="1" >- value="[% innerloo.indicator1 %]" /> >- <input type="text" >- tabindex="1" >- class="indicator flat" >- style="display:none;" >- name="tag_[% innerloo.tag %]_indicator2_[% innerloo.index %][% innerloo.random %]" >- size="1" >- maxlength="1" >- value="[% innerloo.indicator2 %]" /> >+ <input type="text" tabindex="1" class="indicator flat" style="display:none;" name="tag_[% innerloo.tag %]_indicator1_[% innerloo.index %][% innerloo.random %]" size="1" maxlength="1" value="[% innerloo.indicator1 %]" /> >+ <input type="text" tabindex="1" class="indicator flat" style="display:none;" name="tag_[% innerloo.tag %]_indicator2_[% innerloo.index %][% innerloo.random %]" size="1" maxlength="1" value="[% innerloo.indicator2 %]" /> > [% ELSE %] >- <input type="text" >- tabindex="1" >- class="indicator flat" >- name="tag_[% innerloo.tag %]_indicator1_[% innerloo.index %][% innerloo.random %]" >- size="1" >- maxlength="1" >- value="[% innerloo.indicator1 %]" /> >- <input type="text" >- tabindex="1" >- class="indicator flat" >- name="tag_[% innerloo.tag %]_indicator2_[% innerloo.index %][% innerloo.random %]" >- size="1" >- maxlength="1" >- value="[% innerloo.indicator2 %]" /> >+ <input type="text" tabindex="1" class="indicator flat" name="tag_[% innerloo.tag %]_indicator1_[% innerloo.index %][% innerloo.random %]" size="1" maxlength="1" value="[% innerloo.indicator1 %]" /> >+ <input type="text" tabindex="1" class="indicator flat" name="tag_[% innerloo.tag %]_indicator2_[% innerloo.index %][% innerloo.random %]" size="1" maxlength="1" value="[% innerloo.indicator2 %]" /> > [% END %] - > > [% UNLESS advancedMARCEditor %] >- <a href="#" tabindex="1" class="expandfield" onclick="ExpandField('tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]'); return false;" title="Click to Expand this Tag">[% innerloo.tag_lib %]</a> >+ <a href="#" tabindex="1" class="expandfield" onclick="ExpandField('tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]'); return false;" title="[% t('Click to Expand this Tag') %]">[% innerloo.tag_lib %]</a> > [% END %] > <span class="field_controls"> > [% IF ( innerloo.repeatable ) %] >- <a href="#" tabindex="1" class="buttonPlus" onclick="CloneField('tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]','0','[% advancedMARCEditor %]'); return false;" title="Repeat this Tag"> >- <img src="[% interface %]/[% theme %]/img/repeat-tag.png" alt="Repeat this Tag" /> >+ <a href="#" tabindex="1" class="buttonPlus" onclick="CloneField('tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]','0','[% advancedMARCEditor %]'); return false;" title="[% t('Repeat this Tag') %]"> >+ <img src="[% interface %]/[% theme %]/img/repeat-tag.png" alt="[% t('Repeat this Tag') %]" /> > </a> > [% END %] >- <a href="#" tabindex="1" class="buttonMinus" onclick="UnCloneField('tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]'); return false;" title="Delete this Tag"> >- <img src="[% interface %]/[% theme %]/img/delete-tag.png" alt="Delete this Tag" /> >+ <a href="#" tabindex="1" class="buttonMinus" onclick="UnCloneField('tag_[% innerloo.tag %]_[% innerloo.index %][% innerloo.random %]'); return false;" title="[% t('Delete this Tag') %]"> >+ <img src="[% interface %]/[% theme %]/img/delete-tag.png" alt="[% t('Delete this Tag') %]" /> > </a> > </span> > >@@ -648,25 +623,17 @@ function Changefwk() { > > <span class="subfieldcode"> > [% IF ( subfield_loo.fixedfield ) %] >- <img class="buttonUp" style="display:none;" src="[% interface %]/[% theme %]/img/up.png" onclick="upSubfield('subfield[% subfield_loo.tag %][% subfield_loo.subfield %][% subfield_loo.random %]')" alt="Move Up" title="Move Up" /> >+ <img class="buttonUp" style="display:none;" src="[% interface %]/[% theme %]/img/up.png" onclick="upSubfield('subfield[% subfield_loo.tag %][% subfield_loo.subfield %][% subfield_loo.random %]')" alt="[% t('Move Up') %]" title="[% t('Move Up') %]" /> > [% ELSE %] >- <img class="buttonUp" src="[% interface %]/[% theme %]/img/up.png" onclick="upSubfield('subfield[% subfield_loo.tag %][% subfield_loo.subfield %][% subfield_loo.random %]')" alt="Move Up" title="Move Up" /> >+ <img class="buttonUp" src="[% interface %]/[% theme %]/img/up.png" onclick="upSubfield('subfield[% subfield_loo.tag %][% subfield_loo.subfield %][% subfield_loo.random %]')" alt="[% t('Move Up') %]" title="[% t('Move Up') %]" /> > [% END %] >- <input type="text" >- title="[% subfield_loo.marc_lib %]" >- style=" [% IF ( subfield_loo.fixedfield ) %]display:none; [% END %]border:0;" >- name="tag_[% subfield_loo.tag %]_code_[% subfield_loo.subfield %]_[% subfield_loo.index %]_[% subfield_loo.index_subfield %]" >- value="[% subfield_loo.subfield %]" >- size="1" >- maxlength="1" >- class="flat" >- tabindex="0" /> >+ <input type="text" title="[% subfield_loo.marc_lib %]" style=" [% IF ( subfield_loo.fixedfield ) %]display:none; [% END %]border:0;" name="tag_[% subfield_loo.tag %]_code_[% subfield_loo.subfield %]_[% subfield_loo.index %]_[% subfield_loo.index_subfield %]" value="[% subfield_loo.subfield %]" size="1" maxlength="1" class="flat" tabindex="0" /> > </span> > > [% UNLESS advancedMARCEditor %] > [% IF ( subfield_loo.mandatory ) %]<span class="subfield subfield_mandatory">[% ELSE %]<span class="subfield">[% END %] > [% subfield_loo.marc_lib %] >- [% IF ( subfield_loo.mandatory ) %]<span class="mandatory_marker" title="This field is mandatory">*</span>[% END %] >+ [% IF ( subfield_loo.mandatory ) %]<span class="mandatory_marker" title="[% t('This field is mandatory') %]">*</span>[% END %] > </span> > </label> > [% END %] >@@ -679,15 +646,15 @@ function Changefwk() { > <input type="text" id="[%- mv.id -%]" name="[%- mv.name -%]" value="[%- mv.value -%]" class="input_marceditor" tabindex="1" size="[%- mv.size -%]" maxlength="[%- mv.maxlength -%]" /> > [% END %] > [% IF ( mv.authtype ) %] >- <span class="subfield_controls"><a href="#" class="buttonDot tag_editor" onclick="openAuth(this.parentNode.parentNode.getElementsByTagName('input')[1].id,'[%- mv.authtype -%]','biblio'); return false;" tabindex="1" title="Tag editor">Tag editor</a></span> >+ <span class="subfield_controls"><a href="#" class="buttonDot tag_editor" onclick="openAuth(this.parentNode.parentNode.getElementsByTagName('input')[1].id,'[%- mv.authtype -%]','biblio'); return false;" tabindex="1" title="[% t('Tag editor') %]">[% t('Tag editor') %]</a></span> > [% END %] > [% ELSIF ( mv.type == 'text_complex' ) %] > <input type="text" id="[%- mv.id -%]" name="[%- mv.name -%]" value="[%- mv.value -%]" class="input_marceditor framework_plugin" tabindex="1" size="[%- mv.size -%]" maxlength="[%- mv.maxlength -%]" /> > <span class="subfield_controls"> > [% IF mv.noclick %] >- <a href="#" class="buttonDot tag_editor disabled" tabindex="-1" title="No popup"></a> >+ <a href="#" class="buttonDot tag_editor disabled" tabindex="-1" title="[% t('No popup') %]"></a> > [% ELSE %] >- <a href="#" id="buttonDot_[% mv.id %]" class="buttonDot tag_editor framework_plugin" tabindex="1" title="Tag editor">Tag editor</a> >+ <a href="#" id="buttonDot_[% mv.id %]" class="buttonDot tag_editor framework_plugin" tabindex="1" title="[% t('Tag editor') %]">[% t('Tag editor') %]</a> > [% END %] > </span> > [% mv.javascript %] >@@ -710,10 +677,10 @@ function Changefwk() { > <span class="subfield_controls"> > [% IF ( subfield_loo.repeatable ) %] > <a href="#" class="buttonPlus" tabindex="1" onclick="CloneSubfield('subfield[% subfield_loo.tag %][% subfield_loo.subfield %][% subfield_loo.random %]','[% advancedMARCEditor %]'); return false;"> >- <img src="[% interface %]/[% theme %]/img/clone-subfield.png" alt="Clone" title="Clone this subfield" /> >+ <img src="[% interface %]/[% theme %]/img/clone-subfield.png" alt="[% t('Clone') %]" title="[% t('Clone this subfield') %]" /> > </a> > <a href="#" class="buttonMinus" tabindex="1" onclick="UnCloneField('subfield[% subfield_loo.tag %][% subfield_loo.subfield %][% subfield_loo.random %]'); return false;"> >- <img src="[% interface %]/[% theme %]/img/delete-subfield.png" alt="Delete" title="Delete this subfield" /> >+ <img src="[% interface %]/[% theme %]/img/delete-subfield.png" alt="[% t('Delete') %]" title="[% t('Delete this subfield') %]" /> > </a> > [% END %] > </span> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >index 7305bd54b6..05f71eec55 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >@@ -1,7 +1,8 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Koha %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Cataloging</title> >+<title>[% t('Koha ⺠Cataloging') %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > >@@ -9,7 +10,7 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cataloging-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › Cataloging</div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> [% t('⺠Cataloging') %]</div> > > <div id="doc" class="yui-t7"> > >@@ -19,12 +20,12 @@ > [% IF ( CAN_user_editcatalogue_edit_catalogue ) %] > <div id="toolbar" class="btn-toolbar"> > [% IF Koha.Preference( 'EnableAdvancedCatalogingEditor' ) == 1 %] >- <a id="useadvanced" href="/cgi-bin/koha/cataloguing/editor.pl" class="btn btn-default btn-sm"><i class="fa fa-pencil"></i> Advanced editor</a> >+ <a id="useadvanced" href="/cgi-bin/koha/cataloguing/editor.pl" class="btn btn-default btn-sm"><i class="fa fa-pencil"></i> [% t('Advanced editor') %]</a> > [% END %] > <div class="btn-group"> >- <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"><i class="fa fa-plus"></i> New record <span class="caret"></span></button> >+ <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"><i class="fa fa-plus"></i> [% t('New record') %] <span class="caret"></span></button> > <ul class="dropdown-menu"> >- <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=">Default framework</a></li> >+ <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=">[% t('Default framework') %]</a></li> > [% FOREACH framework IN frameworks %] > <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=[% framework.frameworkcode %]">[% framework.frameworktext %]</a></li> > [% END %] >@@ -32,12 +33,12 @@ > </div> > [% IF servers.count > 0 %] > <div class="btn-group"> >- <button class="btn btn-default btn-sm" id="z3950search"><i class="fa fa-search"></i> New from Z39.50/SRU</button> >+ <button class="btn btn-default btn-sm" id="z3950search"><i class="fa fa-search"></i> [% t('New from Z39.50/SRU') %]</button> > <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"> > <span class="caret"></span> > </button> > <ul class="dropdown-menu"> >- <li id="" class="z3950searchFw"><a href="#">Default framework</a></li> >+ <li id="" class="z3950searchFw"><a href="#">[% t('Default framework') %]</a></li> > [% FOREACH framework IN frameworks %] > <li id="[% framework.frameworkcode %]" class="z3950searchFw"><a href="#">[% framework.frameworktext %]</a></li> > [% END %] >@@ -45,30 +46,30 @@ > </div> > [% END %] > [% IF ( total ) %] >- <div class="btn-group"><button type="submit" class="btn btn-default btn-sm merge-items"><i class="fa fa-compress"></i> Merge selected</button></div> >+ <div class="btn-group"><button type="submit" class="btn btn-default btn-sm merge-items"><i class="fa fa-compress"></i> [% t('Merge selected') %]</button></div> > [% END %] > </div> > [% END %] > > [% IF ( noitemsfound ) %] >- No results found >+ [% t('No results found') %] > [% END %] > > [%# display the search results %] > > [% IF ( total ) %] > <div> >- [% total %] result(s) found in catalog, >- <a href="#searchresult-breeding">[% breeding_count %] result(s) found in reservoir</a> >+ [% total %] [% t('result(s) found in catalog,') %] >+ <a href="#searchresult-breeding">[% breeding_count %] [% t('result(s) found in reservoir') %]</a> > </div> > <div class="pages">[% pagination_bar %]</div> > <div class="searchresults"> > <table> > <tr> >- <th> </th> >- <th>Title</th> >- <th>Location</th> >- <th> </th> >+ <th> </th> >+ <th>[% t('Title') %]</th> >+ <th>[% t('Location') %]</th> >+ <th> </th> > </tr> > [% FOREACH resultsloo IN resultsloop %] > <tr> >@@ -84,17 +85,17 @@ > [% IF ( resultsloo.author ) %] > [% resultsloo.author %] > [% ELSE %] >- >+  > [% END %] > [% IF ( resultsloo.isbn ) %] - [% resultsloo.isbn %] [% END %] > [% IF ( resultsloo.publicationyear ) %] - [% resultsloo.publicationyear %][% END %] > [% IF ( resultsloo.publishercode ) %]- [% resultsloo.publishercode %][% END %] > [% IF ( resultsloo.copyrightdate ) %] - [% resultsloo.copyrightdate %][% END %] >- [% IF ( resultsloo.edition ) %]Edition: [% resultsloo.edition %][% END %] >+ [% IF ( resultsloo.edition ) %][% t('Edition:') %] [% resultsloo.edition %][% END %] > [% IF ( resultsloo.place ) %] ; [% resultsloo.place %][% END %] > [% IF ( resultsloo.pages ) %] - [% resultsloo.pages %][% END %] > [% IF ( resultsloo.item('size') ) %] ; [% resultsloo.item('size') %][% END %] >- [% IF ( resultsloo.timestamp ) %] <i>(modified on [% resultsloo.timestamp %])</i>[% END %] >+ [% IF ( resultsloo.timestamp ) %] <i>[% t('(modified on') %] [% resultsloo.timestamp %])</i>[% END %] > </p> > [% END %] > </td> >@@ -117,23 +118,23 @@ > </span> > [% END %] > <span class="unavailable"> >- [% IF ( resultsloo.onloancount ) %] Checked out ([% resultsloo.onloancount %]),<br /> [% END %] >- [% IF ( resultsloo.withdrawncount ) %] Withdrawn ([% resultsloo.withdrawncount %]),<br /> [% END %] >- [% IF ( resultsloo.itemlostcount ) %] Lost ([% resultsloo.itemlostcount %])<br />[% END %] >- [% IF ( resultsloo.orderedcount ) %] On order ([% resultsloo.orderedcount %])<br/>[% END %] >- [% IF ( resultsloo.notforloancount ) %] Not for loan ([% resultsloo.notforloancount %])[% END %] >+ [% IF ( resultsloo.onloancount ) %] [% t('Checked out (') %][% resultsloo.onloancount %]),<br /> [% END %] >+ [% IF ( resultsloo.withdrawncount ) %] [% t('Withdrawn (') %][% resultsloo.withdrawncount %]),<br /> [% END %] >+ [% IF ( resultsloo.itemlostcount ) %] [% t('Lost (') %][% resultsloo.itemlostcount %])<br />[% END %] >+ [% IF ( resultsloo.orderedcount ) %] [% t('On order (') %][% resultsloo.orderedcount %])<br />[% END %] >+ [% IF ( resultsloo.notforloancount ) %] [% t('Not for loan (') %][% resultsloo.notforloancount %])[% END %] > </span> > </td> > <td> > <div class="dropup"> > <a class="btn btn-default btn-xs dropdown-toggle" id="cataloguesearchactions[% resultsloo.biblionumber %]" role="button" data-toggle="dropdown" href="#"> >- Actions <b class="caret"></b> >+ [% t('Actions') %] <b class="caret"></b> > </a> > <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="cataloguesearchactions[% resultsloo.biblionumber %]"> >- <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% resultsloo.biblionumber %]" class="previewData"><i class="fa fa-eye"></i> MARC preview</a></li> >- <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&id=[% resultsloo.biblionumber %]" class="previewData"><i class="fa fa-eye"></i> Card preview</a></li> >- [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% resultsloo.biblionumber %]"><i class="fa fa-pencil"></i> Edit biblio</a></li>[% END %] >- [% IF ( CAN_user_editcatalogue_edit_items ) %]<li><a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% resultsloo.biblionumber %]"><i class="fa fa-plus"></i> Add/Edit items</a></li>[% END %] >+ <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% resultsloo.biblionumber %]" class="previewData"><i class="fa fa-eye"></i> [% t('MARC preview') %]</a></li> >+ <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&id=[% resultsloo.biblionumber %]" class="previewData"><i class="fa fa-eye"></i> [% t('Card preview') %]</a></li> >+ [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% resultsloo.biblionumber %]"><i class="fa fa-pencil"></i> [% t('Edit biblio') %]</a></li>[% END %] >+ [% IF ( CAN_user_editcatalogue_edit_items ) %]<li><a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% resultsloo.biblionumber %]"><i class="fa fa-plus"></i> [% t('Add/Edit items') %]</a></li>[% END %] > </ul> > </div> > </td> >@@ -143,25 +144,25 @@ > </div> > [% ELSE %] > [% IF ( query ) %] >- [% IF ( error ) %]<div class="dialog alert">[% END %]<b>No results found</b> >+ [% IF ( error ) %]<div class="dialog alert">[% END %]<b>[% t('No results found') %]</b> > [% IF ( error ) %] >- Error: <span class="error">[% error %]</span></div> >+ [% t('Error:') %] <span class="error">[% error %]</span></div> > [% END %] > [% END %] > [% END %] > > [% IF ( query ) %] > <div id="searchresult-breeding"> >- <h3>Biblios in reservoir</h3> >+ <h3>[% t('Biblios in reservoir') %]</h3> > [% IF ( breeding_loop ) %] > <table> > <tr> >- <th>Title</th> >- <th>ISBN</th> >- <th>Date</th> >- <th>Edition</th> >- <th>Coming from</th> >- <th> </th> >+ <th>[% t('Title') %]</th> >+ <th>[% t('ISBN') %]</th> >+ <th>[% t('Date') %]</th> >+ <th>[% t('Edition') %]</th> >+ <th>[% t('Coming from') %]</th> >+ <th> </th> > </tr> > [% FOREACH breeding_loo IN breeding_loop %] > <tr> >@@ -174,13 +175,13 @@ > <td> > <div class="dropup"> > <a class="btn btn-default btn-xs dropdown-toggle" id="reservoirsearchactions[% breeding_loo.id %]" role="button" data-toggle="dropdown" href="#"> >- Actions <b class="caret"></b> >+ [% t('Actions') %] <b class="caret"></b> > </a> > <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="reservoirsearchactions[% breeding_loo.id %]"> >- <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.id %]" class="previewData"><i class="fa fa-eye"></i> MARC preview</a></li> >- <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% breeding_loo.id %]" class="previewData"><i class="fa fa-eye"></i> Card preview</a></li> >+ <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.id %]" class="previewData"><i class="fa fa-eye"></i> [% t('MARC preview') %]</a></li> >+ <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% breeding_loo.id %]" class="previewData"><i class="fa fa-eye"></i> [% t('Card preview') %]</a></li> > [% IF ( CAN_user_editcatalogue_edit_catalogue ) %] >- <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?breedingid=[% breeding_loo.id %]"><i class="fa fa-plus"></i> Add biblio</a></li> >+ <li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?breedingid=[% breeding_loo.id %]"><i class="fa fa-plus"></i> [% t('Add biblio') %]</a></li> > [% END %] > </ul> > </div> >@@ -189,7 +190,7 @@ > [% END %] > </table> > [% ELSE %] >- <p>None</p> >+ <p>[% t('None') %]</p> > [% END %] > </div> > [% END %] >@@ -199,13 +200,13 @@ > <div class="modal-content"> > <div class="modal-header"> > <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">Ã</button> >- <h3 id="dataPreviewLabel">Preview</h3> >+ <h3 id="dataPreviewLabel">[% t('Preview') %]</h3> > </div> > <div class="modal-body"> >- <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> Loading </div> >+ <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> [% t('Loading') %] </div> > </div> > <div class="modal-footer"> >- <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button> >+ <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">[% t('Close') %]</button> > </div> > </div> > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >index 6b86b21447..b6d6a128f4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >@@ -1,9 +1,10 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% USE Koha %] > [% USE ColumnsSettings %] > > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Cataloging › [% title |html %] [% IF ( author ) %] by [% author | html %][% END %] (Record #[% biblionumber %]) › Items</title> >+<title>[% t('Koha ⺠Cataloging âº') %] [% title |html %] [% IF ( author ) %] [% t('by') %] [% author | html %][% END %] [% t('(Record #') %][% biblionumber %][% t(') ⺠Items') %]</title> > [% Asset.css("css/datatables.css") %] > [% INCLUDE 'doc-head-close.inc' %] > [% INCLUDE 'datatables.inc' %] >@@ -148,10 +149,10 @@ function confirm_deletion() { > [% INCLUDE 'cataloging-search.inc' %] > > <div id="breadcrumbs"> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> >- › <a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a> >- › Edit <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% biblionumber %]">[% title |html %] [% IF ( author ) %] by [% author | html %][% END %] (Record #[% biblionumber %])</a> >- › <a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% biblionumber %]">Items</a> >+ <a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> >+ ⺠<a href="/cgi-bin/koha/cataloguing/addbooks.pl">[% t('Cataloging') %]</a> >+ [% t('⺠Edit') %] <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% biblionumber %]">[% title |html %] [% IF ( author ) %] [% t('by') %] [% author | html %][% END %] [% t('(Record #') %][% biblionumber %])</a> >+ ⺠<a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% biblionumber %]">[% t('Items') %]</a> > </div> > > <div id="doc3" class="yui-t7"> >@@ -159,14 +160,14 @@ function confirm_deletion() { > <div id="bd"> > <div id="yui-main"> > >-<h1>Items for [% title |html %] [% IF ( author ) %] by [% author | html %][% END %] (Record #[% biblionumber %])</h1> >+<h1>[% t('Items for') %] [% title |html %] [% IF ( author ) %] [% t('by') %] [% author | html %][% END %] [% t('(Record #') %][% biblionumber %])</h1> > >-[% IF ( barcode_not_unique ) %]<div class="dialog alert"><strong>Error saving item</strong>: Barcode must be unique.</div>[% END %] >-[% IF ( no_next_barcode ) %]<div class="dialog alert"><strong>Error saving items</strong>: Unable to automatically determine values for barcodes. No item has been inserted.</div>[% END %] >-[% IF ( book_on_loan ) %]<div class="dialog alert"><strong>Cannot delete</strong>: item is checked out.</div>[% END %] >-[% IF ( book_reserved ) %]<div class="dialogalert"><strong>Cannot delete</strong>: item has a waiting hold.</div>[% END %] >-[% IF ( not_same_branch ) %]<div class="dialog alert"><strong>Cannot delete</strong>: The items do not belong to your library.</div>[% END %] >-[% IF ( linked_analytics ) %]<div class="dialog alert"><strong>Cannot delete</strong>: item has linked <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]&analyze=1">analytics.</a>.</div>[% END %] >+[% IF ( barcode_not_unique ) %]<div class="dialog alert"><strong>[% t('Error saving item') %]</strong>[% t(': Barcode must be unique.') %]</div>[% END %] >+[% IF ( no_next_barcode ) %]<div class="dialog alert"><strong>[% t('Error saving items') %]</strong>[% t(': Unable to automatically determine values for barcodes. No item has been inserted.') %]</div>[% END %] >+[% IF ( book_on_loan ) %]<div class="dialog alert"><strong>[% t('Cannot delete') %]</strong>[% t(': item is checked out.') %]</div>[% END %] >+[% IF ( book_reserved ) %]<div class="dialogalert"><strong>[% t('Cannot delete') %]</strong>[% t(': item has a waiting hold.') %]</div>[% END %] >+[% IF ( not_same_branch ) %]<div class="dialog alert"><strong>[% t('Cannot delete') %]</strong>[% t(': The items do not belong to your library.') %]</div>[% END %] >+[% IF ( linked_analytics ) %]<div class="dialog alert"><strong>[% t('Cannot delete') %]</strong>[% t(': item has linked') %] <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]&analyze=1">[% t('analytics.') %]</a>.</div>[% END %] > > <div id="cataloguing_additem_itemlist"> > [% IF ( item_loop ) %] >@@ -174,7 +175,7 @@ function confirm_deletion() { > <table id="itemst"> > <thead> > <tr> >- <th> </th> >+ <th> </th> > [% FOREACH item_header IN item_header_loop %] > [% IF item_header.column_name %] > <th data-colname="[% item_header.column_name %]"> >@@ -202,29 +203,29 @@ function confirm_deletion() { > [% END %] > [% END %] > [% IF ( item_loo.nomod ) %] >- <td> </td> >+ <td> </td> > [% ELSE %] > <td> > <div class="dropdown"> > <a class="btn btn-default btn-xs dropdown-toggle" id="itemactions[% item_loo.itemnumber %]" role="button" data-toggle="dropdown" href="#"> >- Actions <b class="caret"></b> >+ [% t('Actions') %] <b class="caret"></b> > </a> > <ul class="dropdown-menu" role="menu" aria-labelledby="itemactions[% item_loo.itemnumber %]"> > > [% IF ( item_loo.hostitemflag ) %] >- <li><a href="additem.pl?op=edititem&biblionumber=[% item_loo.hostbiblionumber %]&itemnumber=[% item_loo.itemnumber %]#edititem">Edit in host</a> <a class="delete" href="/cgi-bin/koha/cataloguing/additem.pl?op=delinkitem&biblionumber=[% biblionumber %]&hostitemnumber=[% item_loo.itemnumber %]&searchid=[% searchid %]">Delink</a></li> >+ <li><a href="additem.pl?op=edititem&biblionumber=[% item_loo.hostbiblionumber %]&itemnumber=[% item_loo.itemnumber %]#edititem">[% t('Edit in host') %]</a>  <a class="delete" href="/cgi-bin/koha/cataloguing/additem.pl?op=delinkitem&biblionumber=[% biblionumber %]&hostitemnumber=[% item_loo.itemnumber %]&searchid=[% searchid %]">[% t('Delink') %]</a></li> > [% ELSE %] >- <li><a href="additem.pl?op=edititem&biblionumber=[% biblionumber %]&itemnumber=[% item_loo.itemnumber %]&searchid=[% searchid %]#edititem">Edit</a></li> >- <li><a href="additem.pl?op=dupeitem&biblionumber=[% biblionumber %]&itemnumber=[% item_loo.itemnumber %]&searchid=[% searchid %]#additema">Duplicate</a></li> >- <li class="print_label"><a href="/cgi-bin/koha/labels/label-edit-batch.pl?op=add&number_type=itemnumber&number_list=[% item_loo.itemnumber %]" target="_blank" >Print Label</a></li> >+ <li><a href="additem.pl?op=edititem&biblionumber=[% biblionumber %]&itemnumber=[% item_loo.itemnumber %]&searchid=[% searchid %]#edititem">[% t('Edit') %]</a></li> >+ <li><a href="additem.pl?op=dupeitem&biblionumber=[% biblionumber %]&itemnumber=[% item_loo.itemnumber %]&searchid=[% searchid %]#additema">[% t('Duplicate') %]</a></li> >+ <li class="print_label"><a href="/cgi-bin/koha/labels/label-edit-batch.pl?op=add&number_type=itemnumber&number_list=[% item_loo.itemnumber %]" target="_blank">[% t('Print Label') %]</a></li> > [% IF ( item_loo.countanalytics ) %] >- <li><a href="/cgi-bin/koha/catalogue/search.pl?idx=hi&q=% item_loo.itemnumber %]">View analytics</a></li> >+ <li><a href="/cgi-bin/koha/catalogue/search.pl?idx=hi&q=% item_loo.itemnumber %]">[% t('View analytics') %]</a></li> > [% ELSE %] >- <li><a class="delete" href="/cgi-bin/koha/cataloguing/additem.pl?op=delitem&biblionumber=[% biblionumber %]&itemnumber=[% item_loo.itemnumber %]&searchid=[% searchid %]" onclick="return confirm_deletion();">Delete</a></li> >+ <li><a class="delete" href="/cgi-bin/koha/cataloguing/additem.pl?op=delitem&biblionumber=[% biblionumber %]&itemnumber=[% item_loo.itemnumber %]&searchid=[% searchid %]" onclick="return confirm_deletion();">[% t('Delete') %]</a></li> > [% END %] > [% END %] > [% IF ( OPACBaseURL ) %] >- <li class="view-in-opac"><a target="_blank" href="[% Koha.Preference('OPACBaseURL') %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]">OPAC view</a></li> >+ <li class="view-in-opac"><a target="_blank" href="[% Koha.Preference('OPACBaseURL') %]/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber %]">[% t('OPAC view') %]</a></li> > [% END %] > </ul> > </div> >@@ -253,9 +254,9 @@ function confirm_deletion() { > [% END %] > <input type="hidden" name="biblionumber" value="[% biblionumber %]" /> > [% IF ( opisadd ) %] >- <h2 id="additema">Add item [% IF (circborrowernumber) %]<em>(fast cataloging)</em>[% END %]</h2> >+ <h2 id="additema">[% t('Add item') %] [% IF (circborrowernumber) %]<em>[% t('(fast cataloging)') %]</em>[% END %]</h2> > [% ELSE %] >- <h2 id="edititem">Edit Item #[% itemnumber %][% IF ( barcode ) %] / Barcode [% barcode %][% END %]</h2> >+ <h2 id="edititem">[% t('Edit Item #') %][% itemnumber %][% IF ( barcode ) %] [% t('/ Barcode') %] [% barcode %][% END %]</h2> > [% END %] > <fieldset class="rows"> > <ol> >@@ -290,7 +291,7 @@ function confirm_deletion() { > [% ELSE %] > <input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" /> > [% SET dopop = "Dopop('/cgi-bin/koha/authorities/auth_finder.pl?authtypecode=\"${mv.authtypecode}\"&index=${mv.id}','${mv.id}')" %] >- <a href="#" class="buttonDot" onclick="[%- dopop -%]; return false;" title="Tag editor">...</a> >+ <a href="#" class="buttonDot" onclick="[%- dopop -%]; return false;" title="[% t('Tag editor') %]">...</a> > [% END %] > [% ELSIF ( mv.type == 'text_plugin' ) %] > [% IF mv.readonly %] >@@ -298,9 +299,9 @@ function confirm_deletion() { > [% ELSE %] > <input type="text" id="[%- mv.id -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength -%]" value="[%- mv.value -%]" /> > [% IF ( mv.nopopup ) %] >- <a href="#" id="buttonDot_[%- mv.id -%]" class="[%- mv.class -%]" title="No popup">...</a> >+ <a href="#" id="buttonDot_[%- mv.id -%]" class="[%- mv.class -%]" title="[% t('No popup') %]">...</a> > [% ELSE %] >- <a href="#" id="buttonDot_[%- mv.id -%]" class="[%- mv.class -%]" title="Tag editor">...</a> >+ <a href="#" id="buttonDot_[%- mv.id -%]" class="[%- mv.class -%]" title="[% t('Tag editor') %]">...</a> > [% END %] > [%- mv.javascript -%] > [% END %] >@@ -312,21 +313,21 @@ function confirm_deletion() { > [% END %] > [% ELSIF ( mv.type == 'textarea' ) %] > [% IF mv.readonly %] >- <textarea id="[%- mv.id -%]" name="field_value" class="input_marceditor" rows="5" cols="64" readonly="readonly" >[% mv.value %]</textarea> >+ <textarea id="[%- mv.id -%]" name="field_value" class="input_marceditor" rows="5" cols="64" readonly="readonly">[% mv.value %]</textarea> > [% ELSE %] >- <textarea id="[%- mv.id -%]" name="field_value" class="input_marceditor" rows="5" cols="64" >[% mv.value %]</textarea> >+ <textarea id="[%- mv.id -%]" name="field_value" class="input_marceditor" rows="5" cols="64">[% mv.value %]</textarea> > [% END %] > [% END %] > >- <input type="hidden" name="tag" value="[% ite.tag %]" /> >- <input type="hidden" name="subfield" value="[% ite.subfield %]" /> >+ <input type="hidden" name="tag" value="[% ite.tag %]" /> >+ <input type="hidden" name="subfield" value="[% ite.subfield %]" /> > <input type="hidden" name="mandatory" value="[% ite.mandatory %]" /> > [% IF ( ite.repeatable ) %] > <a href="#" class="buttonPlus" onclick="CloneItemSubfield(this.parentNode); return false;"> >- <img src="[% interface %]/[% theme %]/img/clone-subfield.png" alt="Clone" title="Clone this subfield" /> >+ <img src="[% interface %]/[% theme %]/img/clone-subfield.png" alt="[% t('Clone') %]" title="[% t('Clone this subfield') %]" /> > </a> > [% END %] >- [% IF ( ite.mandatory ) %] <span class="required">Required</span>[% END %] >+ [% IF ( ite.mandatory ) %] <span class="required">[% t('Required') %]</span>[% END %] > </div></li> > [% END %] > </ol> >@@ -343,16 +344,16 @@ function confirm_deletion() { > --> > <span id="addsingle"> > <input type="submit" name="add_submit" value="Add item" onclick="return Check(this.form)" /> >- <input type="submit" name="add_duplicate_submit" value="Add & duplicate" onclick="return Check(this.form)" /> >+ <input type="submit" name="add_duplicate_submit" value="Add & duplicate" onclick="return Check(this.form)" /> > </span> > <span id="addmultiple"> > <input type="button" name="add_multiple_copies" id="add_multiple_copies" value="Add multiple copies of this item" /> > </span> > <fieldset id="add_multiple_copies_span"> >- <label for="number_of_copies">Number of copies of this item to add: </label> >+ <label for="number_of_copies">[% t('Number of copies of this item to add:') %] </label> > <input type="text" id="number_of_copies" name="number_of_copies" value="" size="2" /> >- <input type="submit" id="add_multiple_copies_submit" name="add_multiple_copies_submit" value="Add" onclick="javascript:return Check(this.form) && CheckMultipleAdd(this.form.number_of_copies.value);" /> <a href="#" id="cancel_add_multiple" class="cancel">Cancel</a> >- <div class="hint"><p>The barcode you enter will be incremented for each additional item.</p></div> >+ <input type="submit" id="add_multiple_copies_submit" name="add_multiple_copies_submit" value="Add" onclick="javascript:return Check(this.form) && CheckMultipleAdd(this.form.number_of_copies.value);" /> <a href="#" id="cancel_add_multiple" class="cancel">[% t('Cancel') %]</a> >+ <div class="hint"><p>[% t('The barcode you enter will be incremented for each additional item.') %]</p></div> > </fieldset> > > [% ELSE %] >@@ -361,7 +362,7 @@ function confirm_deletion() { > <input type="hidden" name="field_value" value="[% itemnumber %]" /> > <input type="submit" value="Save changes" onclick="return Check(this.form)"> > <input type="button" id="addnewitem" value="Add a new item"> >- <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]">Cancel</a> >+ <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]">[% t('Cancel') %]</a> > [% END %]</fieldset> > > [%# Fields for fast cataloging %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/editor.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/editor.tt >index 8abcdc53cc..53724e98c0 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/editor.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/editor.tt >@@ -1,6 +1,7 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Cataloging › Editor</title> >+<title>[% t('Koha ⺠Cataloging ⺠Editor') %]</title> > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.css("css/cateditor.css") %] > [% Asset.css("css/datatables.css") %] >@@ -15,55 +16,55 @@ > <body id="cat_addbiblio" class="cat"> > > <div id="loading"> >- <div>Loading, please wait...</div> >+ <div>[% t('Loading, please wait...') %]</div> > </div> > > [% INCLUDE 'header.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a> › Editor</div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/cataloguing/addbooks.pl">[% t('Cataloging') %]</a> [% t('⺠Editor') %]</div> > > <div id="doc3" class="yui-t2"> > <div id="bd"> > >-<h1 id="title">Cataloging editor</h1> >+<h1 id="title">[% t('Cataloging editor') %]</h1> > > <div id="yui-main"><div class="yui-b"> > > <div id="editor"> > <input id="import-records-input" type="file" style="display: none"> > <div id="toolbar" class="btn-toolbar"> >- <button class="btn btn-default btn-sm" id="new-record" title="Open fresh record"><i class="fa fa-plus"></i> <span>New record</span></button> >+ <button class="btn btn-default btn-sm" id="new-record" title="[% t('Open fresh record') %]"><i class="fa fa-plus"></i> <span>[% t('New record') %]</span></button> > <div class="btn-group"> >- <button class="btn btn-default btn-sm" id="save-record" title="Save current record (Ctrl-S)"><i class="fa fa-hdd-o"></i> <span>Save</span></button> >+ <button class="btn btn-default btn-sm" id="save-record" title="[% t('Save current record (Ctrl-S)') %]"><i class="fa fa-hdd-o"></i> <span>[% t('Save') %]</span></button> > <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"> > <span class="caret"></span> > </button> > <ul class="dropdown-menu" id="save-dropdown"> > </ul> > </div> >- <button class="btn btn-default btn-sm" id="import-records" title="Import an ISO2709 or MARCXML record"><i class="fa fa-download"></i> <span>Import record...</span></button> >- <button class="btn btn-default btn-sm" id="open-macros" title="Run and edit macros"><i class="fa fa-play"></i> <span>Macros...</span></button> >+ <button class="btn btn-default btn-sm" id="import-records" title="[% t('Import an ISO2709 or MARCXML record') %]"><i class="fa fa-download"></i> <span>[% t('Import record...') %]</span></button> >+ <button class="btn btn-default btn-sm" id="open-macros" title="[% t('Run and edit macros') %]"><i class="fa fa-play"></i> <span>[% t('Macros...') %]</span></button> > <div class="btn-group"> >- <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"><i class="fa fa-cog"></i> Settings <span class="caret"></span></button> >+ <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"><i class="fa fa-cog"></i> [% t('Settings') %] <span class="caret"></span></button> > <ul id="prefs-menu" class="dropdown-menu"> >- <li><a id="switch-editor" href="#">Switch to basic editor</a></li> >+ <li><a id="switch-editor" href="#">[% t('Switch to basic editor') %]</a></li> > <li><a id="set-field-widgets" href="#"></a></li> > <li class="divider"></li> >- <li><a class="set-fontSize" style="font-size: .92em" href="#">Small text</a></li> >- <li><a class="set-fontSize" style="font-size: 1em" href="#">Normal text</a></li> >- <li><a class="set-fontSize" style="font-size: 1.08em" href="#">Large text</a></li> >- <li><a class="set-fontSize" style="font-size: 1.18em" href="#">Huge text</a></li> >+ <li><a class="set-fontSize" style="font-size: .92em" href="#">[% t('Small text') %]</a></li> >+ <li><a class="set-fontSize" style="font-size: 1em" href="#">[% t('Normal text') %]</a></li> >+ <li><a class="set-fontSize" style="font-size: 1.08em" href="#">[% t('Large text') %]</a></li> >+ <li><a class="set-fontSize" style="font-size: 1.18em" href="#">[% t('Huge text') %]</a></li> > <li class="divider"></li> >- <li><a class="set-font" style="font-family: monospace" href="#">Default font</a></li> >- <li><a class="set-font" style="font-family: Consolas" href="#">Consolas</a></li> >- <li><a class="set-font" style="font-family: 'Courier New'" href="#">Courier New</a></li> >- <li><a class="set-font" style="font-family: 'DejaVu Sans Mono'" href="#">DejaVu Sans Mono</a></li> >- <li><a class="set-font" style="font-family: 'Lucida Console'" href="#">Lucida Console</a></li> >- <li><a class="set-font" style="font-family: Monaco" href="#">Monaco</a></li> >+ <li><a class="set-font" style="font-family: monospace" href="#">[% t('Default font') %]</a></li> >+ <li><a class="set-font" style="font-family: Consolas" href="#">[% t('Consolas') %]</a></li> >+ <li><a class="set-font" style="font-family: 'Courier New'" href="#">[% t('Courier New') %]</a></li> >+ <li><a class="set-font" style="font-family: 'DejaVu Sans Mono'" href="#">[% t('DejaVu Sans Mono') %]</a></li> >+ <li><a class="set-font" style="font-family: 'Lucida Console'" href="#">[% t('Lucida Console') %]</a></li> >+ <li><a class="set-font" style="font-family: Monaco" href="#">[% t('Monaco') %]</a></li> > </ul> > </div> >- <button class="btn btn-default btn-sm" id="show-alerts" title="Previous alerts"><i class="fa fa-bell"></i> Alerts <span class="caret"></span></button> >- <button class="btn btn-default btn-sm" id="show-shortcuts" title="Supported keyboard shortcuts"><i class="fa fa-keyboard-o"></i> Keyboard shortcuts <span class="caret"></span></button> >+ <button class="btn btn-default btn-sm" id="show-alerts" title="[% t('Previous alerts') %]"><i class="fa fa-bell"></i> [% t('Alerts') %] <span class="caret"></span></button> >+ <button class="btn btn-default btn-sm" id="show-shortcuts" title="[% t('Supported keyboard shortcuts') %]"><i class="fa fa-keyboard-o"></i> [% t('Keyboard shortcuts') %] <span class="caret"></span></button> > </div> > [%# CodeMirror instance will be inserted here %] > <div id="statusbar"> >@@ -78,19 +79,19 @@ > > <div class="yui-b" id="sidebar"> > >-<h3>Search</h3> >+<h3>[% t('Search') %]</h3> > <form id="quicksearch"> > <fieldset class="brief"> > <ol> >- <li><label for="search-by-keywords">Keywords:</label></li> >- <li><input class="search-box" data-qualifier="term" id="search-by-keywords" placeholder="(Ctrl-Alt-K)" /></li> >- <li><label for="search-by-author">Author:</label></li> >- <li><input class="search-box" data-qualifier="author" id="search-by-author" placeholder="(Ctrl-Alt-A)" /></li> >- <li><label for="search-by-isbn">ISBN:</label></li> >- <li><input class="search-box" data-qualifier="isbn" id="search-by-isbn" placeholder="(Ctrl-Alt-I)" /></li> >- <li><label for="search-by-title">Title:</label></li> >- <li><input class="search-box" data-qualifier="title" id="search-by-title" placeholder="(Ctrl-Alt-T)" /></li> >- <li><a href="#" id="show-advanced-search" title="Show advanced search (Ctrl-Alt-S)">Advanced »</a></li> >+ <li><label for="search-by-keywords">[% t('Keywords:') %]</label></li> >+ <li><input class="search-box" data-qualifier="term" id="search-by-keywords" placeholder="[% t('(Ctrl-Alt-K)') %]" /></li> >+ <li><label for="search-by-author">[% t('Author:') %]</label></li> >+ <li><input class="search-box" data-qualifier="author" id="search-by-author" placeholder="[% t('(Ctrl-Alt-A)') %]" /></li> >+ <li><label for="search-by-isbn">[% t('ISBN:') %]</label></li> >+ <li><input class="search-box" data-qualifier="isbn" id="search-by-isbn" placeholder="[% t('(Ctrl-Alt-I)') %]" /></li> >+ <li><label for="search-by-title">[% t('Title:') %]</label></li> >+ <li><input class="search-box" data-qualifier="title" id="search-by-title" placeholder="[% t('(Ctrl-Alt-T)') %]" /></li> >+ <li><a href="#" id="show-advanced-search" title="[% t('Show advanced search (Ctrl-Alt-S)') %]">[% t('Advanced »') %]</a></li> > </fieldset> > </form> > >@@ -105,7 +106,7 @@ > > <div class="modal-header"> > <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">Ã</button> >- <h3 id="advanced-search-title">Advanced search</h3> >+ <h3 id="advanced-search-title">[% t('Advanced search') %]</h3> > </div> > <div class="modal-body"> > <form id="advanced-search"> >@@ -113,62 +114,62 @@ > <div class="col-md-3"> > <div id="search-facets"> > <ul> >- <li>Servers:<ul id="advanced-search-servers"></ul></li> >+ <li>[% t('Servers:') %]<ul id="advanced-search-servers"></ul></li> > </ul> > </div> > </div> > <div class="col-md-9"> > <div id="toolbar" class="btn-toolbar"> >- <button class="btn btn-default btn-sm" type="submit"><i class="fa fa-search"></i> <span>Search</span></button> >- <button class="btn btn-default btn-sm" type="reset"><i class="fa fa-trash"></i> <span>Clear</span></button> >+ <button class="btn btn-default btn-sm" type="submit"><i class="fa fa-search"></i> <span>[% t('Search') %]</span></button> >+ <button class="btn btn-default btn-sm" type="reset"><i class="fa fa-trash"></i> <span>[% t('Clear') %]</span></button> > </div> > <ul id="advanced-search-fields"> > <li> >- <label for="advanced-search-by-isbn">ISBN:</label> >+ <label for="advanced-search-by-isbn">[% t('ISBN:') %]</label> > <input class="search-box" data-qualifier="isbn" id="advanced-search-by-isbn" /> > </li> > <li> >- <label for="advanced-search-by-issn">ISSN:</label> >+ <label for="advanced-search-by-issn">[% t('ISSN:') %]</label> > <input class="search-box" data-qualifier="issn" id="advanced-search-by-issn" /> > </li> > <li> >- <label for="advanced-search-by-title">Title:</label> >+ <label for="advanced-search-by-title">[% t('Title:') %]</label> > <input class="search-box" data-qualifier="title" id="advanced-search-by-title" /> > </li> > <li> >- <label for="advanced-search-by-author">Author:</label> >+ <label for="advanced-search-by-author">[% t('Author:') %]</label> > <input class="search-box" data-qualifier="author" id="advanced-search-by-author" /> > </li> > <li> >- <label for="advanced-search-by-subject">Subject:</label> >+ <label for="advanced-search-by-subject">[% t('Subject:') %]</label> > <input class="search-box" data-qualifier="subject" id="advanced-search-by-subject" /> > </li> > <li> >- <label for="advanced-search-by-lc-number">LC call number:</label> >+ <label for="advanced-search-by-lc-number">[% t('LC call number:') %]</label> > <input class="search-box" data-qualifier="cn_lc" id="advanced-search-by-lc-number" /> > </li> > <li> >- <label for="advanced-search-by-lccn">LCCN:</label> >+ <label for="advanced-search-by-lccn">[% t('LCCN:') %]</label> > <input class="search-box" data-qualifier="lccn" id="advanced-search-by-lccn" /> > </li> > <li> >- <label for="advanced-search-by-control-number">Control number:</label> >+ <label for="advanced-search-by-control-number">[% t('Control number:') %]</label> > <input class="search-box" data-qualifier="local_number" id="advanced-search-by-control-number" /> > </li> > <li> >- <label for="advanced-search-by-dewey">Dewey number:</label> >+ <label for="advanced-search-by-dewey">[% t('Dewey number:') %]</label> > <input class="search-box" data-qualifier="cn_dewey" id="advanced-search-by-dewey" /> > </li> > <li> >- <label for="advanced-search-by-standard-number">Standard number:</label> >+ <label for="advanced-search-by-standard-number">[% t('Standard number:') %]</label> > <input class="search-box" data-qualifier="standard_identifier" id="advanced-search-by-standard-number" /> > </li> > <li> >- <label for="advanced-search-by-publisher-number">Publisher number:</label> >+ <label for="advanced-search-by-publisher-number">[% t('Publisher number:') %]</label> > <input class="search-box" data-qualifier="music_identifier" id="advanced-search-by-publisher-number" /> > </li> > <li> >- <label for="advanced-search-by-publication-date">Publication date:</label> >+ <label for="advanced-search-by-publication-date">[% t('Publication date:') %]</label> > <input class="search-box" data-qualifier="date" id="advanced-search-by-publication-date" /> > </li> > </ul> >@@ -186,7 +187,7 @@ > > <div class="modal-header"> > <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">Ã</button> >- <h3 id="search-results-title">Results</h3> >+ <h3 id="search-results-title">[% t('Results') %]</h3> > </div> > > <div class="modal-body"> >@@ -194,7 +195,7 @@ > <div class="col-md-3"> > <div id="search-facets"> > <ul> >- <li>Servers:<ul id="search-serversinfo"></ul></li> >+ <li>[% t('Servers:') %]<ul id="search-serversinfo"></ul></li> > </ul> > </div> > </div> >@@ -220,7 +221,7 @@ > </div> > </div> > </div> >- <div id="search-overlay"><span>Loading...</span><div class="progress"><div class="progress-bar progress-bar-striped active" style="width: 100%"></div></div></div> >+ <div id="search-overlay"><span>[% t('Loading...') %]</span><div class="progress"><div class="progress-bar progress-bar-striped active" style="width: 100%"></div></div></div> > </div> > </div> > </div> >@@ -233,7 +234,7 @@ > > <div class="modal-header"> > <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">Ã</button> >- <h3 id="macro-title">Macros</h3> >+ <h3 id="macro-title">[% t('Macros') %]</h3> > </div> > > <div class="modal-body"> >@@ -241,9 +242,9 @@ > <div class="col-md-3"><ul id="macro-list"></ul></div> > <div class="col-md-9" id="macro-editor"> > <div id="macro-toolbar" class="btn-toolbar"> >- <button class="btn btn-default btn-sm" id="run-macro" title="Run and edit macros"><i class="fa fa-play"></i> Run macro</button> >- <button class="btn btn-default btn-sm" id="delete-macro" title="Delete macro"><i class="fa fa-trash"></i> Delete macro</button> >- <label for="macro-format">Format: </label> <select id="macro-format"></select> >+ <button class="btn btn-default btn-sm" id="run-macro" title="[% t('Run and edit macros') %]"><i class="fa fa-play"></i> [% t('Run macro') %]</button> >+ <button class="btn btn-default btn-sm" id="delete-macro" title="[% t('Delete macro') %]"><i class="fa fa-trash"></i> [% t('Delete macro') %]</button> >+ <label for="macro-format">[% t('Format:') %] </label> <select id="macro-format"></select> > <div id="macro-save-message"></div> > </div> > </div> >@@ -257,58 +258,58 @@ > <table class="table table-condensed"> > <thead> > <tr> >- <th>Shortcut</th> >- <th>Behavior</th> >+ <th>[% t('Shortcut') %]</th> >+ <th>[% t('Behavior') %]</th> > </tr> > </thead> > <tbody> > <tr> >- <td>Alt-C</td> >- <td>Insert copyright symbol (©)</td> >+ <td>[% t('Alt-C') %]</td> >+ <td>[% t('Insert copyright symbol (©)') %]</td> > </tr> > <tr> >- <td>Alt-P</td> >- <td>Insert copyright symbol (â) (sound recordings)</td> >+ <td>[% t('Alt-P') %]</td> >+ <td>[% t('Insert copyright symbol (â) (sound recordings)') %]</td> > </tr> > <tr> >- <td>Ctrl-D</td> >- <td>Insert delimiter (â¡)</td> >+ <td>[% t('Ctrl-D') %]</td> >+ <td>[% t('Insert delimiter (â¡)') %]</td> > </tr> > <tr> >- <td>Ctrl-H</td> >- <td>Get help on current subfield</td> >+ <td>[% t('Ctrl-H') %]</td> >+ <td>[% t('Get help on current subfield') %]</td> > </tr> > <tr> >- <td>Ctrl-Shift-L</td> >- <td>Link field to authorities</td> >+ <td>[% t('Ctrl-Shift-L') %]</td> >+ <td>[% t('Link field to authorities') %]</td> > </tr> > <tr> >- <td>Ctrl-S</td> >- <td>Save record</td> >+ <td>[% t('Ctrl-S') %]</td> >+ <td>[% t('Save record') %]</td> > </tr> > <tr> >- <td>Ctrl-X</td> >- <td>Delete current field</td> >+ <td>[% t('Ctrl-X') %]</td> >+ <td>[% t('Delete current field') %]</td> > </tr> > <tr> >- <td>Ctrl-Shift-X</td> >- <td>Delete current subfield</td> >+ <td>[% t('Ctrl-Shift-X') %]</td> >+ <td>[% t('Delete current subfield') %]</td> > </tr> > <tr> >- <td>Enter</td> >- <td>New field on next line</td> >+ <td>[% t('Enter') %]</td> >+ <td>[% t('New field on next line') %]</td> > </tr> > <tr> >- <td>Shift-Enter</td> >- <td>Insert line break</td> >+ <td>[% t('Shift-Enter') %]</td> >+ <td>[% t('Insert line break') %]</td> > </tr> > <tr> >- <td>Tab</td> >- <td>Move to next position</td> >+ <td>[% t('Tab') %]</td> >+ <td>[% t('Move to next position') %]</td> > </tr> > <tr> >- <td>Shift-Tab</td> >- <td>Move to previous position</td> >+ <td>[% t('Shift-Tab') %]</td> >+ <td>[% t('Move to previous position') %]</td> > </tr> > </tbody> > </table> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/linkitem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/linkitem.tt >index 0741fce9ad..cf86bdddc1 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/linkitem.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/linkitem.tt >@@ -1,17 +1,18 @@ >+[% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Cataloging ’ Link to host item</title> >+<title>[% t('Koha ⺠Cataloging â Link to host item') %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body id="catalog_linkitem" class="catalog"> > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a> › Link a host item to <i>[% bibliotitle |html %]</i></div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/cataloguing/addbooks.pl">[% t('Cataloging') %]</a> [% t('⺠Link a host item to') %] <i>[% bibliotitle |html %]</i></div> > <div id="doc3" class="yui-t2"> > > [% IF ( error ) %] > <div class="dialog alert"> >- [% IF ( errornomodbiblio ) %]ERROR: Unable to modify the bibliographic record.[% END %] >- [% IF ( errornohostitemnumber ) %]ERROR: Unable to get the item number from this barcode.[% END %] >+ [% IF ( errornomodbiblio ) %][% t('ERROR: Unable to modify the bibliographic record.') %][% END %] >+ [% IF ( errornohostitemnumber ) %][% t('ERROR: Unable to get the item number from this barcode.') %][% END %] > </div> > <form action="/cgi-bin/koha/catalogue/MARCdetail.pl" method="post"> > <input type="submit" value="OK" /> >@@ -19,7 +20,7 @@ > </form> > [% ELSE %] > [% IF ( success ) %] >- <div class="dialog">The item has successfully been linked to <i>[% bibliotitle |html %]</i>.</div> >+ <div class="dialog">[% t('The item has successfully been linked to') %] <i>[% bibliotitle |html %]</i>.</div> > <form action="/cgi-bin/koha/catalogue/MARCdetail.pl" method="post"> > <input type="submit" value="OK" /> > <input type="hidden" name="biblionumber" value="[% biblionumber %]" /> >@@ -29,8 +30,8 @@ > <form method="post" action="/cgi-bin/koha/cataloguing/linkitem.pl"> > [% IF ( missingbiblionumber ) %] > <fieldset id="biblionumber_fieldset"> >- <label for="biblionumber_fieldset">Select the biblionumber to link the item to</label> >- <div class="hint">Enter biblionumber:</div> >+ <label for="biblionumber_fieldset">[% t('Select the biblionumber to link the item to') %]</label> >+ <div class="hint">[% t('Enter biblionumber:') %]</div> > <input type="text" name="biblionumber" id="biblionumber" class="focus" size="14" /> > </fieldset> > [% ELSE %] >@@ -39,8 +40,8 @@ > > [% IF ( missingbarcode ) %] > <fieldset id="barcode_fieldset"> >- <label for="barcode_fieldset">Select the host item to link[% IF ( bibliotitle ) %] to <i>[% bibliotitle |html %]</i>[% END %]</label> >- <div class="hint">Enter item barcode:</div> >+ <label for="barcode_fieldset">[% t('Select the host item to link') %][% IF ( bibliotitle ) %] [% t('to') %] <i>[% bibliotitle |html %]</i>[% END %]</label> >+ <div class="hint">[% t('Enter item barcode:') %]</div> > <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" /> > </fieldset> > [% ELSE %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt >index c94d88de30..edc321b28a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt >@@ -1,9 +1,10 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% SET footerjs = 1 %] > [% PROCESS 'merge-record.inc' %] > > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Cataloging › Merging records</title> >+<title>[% t('Koha ⺠Cataloging ⺠Merging records') %]</title> > [% INCLUDE 'doc-head-close.inc' %] > <style type="text/css"> > div.record ul, div.record li { float:none; display:block; } >@@ -16,7 +17,7 @@ div#result { margin-top: 1em; } > <body id="cat_merge" class="cat"> > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cataloging-search.inc' %] >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a> › Merging records</div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/cataloguing/addbooks.pl">[% t('Cataloging') %]</a> [% t('⺠Merging records') %]</div> > > <div id="doc" class="yui-t7"> > >@@ -24,28 +25,28 @@ div#result { margin-top: 1em; } > <div id="yui-main"> > > >-<h1>Merging records</h1> >+<h1>[% t('Merging records') %]</h1> > [% IF ( result ) %] > [% IF ( errors.size ) %] > [% FOREACH error IN errors %] > <div class="dialog alert"> > [% IF error.code == 'CANNOT_MOVE' %] >- The following items could not be moved from the old record to the new one: [% error.value %] >+ [% t('The following items could not be moved from the old record to the new one:') %] [% error.value %] > [% ELSE %] > [% error %] > [% END %] > <br /> >- Therefore, the record to be merged has not been deleted. >+ [% t('Therefore, the record to be merged has not been deleted.') %] > </div> > [% END %] > > [% ELSE %] >- <p>The merge was successful. <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% ref_biblionumber %]">Click here to see the merged record.</a></p> >- <h3>Report</h3> >+ <p>[% t('The merge was successful.') %] <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% ref_biblionumber %]">[% t('Click here to see the merged record.') %]</a></p> >+ <h3>[% t('Report') %]</h3> > <table> > <thead> > <tr> >- <th>Biblionumber</th> >+ <th>[% t('Biblionumber') %]</th> > [% FOREACH key IN report_header.keys.sort %] > [% tag = key.substr(0, 3) %] > [% code = key.substr(3, 1) %] >@@ -64,7 +65,7 @@ div#result { margin-top: 1em; } > <td> > [% record.biblionumber %] > [% IF loop.first %] >- (record kept) >+ [% t('(record kept)') %] > [% END %] > </td> > [% FOREACH key IN report_header.keys.sort %] >@@ -87,10 +88,10 @@ div#result { margin-top: 1em; } > [% ELSE %] > > [% IF ( choosereference ) %] >-<p>Please choose which record will be the reference for the merge. The record chosen as reference will be kept, and the other will be deleted.</p> >+<p>[% t('Please choose which record will be the reference for the merge. The record chosen as reference will be kept, and the other will be deleted.') %]</p> > <form id="mergeform" action="/cgi-bin/koha/cataloguing/merge.pl" method="post"> > <fieldset class="rows"> >- <legend>Merge reference</legend> >+ <legend>[% t('Merge reference') %]</legend> > <ol> > [% FOREACH record IN records %] > <li class="radio"> >@@ -104,15 +105,15 @@ div#result { margin-top: 1em; } > [% FOREACH subtitle IN record.subtitles %] > [% subtitle.subfield %] > [% END %] >- ([% record.biblionumber %]) <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% record.biblionumber %]" class="previewData">View MARC</a> >+ ([% record.biblionumber %]) <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% record.biblionumber %]" class="previewData">[% t('View MARC') %]</a> > </label> > </li> > [% END %] > > <li> >- <label for="frameworkcode">Using framework:</label> >+ <label for="frameworkcode">[% t('Using framework:') %]</label> > <select name="frameworkcode" id="frameworkcode"> >- <option value="">Default</option> >+ <option value="">[% t('Default') %]</option> > [% FOREACH framework IN frameworks %] > <option value="[% framework.frameworkcode %]">[% framework.frameworktext %]</option> > [% END %] >@@ -134,13 +135,13 @@ div#result { margin-top: 1em; } > <div class="modal-content"> > <div class="modal-header"> > <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">Ã</button> >- <h3 id="dataPreviewLabel">Preview</h3> >+ <h3 id="dataPreviewLabel">[% t('Preview') %]</h3> > </div> > <div class="modal-body"> >- <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> Loading </div> >+ <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> [% t('Loading') %] </div> > </div> > <div class="modal-footer"> >- <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button> >+ <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">[% t('Close') %]</button> > </div> > </div> > </div> >@@ -172,9 +173,9 @@ div#result { margin-top: 1em; } > > <fieldset class="action"> > <input type="submit" name="merge" value="Merge" /> >- <label for="report_fields">Fields to display in report:</label> >+ <label for="report_fields">[% t('Fields to display in report:') %]</label> > <input type="text" name="report_fields" id="report_fields" value="[% MergeReportFields %]" /> >- <span class="hint">(Example: "001,245ab,600") >+ <span class="hint">[% t('(Example: "001,245ab,600")') %] > </fieldset> > </div> > </form> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/moveitem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/moveitem.tt >index 3e2f10eec0..7e80737117 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/moveitem.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/moveitem.tt >@@ -1,11 +1,12 @@ >+[% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Attach an item to [% bibliotitle |html %]</title> >+<title>[% t('Attach an item to') %] [% bibliotitle |html %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body id="catalog_moveitem" class="catalog"> > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a> › Attach an item to <i>[% bibliotitle |html %][% IF ( itemsloo.subtitle ) %][% itemsloo.subtitle %][% END %]</i></div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/cataloguing/addbooks.pl">[% t('Cataloging') %]</a> [% t('⺠Attach an item to') %] <i>[% bibliotitle |html %][% IF ( itemsloo.subtitle ) %][% itemsloo.subtitle %][% END %]</i></div> > <div id="doc" class="yui-t7"> > > [% BLOCK actions %] >@@ -21,11 +22,11 @@ > [% END %] > > [% BLOCK fail %] >- <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> OK</button> >+ <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> [% t('OK') %]</button> > <input type="hidden" name="biblionumber" value="[% biblionumber %]" /> > </form> > <form method="get" action="/cgi-bin/koha/cataloguing/moveitem.pl?biblionumber=[% biblionumber %]"> >- <button type="submit" class="new"><i class="fa fa-fw fa-plus"></i> Try again with a different barcode</button> >+ <button type="submit" class="new"><i class="fa fa-fw fa-plus"></i> [% t('Try again with a different barcode') %]</button> > <input type="hidden" name="biblionumber" value="[% biblionumber %]" /> > </form> > [% END %] >@@ -33,13 +34,13 @@ > [% IF ( error ) %] > <div class="dialog alert"> > >- [% IF ( errornonewitem ) %]ERROR: Unable to create the new item.<p> >+ [% IF ( errornonewitem ) %][% t('ERROR: Unable to create the new item.') %]<p> > [% INCLUDE actions %] > [% INCLUDE fail %] > </p> > [% END %] > >- [% IF ( errornoitem ) %]ERROR: Unable to get the item.<p> >+ [% IF ( errornoitem ) %][% t('ERROR: Unable to get the item.') %]<p> > [% INCLUDE actions %] > [% INCLUDE fail %] > </p> >@@ -48,14 +49,14 @@ > > [% ELSE %] > [% IF ( success ) %] >- <div class="dialog message">The item has successfully been attached to [% INCLUDE 'biblio-default-view.inc' %]<i>[% bibliotitle |html %]</i></a>. >+ <div class="dialog message">[% t('The item has successfully been attached to') %] [% INCLUDE 'biblio-default-view.inc' %]<i>[% bibliotitle |html %]</i></a>. > <p> > [% INCLUDE actions %] >- <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> OK</button> >+ <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> [% t('OK') %]</button> > <input type="hidden" name="biblionumber" value="[% biblionumber %]" /> > </form> >- <form method="get" action="/cgi-bin/koha/cataloguing/moveitem.pl?biblionumber=[% biblionumber %]"/> >- <button type="submit" class="new"><i class="fa fa-fw fa-plus"></i> Attach another item</button> >+ <form method="get" action="/cgi-bin/koha/cataloguing/moveitem.pl?biblionumber=[% biblionumber %]" /> >+ <button type="submit" class="new"><i class="fa fa-fw fa-plus"></i> [% t('Attach another item') %]</button> > <input type="hidden" name="biblionumber" value="[% biblionumber %]" /> > </form> > </p> >@@ -65,8 +66,8 @@ > <form method="post" action="/cgi-bin/koha/cataloguing/moveitem.pl"> > [% IF ( missingbiblionumber ) %] > <fieldset id="biblionumber_fieldset"> >- <label for="biblionumber">Select the biblionumber to attach the item to</label> >- <div class="hint">Enter biblionumber:</div> >+ <label for="biblionumber">[% t('Select the biblionumber to attach the item to') %]</label> >+ <div class="hint">[% t('Enter biblionumber:') %]</div> > <input type="text" name="biblionumber" id="biblionumber" class="focus" size="14" /> > <fieldset class="action"><input type="submit" value="Submit" /></fieldset> > </fieldset> >@@ -75,10 +76,10 @@ > [% END %] > > [% IF ( missingbarcode ) %] >- <h3>Attach an item[% IF ( bibliotitle ) %] to <i>[% bibliotitle |html %]</i>[% END %]</h3> >+ <h3>[% t('Attach an item') %][% IF ( bibliotitle ) %] [% t('to') %] <i>[% bibliotitle |html %]</i>[% END %]</h3> > <fieldset id="barcode_fieldset"> >- <label for="barcode">Enter the barcode of the item to attach:</label> >- <p class="hint">The item you select will be moved to the target record.</p> >+ <label for="barcode">[% t('Enter the barcode of the item to attach:') %]</label> >+ <p class="hint">[% t('The item you select will be moved to the target record.') %]</p> > <input type="text" name="barcode" id="barcode" class="barcode focus" size="14" /> > <fieldset class="action"><input type="submit" value="Submit" /></fieldset> > </fieldset> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt >index 5bc8f9d8d9..807185b45b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt >@@ -1,10 +1,11 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] > [% IF ( opsearch ) %] >- <title>Koha › Z39.50 authority search points</title> >+ <title>[% t('Koha ⺠Z39.50 authority search points') %]</title> > [% ELSE %] >- <title>Koha › Z39.50 authority search results</title> >+ <title>[% t('Koha ⺠Z39.50 authority search results') %]</title> > [% END %] > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.css("css/datatables.css") %] >@@ -16,7 +17,7 @@ > <div class="container-fluid"> > > [% IF ( opsearch ) %] >- <h2>Z39.50 authority search points</h2> >+ <h2>[% t('Z39.50 authority search points') %]</h2> > <form method="post" action="z3950_auth_search.pl" name="f" class="checkboxed"> > <input type="hidden" name="op" id="op" value="do_search" /> > <input type="hidden" name="authid" value="[% authid %]" /> >@@ -24,12 +25,12 @@ > <div class="col-xs-6"> > <fieldset class="rows"> > <ol> >- <li><label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li> >- <li><label for="nameany">Name (any): </label> <input type="text" id="nameany" name="nameany" value="" /></li> >- <li><label for="authorany">Author (any): </label> <input type="text" id="authorany" name="authorany" value="" /></li> >- <li><label for="authorpersonal">Author (personal): </label> <input type="text" id="authorpersonal" name="authorpersonal" value="[% authorpersonal | html %]" /></li> >- <li><label for="authorcorp">Author (corporate): </label> <input type="text" id="authorcorp" name="authorcorp" value="[% authorcorp | html %]" /></li> >- <li><label for="authormeetingcon">Author (meeting / conference): </label> <input type="text" id="authormeetingcon" name="authormeetingcon" value="[% authormeetingcon | html %]" /></li> >+ <li><label for="srchany">[% t('Keyword (any):') %] </label> <input type="text" id="srchany" name="srchany" value="" /></li> >+ <li><label for="nameany">[% t('Name (any):') %] </label> <input type="text" id="nameany" name="nameany" value="" /></li> >+ <li><label for="authorany">[% t('Author (any):') %] </label> <input type="text" id="authorany" name="authorany" value="" /></li> >+ <li><label for="authorpersonal">[% t('Author (personal):') %] </label> <input type="text" id="authorpersonal" name="authorpersonal" value="[% authorpersonal | html %]" /></li> >+ <li><label for="authorcorp">[% t('Author (corporate):') %] </label> <input type="text" id="authorcorp" name="authorcorp" value="[% authorcorp | html %]" /></li> >+ <li><label for="authormeetingcon">[% t('Author (meeting / conference):') %] </label> <input type="text" id="authormeetingcon" name="authormeetingcon" value="[% authormeetingcon | html %]" /></li> > </ol> > </fieldset> > </div> >@@ -37,19 +38,19 @@ > <div class="row"> > <fieldset class="rows"> > <ol> >- <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li> >- <li><label for="subjectsubdiv">Subject sub-division: </label> <input type="text" id="subjectsubdiv" name="subjectsubdiv" value="" /></li> >- <li><label for="title">Title (any): </label> <input type="text" id="title" name="title" value="[% title | html %]" /></li> >- <li><label for="uniformtitle">Title (uniform): </label> <input type="text" id="uniformtitle" name="uniformtitle" value="[% uniformtitle | html %]" /></li> >- <li><a id="resetZ3950Search" href="#"><i class="fa fa-trash"></i> Clear search form</a></li> >+ <li><label for="subject">[% t('Subject heading:') %] </label> <input type="text" id="subject" name="subject" value="" /></li> >+ <li><label for="subjectsubdiv">[% t('Subject sub-division:') %] </label> <input type="text" id="subjectsubdiv" name="subjectsubdiv" value="" /></li> >+ <li><label for="title">[% t('Title (any):') %] </label> <input type="text" id="title" name="title" value="[% title | html %]" /></li> >+ <li><label for="uniformtitle">[% t('Title (uniform):') %] </label> <input type="text" id="uniformtitle" name="uniformtitle" value="[% uniformtitle | html %]" /></li> >+ <li><a id="resetZ3950Search" href="#"><i class="fa fa-trash"></i> [% t('Clear search form') %]</a></li> > </ol> > </fieldset> > </div> > > <div class="row"> >- <h2>Search targets</h2> >+ <h2>[% t('Search targets') %]</h2> > <div id="z3950_search_targets_auth"> >- <span class="z3950checks"><span class="checkall"><a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a></span> | <span class="clearall"><a id="CheckNone" href="#"><i class="fa fa-remove"></i> Clear all</a></span></span> >+ <span class="z3950checks"><span class="checkall"><a id="CheckAll" href="#"><i class="fa fa-check"></i> [% t('Select all') %]</a></span> | <span class="clearall"><a id="CheckNone" href="#"><i class="fa fa-remove"></i> [% t('Clear all') %]</a></span></span> > [% FOREACH serverloo IN serverloop %] > <p> > [% IF ( serverloo.checked ) %] >@@ -66,19 +67,19 @@ > </div> > <nav class="navbar navbar-default navbar-fixed-bottom"> > <div class="container-fluid"> >- <fieldset class="action"><input type="submit" class="submit" value="Search" /> <a class="cancel close" href="#">Cancel</a></fieldset> >+ <fieldset class="action"><input type="submit" class="submit" value="Search" /> <a class="cancel close" href="#">[% t('Cancel') %]</a></fieldset> > </div> > </nav> > </form> > [% ELSE %] >- <h2>Results for authority records</h2> >+ <h2>[% t('Results for authority records') %]</h2> > [% IF ( breeding_loop ) %] > <table id="resultst"> > <thead> <tr> >- <th>Server</th> >- <th>Heading</th> >- <th>Authority Type</th> >- <th>Actions</th> >+ <th>[% t('Server') %]</th> >+ <th>[% t('Heading') %]</th> >+ <th>[% t('Authority Type') %]</th> >+ <th>[% t('Actions') %]</th> > </tr></thead> > <tbody>[% FOREACH breeding_loo IN breeding_loop %] > [% IF ( breeding_loo.breedingid ) %] >@@ -89,11 +90,11 @@ > <td class="actions"> > <div class="dropdown"> > <a class="btn btn-default btn-xs dropdown-toggle" id="cataloguesearchactions[% breeding_loo.breedingid %]" role="button" data-toggle="dropdown" href="#"> >- Actions <b class="caret"></b> >+ [% t('Actions') %] <b class="caret"></b> > </a> > <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="cataloguesearchactions[% breeding_loo.breedingid %]"> >- <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" class="previewMARC"><i class="fa fa-eye"></i> MARC preview</a></li> >- <li><a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-heading_code="[% breeding_loo.heading_code %]" data-authid="[% breeding_loo.authid %]"><i class="fa fa-download"></i> Import</a></li> >+ <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" class="previewMARC"><i class="fa fa-eye"></i> [% t('MARC preview') %]</a></li> >+ <li><a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-heading_code="[% breeding_loo.heading_code %]" data-authid="[% breeding_loo.authid %]"><i class="fa fa-download"></i> [% t('Import') %]</a></li> > </ul> > </div> > </td> >@@ -107,10 +108,10 @@ > <div class="modal-content"> > <div class="modal-header"> > <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">Ã</button> >- <h3 id="marcPreviewLabel">MARC preview</h3> >+ <h3 id="marcPreviewLabel">[% t('MARC preview') %]</h3> > </div> > <div class="modal-body"> >- <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> Loading </div> >+ <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> [% t('Loading') %] </div> > </div> > </div> > </div> >@@ -119,16 +120,16 @@ > <form method="post" action="z3950_auth_search.pl" id="page_form" name="page_form" class="checkboxed"> > <input type="hidden" name="op" id="op" value="do_search" /> > <input type="hidden" name="current_page" id="current_page" value="[% current_page %]" /> >- <input type="hidden" id="nameany" name="nameany" value="[% nameany %]" /> >- <input type="hidden" id="authorany" name="authorany" value="[% authorany %]" /> >- <input type="hidden" id="authorcorp" name="authorcorp" value="[% authorcorp %]" /> >- <input type="hidden" id="authorpersonal" name="authorpersonal" value="[% authorpersonal %]" /> >- <input type="hidden" id="authormeetingcon" name="authormeetingcon" value="[% authormeetingcon %]" /> >- <input type="hidden" id="title" name="title" value="[% title %]" /> >- <input type="hidden" id="uniformtitle" name="uniformtitle" value="[% uniformtitle %]" /> >+ <input type="hidden" id="nameany" name="nameany" value="[% nameany %]" /> >+ <input type="hidden" id="authorany" name="authorany" value="[% authorany %]" /> >+ <input type="hidden" id="authorcorp" name="authorcorp" value="[% authorcorp %]" /> >+ <input type="hidden" id="authorpersonal" name="authorpersonal" value="[% authorpersonal %]" /> >+ <input type="hidden" id="authormeetingcon" name="authormeetingcon" value="[% authormeetingcon %]" /> >+ <input type="hidden" id="title" name="title" value="[% title %]" /> >+ <input type="hidden" id="uniformtitle" name="uniformtitle" value="[% uniformtitle %]" /> > <input type="hidden" id="subject" name="subject" value="[% subject %]" /> > <input type="hidden" id="subjectsubdiv" name="subjectsubdiv" value="[% subjectsubdiv %]" /> >- <input type="hidden" id="heading" name="heading" value="[% heading %]" /> >+ <input type="hidden" id="heading" name="heading" value="[% heading %]" /> > <input type="hidden" id="srchany" name="srchany" value="[% srchany %]" /> > <input type="hidden" name="authid" value="[% authid %]" /> > >@@ -139,32 +140,32 @@ > [% IF ( show_prevbutton ) %] > <input type="button" name="changepage_prev" value="Previous page" data-currentpage="[% current_page %]" /> > [% END %] >- Page [% current_page %] / [% total_pages %] >+ [% t('Page') %] [% current_page %] / [% total_pages %] > [% IF ( show_nextbutton ) %] > <input type="button" name="changepage_next" value="Next page" data-currentpage="[% current_page %]" /> > [% END %] >- <br />Go to page : <input id="goto_page" name="goto_page" value="[% current_page %]" size="4" /><input type="submit" name="changepage_goto" value="Go" /> >+ <br />[% t('Go to page :') %] <input id="goto_page" name="goto_page" value="[% current_page %]" size="4" /><input type="submit" name="changepage_goto" value="Go" /> > </form> > >-<p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_auth_search.pl"><input type="hidden" name="authid" value="[% authid %]" /><input type="submit" value="Try another search"/></form></p> >+<p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_auth_search.pl"><input type="hidden" name="authid" value="[% authid %]" /><input type="submit" value="Try another search" /></form></p> > [% ELSE %] > [% IF ( errconn ) %] > <div class="dialog alert"> > <ul> > [% FOREACH errcon IN errconn %] >- [% IF ( errcon.error == '10000' ) %]<li>Connection failed to [% errcon.server %]</li> >- [% ELSIF ( errcon.error == '10007' ) %]<li>Connection timeout to [% errcon.server %]</li>[% END %] >+ [% IF ( errcon.error == '10000' ) %]<li>[% t('Connection failed to') %] [% errcon.server %]</li> >+ [% ELSIF ( errcon.error == '10007' ) %]<li>[% t('Connection timeout to') %] [% errcon.server %]</li>[% END %] > [% END %] > </ul> > </div> > [% END %] >- <div class="dialog message">Nothing found.</div> >- <p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_auth_search.pl"><input type="hidden" name="authid" value="[% authid %]" /><input type="submit" value="Try another search"/></form></p> >+ <div class="dialog message">[% t('Nothing found.') %]</div> >+ <p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_auth_search.pl"><input type="hidden" name="authid" value="[% authid %]" /><input type="submit" value="Try another search" /></form></p> > [% END %] > > [% END %] > >-[% IF ( numberpending ) %]<h3 align="center">Still [% numberpending %] servers to search</h3>[% END %] >+[% IF ( numberpending ) %]<h3 align="center">[% t('Still') %] [% numberpending %] [% t('servers to search') %]</h3>[% END %] > > [% MACRO jsinclude BLOCK %] > [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt >index 7325414d88..d424f03d43 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt >@@ -1,7 +1,8 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Z39.50/SRU search results</title> >+<title>[% t('Koha ⺠Z39.50/SRU search results') %]</title> > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.css("css/datatables.css") %] > <style type="text/css"> >@@ -13,32 +14,32 @@ > <div class="container-fluid"> > > [% IF ( opsearch ) %] >-<h2>Z39.50/SRU search</h2> >+<h2>[% t('Z39.50/SRU search') %]</h2> > <form method="post" action="z3950_search.pl" name="f" class="checkboxed"> > <div class="row"> > <div class="col-xs-6"> > <input type="hidden" name="op" id="op" value="do_search" /> > <fieldset class="rows"> > <ol> >- <li><label for="isbn">ISBN: </label> <input type="text" id="isbn" name="isbn" value="[% isbn | html %]" /></li> >- <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li> >- <li><label for="title">Title: </label> <input type="text" id="title" name="title" value="[% title |html %]" /></li> >- <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li> >- <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li> >- <li><label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li> >- <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li> >- <li><label for="controlnumber">Control no.: </label> <input type="text" id="controlnumber" name="controlnumber" value="" /></li> >- <li><label for="dewey">Dewey: </label> <input type="text" id="dewey" name="dewey" value="" /></li> >- <li><label for="stdid">Standard ID: </label> <input type="text" id="stdid" name="stdid" value="" /></li> >- <li><a id="resetZ3950Search" href="#"><i class="fa fa-trash"></i> Clear search form</a></li> >+ <li><label for="isbn">[% t('ISBN:') %] </label> <input type="text" id="isbn" name="isbn" value="[% isbn | html %]" /></li> >+ <li><label for="issn">[% t('ISSN:') %] </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li> >+ <li><label for="title">[% t('Title:') %] </label> <input type="text" id="title" name="title" value="[% title |html %]" /></li> >+ <li><label for="author">[% t('Author:') %] </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li> >+ <li><label for="subject">[% t('Subject heading:') %] </label> <input type="text" id="subject" name="subject" value="" /></li> >+ <li><label for="srchany">[% t('Keyword (any):') %] </label> <input type="text" id="srchany" name="srchany" value="" /></li> >+ <li><label for="lccall">[% t('LC call number:') %] </label> <input type="text" id="lccall" name="lccall" value="" /></li> >+ <li><label for="controlnumber">[% t('Control no.:') %] </label> <input type="text" id="controlnumber" name="controlnumber" value="" /></li> >+ <li><label for="dewey">[% t('Dewey:') %] </label> <input type="text" id="dewey" name="dewey" value="" /></li> >+ <li><label for="stdid">[% t('Standard ID:') %] </label> <input type="text" id="stdid" name="stdid" value="" /></li> >+ <li><a id="resetZ3950Search" href="#"><i class="fa fa-trash"></i> [% t('Clear search form') %]</a></li> > </ol> > <input type="hidden" name="biblionumber" value="[% biblionumber | html %]" /> > <input type="hidden" name="frameworkcode" value="[% frameworkcode | html %]" /> > </div> > <div class="col-xs-6"> >- <h2>Search targets</h2> >+ <h2>[% t('Search targets') %]</h2> > <div id="z3950_search_targets"> >- <span class="z3950checks"><span class="checkall"><a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a></span> | <span class="clearall"><a id="CheckNone" href="#"><i class="fa fa-remove"></i> Clear all</a></span></span> >+ <span class="z3950checks"><span class="checkall"><a id="CheckAll" href="#"><i class="fa fa-check"></i> [% t('Select all') %]</a></span> | <span class="clearall"><a id="CheckNone" href="#"><i class="fa fa-remove"></i> [% t('Clear all') %]</a></span></span> > [% FOREACH serverloo IN serverloop %] > <p> > [% IF ( serverloo.checked ) %] >@@ -55,7 +56,7 @@ > </div> > <nav class="navbar navbar-default navbar-fixed-bottom"> > <div class="container-fluid"> >- <fieldset class="action"><input type="submit" class="submit" value="Search" /> <a class="cancel close" href="#">Cancel</a></fieldset> >+ <fieldset class="action"><input type="submit" class="submit" value="Search" /> <a class="cancel close" href="#">[% t('Cancel') %]</a></fieldset> > </div> > </nav> > </form> >@@ -64,27 +65,27 @@ > [% ELSE %] > <div class="row"> > <div class="col-xs-12"> >- <h2>Results</h2> >- <p>You searched for: >- [% IF ( title ) %]<em>Title: </em><span class="term">[% title | html %]</span> [% END %] >- [% IF ( author ) %]<em>Author: </em><span class="term">[% author | html %]</span> [% END %] >- [% IF ( isbn ) %]<em>ISBN: </em><span class="term">[% isbn | html %]</span> [% END %] >- [% IF ( issn ) %]<em>ISSN: </em><span class="term">[% issn | html %]</span> [% END %] >- [% IF ( lccall ) %]<em>LC call number: </em><span class="term">[% lccall | html %]</span> [% END %] >- [% IF ( subject ) %]<em>Subject heading: </em><span class="term">[% subject | html %]</span> [% END %] >- [% IF ( controlnumber ) %]<em>Control no: </em><span class="term">[% controlnumber | html %]</span> [% END %] >- [% IF ( dewey ) %]<em>Dewey: </em><span class="term">[% dewey | html %]</span> [%END %] >- [% IF ( srchany ) %]<em>Raw (any): </em><span class="term">[% srchany | html %]</span> [% END %] >- [% IF ( stdid ) %]<em>Standard ID: </em><span class="term">[% stdid | html %]</span> [% END %] >+ <h2>[% t('Results') %]</h2> >+ <p>[% t('You searched for:') %] >+ [% IF ( title ) %]<em>[% t('Title:') %] </em><span class="term">[% title | html %]</span> [% END %] >+ [% IF ( author ) %]<em>[% t('Author:') %] </em><span class="term">[% author | html %]</span> [% END %] >+ [% IF ( isbn ) %]<em>[% t('ISBN:') %] </em><span class="term">[% isbn | html %]</span> [% END %] >+ [% IF ( issn ) %]<em>[% t('ISSN:') %] </em><span class="term">[% issn | html %]</span> [% END %] >+ [% IF ( lccall ) %]<em>[% t('LC call number:') %] </em><span class="term">[% lccall | html %]</span> [% END %] >+ [% IF ( subject ) %]<em>[% t('Subject heading:') %] </em><span class="term">[% subject | html %]</span> [% END %] >+ [% IF ( controlnumber ) %]<em>[% t('Control no:') %] </em><span class="term">[% controlnumber | html %]</span> [% END %] >+ [% IF ( dewey ) %]<em>[% t('Dewey:') %] </em><span class="term">[% dewey | html %]</span> [%END %] >+ [% IF ( srchany ) %]<em>[% t('Raw (any):') %] </em><span class="term">[% srchany | html %]</span> [% END %] >+ [% IF ( stdid ) %]<em>[% t('Standard ID:') %] </em><span class="term">[% stdid | html %]</span> [% END %] > </p> > [% IF ( errconn ) %] > <div class="dialog alert"> > <ul> > [% FOREACH errcon IN errconn %] >- [% IF ( errcon.error == '10000' ) %]<li>Connection failed to [% errcon.server %]</li> >- [% ELSIF ( errcon.error == '10007' ) %]<li>Connection timeout to [% errcon.server %]</li> >- [% ELSIF ( errcon.error == 'xslt_err' ) %]<li>[% errcon.server %]: Warning: XSLT error on search result [% errcon.seq %]</li> >- [% ELSE %]<li>[% errcon.server %] record [% errcon.seq %]: [% errcon.error %]</li> >+ [% IF ( errcon.error == '10000' ) %]<li>[% t('Connection failed to') %] [% errcon.server %]</li> >+ [% ELSIF ( errcon.error == '10007' ) %]<li>[% t('Connection timeout to') %] [% errcon.server %]</li> >+ [% ELSIF ( errcon.error == 'xslt_err' ) %]<li>[% errcon.server %][% t(': Warning: XSLT error on search result') %] [% errcon.seq %]</li> >+ [% ELSE %]<li>[% errcon.server %] [% t('record') %] [% errcon.seq %]: [% errcon.error %]</li> > [% END %] > [% END %] > </ul> >@@ -94,14 +95,14 @@ > [% IF ( breeding_loop ) %] > <table id="resultst"> > <thead> <tr> >- <th>Server</th> >- <th>Title</th> >- <th>Author</th> >- <th>Date</th> >- <th>Edition</th> >- <th>ISBN</th> >- <th>LCCN</th> >- <th>Actions</th> >+ <th>[% t('Server') %]</th> >+ <th>[% t('Title') %]</th> >+ <th>[% t('Author') %]</th> >+ <th>[% t('Date') %]</th> >+ <th>[% t('Edition') %]</th> >+ <th>[% t('ISBN') %]</th> >+ <th>[% t('LCCN') %]</th> >+ <th>[% t('Actions') %]</th> > </tr></thead> > <tbody>[% FOREACH breeding_loo IN breeding_loop %] > [% IF ( breeding_loo.breedingid ) %] >@@ -118,12 +119,12 @@ > <td> > <div class="dropdown"> > <a class="btn btn-default btn-xs dropdown-toggle" id="cataloguesearchactions[% breeding_loo.breedingid %]" role="button" data-toggle="dropdown" href="#"> >- Actions <b class="caret"></b> >+ [% t('Actions') %] <b class="caret"></b> > </a> > <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="cataloguesearchactions[% breeding_loo.breedingid %]"> >- <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" title="MARC" class="previewData"><i class="fa fa-eye"></i> MARC preview</a></li> >- <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% breeding_loo.breedingid %]" title="Card" class="previewData"><i class="fa fa-eye"></i> Card preview</a></li> >- <li><a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-biblionumber="[% breeding_loo.biblionumber %]" data-frameworkcode="[% frameworkcode | uri %]"><i class="fa fa-download"></i> Import</a></li> >+ <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" title="[% t('MARC') %]" class="previewData"><i class="fa fa-eye"></i> [% t('MARC preview') %]</a></li> >+ <li><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&importid=[% breeding_loo.breedingid %]" title="[% t('Card') %]" class="previewData"><i class="fa fa-eye"></i> [% t('Card preview') %]</a></li> >+ <li><a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-biblionumber="[% breeding_loo.biblionumber %]" data-frameworkcode="[% frameworkcode | uri %]"><i class="fa fa-download"></i> [% t('Import') %]</a></li> > </ul> > </div> > </td> >@@ -137,10 +138,10 @@ > <div class="modal-content"> > <div class="modal-header"> > <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">Ã</button> >- <h3 id="dataPreviewLabel">Preview</h3> >+ <h3 id="dataPreviewLabel">[% t('Preview') %]</h3> > </div> > <div class="modal-body"> >- <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> Loading </div> >+ <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> [% t('Loading') %] </div> > </div> > </div> > </div> >@@ -150,7 +151,7 @@ > <form method="post" action="z3950_search.pl" id="page_form" name="page_form" class="checkboxed"> > <input type="hidden" name="op" id="op" value="do_search" /> > <input type="hidden" name="current_page" id="current_page" value="[% current_page %]" /> >- <input type="hidden" id="title" name="title" value="[% title | html %]" /> >+ <input type="hidden" id="title" name="title" value="[% title | html %]" /> > <input type="hidden" id="isbn" name="isbn" value="[% isbn | html %]" /> > <input type="hidden" id="lccall" name="lccall" value="[% lccall | html %]" /> > <input type="hidden" id="controlnumber" name="controlnumber" value="[% controlnumber | html %]" /> >@@ -169,23 +170,23 @@ > [% IF ( show_prevbutton ) %] > <input type="button" name="changepage_prev" value="Previous page" data-currentpage="[% current_page %]" /> > [% END %] >- Page [% current_page %] / [% total_pages %] >+ [% t('Page') %] [% current_page %] / [% total_pages %] > [% IF ( show_nextbutton ) %] > <input type="button" name="changepage_next" value="Next page" data-currentpage="[% current_page %]" /> > [% END %] >- <br />Go to page : <input id="goto_page" name="goto_page" value="[% current_page %]" size="4" /><input type="submit" name="changepage_goto" value="Go" /> >+ <br />[% t('Go to page :') %] <input id="goto_page" name="goto_page" value="[% current_page %]" size="4" /><input type="submit" name="changepage_goto" value="Go" /> > </form> > > [% ELSE %] >- <div class="dialog message">Nothing found.</div> >+ <div class="dialog message">[% t('Nothing found.') %]</div> > [% END %] >-<p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_search.pl"><input type="hidden" name="biblionumber" value="[% biblionumber | html %]"/><input type="hidden" name="frameworkcode" value="[% frameworkcode | html %]"/><input type="submit" value="Try another search"/></form></p> >+<p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_search.pl"><input type="hidden" name="biblionumber" value="[% biblionumber | html %]" /><input type="hidden" name="frameworkcode" value="[% frameworkcode | html %]" /><input type="submit" value="Try another search" /></form></p> > > [% END %] > > </div> > </div> >-[% IF ( numberpending ) %]<h3 align="center">Still [% numberpending %] servers to search</h3>[% END %] >+[% IF ( numberpending ) %]<h3 align="center">[% t('Still') %] [% numberpending %] [% t('servers to search') %]</h3>[% END %] > > [% MACRO jsinclude BLOCK %] > [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] >-- >2.17.1
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 20988
:
76333
|
76334
|
76335
|
76336
|
76337
|
76338
|
76339
|
76340
|
76341
|
76342
|
76343
|
76344
|
76345
|
76346
|
76347
|
76348
|
76349
|
76350
|
76351
|
76352
|
76353
|
76354
|
76355
|
76356
|
76357
|
76358
|
76359
|
76360
|
76361
|
76362
|
76363
|
76364
|
76365
|
76934
|
76935