Bugzilla – Attachment 76364 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
Bug-20988-koha-tmplintranet-tmplprogenmodules.patch (text/plain), 307.78 KB, created by
Julian Maurice
on 2018-06-25 07:24:22 UTC
(
hide
)
Description:
Bug 20988: koha-tmpl/intranet-tmpl/prog/en/modules
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2018-06-25 07:24:22 UTC
Size:
307.78 KB
patch
obsolete
>From 5b2790182086ac86c6d3ee4e68d652545702ae6d Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Mon, 25 Jun 2018 08:51:52 +0200 >Subject: [PATCH] Bug 20988: koha-tmpl/intranet-tmpl/prog/en/modules > >--- > .../intranet-tmpl/prog/en/modules/about.tt | 1451 +++++++++-------- > .../intranet-tmpl/prog/en/modules/auth.tt | 55 +- > .../prog/en/modules/batch/print-notices.tt | 3 +- > .../prog/en/modules/common/patron_search.tt | 41 +- > .../prog/en/modules/errors/errorpage.tt | 25 +- > .../prog/en/modules/ill/ill-requests.tt | 151 +- > .../prog/en/modules/intranet-main.tt | 55 +- > .../prog/en/modules/reserve/request.tt | 295 ++-- > .../prog/en/modules/reviews/reviewswaiting.tt | 29 +- > .../en/modules/services/itemrecorddisplay.tt | 3 +- > .../prog/en/modules/suggestion/suggestion.tt | 383 ++--- > .../prog/en/modules/tags/list.tt | 29 +- > .../prog/en/modules/tags/review.tt | 147 +- > 13 files changed, 1339 insertions(+), 1328 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >index f6cf9ae592..5920e0cb64 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >@@ -1,139 +1,140 @@ >+[% PROCESS 'i18n.inc' %] > [% USE HtmlTags %] > [% USE Koha %] > [% USE KohaDates %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › About Koha</title> >+<title>[% t('Koha ⺠About Koha') %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body id="about_about" class="about"> > [% INCLUDE 'header.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › About Koha</div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> [% t('⺠About Koha') %]</div> > > > <div class="main container-fluid"> > <div class="row"> > <div class="col-md-12"> > >- <h1>About Koha</h1> >+ <h1>[% t('About Koha') %]</h1> > > <div id="abouttabs" class="toptabs numbered"> > <ul> >- <li><a href="#about">Server information</a></li> >- <li><a href="#perl">Perl modules</a></li> >- <li><a href="#sysinfo">System information</a></li> >- <li><a href="#team">Koha team</a></li> >- <li><a href="#licenses">Licenses</a></li> >- <li><a href="#translations">Translations</a></li> >- <li><a href="#history">Timeline</a></li> >+ <li><a href="#about">[% t('Server information') %]</a></li> >+ <li><a href="#perl">[% t('Perl modules') %]</a></li> >+ <li><a href="#sysinfo">[% t('System information') %]</a></li> >+ <li><a href="#team">[% t('Koha team') %]</a></li> >+ <li><a href="#licenses">[% t('Licenses') %]</a></li> >+ <li><a href="#translations">[% t('Translations') %]</a></li> >+ <li><a href="#history">[% t('Timeline') %]</a></li> > </ul> > > <div id="about"> > > <table> >- <caption>Server information</caption> >- <tr><th scope="row">Koha version: </th><td>[% kohaVersion |html %]</td></tr> >- <tr><th scope="row">OS version ('uname -a'): </th><td>[% osVersion |html %]</td></tr> >- <tr><th scope="row">Perl interpreter: </th><td>[% perlPath |html %]</td></tr> >- <tr><th scope="row">Perl version: </th><td>[% perlVersion |html %]</td></tr> >- <tr><th scope="row">Perl @INC: </th><td> >+ <caption>[% t('Server information') %]</caption> >+ <tr><th scope="row">[% t('Koha version:') %] </th><td>[% kohaVersion |html %]</td></tr> >+ <tr><th scope="row">[% t('OS version (\'uname -a\'):') %] </th><td>[% osVersion |html %]</td></tr> >+ <tr><th scope="row">[% t('Perl interpreter:') %] </th><td>[% perlPath |html %]</td></tr> >+ <tr><th scope="row">[% t('Perl version:') %] </th><td>[% perlVersion |html %]</td></tr> >+ <tr><th scope="row">[% t('Perl @INC:') %] </th><td> > [% FOREACH perlIncPat IN perlIncPath %] > [% perlIncPat.perlinc |html %] <br /> > [% END %] > </td></tr> >- <tr><th scope="row">MySQL version: </th><td>[% mysqlVersion |html %]</td></tr> >- <tr><th scope="row">Apache version: </th><td>[% apacheVersion |html %]</td></tr> >+ <tr><th scope="row">[% t('MySQL version:') %] </th><td>[% mysqlVersion |html %]</td></tr> >+ <tr><th scope="row">[% t('Apache version:') %] </th><td>[% apacheVersion |html %]</td></tr> > [% IF (is_psgi) %] >- <tr><th scope="row">PSGI: </th><td>[% psgi_server |html %]</td></tr> >+ <tr><th scope="row">[% t('PSGI:') %] </th><td>[% psgi_server |html %]</td></tr> > [% END %] > [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' %] > <tr> >- <th scope="row">Elasticsearch: </th> >+ <th scope="row">[% t('Elasticsearch:') %] </th> > [% IF elasticsearch_fatal_config_error %] > <td><span class="status_warn">[% elasticsearch_fatal_config_error %]</span></td> > [% ELSE %] > <td> >- Nodes: >+ [% t('Nodes:') %] > <span>[% elasticsearch_status.nodes.join(' / ') %]</span> > | >- Status: >+ [% t('Status:') %] > [% IF elasticsearch_status.running %] >- <span class="status_ok">running</span> >+ <span class="status_ok">[% t('running') %]</span> > | >- Indices: >+ [% t('Indices:') %] > [% FOREACH index IN elasticsearch_status.indexes %] >- [% index.index_name %] (count: <emph>[% index.count %]</emph>)[% UNLESS loop.last %], [% END %] >+ [% index.index_name %] [% t('(count:') %] <emph>[% index.count %]</emph>)[% UNLESS loop.last %], [% END %] > [% END %] > [% ELSE %] >- <span class="status_warn">not running</span> >+ <span class="status_warn">[% t('not running') %]</span> > [% END %] > </td> > [% END %] > </tr> > [% END %] >- <tr><th scope="row">Memcached: </th> >+ <tr><th scope="row">[% t('Memcached:') %] </th> > <td> >- Servers: [% IF memcached_servers %]<span>[% memcached_servers | html %]</span> >- [% ELSE %]<span>undefined</span>[% END %] | >- Namespace: [% IF memcached_namespace %]<span>[% memcached_namespace | html %]</span> >- [% ELSE %]<span>undefined</span>[% END %] | >- Status: [% IF memcached_servers %] >+ [% t('Servers:') %] [% IF memcached_servers %]<span>[% memcached_servers | html %]</span> >+ [% ELSE %]<span>[% t('undefined') %]</span>[% END %] | >+ [% t('Namespace:') %] [% IF memcached_namespace %]<span>[% memcached_namespace | html %]</span> >+ [% ELSE %]<span>[% t('undefined') %]</span>[% END %] | >+ [% t('Status:') %] [% IF memcached_servers %] > [% IF memcached_running and is_memcached_still_active %] >- <span class="status_ok">running</span>. >+ <span class="status_ok">[% t('running') %]</span>. > [% ELSE %] >- <span class="status_warn">not running</span>. >+ <span class="status_warn">[% t('not running') %]</span>. > [% IF is_psgi %] >- <span>Remember memcached needs to be started before Plack.</span> >+ <span>[% t('Remember memcached needs to be started before Plack.') %]</span> > [% END %] > [% END %] > [% ELSE %] >- <span>unknown</span> >+ <span>[% t('unknown') %]</span> > [% END %] | >- Config read from: >+ [% t('Config read from:') %] > [% SWITCH where_is_memcached_config %] > [% CASE 'config_only' %] >- <span class="status_ok">koha-conf.xml</span> >+ <span class="status_ok">[% t('koha-conf.xml') %]</span> > [% CASE 'ENV_only' %] >- <span class="status_warn">ENV</span> Note that the right place to define the memcached config is in your $KOHA_CONF file >+ <span class="status_warn">[% t('ENV') %]</span> [% t('Note that the right place to define the memcached config is in your $KOHA_CONF file') %] > [% CASE 'both' %] >- <span class="status_warn">ENV and koha-conf.xml</span> Note that the right place to define the memcached config is in your $KOHA_CONF file. To avoid any misunderstanding you should not export the memcached config from ENV. >+ <span class="status_warn">[% t('ENV and koha-conf.xml') %]</span> [% t('Note that the right place to define the memcached config is in your $KOHA_CONF file. To avoid any misunderstanding you should not export the memcached config from ENV.') %] > [% CASE # nowhere %] >- <span class="status_warn">Nowhere</span> Note that the right place to define the memcached config is in your $KOHA_CONF file. Currently you do not have a valid memcached configuration defined. >+ <span class="status_warn">[% t('Nowhere') %]</span> [% t('Note that the right place to define the memcached config is in your $KOHA_CONF file. Currently you do not have a valid memcached configuration defined.') %] > [% END %] > [% IF effective_caching_method != 'Cache::Memcached::Fast' %] >- | Effective caching method: [% effective_caching_method %] >+ [% t('| Effective caching method:') %] [% effective_caching_method %] > [% END %] > </td> > </tr> >- <tr><th scope="row">Zebra version: </th><td>[% zebraVersion |html %]</td></tr> >+ <tr><th scope="row">[% t('Zebra version:') %] </th><td>[% zebraVersion |html %]</td></tr> > [% IF (errZebraConnection == 10000) %] >- <tr><th scope="row"><b>Error</b> </th><td>Zebra server seems not to be available. Is it started?</td></tr> >+ <tr><th scope="row"><b>[% t('Error') %]</b> </th><td>[% t('Zebra server seems not to be available. Is it started?') %]</td></tr> > [% ELSIF (errZebraConnection) %] >- <tr><th scope="row"><b>Warning</b> </th><td>Error message from Zebra: [% ( errZebraConnection ) %] </td></tr> >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td>[% t('Error message from Zebra:') %] [% ( errZebraConnection ) %] </td></tr> > [% END %] > <tr> >- <th scope="row">Date and time: </th> >+ <th scope="row">[% t('Date and time:') %] </th> > <td>[% current_date_and_time | $KohaDates with_hours => 1 %]</td> > </tr> > <tr> > [% timezone_config_class = (time_zone.config_invalid) ? 'status_warn' : '' %] > [% timezone_env_class = (time_zone.env_invalid) ? 'status_warn' : '' %] >- <th scope="row">Time zone: </th> >- <td>Used: <span>[% time_zone.actual %]</span> >+ <th scope="row">[% t('Time zone:') %] </th> >+ <td>[% t('Used:') %] <span>[% time_zone.actual %]</span> > [% IF time_zone.actual_bad_tz_fallback %] >- <span>(This is a fallback value due to a bad configuration)</span> >+ <span>[% t('(This is a fallback value due to a bad configuration)') %]</span> > [% END %] > | >- Config: [% IF time_zone.config != '' %] >+ [% t('Config:') %] [% IF time_zone.config != '' %] > <span class="[% timezone_config_class %]">[% time_zone.config %]</span> > [% ELSE %] >- <span>Undefined</span> >+ <span>[% t('Undefined') %]</span> > [% END %] | >- Environment (TZ): [% IF time_zone.environment != '' %] >+ [% t('Environment (TZ):') %] [% IF time_zone.environment != '' %] > <span class="[% timezone_env_class %]">[% time_zone.environment %]</span> > [% ELSE %] >- <span>Undefined</span> >+ <span>[% t('Undefined') %]</span> > [% END %] > </td> > </tr> >@@ -141,29 +142,29 @@ > </div> > <div id="perl"> > <table style="cursor:pointer"> >- <caption>Perl modules</caption> >+ <caption>[% t('Perl modules') %]</caption> > [% FOREACH tabl IN table %] > <tr> > [% FOREACH ro IN tabl.row %] > [% IF ( ro.current ) %] > [% IF ( ro.require ) %] >- <th scope="row" style="font-weight:bold;" title="Module current"> >+ <th scope="row" style="font-weight:bold;" title="[% t('Module current') %]"> > [% ELSE %] >- <th scope="row" style="font-weight:normal" title="Module current"> >+ <th scope="row" style="font-weight:normal" title="[% t('Module current') %]"> > [% END %] > [% ELSIF ( ro.upgrade ) %] > [% IF ( ro.require ) %] >- <th scope="row" style="background-color:#FFCB2F;font-weight:bold;" title="Module upgrade needed"> >+ <th scope="row" style="background-color:#FFCB2F;font-weight:bold;" title="[% t('Module upgrade needed') %]"> > [% ELSE %] >- <th scope="row" style="background-color:#FFCB2F;font-weight:normal" title="Module upgrade needed"> >+ <th scope="row" style="background-color:#FFCB2F;font-weight:normal" title="[% t('Module upgrade needed') %]"> > [% END %] > [% ELSE %] > [% IF ( ro.name == '' ) %] > <th> > [% ELSIF ( ro.require ) %] >- <th scope="row" style="background-color:#FF8A8A;font-weight:bold;" title="Required module missing"> >+ <th scope="row" style="background-color:#FF8A8A;font-weight:bold;" title="[% t('Required module missing') %]"> > [% ELSE %] >- <th scope="row" style="background-color:#FF8A8A;font-weight:normal" title="Optional module missing"> >+ <th scope="row" style="background-color:#FF8A8A;font-weight:normal" title="[% t('Optional module missing') %]"> > [% END %] > [% END %] > [% IF ( ro.name ) %] >@@ -175,7 +176,7 @@ > [% ELSIF ( ro.version ) %] > <td>[% ro.version %] > [% ELSE %] >- <td style="font-weight:bold">Not Installed [% END %]</td> >+ <td style="font-weight:bold">[% t('Not Installed') %] [% END %]</td> > [% END %] > </tr> > [% END %] >@@ -185,119 +186,119 @@ > <div id="sysinfo"> > [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron || warnPrefAnonymousPatron_PatronDoesNotExist || warnNoActiveCurrency || QueryParserError || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || has_ai_issues || oauth2_missing_deps %] > [% IF (warnIsRootUser) %] >- <h2>Warning regarding current user</h2> >- <p>You are logged in as the database administrative user. This is not recommended because some parts of Koha will not function as expected when using this account.</p> >- <p>Please log in instead with a regular staff account. To create a staff account, create a library, a patron category 'Staff' and add a new patron. Then give this patron permissions from 'More' in the toolbar.</p> >+ <h2>[% t('Warning regarding current user') %]</h2> >+ <p>[% t('You are logged in as the database administrative user. This is not recommended because some parts of Koha will not function as expected when using this account.') %]</p> >+ <p>[% t('Please log in instead with a regular staff account. To create a staff account, create a library, a patron category \'Staff\' and add a new patron. Then give this patron permissions from \'More\' in the toolbar.') %]</p> > [% END %] > > [% IF has_ai_issues %] >- <h2>Data problems</h2> >- <p>Some of your tables have problems with their auto_increment values which may lead to data loss.</p> >- <p><strong>You should not ignore this warning.</strong></p> >- <p>The problem is that InnoDB does not keep auto_increment across SQL server restarts (it is only set in memory). So on server startup the auto_increment values are set to max(table.id)+1.</p> >- <p>To know how to avoid this problem see the related wiki page: >- <a href="https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix">DBMS auto increment fix</a> >+ <h2>[% t('Data problems') %]</h2> >+ <p>[% t('Some of your tables have problems with their auto_increment values which may lead to data loss.') %]</p> >+ <p><strong>[% t('You should not ignore this warning.') %]</strong></p> >+ <p>[% t('The problem is that InnoDB does not keep auto_increment across SQL server restarts (it is only set in memory). So on server startup the auto_increment values are set to max(table.id)+1.') %]</p> >+ <p>[% t('To know how to avoid this problem see the related wiki page:') %] >+ <a href="https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix">[% t('DBMS auto increment fix') %]</a> > </p> > >- <h3>Problems found</h3> >+ <h3>[% t('Problems found') %]</h3> > [% IF ai_patrons %] >- <h4>Patrons</h4> >- <p>The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p> >+ <h4>[% t('Patrons') %]</h4> >+ <p>[% t('The following ids exist in both tables') %] [% "borrowers" | $HtmlTags tag="strong" %] [% t('and') %] [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p> > <p>[% FOR p IN ai_patrons %][% p.borrowernumber %][% UNLESS loop.last %], [% END %][% END %]</p> > [% END %] > [% IF ai_biblios %] >- <h4>Biblios</h4> >- <p>The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p> >+ <h4>[% t('Biblios') %]</h4> >+ <p>[% t('The following ids exist in both tables') %] [% "biblio" | $HtmlTags tag="strong" %] [% t('and') %] [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p> > <p>[% FOR b IN ai_biblios %][% b.biblionumber %][% UNLESS loop.last %], [% END %][% END %]</p> > [% END %] > [% IF ai_items %] >- <h4>Items</h4> >- <p>The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p> >+ <h4>[% t('Items') %]</h4> >+ <p>[% t('The following ids exist in both tables') %] [% "items" | $HtmlTags tag="strong" %] [% t('and') %] [% "deleteditems" | $HtmlTags tag="strong" %]:</p> > <p>[% FOR i IN ai_items %][% i.itemnumber %][% UNLESS loop.last %], [% END %][% END %]</p> > [% END %] > [% IF ai_checkouts %] >- <h4>Checkouts</h4> >- <p>The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p> >+ <h4>[% t('Checkouts') %]</h4> >+ <p>[% t('The following ids exist in both tables') %] [% "issues" | $HtmlTags tag="strong" %] [% t('and') %] [% "old_issues" | $HtmlTags tag="strong" %]:</p> > <p>[% FOR c IN ai_checkouts %][% c.issue_id %][% UNLESS loop.last %], [% END %][% END %]</p> > [% END %] > [% IF ai_holds %] >- <h4>Holds</h4> >- <p>The following ids exist in both tables [% "holds" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p> >+ <h4>[% t('Holds') %]</h4> >+ <p>[% t('The following ids exist in both tables') %] [% "holds" | $HtmlTags tag="strong" %] [% t('and') %] [% "old_reserves" | $HtmlTags tag="strong" %]:</p> > <p>[% FOR h IN ai_holds %][% h.reserve_id %][% UNLESS loop.last %], [% END %][% END %]</p> > [% END %] >- <br/> >+ <br /> > [% END %] > > [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron || warnPrefAnonymousPatron_PatronDoesNotExist || warnNoActiveCurrency || QueryParserError || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || oauth2_missing_deps %] >- <h2>Warnings regarding the system configuration</h2> >+ <h2>[% t('Warnings regarding the system configuration') %]</h2> > <table> >- <caption>Preferences and parameters</caption> >+ <caption>[% t('Preferences and parameters') %]</caption> > [% IF (warnPrefBiblioAddsAuthorities) %] >- <tr><th scope="row"><b>Warning</b> </th><td>System preference 'AutoCreateAuthorities' set, but needs 'BiblioAddsAuthorities' set as well.</td></tr> >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td>[% t('System preference \'AutoCreateAuthorities\' set, but needs \'BiblioAddsAuthorities\' set as well.') %]</td></tr> > [% END %] > [% IF (warnPrefEasyAnalyticalRecords) %] >- <tr><th scope="row"><b>Warning</b> </th><td>System preference 'EasyAnalyticalRecords' set, but UseControlNumber preference is set to 'Use'. Set it to 'Don't use' or else the 'Show analytics' links in the staff client and the OPAC will be broken.</td></tr> >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td>[% t('System preference \'EasyAnalyticalRecords\' set, but UseControlNumber preference is set to \'Use\'. Set it to \'Don\'t use\' or else the \'Show analytics\' links in the staff client and the OPAC will be broken.') %]</td></tr> > [% END %] > [% IF warnPrefAnonymousPatron %] >- <tr><th scope="row"><b>Warning</b> </th><td>System preference 'OPACPrivacy' set, but AnonymousPatron preference is set to '0'. Set it to a valid borrower number if you want that this feature works correctly.</td></tr> >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td>[% t('System preference \'OPACPrivacy\' set, but AnonymousPatron preference is set to \'0\'. Set it to a valid borrower number if you want that this feature works correctly.') %]</td></tr> > [% END %] > [% IF warnPrefAnonymousPatron_PatronDoesNotExist %] >- <tr><th scope="row"><b>Warning</b> </th><td>Some patrons have requested a privacy on returning item but the AnonymousPatron pref is not set correctly. Set it to a valid borrower number if you want that this feature works correctly.</td></tr> >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td>[% t('Some patrons have requested a privacy on returning item but the AnonymousPatron pref is not set correctly. Set it to a valid borrower number if you want that this feature works correctly.') %]</td></tr> > [% END %] > [% IF warnNoActiveCurrency %] >- <tr><th scope="row"><b>Warning</b> </th><td>No active currency is defined. Please go to <a href="/cgi-bin/koha/admin/currency.pl">Administration > Currencies and exchange rates</a> and mark one currency as active.</td></tr> >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td>[% t('No active currency is defined. Please go to') %] <a href="/cgi-bin/koha/admin/currency.pl">[% t('Administration > Currencies and exchange rates') %]</a> [% t('and mark one currency as active.') %]</td></tr> > [% END %] > [% IF warnStatisticsFieldsError %] >- <tr><th scope="row"><b>Warning</b> </th><td>System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError %] </td></tr> >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td>[% t('System preference \'StatisticsFields\' contains field names not belonging to the items database table:') %] [% warnStatisticsFieldsError %] </td></tr> > [% END %] > [% IF QueryParserError %] >- <tr><th scope="row"><b>Warning</b> </th><td> >- You have set UseQueryParser but there was a problem inititializing QueryParser. >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td> >+ [% t('You have set UseQueryParser but there was a problem inititializing QueryParser.') %] > [% IF QueryParserError.fallback %] >- The 'queryparser_config' entry is missing in your configuration file. >- The following configuration file was used without success: [% QueryParserError.file %]. >+ [% t('The \'queryparser_config\' entry is missing in your configuration file.') %] >+ [% t('The following configuration file was used without success:') %] [% QueryParserError.file %]. > [% ELSE %] >- The following configuration file was used without success: [% QueryParserError.file %]. >+ [% t('The following configuration file was used without success:') %] [% QueryParserError.file %]. > [% END %] > </td> > </tr> > [% END %] > [% IF AutoSelfCheckPatronDoesNotHaveSelfCheckPerm %] >- <tr><th scope="row"><b>Warning</b> </th><td> >- The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission. >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td> >+ [% t('The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission.') %] > </td></tr> > [% END %] > [% IF AutoSelfCheckPatronHasTooManyPerm %] >- <tr><th scope="row"><b>Warning</b> </th><td> >- The patron used for the self checkout module at the OPAC has too many permissions. They should only have self_check => self_checkout_module. >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td> >+ [% t('The patron used for the self checkout module at the OPAC has too many permissions. They should only have self_check => self_checkout_module.') %] > </td></tr> > [% END %] > [% IF warnNoTemplateCaching %] >- <tr><th scope="row"><b>Warning</b> </th><td> >- You are missing the <template_cache_dir> entry in your koha-conf.xml file. >- That will bring a performance boost to enable it. >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td> >+ [% t('You are missing the <template_cache_dir> entry in your koha-conf.xml file.') %] >+ [% t('That will bring a performance boost to enable it.') %] > </td></tr> > [% END %] > [% IF warnILLConfiguration %] > [% IF no_ill_backends %] >- <tr><th scope="row"><b>Warning</b> </th><td> >- The ILL module is enabled, but there are no backends available. >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td> >+ [% t('The ILL module is enabled, but there are no backends available.') %] > </td></tr> > [% END %] > [% IF ill_partner_code_not_defined %] >- <tr><th scope="row"><b>Warning</b> </th><td> >- The ILL module is enabled, but no 'partner_code' defined in koha-conf.xml. Falling back to the hardcoded 'ILLLIBS'. >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td> >+ [% t('The ILL module is enabled, but no \'partner_code\' defined in koha-conf.xml. Falling back to the hardcoded \'ILLLIBS\'.') %] > </td></tr> > [%END %] > [% IF ill_partner_code_doesnt_exist %] >- <tr><th scope="row"><b>Warning</b> </th><td> >- The ILL module is enabled, but the configured 'partner_code' ([% ill_partner_code_doesnt_exist %]) is not defined on the system. >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td> >+ [% t('The ILL module is enabled, but the configured \'partner_code\' (') %][% ill_partner_code_doesnt_exist %][% t(') is not defined on the system.') %] > </td></tr> > [% END %] > [% END %] > [% IF oauth2_missing_deps %] >- <tr><th scope="row"><b>Warning</b> </th><td> >- System preference 'RESTOAuth2ClientCredentials' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled. >+ <tr><th scope="row"><b>[% t('Warning') %]</b> </th><td> >+ [% t('System preference \'RESTOAuth2ClientCredentials\' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled.') %] > </td></tr> > [% END %] > </table> >@@ -305,121 +306,121 @@ > > [% IF xml_config_warnings.size %] > <table> >- <caption>XML configuration file</caption> >+ <caption>[% t('XML configuration file') %]</caption> > [% FOREACH config_entry IN xml_config_warnings %] > [% IF config_entry.error == 'zebra_bib_index_mode_warn' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>The <zebra_bib_index_mode> entry is missing in your configuration file. >- It should be set to 'dom' or 'grs1' (deprecated). >- It will default to 'dom'. >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('The <zebra_bib_index_mode> entry is missing in your configuration file.') %] >+ [% t('It should be set to \'dom\' or \'grs1\' (deprecated).') %] >+ [% t('It will default to \'dom\'.') %] > </td> > </tr> > [% ELSIF config_entry.error == 'zebra_bib_mode_seems_grs1' %] > <tr> >- <th scope="row"><b>Info</b></th> >- <td>Your configuration file still seems to be set up for 'grs1'.</td> >+ <th scope="row"><b>[% t('Info') %]</b></th> >+ <td>[% t('Your configuration file still seems to be set up for \'grs1\'.') %]</td> > </tr> > [% ELSIF config_entry.error == 'zebra_bib_mode_seems_dom' %] > <tr> >- <th scope="row"><b>Info</b></th> >- <td>Your configuration file seems to be set up for 'dom'.</td> >+ <th scope="row"><b>[% t('Info') %]</b></th> >+ <td>[% t('Your configuration file seems to be set up for \'dom\'.') %]</td> > </tr> > [% ELSIF config_entry.error == 'zebra_auth_index_mode_warn' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>The <zebra_auth_index_mode> entry is missing in your configuration file. >- It should be set to 'dom' or 'grs1' (deprecated). >- It will default to 'dom'. >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('The <zebra_auth_index_mode> entry is missing in your configuration file.') %] >+ [% t('It should be set to \'dom\' or \'grs1\' (deprecated).') %] >+ [% t('It will default to \'dom\'.') %] > </td> > </tr> > [% ELSIF config_entry.error == 'zebra_auth_mode_seems_grs1' %] > <tr> >- <th scope="row"><b>Info</b></th> >- <td>Your configuration file still seems to be set up for 'grs1'.</td> >+ <th scope="row"><b>[% t('Info') %]</b></th> >+ <td>[% t('Your configuration file still seems to be set up for \'grs1\'.') %]</td> > </tr> > [% ELSIF config_entry.error == 'zebra_auth_mode_seems_dom' %] > <tr> >- <th scope="row"><b>Info</b></th> >- <td>Your configuration file seems to be set up for 'dom'.</td> >+ <th scope="row"><b>[% t('Info') %]</b></th> >+ <td>[% t('Your configuration file seems to be set up for \'dom\'.') %]</td> > </tr> > [% ELSIF config_entry.error == 'zebra_bib_grs_warn' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>The <zebra_bib_index_mode> entry is set to 'grs1'. >- GRS-1 support is now deprecated and will be removed in future releases. >- Please use DOM instead. To switch follow this page of wiki: >- <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a> >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('The <zebra_bib_index_mode> entry is set to \'grs1\'.') %] >+ [% t('GRS-1 support is now deprecated and will be removed in future releases.') %] >+ [% t('Please use DOM instead. To switch follow this page of wiki:') %] >+ <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">[% t('Switching to dom indexing') %]</a> > </td> > </tr> > [% ELSIF config_entry.error == 'zebra_bib_index_mode_mismatch_warn' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>The <zebra_bib_index_mode> entry is set to 'dom', but your system still appears to be set up for 'grs1' indexing.</td> >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('The <zebra_bib_index_mode> entry is set to \'dom\', but your system still appears to be set up for \'grs1\' indexing.') %]</td> > </tr> > [% ELSIF config_entry.error == 'zebra_auth_grs_warn' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>The <zebra_auth_index_mode> entry is set to 'grs1'. >- GRS-1 support is now deprecated and will be removed in future releases. >- Please use DOM instead. To switch follow this page of wiki: >- <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a> >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('The <zebra_auth_index_mode> entry is set to \'grs1\'.') %] >+ [% t('GRS-1 support is now deprecated and will be removed in future releases.') %] >+ [% t('Please use DOM instead. To switch follow this page of wiki:') %] >+ <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">[% t('Switching to dom indexing') %]</a> > </td> > </tr> > [% ELSIF config_entry.error == 'zebra_auth_index_mode_mismatch_warn' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>The <zebra_auth_index_mode> entry is set to 'dom', but your system still appears to be set up for 'grs1' indexing.</td> >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('The <zebra_auth_index_mode> entry is set to \'dom\', but your system still appears to be set up for \'grs1\' indexing.') %]</td> > </tr> > [% ELSIF config_entry.error == 'queryparser_entry_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>You have set UseQueryParser but the 'queryparser_config' entry is missing in your configuration >- file. [% config_entry.file %] is used as a fallback. >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('You have set UseQueryParser but the \'queryparser_config\' entry is missing in your configuration') %] >+ [% t('file.') %] [% config_entry.file %] [% t('is used as a fallback.') %] > </td> > </tr> > [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>The <use_zebra_facets> entry is missing in your configuration file. Falling back >- to legacy facet calculation. >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('The <use_zebra_facets> entry is missing in your configuration file. Falling back') %] >+ [% t('to legacy facet calculation.') %] > </td> > </tr> > [% ELSIF config_entry.error == 'use_zebra_facets_needs_dom' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>You have set <use_zebra_facets> but the <zebra_bib_index_mode> is not set to 'dom'. Falling back >- to legacy facet calculation. >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('You have set <use_zebra_facets> but the <zebra_bib_index_mode> is not set to \'dom\'. Falling back') %] >+ [% t('to legacy facet calculation.') %] > </td> > </tr> > [% ELSIF config_entry.error == 'log4perl_entry_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>You are missing the <log4perl_conf> entry in your koha-conf.xml file. Please >- add it, pointing to the log4perl.conf file for your Koha instance. >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('You are missing the <log4perl_conf> entry in your koha-conf.xml file. Please') %] >+ [% t('add it, pointing to the log4perl.conf file for your Koha instance.') %] > </td> > </tr> > [% ELSIF config_entry.error == 'uploadpath_entry_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>You are missing the <upload_path> entry in your koha-conf.xml file. Please >- add it, pointing to the configured file upload directory for your Koha instance. >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('You are missing the <upload_path> entry in your koha-conf.xml file. Please') %] >+ [% t('add it, pointing to the configured file upload directory for your Koha instance.') %] > </td> > </tr> > [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>You are missing the <upload_path> entry in your koha-conf.xml file. Please >- add it, pointing to the configured file upload directory for your Koha instance. >- Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work. >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('You are missing the <upload_path> entry in your koha-conf.xml file. Please') %] >+ [% t('add it, pointing to the configured file upload directory for your Koha instance.') %] >+ [% t('Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work.') %] > </td> > </tr> > [% ELSIF config_entry.error == 'tmp_path_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >- <td>You are missing the <tmp_path> entry in your koha-conf.xml file. Please >- add it, pointing to the configured temporary directory for your Koha instance. >- The effective temporary directory is '[% config_entry.effective_tmp_dir %]'. >+ <th scope="row"><b>[% t('Warning') %]</b></th> >+ <td>[% t('You are missing the <tmp_path> entry in your koha-conf.xml file. Please') %] >+ [% t('add it, pointing to the configured temporary directory for your Koha instance.') %] >+ [% t('The effective temporary directory is \'') %][% config_entry.effective_tmp_dir %]'. > </td> > </tr> > [% END %] >@@ -427,653 +428,653 @@ > </table> > [% END %] > [% ELSE %] >- <p>No warnings.</p> >+ <p>[% t('No warnings.') %]</p> > [% END %] > </div> > > <div id="team"> >- <h2>Special thanks to the following organizations</h2> >+ <h2>[% t('Special thanks to the following organizations') %]</h2> > <ul> >- <li><a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)</li> >- <li>The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li> >- <li><a href="http://www.emn.fr">EMN (Ecole des Mines de Nantes)</a>, France (Suggestions, Stats wizards and improved LDAP sponsorship)</li> >- <li><a href="http://www.mines-paristech.fr">Mines Paristech (previously Ecole Nationale Supérieure des Mines de Paris)</a>, France (biblio frameworks, MARC authorities, OPAC basket, Serials sponsorship)</li> >- <li><a href="http://www.mediathequeouestprovence.fr/">SAN-Ouest Provence</a>, France (Koha 3.0 enhancements to patrons and holds modules)</li> >- <li>The <a href="http://ccfls.org">Crawford County Federated Library System</a>, PA, USA (Koha 3.0 Zebra Integration sponsorship)</li> >- <li>The <a href="http://www.geauga.lib.oh.us/">Geauga County Public Library</a>, OH, USA (Koha 3.0 beta testing)</li> >- <li>The <a href="http://library.neu.edu.tr">Near East University</a>, Cyprus</li> >- <li>OPUS International Consultants, Wellington, New Zealand (Corporate Serials sponsorship)</li> >- <li><a href="http://www.famfamfam.com/">famfamfam.com</a> Birmingham (UK) based developer Mark James for the famfamfam Silk iconset.</li> >- <li><a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)</li> >+ <li><a href="http://library.org.nz">[% t('Horowhenua Library Trust') %]</a>[% t(', New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)') %]</li> >+ <li>[% t('The') %] <a href="http://www.myacpl.org/">[% t('Athens County Public Libraries') %]</a>[% t(', Ohio, USA (MARC sponsorship, documentation, template maintenance)') %]</li> >+ <li><a href="http://www.emn.fr">[% t('EMN (Ecole des Mines de Nantes)') %]</a>[% t(', France (Suggestions, Stats wizards and improved LDAP sponsorship)') %]</li> >+ <li><a href="http://www.mines-paristech.fr">[% t('Mines Paristech (previously Ecole Nationale Supérieure des Mines de Paris)') %]</a>[% t(', France (biblio frameworks, MARC authorities, OPAC basket, Serials sponsorship)') %]</li> >+ <li><a href="http://www.mediathequeouestprovence.fr/">[% t('SAN-Ouest Provence') %]</a>[% t(', France (Koha 3.0 enhancements to patrons and holds modules)') %]</li> >+ <li>[% t('The') %] <a href="http://ccfls.org">[% t('Crawford County Federated Library System') %]</a>[% t(', PA, USA (Koha 3.0 Zebra Integration sponsorship)') %]</li> >+ <li>[% t('The') %] <a href="http://www.geauga.lib.oh.us/">[% t('Geauga County Public Library') %]</a>[% t(', OH, USA (Koha 3.0 beta testing)') %]</li> >+ <li>[% t('The') %] <a href="http://library.neu.edu.tr">[% t('Near East University') %]</a>[% t(', Cyprus') %]</li> >+ <li>[% t('OPUS International Consultants, Wellington, New Zealand (Corporate Serials sponsorship)') %]</li> >+ <li><a href="http://www.famfamfam.com/">[% t('famfamfam.com') %]</a> [% t('Birmingham (UK) based developer Mark James for the famfamfam Silk iconset.') %]</li> >+ <li><a href="http://www.ashs.school.nz/">[% t('Albany Senior High School') %]</a>[% t(', Auckland, New Zealand (OPAC \'star-ratings\' sponsorship)') %]</li> > </ul> > >- <h2>Koha <span style="color:red" title="Koha version numbering has jumped from 3.22 to 16.05 (yy.mm) as from May 2016">18.05</span> release team</h2> >+ <h2>[% t('Koha') %] <span style="color:red" title="[% t('Koha version numbering has jumped from 3.22 to 16.05 (yy.mm) as from May 2016') %]">[% t('18.05') %]</span> [% t('release team') %]</h2> > <ul> >- <li><strong>Release manager:</strong> >- <a href="https://www.openhub.net/p/koha/contributors/6618545125093">Jonathan Druart</a> >+ <li><strong>[% t('Release manager:') %]</strong> >+ <a href="https://www.openhub.net/p/koha/contributors/6618545125093">[% t('Jonathan Druart') %]</a> > </li> >- <li><strong>Release manager assistant:</strong> >- <a href="https://www.openhub.net/p/koha/contributors/6620692886191">Nick Clemens</a> >+ <li><strong>[% t('Release manager assistant:') %]</strong> >+ <a href="https://www.openhub.net/p/koha/contributors/6620692886191">[% t('Nick Clemens') %]</a> > </li> >- <li><strong>Documentation Team:</strong> >+ <li><strong>[% t('Documentation Team:') %]</strong> > <ul> >- <li>Lee Jamison</li> >- <li>David Nind</li> >- <li>Caroline Cyr La Rose</li> >+ <li>[% t('Lee Jamison') %]</li> >+ <li>[% t('David Nind') %]</li> >+ <li>[% t('Caroline Cyr La Rose') %]</li> > </ul> > </li> >- <li><strong>Translation manager:</strong> >- <a href="https://www.openhub.net/p/koha/contributors/6618544839606">Bernardo González Kriegel</a></li> >- <li><strong>Quality assurance manager:</strong> >- <a href="https://www.openhub.net/p/koha/contributors/6618544670742">Katrin Fischer</a> >+ <li><strong>[% t('Translation manager:') %]</strong> >+ <a href="https://www.openhub.net/p/koha/contributors/6618544839606">[% t('Bernardo González Kriegel') %]</a></li> >+ <li><strong>[% t('Quality assurance manager:') %]</strong> >+ <a href="https://www.openhub.net/p/koha/contributors/6618544670742">[% t('Katrin Fischer') %]</a> > </li> >- <li><strong>Quality assurance team:</strong> >+ <li><strong>[% t('Quality assurance team:') %]</strong> > <ul> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi</a></li> >- <li>Alex Arnaud</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692886191">Nick Clemens</a></li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">Kyle Hall</a></li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692419690">Julian Maurice</a></li> >- <li>Josef Moravec</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544727712">Marcel de Rooy</a></li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544730094">[% t('Tomás Cohen Arazi') %]</a></li> >+ <li>[% t('Alex Arnaud') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692886191">[% t('Nick Clemens') %]</a></li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">[% t('Kyle Hall') %]</a></li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692419690">[% t('Julian Maurice') %]</a></li> >+ <li>[% t('Josef Moravec') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544727712">[% t('Marcel de Rooy') %]</a></li> > </ul> > </li> >- <li><strong>Release maintainers:</strong> >+ <li><strong>[% t('Release maintainers:') %]</strong> > <ul> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692886191">Nick Clemens</a> (17.11)</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692831733">Fridolin Somers</a> (17.05)</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544609030">Chris Cormack</a> (16.11)</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692886191">[% t('Nick Clemens') %]</a> [% t('(17.11)') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692831733">[% t('Fridolin Somers') %]</a> [% t('(17.05)') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544609030">[% t('Chris Cormack') %]</a> [% t('(16.11)') %]</li> > </ul> > </li> >- <li><strong>Packaging manager:</strong> >- <a href="https://www.openhub.net/p/koha/contributors/6620692605913">Mirko Tietgen</a> >+ <li><strong>[% t('Packaging manager:') %]</strong> >+ <a href="https://www.openhub.net/p/koha/contributors/6620692605913">[% t('Mirko Tietgen') %]</a> > </li> >- <li><strong>Jenkins maintainer:</strong> >- <a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi</a> >+ <li><strong>[% t('Jenkins maintainer:') %]</strong> >+ <a href="https://www.openhub.net/p/koha/contributors/6618544730094">[% t('Tomás Cohen Arazi') %]</a> > </li> >- <li><strong>Bug wranglers:</strong> >+ <li><strong>[% t('Bug wranglers:') %]</strong> > <ul> >- <li>Alex Buckley</li> >- <li>Claire Gravely</li> >- <li>Jon Knight</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618545408147">Marc Véron</a></li> >+ <li>[% t('Alex Buckley') %]</li> >+ <li>[% t('Claire Gravely') %]</li> >+ <li>[% t('Jon Knight') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618545408147">[% t('Marc Véron') %]</a></li> > </ul> > </li> > </ul> > >- <h2>Koha development team</h2> >+ <h2>[% t('Koha development team') %]</h2> > <ul> >- <li>Jacek Ablewicz</li> >- <li>Md. Aftabuddin</li> >- <li>Jon Aker</li> >- <li>Chloe Alabaster</li> >- <li>Edward Allen</li> >- <li>Francisco M. Marzoa Alonso</li> >- <li>Morgane Alonso</li> >- <li>Joseph Alway</li> >- <li>Cindy Murdock Ames</li> >- <li>Aleisha Amohia</li> >- <li>Roman Amor</li> >- <li>Roch D'Amour</li> >- <li>Richard Anderson</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692181851">Nahuel Angelinetti</a></li> >- <li>Nuño López Ansótegui</li> >- <li>Dimitris Antonakis</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi (3.18 - 3.22 Release Manager; 3.12 Release Maintainer; 16.05 - 17.11 QA Team Member)</a></li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692124662">Andrew Arensburger (the small and great C4::Context module)</a></li> >- <li>Alex Arnaud</li> >- <li>Petter Goksøyr Ãsen</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544614259">Joe Atzberger</a></li> >- <li>Philippe Audet-Fortin</li> >- <li>Héctor Eduardo Castro Avalos</li> >- <li>Larry Baerveldt</li> >- <li>Marc Balmer</li> >- <li>Edmund Balnaves</li> >- <li>Al Banks</li> >- <li>Daniel Banzli</li> >- <li>Stefano Bargioni</li> >- <li>Daniel Barker</li> >- <li>Greg Barniskis</li> >- <li>Benedykt P. Barszcz (Polish for 2.0)</li> >- <li>D Ruth Bavousett (3.12 Translation Manager)</li> >- <li>Maxime Beaulieu</li> >- <li>Zoe Bennett</li> >- <li>Natalie Bennison</li> >- <li>John Beppu</li> >- <li>Pablo Bianchi</li> >- <li>Chad Billman</li> >- <li>David Birmingham</li> >- <li>Florian Bischof</li> >- <li>Oliver Bock</li> >- <li>Gaetan Boisson</li> >- <li>David Bourgault</li> >- <li>Rebecca Blundell</li> >- <li>Danny Bouman</li> >- <li>Christopher Brannon (3.20 QA Team Member)</li> >- <li>Stan Brinkerhoff</li> >- <li>Isaac Brodsky</li> >- <li>Ivan Brown</li> >- <li>Roger Buck</li> >- <li>Alex Buckley</li> >- <li>Michael Andrew Cabus</li> >- <li>Steven Callender</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692376789">Jared Camins-Esakov (3.12 Release Manager; 3.6 Release Maintainer)</a></li> >- <li>Colin Campbell (3.4 QA Manager)</li> >- <li>Fernando Canizo</li> >- <li>Barry Cannon</li> >- <li>Frédérick Capovilla</li> >- <li>DeAndre Carroll</li> >- <li>Chris Catalfo (new plugin MARC editor)</li> >- <li>Marc Chantreux</li> >- <li>Jerome Charaoui</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544614260">Galen Charlton (3.2, 3.14, and 3.16 Release Manager; 3.16 Release Maintainer; 3.18 QA Team Member; 16.05 Packaging Manager)</a></li> >- <li>Francois Charbonnier</li> >- <li>Evonne Cheung</li> >- <li>Andrew Chilton</li> >- <li>Pongtawat Chippimolchai</li> >- <li>Barton Chittenden</li> >- <li>Koha SAB CINECA</li> >- <li>Nick Clemens (16.11 - 17.11 QA Team Member)</li> >- <li>Garry Collum</li> >- <li>David Cook</li> >- <li>John Copeland</li> >- <li>Charlotte Cordwell</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544609030">Chris Cormack (1.x, 3.4 and 3.6 Release Manager; 3.8, 3.10, 3.18 and 3.20 Release Maintainer; 3.2 Translation Manager; 3.14 QA Team Member; 17.05 Documentation Manager; 17.11 Documentation Team Member)</a></li> >- <li>Jeremy Crabtree</li> >- <li>Bonnie Crawford</li> >- <li>Samuel Crosby</li> >- <li>Christophe Croullebois</li> >- <li>Olivier Crouzet</li> >- <li>Nate Curulla</li> >- <li>Vincent Danjean</li> >- <li>Hugh Davenport</li> >- <li>Elliott Davis (3.12 QA Team Member)</li> >- <li>Doug Dearden</li> >- <li>Kip DeGraaf</li> >- <li>Stéphane Delaune</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692210484">Frédéric Demians (3.4 - 3.10 Translation Manager; 3.20, 16.05 Release Maintainer)</a></li> >- <li>Connor Dewar</li> >- <li>Srikanth Dhondi</li> >- <li>Leire Diez</li> >- <li>Yarik</li> >- <li>Rocio Dressler</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618545125093">Jonathan Druart (3.8 - 17.05 QA Team Member; 17.11 Release Manager)</a></li> >- <li>Serhij Dubyk</li> >- <li>Yohann Dufour</li> >- <li>Thomas Dukleth (MARC Frameworks Maintenance)</li> >- <li>Frederic Durand</li> >- <li>Sebastiaan Durand</li> >- <li>Rachel Dustin</li> >- <li>Ecole des Mines de Saint Etienne, Philippe Jaillon (OAI-PMH support)</li> >- <li>Stephen Edwards</li> >- <li>Dani Elder</li> >- <li>Gus Ellerm</li> >- <li>Andrew Elwell</li> >- <li>Brian Engard</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544646984">Nicole C. Engard (3.0 - 16.11 Documentation Manager)</a></li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544677502">Magnus Enger</a></li> >- <li>Esiee School (Jérome Vizcaino, Michel Lerenard, Pierre Cauchois)</li> >- <li>Jason Etheridge</li> >- <li>Shaun Evans</li> >- <li>Pat Eyler (Kaitiaki from 2002 to 2004)</li> >- <li>Charles Farmer</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544609865">Antoine Farnault</a></li> >- <li>Arslan Farooq</li> >- <li>Vitor Fernandes</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544609053">Joshua Ferraro (3.0 Release Manager and Translation Manager)</a></li> >- <li>Julian Fiol</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544670742">Katrin Fischer (3.12 - 16.11 QA Manager, 16.11 Release Maintainer, 17.11 Documentation Team Member)</a></li> >- <li>Connor Fraser</li> >- <li>Clay Fouts</li> >- <li>Brendon Ford</li> >- <li>Claudia Forsman</li> >- <li>Jessica Freeman</li> >- <li>Corey Fuimaono</li> >- <li>Marco Gaiarin</li> >- <li>Pierrick Le Gall</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544661344">Brendan A. Gallagher (3.14 - 3.22 QA Team Member; 16.05 - 17.05 Release Manager; 17.11 QA Team Member)</a></li> >- <li>Joachim Ganseman</li> >- <li>Tumer Garip</li> >- <li>Russel Garlick</li> >- <li>Mark Gavillet</li> >- <li>Daniel Kahn Gillmor</li> >- <li>David Goldfein</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544839606">Bernardo González Kriegel (3.14 - 17.11 Translation Manager; 3.10 Release Maintainer)</a></li> >- <li>Caitlin Goodger</li> >- <li>Claire Gravely</li> >- <li>Briana Greally</li> >- <li>Daniel Grobani</li> >- <li>Victor Grousset</li> >- <li>Isabel Grubi</li> >- <li>David Gustafsson</li> >- <li>Amit Gupta</li> >- <li>Indranil Das Gupta (17.11 Documentation Team Member)</li> >- <li>Michael Hafen</li> >- <li>Christopher Hall (3.8 Release Maintainer)</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">Kyle Hall (3.8 Release Maintainer; 3.14 - 17.11 QA Team Member; 16.11 - 17.05 Release Manager)</a></li> >- <li>Sean Hamlin</li> >- <li>Tim Hannah</li> >- <li>Mike Hansen</li> >- <li>Brian Harrington</li> >- <li>Brandon Haveman</li> >- <li>Rochelle Healy</li> >- <li>Emma Heath</li> >- <li>Friedrich zur Hellen</li> >- <li>Kate Henderson</li> >- <li>Michaes Herman</li> >- <li>Claire Hernandez</li> >- <li>Wolfgang Heymans</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544614261">Ryan Higgins</a></li> >- <li>Morag Hills</li> >- <li>Sèbastien Hinderer</li> >- <li>Kristina D.C. Hoeppner</li> >- <li>Stefan Berndtsson</li> >- <li>Stephanie Hogan</li> >- <li>Karl Holten</li> >- <li>Daniel Holth</li> >- <li>Andrew Hooper</li> >- <li>Luke Honiss</li> >- <li>Alexandra Horsman</li> >- <li>Tom Houlker</li> >- <li>Matthew Hunt</li> >- <li>Christopher Hyde</li> >- <li>Andrew Isherwood</li> >- <li>Rolando Isidoro</li> >- <li>Te Rauhina Jackson</li> >- <li>Cory Jaeger</li> >- <li>Lee Jamison</li> >- <li>Srdjan Jankovic</li> >- <li>Philippe Jaillon</li> >- <li><a href="https://www.openhub.net/accounts/kohaaloha">Mason James (3.10 - 3.14 QA Team Member, 3.16, 16.05 Release Maintainer)</a></li> >- <li>Karen Jen</li> >- <li>Mike Johnson</li> >- <li>Donovan Jones</li> >- <li>Andreas Jonsson</li> >- <li>Bart Jorgensen</li> >- <li>Janusz Kaczmarek</li> >- <li>Koustubha Kale</li> >- <li>Pasi Kallinen</li> >- <li>Dimitris Kamenopoulos</li> >- <li>Peter Crellan Kelly</li> >- <li>Jorgia Kelsey</li> >- <li>Olli-Antti Kivilahti</li> >- <li>Attila Kinali</li> >- <li>Chris Kirby</li> >- <li>Ulrich Kleiber</li> >- <li>Jon Knight</li> >- <li>Rafal Kopaczka</li> >- <li>Piotr Kowalski</li> >- <li>David Kuhn</li> >- <li>Joonas Kylmälä</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544614275">Henri-Damien Laurent (3.0 Release Maintainer)</a></li> >- <li>Arnaud Laurin</li> >- <li>Nicolas Legrand</li> >- <li>Sonia Lemaire</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544609147">Owen Leonard (3.0+ Interface Design)</a></li> >- <li>Ambrose Li (translation tool)</li> >- <li>Gynn Lomax</li> >- <li>Peter Lorimer</li> >- <li>Robert Lyon (Corporate Serials)</li> >- <li>Ere Maijala</li> >- <li>Sherryn Mak</li> >- <li>Merllisia Manueli</li> >- <li>Florent Mara</li> >- <li>Francois Marier</li> >- <li>Patricio Marrone</li> >- <li>Jose Martin</li> >- <li>Jesse Maseto</li> >- <li>Frère Sébastien Marie</li> >- <li>Ricardo Dias Marques</li> >- <li>Julian Maurice (3.18, 17.05 - 17.11 QA Team Member; 3.22 Release Maintainer)</li> >- <li>Remi Mayrand-Provencher</li> >- <li>Brig C. McCoy</li> >- <li>Grace McKenzie</li> >- <li>Tim McMahon</li> >- <li>Dorian Meid (German translation)</li> >- <li>Meenakshi. R</li> >- <li>Melia Meggs</li> >- <li>Holger MeiÃner</li> >- <li>Karl Menzies</li> >- <li>Matthias Meusburger</li> >- <li>Sophie Meynieux</li> >- <li>Janet McGowan</li> >- <li>Alan Millar</li> >- <li>Jono Mingard</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544607803">Andrew Moore</a></li> >- <li>Francesca Moore</li> >- <li>Josef Moravec</li> >- <li>Sharon Moreland</li> >- <li>Nicolas Morin</li> >- <li>Mike Mylonas</li> >- <li>Natasha ?? [Catalyst Academy]</li> >- <li>Nadia Nicolaides</li> >- <li>Nazlı</li> >- <li>Joy Nelson</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544615991">Chris Nighswonger (3.2 - 3.6 Release Maintainer)</a></li> >- <li>Brian Norris</li> >- <li>Duy Tinh Nguyen</li> >- <li>Simith D'Oliveira</li> >- <li>Albert Oller</li> >- <li>Eric Olsen</li> >- <li>H. Passini</li> >- <li>Priya Patel</li> >- <li>Aliki Pavlidou</li> >- <li>Dobrica Pavlinusic</li> >- <li>Maxime Pelletier</li> >- <li>Shari Perkins</li> >- <li>Martin Persson</li> >- <li>Dominic Pichette</li> >- <li>Fred Pierre</li> >- <li>Eric Phetteplace (phette23)</li> >- <li>Genevieve Plantin</li> >- <li>Simon Pouchol</li> >- <li>Polytechnic University</li> >- <li>Pongtawat</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544612249">Paul Poulain (2.0, 2.2, 3.8, 3.10 Release Manager; 2.2 Release Maintainer; 3.12 - 16.05 QA Team Member)</a></li> >- <li>Karam Qubsi</li> >- <li>Romina Racca</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692116417">MJ Ray (2.0 Release Maintainer)</a></li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544650708">Liz Rea</a> (3.6, 3.18 Release Maintainer)</li> >- <li>Thatcher Rea</li> >- <li>Allen Reinmeyer</li> >- <li>Serge Renaux</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544785220">Martin Renvoize (3.16 - 17.11 QA Team Member)</a></li> >- <li>Francesco Rivetti</li> >- <li>Abby Robertson</li> >- <li>Waylon Robertson</li> >- <li>Benjamin Rokseth</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544727712">Marcel de Rooy (3.8 - 17.11 QA Team Member)</a></li> >- <li>Andreas Roussos</li> >- <li>Salvador Zaragoza Rubio</li> >- <li>Mathieu Saby</li> >- <li>Eivin Giske Skaaren</li> >- <li>Brice Sanchez</li> >- <li>Sam Sanders</li> >- <li>Rodrigo Santellan</li> >- <li>Viktor Sarge</li> >- <li>Alex Sassmannshausen (17.11 QA Team Member)</li> >- <li>Adrien Saurat</li> >- <li>Zoe Schoeler</li> >- <li>Dan Scott</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544619438">Robin Sheat (3.2 - 3.22 Packaging Manager)</a></li> >- <li>Maksim Sen</li> >- <li>Juhani Seppälä</li> >- <li>John Seymour</li> >- <li>Juan Romay Sieira</li> >- <li>Zach Sim</li> >- <li>Radek Å iman</li> >- <li>Silvia Simonetti</li> >- <li>Savitra Sirohi</li> >- <li>Pawel Skuza (Polish for 1.2)</li> >- <li>Emma Smith</li> >- <li>Grace Smyth</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692831733">Fridolin Somers (3.14 Release Maintainer, 17.05 QA Team Member, 17.05 Release Maintainer)</a></li> >- <li>Southeastern University</li> >- <li>Martin Stenberg</li> >- <li>Glen Stewart</li> >- <li>Will Stokes</li> >- <li>Simon Story</li> >- <li>David Strainchamps</li> >- <li>Ed Summers (Some code and Perl packages like MARC::Record)</li> >- <li>Daniel Sweeney</li> >- <li>Zeno Tajoli</li> >- <li>Lari Taskula</li> >- <li>Samanta Tello</li> >- <li>Adam Thick</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618544609107">Finlay Thompson</a></li> >- <li>Peggy Thrasher</li> >- <li>Fabio Tiana</li> >- <li>Mirko Tietgen (16.11 - 17.11 Packaging Manager)</li> >- <li>Mark Tompsett</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692101577">Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)</a></li> >- <li>Bruno Toumi</li> >- <li>Andrei V. Toutoukine</li> >- <li>Duncan Tyler</li> >- <li>Kathryn Tyree</li> >- <li>Darrell Ulm</li> >- <li>Universidad ORT Uruguay (Ernesto Silva, Andres Tarallo)</li> >- <li>Eric Vantillard </li> >- <li>Oleg Vasylenko</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6618545408147">Marc Véron</a></li> >- <li>Justin Vos</li> >- <li>Aleksa Vujicic</li> >- <li>Reed Wade</li> >- <li>Stacey Walker</li> >- <li>Ian Walls (3.6 - 3.10 QA Manager)</li> >- <li><a href="https://www.openhub.net/accounts/janewagner">Jane Wagner</a></li> >- <li>Ward van Wanrooij</li> >- <li>Jenny Way</li> >- <li><a href="https://www.openhub.net/accounts/pianohacker">Jesse Weaver (16.05, 16.11 QA Team Member)</a></li> >- <li>Chris Weeks</li> >- <li>Stefan Weil</li> >- <li>Aaron Wells</li> >- <li>Rick Welykochy</li> >- <li>Piotr Wejman</li> >- <li>Ron Wickersham</li> >- <li>Brett Wilkins</li> >- <li><a href="https://www.openhub.net/p/koha/contributors/6620692127299">Olwen Williams (Database design and data extraction for Koha 1.0)</a></li> >- <li>Robert Williams</li> >- <li>James Winter</li> >- <li>Lars Wirzenius</li> >- <li>Baptiste Wojtkowski</li> >- <li>Thomas Wright</li> >- <li>Jen Zajac</li> >- <li>Kenza Zaki</li> >+ <li>[% t('Jacek Ablewicz') %]</li> >+ <li>[% t('Md. Aftabuddin') %]</li> >+ <li>[% t('Jon Aker') %]</li> >+ <li>[% t('Chloe Alabaster') %]</li> >+ <li>[% t('Edward Allen') %]</li> >+ <li>[% t('Francisco M. Marzoa Alonso') %]</li> >+ <li>[% t('Morgane Alonso') %]</li> >+ <li>[% t('Joseph Alway') %]</li> >+ <li>[% t('Cindy Murdock Ames') %]</li> >+ <li>[% t('Aleisha Amohia') %]</li> >+ <li>[% t('Roman Amor') %]</li> >+ <li>[% t('Roch D\'Amour') %]</li> >+ <li>[% t('Richard Anderson') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692181851">[% t('Nahuel Angelinetti') %]</a></li> >+ <li>[% t('Nuño López Ansótegui') %]</li> >+ <li>[% t('Dimitris Antonakis') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544730094">[% t('Tomás Cohen Arazi (3.18 - 3.22 Release Manager; 3.12 Release Maintainer; 16.05 - 17.11 QA Team Member)') %]</a></li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692124662">[% t('Andrew Arensburger (the small and great C4::Context module)') %]</a></li> >+ <li>[% t('Alex Arnaud') %]</li> >+ <li>[% t('Petter Goksøyr Ãsen') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544614259">[% t('Joe Atzberger') %]</a></li> >+ <li>[% t('Philippe Audet-Fortin') %]</li> >+ <li>[% t('Héctor Eduardo Castro Avalos') %]</li> >+ <li>[% t('Larry Baerveldt') %]</li> >+ <li>[% t('Marc Balmer') %]</li> >+ <li>[% t('Edmund Balnaves') %]</li> >+ <li>[% t('Al Banks') %]</li> >+ <li>[% t('Daniel Banzli') %]</li> >+ <li>[% t('Stefano Bargioni') %]</li> >+ <li>[% t('Daniel Barker') %]</li> >+ <li>[% t('Greg Barniskis') %]</li> >+ <li>[% t('Benedykt P. Barszcz (Polish for 2.0)') %]</li> >+ <li>[% t('D Ruth Bavousett (3.12 Translation Manager)') %]</li> >+ <li>[% t('Maxime Beaulieu') %]</li> >+ <li>[% t('Zoe Bennett') %]</li> >+ <li>[% t('Natalie Bennison') %]</li> >+ <li>[% t('John Beppu') %]</li> >+ <li>[% t('Pablo Bianchi') %]</li> >+ <li>[% t('Chad Billman') %]</li> >+ <li>[% t('David Birmingham') %]</li> >+ <li>[% t('Florian Bischof') %]</li> >+ <li>[% t('Oliver Bock') %]</li> >+ <li>[% t('Gaetan Boisson') %]</li> >+ <li>[% t('David Bourgault') %]</li> >+ <li>[% t('Rebecca Blundell') %]</li> >+ <li>[% t('Danny Bouman') %]</li> >+ <li>[% t('Christopher Brannon (3.20 QA Team Member)') %]</li> >+ <li>[% t('Stan Brinkerhoff') %]</li> >+ <li>[% t('Isaac Brodsky') %]</li> >+ <li>[% t('Ivan Brown') %]</li> >+ <li>[% t('Roger Buck') %]</li> >+ <li>[% t('Alex Buckley') %]</li> >+ <li>[% t('Michael Andrew Cabus') %]</li> >+ <li>[% t('Steven Callender') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692376789">[% t('Jared Camins-Esakov (3.12 Release Manager; 3.6 Release Maintainer)') %]</a></li> >+ <li>[% t('Colin Campbell (3.4 QA Manager)') %]</li> >+ <li>[% t('Fernando Canizo') %]</li> >+ <li>[% t('Barry Cannon') %]</li> >+ <li>[% t('Frédérick Capovilla') %]</li> >+ <li>[% t('DeAndre Carroll') %]</li> >+ <li>[% t('Chris Catalfo (new plugin MARC editor)') %]</li> >+ <li>[% t('Marc Chantreux') %]</li> >+ <li>[% t('Jerome Charaoui') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544614260">[% t('Galen Charlton (3.2, 3.14, and 3.16 Release Manager; 3.16 Release Maintainer; 3.18 QA Team Member; 16.05 Packaging Manager)') %]</a></li> >+ <li>[% t('Francois Charbonnier') %]</li> >+ <li>[% t('Evonne Cheung') %]</li> >+ <li>[% t('Andrew Chilton') %]</li> >+ <li>[% t('Pongtawat Chippimolchai') %]</li> >+ <li>[% t('Barton Chittenden') %]</li> >+ <li>[% t('Koha SAB CINECA') %]</li> >+ <li>[% t('Nick Clemens (16.11 - 17.11 QA Team Member)') %]</li> >+ <li>[% t('Garry Collum') %]</li> >+ <li>[% t('David Cook') %]</li> >+ <li>[% t('John Copeland') %]</li> >+ <li>[% t('Charlotte Cordwell') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544609030">[% t('Chris Cormack (1.x, 3.4 and 3.6 Release Manager; 3.8, 3.10, 3.18 and 3.20 Release Maintainer; 3.2 Translation Manager; 3.14 QA Team Member; 17.05 Documentation Manager; 17.11 Documentation Team Member)') %]</a></li> >+ <li>[% t('Jeremy Crabtree') %]</li> >+ <li>[% t('Bonnie Crawford') %]</li> >+ <li>[% t('Samuel Crosby') %]</li> >+ <li>[% t('Christophe Croullebois') %]</li> >+ <li>[% t('Olivier Crouzet') %]</li> >+ <li>[% t('Nate Curulla') %]</li> >+ <li>[% t('Vincent Danjean') %]</li> >+ <li>[% t('Hugh Davenport') %]</li> >+ <li>[% t('Elliott Davis (3.12 QA Team Member)') %]</li> >+ <li>[% t('Doug Dearden') %]</li> >+ <li>[% t('Kip DeGraaf') %]</li> >+ <li>[% t('Stéphane Delaune') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692210484">[% t('Frédéric Demians (3.4 - 3.10 Translation Manager; 3.20, 16.05 Release Maintainer)') %]</a></li> >+ <li>[% t('Connor Dewar') %]</li> >+ <li>[% t('Srikanth Dhondi') %]</li> >+ <li>[% t('Leire Diez') %]</li> >+ <li>[% t('Yarik') %]</li> >+ <li>[% t('Rocio Dressler') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618545125093">[% t('Jonathan Druart (3.8 - 17.05 QA Team Member; 17.11 Release Manager)') %]</a></li> >+ <li>[% t('Serhij Dubyk') %]</li> >+ <li>[% t('Yohann Dufour') %]</li> >+ <li>[% t('Thomas Dukleth (MARC Frameworks Maintenance)') %]</li> >+ <li>[% t('Frederic Durand') %]</li> >+ <li>[% t('Sebastiaan Durand') %]</li> >+ <li>[% t('Rachel Dustin') %]</li> >+ <li>[% t('Ecole des Mines de Saint Etienne, Philippe Jaillon (OAI-PMH support)') %]</li> >+ <li>[% t('Stephen Edwards') %]</li> >+ <li>[% t('Dani Elder') %]</li> >+ <li>[% t('Gus Ellerm') %]</li> >+ <li>[% t('Andrew Elwell') %]</li> >+ <li>[% t('Brian Engard') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544646984">[% t('Nicole C. Engard (3.0 - 16.11 Documentation Manager)') %]</a></li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544677502">[% t('Magnus Enger') %]</a></li> >+ <li>[% t('Esiee School (Jérome Vizcaino, Michel Lerenard, Pierre Cauchois)') %]</li> >+ <li>[% t('Jason Etheridge') %]</li> >+ <li>[% t('Shaun Evans') %]</li> >+ <li>[% t('Pat Eyler (Kaitiaki from 2002 to 2004)') %]</li> >+ <li>[% t('Charles Farmer') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544609865">[% t('Antoine Farnault') %]</a></li> >+ <li>[% t('Arslan Farooq') %]</li> >+ <li>[% t('Vitor Fernandes') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544609053">[% t('Joshua Ferraro (3.0 Release Manager and Translation Manager)') %]</a></li> >+ <li>[% t('Julian Fiol') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544670742">[% t('Katrin Fischer (3.12 - 16.11 QA Manager, 16.11 Release Maintainer, 17.11 Documentation Team Member)') %]</a></li> >+ <li>[% t('Connor Fraser') %]</li> >+ <li>[% t('Clay Fouts') %]</li> >+ <li>[% t('Brendon Ford') %]</li> >+ <li>[% t('Claudia Forsman') %]</li> >+ <li>[% t('Jessica Freeman') %]</li> >+ <li>[% t('Corey Fuimaono') %]</li> >+ <li>[% t('Marco Gaiarin') %]</li> >+ <li>[% t('Pierrick Le Gall') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544661344">[% t('Brendan A. Gallagher (3.14 - 3.22 QA Team Member; 16.05 - 17.05 Release Manager; 17.11 QA Team Member)') %]</a></li> >+ <li>[% t('Joachim Ganseman') %]</li> >+ <li>[% t('Tumer Garip') %]</li> >+ <li>[% t('Russel Garlick') %]</li> >+ <li>[% t('Mark Gavillet') %]</li> >+ <li>[% t('Daniel Kahn Gillmor') %]</li> >+ <li>[% t('David Goldfein') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544839606">[% t('Bernardo González Kriegel (3.14 - 17.11 Translation Manager; 3.10 Release Maintainer)') %]</a></li> >+ <li>[% t('Caitlin Goodger') %]</li> >+ <li>[% t('Claire Gravely') %]</li> >+ <li>[% t('Briana Greally') %]</li> >+ <li>[% t('Daniel Grobani') %]</li> >+ <li>[% t('Victor Grousset') %]</li> >+ <li>[% t('Isabel Grubi') %]</li> >+ <li>[% t('David Gustafsson') %]</li> >+ <li>[% t('Amit Gupta') %]</li> >+ <li>[% t('Indranil Das Gupta (17.11 Documentation Team Member)') %]</li> >+ <li>[% t('Michael Hafen') %]</li> >+ <li>[% t('Christopher Hall (3.8 Release Maintainer)') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">[% t('Kyle Hall (3.8 Release Maintainer; 3.14 - 17.11 QA Team Member; 16.11 - 17.05 Release Manager)') %]</a></li> >+ <li>[% t('Sean Hamlin') %]</li> >+ <li>[% t('Tim Hannah') %]</li> >+ <li>[% t('Mike Hansen') %]</li> >+ <li>[% t('Brian Harrington') %]</li> >+ <li>[% t('Brandon Haveman') %]</li> >+ <li>[% t('Rochelle Healy') %]</li> >+ <li>[% t('Emma Heath') %]</li> >+ <li>[% t('Friedrich zur Hellen') %]</li> >+ <li>[% t('Kate Henderson') %]</li> >+ <li>[% t('Michaes Herman') %]</li> >+ <li>[% t('Claire Hernandez') %]</li> >+ <li>[% t('Wolfgang Heymans') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544614261">[% t('Ryan Higgins') %]</a></li> >+ <li>[% t('Morag Hills') %]</li> >+ <li>[% t('Sèbastien Hinderer') %]</li> >+ <li>[% t('Kristina D.C. Hoeppner') %]</li> >+ <li>[% t('Stefan Berndtsson') %]</li> >+ <li>[% t('Stephanie Hogan') %]</li> >+ <li>[% t('Karl Holten') %]</li> >+ <li>[% t('Daniel Holth') %]</li> >+ <li>[% t('Andrew Hooper') %]</li> >+ <li>[% t('Luke Honiss') %]</li> >+ <li>[% t('Alexandra Horsman') %]</li> >+ <li>[% t('Tom Houlker') %]</li> >+ <li>[% t('Matthew Hunt') %]</li> >+ <li>[% t('Christopher Hyde') %]</li> >+ <li>[% t('Andrew Isherwood') %]</li> >+ <li>[% t('Rolando Isidoro') %]</li> >+ <li>[% t('Te Rauhina Jackson') %]</li> >+ <li>[% t('Cory Jaeger') %]</li> >+ <li>[% t('Lee Jamison') %]</li> >+ <li>[% t('Srdjan Jankovic') %]</li> >+ <li>[% t('Philippe Jaillon') %]</li> >+ <li><a href="https://www.openhub.net/accounts/kohaaloha">[% t('Mason James (3.10 - 3.14 QA Team Member, 3.16, 16.05 Release Maintainer)') %]</a></li> >+ <li>[% t('Karen Jen') %]</li> >+ <li>[% t('Mike Johnson') %]</li> >+ <li>[% t('Donovan Jones') %]</li> >+ <li>[% t('Andreas Jonsson') %]</li> >+ <li>[% t('Bart Jorgensen') %]</li> >+ <li>[% t('Janusz Kaczmarek') %]</li> >+ <li>[% t('Koustubha Kale') %]</li> >+ <li>[% t('Pasi Kallinen') %]</li> >+ <li>[% t('Dimitris Kamenopoulos') %]</li> >+ <li>[% t('Peter Crellan Kelly') %]</li> >+ <li>[% t('Jorgia Kelsey') %]</li> >+ <li>[% t('Olli-Antti Kivilahti') %]</li> >+ <li>[% t('Attila Kinali') %]</li> >+ <li>[% t('Chris Kirby') %]</li> >+ <li>[% t('Ulrich Kleiber') %]</li> >+ <li>[% t('Jon Knight') %]</li> >+ <li>[% t('Rafal Kopaczka') %]</li> >+ <li>[% t('Piotr Kowalski') %]</li> >+ <li>[% t('David Kuhn') %]</li> >+ <li>[% t('Joonas Kylmälä') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544614275">[% t('Henri-Damien Laurent (3.0 Release Maintainer)') %]</a></li> >+ <li>[% t('Arnaud Laurin') %]</li> >+ <li>[% t('Nicolas Legrand') %]</li> >+ <li>[% t('Sonia Lemaire') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544609147">[% t('Owen Leonard (3.0+ Interface Design)') %]</a></li> >+ <li>[% t('Ambrose Li (translation tool)') %]</li> >+ <li>[% t('Gynn Lomax') %]</li> >+ <li>[% t('Peter Lorimer') %]</li> >+ <li>[% t('Robert Lyon (Corporate Serials)') %]</li> >+ <li>[% t('Ere Maijala') %]</li> >+ <li>[% t('Sherryn Mak') %]</li> >+ <li>[% t('Merllisia Manueli') %]</li> >+ <li>[% t('Florent Mara') %]</li> >+ <li>[% t('Francois Marier') %]</li> >+ <li>[% t('Patricio Marrone') %]</li> >+ <li>[% t('Jose Martin') %]</li> >+ <li>[% t('Jesse Maseto') %]</li> >+ <li>[% t('Frère Sébastien Marie') %]</li> >+ <li>[% t('Ricardo Dias Marques') %]</li> >+ <li>[% t('Julian Maurice (3.18, 17.05 - 17.11 QA Team Member; 3.22 Release Maintainer)') %]</li> >+ <li>[% t('Remi Mayrand-Provencher') %]</li> >+ <li>[% t('Brig C. McCoy') %]</li> >+ <li>[% t('Grace McKenzie') %]</li> >+ <li>[% t('Tim McMahon') %]</li> >+ <li>[% t('Dorian Meid (German translation)') %]</li> >+ <li>[% t('Meenakshi. R') %]</li> >+ <li>[% t('Melia Meggs') %]</li> >+ <li>[% t('Holger MeiÃner') %]</li> >+ <li>[% t('Karl Menzies') %]</li> >+ <li>[% t('Matthias Meusburger') %]</li> >+ <li>[% t('Sophie Meynieux') %]</li> >+ <li>[% t('Janet McGowan') %]</li> >+ <li>[% t('Alan Millar') %]</li> >+ <li>[% t('Jono Mingard') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544607803">[% t('Andrew Moore') %]</a></li> >+ <li>[% t('Francesca Moore') %]</li> >+ <li>[% t('Josef Moravec') %]</li> >+ <li>[% t('Sharon Moreland') %]</li> >+ <li>[% t('Nicolas Morin') %]</li> >+ <li>[% t('Mike Mylonas') %]</li> >+ <li>[% t('Natasha ?? [Catalyst Academy]') %]</li> >+ <li>[% t('Nadia Nicolaides') %]</li> >+ <li>[% t('Nazlı') %]</li> >+ <li>[% t('Joy Nelson') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544615991">[% t('Chris Nighswonger (3.2 - 3.6 Release Maintainer)') %]</a></li> >+ <li>[% t('Brian Norris') %]</li> >+ <li>[% t('Duy Tinh Nguyen') %]</li> >+ <li>[% t('Simith D\'Oliveira') %]</li> >+ <li>[% t('Albert Oller') %]</li> >+ <li>[% t('Eric Olsen') %]</li> >+ <li>[% t('H. Passini') %]</li> >+ <li>[% t('Priya Patel') %]</li> >+ <li>[% t('Aliki Pavlidou') %]</li> >+ <li>[% t('Dobrica Pavlinusic') %]</li> >+ <li>[% t('Maxime Pelletier') %]</li> >+ <li>[% t('Shari Perkins') %]</li> >+ <li>[% t('Martin Persson') %]</li> >+ <li>[% t('Dominic Pichette') %]</li> >+ <li>[% t('Fred Pierre') %]</li> >+ <li>[% t('Eric Phetteplace (phette23)') %]</li> >+ <li>[% t('Genevieve Plantin') %]</li> >+ <li>[% t('Simon Pouchol') %]</li> >+ <li>[% t('Polytechnic University') %]</li> >+ <li>[% t('Pongtawat') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544612249">[% t('Paul Poulain (2.0, 2.2, 3.8, 3.10 Release Manager; 2.2 Release Maintainer; 3.12 - 16.05 QA Team Member)') %]</a></li> >+ <li>[% t('Karam Qubsi') %]</li> >+ <li>[% t('Romina Racca') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692116417">[% t('MJ Ray (2.0 Release Maintainer)') %]</a></li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544650708">[% t('Liz Rea') %]</a> [% t('(3.6, 3.18 Release Maintainer)') %]</li> >+ <li>[% t('Thatcher Rea') %]</li> >+ <li>[% t('Allen Reinmeyer') %]</li> >+ <li>[% t('Serge Renaux') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544785220">[% t('Martin Renvoize (3.16 - 17.11 QA Team Member)') %]</a></li> >+ <li>[% t('Francesco Rivetti') %]</li> >+ <li>[% t('Abby Robertson') %]</li> >+ <li>[% t('Waylon Robertson') %]</li> >+ <li>[% t('Benjamin Rokseth') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544727712">[% t('Marcel de Rooy (3.8 - 17.11 QA Team Member)') %]</a></li> >+ <li>[% t('Andreas Roussos') %]</li> >+ <li>[% t('Salvador Zaragoza Rubio') %]</li> >+ <li>[% t('Mathieu Saby') %]</li> >+ <li>[% t('Eivin Giske Skaaren') %]</li> >+ <li>[% t('Brice Sanchez') %]</li> >+ <li>[% t('Sam Sanders') %]</li> >+ <li>[% t('Rodrigo Santellan') %]</li> >+ <li>[% t('Viktor Sarge') %]</li> >+ <li>[% t('Alex Sassmannshausen (17.11 QA Team Member)') %]</li> >+ <li>[% t('Adrien Saurat') %]</li> >+ <li>[% t('Zoe Schoeler') %]</li> >+ <li>[% t('Dan Scott') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544619438">[% t('Robin Sheat (3.2 - 3.22 Packaging Manager)') %]</a></li> >+ <li>[% t('Maksim Sen') %]</li> >+ <li>[% t('Juhani Seppälä') %]</li> >+ <li>[% t('John Seymour') %]</li> >+ <li>[% t('Juan Romay Sieira') %]</li> >+ <li>[% t('Zach Sim') %]</li> >+ <li>[% t('Radek Å iman') %]</li> >+ <li>[% t('Silvia Simonetti') %]</li> >+ <li>[% t('Savitra Sirohi') %]</li> >+ <li>[% t('Pawel Skuza (Polish for 1.2)') %]</li> >+ <li>[% t('Emma Smith') %]</li> >+ <li>[% t('Grace Smyth') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692831733">[% t('Fridolin Somers (3.14 Release Maintainer, 17.05 QA Team Member, 17.05 Release Maintainer)') %]</a></li> >+ <li>[% t('Southeastern University') %]</li> >+ <li>[% t('Martin Stenberg') %]</li> >+ <li>[% t('Glen Stewart') %]</li> >+ <li>[% t('Will Stokes') %]</li> >+ <li>[% t('Simon Story') %]</li> >+ <li>[% t('David Strainchamps') %]</li> >+ <li>[% t('Ed Summers (Some code and Perl packages like MARC::Record)') %]</li> >+ <li>[% t('Daniel Sweeney') %]</li> >+ <li>[% t('Zeno Tajoli') %]</li> >+ <li>[% t('Lari Taskula') %]</li> >+ <li>[% t('Samanta Tello') %]</li> >+ <li>[% t('Adam Thick') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618544609107">[% t('Finlay Thompson') %]</a></li> >+ <li>[% t('Peggy Thrasher') %]</li> >+ <li>[% t('Fabio Tiana') %]</li> >+ <li>[% t('Mirko Tietgen (16.11 - 17.11 Packaging Manager)') %]</li> >+ <li>[% t('Mark Tompsett') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692101577">[% t('Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)') %]</a></li> >+ <li>[% t('Bruno Toumi') %]</li> >+ <li>[% t('Andrei V. Toutoukine') %]</li> >+ <li>[% t('Duncan Tyler') %]</li> >+ <li>[% t('Kathryn Tyree') %]</li> >+ <li>[% t('Darrell Ulm') %]</li> >+ <li>[% t('Universidad ORT Uruguay (Ernesto Silva, Andres Tarallo)') %]</li> >+ <li>[% t('Eric Vantillard') %] </li> >+ <li>[% t('Oleg Vasylenko') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6618545408147">[% t('Marc Véron') %]</a></li> >+ <li>[% t('Justin Vos') %]</li> >+ <li>[% t('Aleksa Vujicic') %]</li> >+ <li>[% t('Reed Wade') %]</li> >+ <li>[% t('Stacey Walker') %]</li> >+ <li>[% t('Ian Walls (3.6 - 3.10 QA Manager)') %]</li> >+ <li><a href="https://www.openhub.net/accounts/janewagner">[% t('Jane Wagner') %]</a></li> >+ <li>[% t('Ward van Wanrooij') %]</li> >+ <li>[% t('Jenny Way') %]</li> >+ <li><a href="https://www.openhub.net/accounts/pianohacker">[% t('Jesse Weaver (16.05, 16.11 QA Team Member)') %]</a></li> >+ <li>[% t('Chris Weeks') %]</li> >+ <li>[% t('Stefan Weil') %]</li> >+ <li>[% t('Aaron Wells') %]</li> >+ <li>[% t('Rick Welykochy') %]</li> >+ <li>[% t('Piotr Wejman') %]</li> >+ <li>[% t('Ron Wickersham') %]</li> >+ <li>[% t('Brett Wilkins') %]</li> >+ <li><a href="https://www.openhub.net/p/koha/contributors/6620692127299">[% t('Olwen Williams (Database design and data extraction for Koha 1.0)') %]</a></li> >+ <li>[% t('Robert Williams') %]</li> >+ <li>[% t('James Winter') %]</li> >+ <li>[% t('Lars Wirzenius') %]</li> >+ <li>[% t('Baptiste Wojtkowski') %]</li> >+ <li>[% t('Thomas Wright') %]</li> >+ <li>[% t('Jen Zajac') %]</li> >+ <li>[% t('Kenza Zaki') %]</li> > </ul> >- <h3>Contributing companies and institutions</h3> >+ <h3>[% t('Contributing companies and institutions') %]</h3> > <ul> >- <li>BibLibre, France</li> >- <li>Bibliotheksservice-Zentrum Baden-Württemberg (BSZ), Germany</li> >- <li>ByWater Solutions, USA</li> >- <li>Calyx, Australia</li> >- <li>Catalyst IT, New Zealand</li> >- <li>C & P Bibliography Services, USA</li> >- <li>Hochschule für Gesundheit (hsg), Germany</li> >- <li>Katipo Communications, New Zealand</li> >- <li>KEEP SOLUTIONS, Portugal</li> >- <li>KohaAloha, New Zealand</li> >- <li>LibLime, USA</li> >- <li>Libriotech, Norway</li> >- <li>Nelsonville Public Library, Ohio, USA</li> >- <li>Prosentient Systems, Australia</li> >- <li>PTFS, Maryland, USA</li> >- <li>PTFS Europe Ltd, United Kingdom</li> >- <li>Rijksmuseum, Amsterdam, The Netherlands</li> >- <li>SAN-Ouest Provence, France</li> >- <li>software.coop, United Kingdom</li> >- <li>Tamil, France</li> >- <li>Universidad Nacional de Córdoba, Argentina</li> >- <li>Xercode, Spain</li> >+ <li>[% t('BibLibre, France') %]</li> >+ <li>[% t('Bibliotheksservice-Zentrum Baden-Württemberg (BSZ), Germany') %]</li> >+ <li>[% t('ByWater Solutions, USA') %]</li> >+ <li>[% t('Calyx, Australia') %]</li> >+ <li>[% t('Catalyst IT, New Zealand') %]</li> >+ <li>[% t('C & P Bibliography Services, USA') %]</li> >+ <li>[% t('Hochschule für Gesundheit (hsg), Germany') %]</li> >+ <li>[% t('Katipo Communications, New Zealand') %]</li> >+ <li>[% t('KEEP SOLUTIONS, Portugal') %]</li> >+ <li>[% t('KohaAloha, New Zealand') %]</li> >+ <li>[% t('LibLime, USA') %]</li> >+ <li>[% t('Libriotech, Norway') %]</li> >+ <li>[% t('Nelsonville Public Library, Ohio, USA') %]</li> >+ <li>[% t('Prosentient Systems, Australia') %]</li> >+ <li>[% t('PTFS, Maryland, USA') %]</li> >+ <li>[% t('PTFS Europe Ltd, United Kingdom') %]</li> >+ <li>[% t('Rijksmuseum, Amsterdam, The Netherlands') %]</li> >+ <li>[% t('SAN-Ouest Provence, France') %]</li> >+ <li>[% t('software.coop, United Kingdom') %]</li> >+ <li>[% t('Tamil, France') %]</li> >+ <li>[% t('Universidad Nacional de Córdoba, Argentina') %]</li> >+ <li>[% t('Xercode, Spain') %]</li> > </ul> > >- <h2>Additional thanks to...</h2> >+ <h2>[% t('Additional thanks to...') %]</h2> > <ul> >- <li>Irma Birchall</li> >- <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li> >- <li>Stephen Hedges (early Documentation Manager)</li> >- <li>Brooke Johnson</li> >- <li>Jo Ransom</li> >- <li>Nicholas Rosasco (Documentation Compiler)</li> >- <li>Regula Sebastiao</li> >+ <li>[% t('Irma Birchall') %]</li> >+ <li>[% t('Rachel Hamilton-Williams (Kaitiaki from 2004 to present)') %]</li> >+ <li>[% t('Stephen Hedges (early Documentation Manager)') %]</li> >+ <li>[% t('Brooke Johnson') %]</li> >+ <li>[% t('Jo Ransom') %]</li> >+ <li>[% t('Nicholas Rosasco (Documentation Compiler)') %]</li> >+ <li>[% t('Regula Sebastiao') %]</li> > </ul> > </div> > > <div id="licenses"> >- <h2>Koha</h2> >+ <h2>[% t('Koha') %]</h2> > <p> >- <a href="http://www.gnu.org/licenses/gpl-3.0.html">Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.</a> >+ <a href="http://www.gnu.org/licenses/gpl-3.0.html">[% t('Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.') %]</a> > </p> >- <h2>jQuery and jQueryUI</h2> >- <p><a href="http://jquery.com/">jQuery</a> and <a href="http://jqueryui.com/">jQueryUI</a> are licensed under the <a href="http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt">MIT license</a></p> >- <h2>Bootstrap</h2> >- <p><a href="https://getbootstrap.com/">Bootstrap</a> code and <a href="http://glyphicons.com">Glyphicons Free</a> licensed under the <a href="https://github.com/twbs/bootstrap/blob/master/LICENSE">MIT license</a>.</p> >- <h2>YUI</h2> >+ <h2>[% t('jQuery and jQueryUI') %]</h2> >+ <p><a href="http://jquery.com/">[% t('jQuery') %]</a> [% t('and') %] <a href="http://jqueryui.com/">[% t('jQueryUI') %]</a> [% t('are licensed under the') %] <a href="http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt">[% t('MIT license') %]</a></p> >+ <h2>[% t('Bootstrap') %]</h2> >+ <p><a href="https://getbootstrap.com/">[% t('Bootstrap') %]</a> [% t('code and') %] <a href="http://glyphicons.com">[% t('Glyphicons Free') %]</a> [% t('licensed under the') %] <a href="https://github.com/twbs/bootstrap/blob/master/LICENSE">[% t('MIT license') %]</a>.</p> >+ <h2>[% t('YUI') %]</h2> > <p> >- <a href="http://yuilibrary.com/license/">BSD License</a> >+ <a href="http://yuilibrary.com/license/">[% t('BSD License') %]</a> > </p> >- <h2>Famfamfam iconset</h2> >+ <h2>[% t('Famfamfam iconset') %]</h2> > <ul> >- <li><a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam Site</a></li> >- <li><a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a></li> >+ <li><a href="http://www.famfamfam.com/lab/icons/silk/">[% t('FamFamFam Site') %]</a></li> >+ <li><a href="http://creativecommons.org/licenses/by/2.5/">[% t('Creative Commons Attribution 2.5 License') %]</a></li> > </ul> >- <h2>The Bridge Material Type Icon Set</h2> >+ <h2>[% t('The Bridge Material Type Icon Set') %]</h2> > <ul> >- <li><a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a></li> >- <li>The Bridge Material Type Icon Set is licensed under a >- <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License</a> >- by the Bridge Consortium of Carleton College and St. Olaf College.</li> >+ <li><a href="http://apps.carleton.edu/campus/library/bridge_icons/">[% t('Bridge Material Type Icons Project') %]</a></li> >+ <li>[% t('The Bridge Material Type Icon Set is licensed under a') %] >+ <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/">[% t('Creative Commons Attribution-ShareAlike 2.5 License') %]</a> >+ [% t('by the Bridge Consortium of Carleton College and St. Olaf College.') %]</li> > </ul> > >- <h2>The Noun Project icons</h2> >+ <h2>[% t('The Noun Project icons') %]</h2> > <ul> >- <li>All images come from <a href="https://thenounproject.com/">The Noun Project</a> collection</li> >+ <li>[% t('All images come from') %] <a href="https://thenounproject.com/">[% t('The Noun Project') %]</a> [% t('collection') %]</li> > <li> >- Circulation ("<a href="https://thenounproject.com/icon/743/">fair-trade</a>") symbol by Edward Boatman ; Patrons >- ("<a href="https://thenounproject.com/term/childrens-library/739/">children's library</a>") symbol by Edward Boatman, Saul Tannenbaum, >- Stephen Kennedy, Nikki Snow, Brooke Hamilton ; Search ("<a href="https://thenounproject.com/term/magnifying-glass/907/">magnifying >- glass</a>") symbol by Philipp Süà ; Lists ("<a href="https://thenounproject.com/term/folder/650/">folder</a>") symbol by Jack >- Biesek, Gladys Brenner, Margaret Faye, Healther Merrifield, Kate >- Keating, Wendy Olmstead, Todd Pierce, Jamie Cowgill, Jim Bolek ; >- Course reserves ("<a href="https://thenounproject.com/term/stack-of-books/11494/">stack of books</a>") symbol by Jeremy J. Bristol; >- Cataloging ("<a href="https://thenounproject.com/term/tag/888732/">price tag</a>") symbol by the Noun Project ; Authorities >- ("<a href="https://thenounproject.com/term/link/1690/">link</a>") symbol by Matthew Exton ; Serials ("<a href="https://thenounproject.com/term/newspaper/1233/">newspaper</a>") symbol by John >- Caserta ; Acquisitions ("<a href="https://thenounproject.com/term/gift/970853/">gift</a>") symbol by David Goodger ; Reports >- ("<a href="https://thenounproject.com/term/pie-chart/805/">pie chart</a>") symbol by Scott Lewis ; Administration ("<a href="https://thenounproject.com/term/gears/1063/">gears</a>") symbol by >- Jeremy Minnick ; Tools ("<a href="https://thenounproject.com/term/wrench/234/">wrench</a>") symbol by National Park Service >+ [% t('Circulation ("') %]<a href="https://thenounproject.com/icon/743/">[% t('fair-trade') %]</a>[% t('") symbol by Edward Boatman ; Patrons') %] >+ ("<a href="https://thenounproject.com/term/childrens-library/739/">[% t('children\'s library') %]</a>[% t('") symbol by Edward Boatman, Saul Tannenbaum,') %] >+ [% t('Stephen Kennedy, Nikki Snow, Brooke Hamilton ; Search ("') %]<a href="https://thenounproject.com/term/magnifying-glass/907/">[% t('magnifying') %] >+ [% t('glass') %]</a>[% t('") symbol by Philipp Süà ; Lists ("') %]<a href="https://thenounproject.com/term/folder/650/">[% t('folder') %]</a>[% t('") symbol by Jack') %] >+ [% t('Biesek, Gladys Brenner, Margaret Faye, Healther Merrifield, Kate') %] >+ [% t('Keating, Wendy Olmstead, Todd Pierce, Jamie Cowgill, Jim Bolek ;') %] >+ [% t('Course reserves ("') %]<a href="https://thenounproject.com/term/stack-of-books/11494/">[% t('stack of books') %]</a>[% t('") symbol by Jeremy J. Bristol;') %] >+ [% t('Cataloging ("') %]<a href="https://thenounproject.com/term/tag/888732/">[% t('price tag') %]</a>[% t('") symbol by the Noun Project ; Authorities') %] >+ ("<a href="https://thenounproject.com/term/link/1690/">[% t('link') %]</a>[% t('") symbol by Matthew Exton ; Serials ("') %]<a href="https://thenounproject.com/term/newspaper/1233/">[% t('newspaper') %]</a>[% t('") symbol by John') %] >+ [% t('Caserta ; Acquisitions ("') %]<a href="https://thenounproject.com/term/gift/970853/">[% t('gift') %]</a>[% t('") symbol by David Goodger ; Reports') %] >+ ("<a href="https://thenounproject.com/term/pie-chart/805/">[% t('pie chart') %]</a>[% t('") symbol by Scott Lewis ; Administration ("') %]<a href="https://thenounproject.com/term/gears/1063/">[% t('gears') %]</a>[% t('") symbol by') %] >+ [% t('Jeremy Minnick ; Tools ("') %]<a href="https://thenounproject.com/term/wrench/234/">[% t('wrench') %]</a>[% t('") symbol by National Park Service') %] > </li> > </ul> > >- <h2>jQuery Star Rating Plugin</h2> >- <p>jQuery Star Rating Plugin v3.14 by <a href="http://www.fyneworks.com/">Fyneworks.com</a> is licensed under the <a href="http://en.wikipedia.org/wiki/MIT_License">MIT License</a> and the <a href="http://creativecommons.org/licenses/GPL/2.0/">GPL License</a>.</p> >+ <h2>[% t('jQuery Star Rating Plugin') %]</h2> >+ <p>[% t('jQuery Star Rating Plugin v3.14 by') %] <a href="http://www.fyneworks.com/">[% t('Fyneworks.com') %]</a> [% t('is licensed under the') %] <a href="http://en.wikipedia.org/wiki/MIT_License">[% t('MIT License') %]</a> [% t('and the') %] <a href="http://creativecommons.org/licenses/GPL/2.0/">[% t('GPL License') %]</a>.</p> > >- <p>Copyright © 2008 <a href="http://www.fyneworks.com/">Fyneworks.com</a></p> >+ <p>[% t('Copyright © 2008') %] <a href="http://www.fyneworks.com/">[% t('Fyneworks.com') %]</a></p> > >- <h2>jQuery insertAtCaret Plugin</h2> >- <p>jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin devel team is licensed under the <a href="http://www.gnu.org/licenses/gpl.html">GPL License</a>.</p> >+ <h2>[% t('jQuery insertAtCaret Plugin') %]</h2> >+ <p>[% t('jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin devel team is licensed under the') %] <a href="http://www.gnu.org/licenses/gpl.html">[% t('GPL License') %]</a>.</p> > >- <p>Copyright © 2003-2010 phpMyAdmin devel team</p> >+ <p>[% t('Copyright © 2003-2010 phpMyAdmin devel team') %]</p> > >- <h2>jQuery treetable Plugin</h2> >+ <h2>[% t('jQuery treetable Plugin') %]</h2> > >- <p>The <a href="http://ludo.cubicphuse.nl/jquery-treetable/">jQuery treetable Plugin 3.1.0</a> is released under MIT license by Ludo van den Boom.</p> >+ <p>[% t('The') %] <a href="http://ludo.cubicphuse.nl/jquery-treetable/">[% t('jQuery treetable Plugin 3.1.0') %]</a> [% t('is released under MIT license by Ludo van den Boom.') %]</p> > >- <h2>OpenJS Keyboard Shortcuts Library</h2> >+ <h2>[% t('OpenJS Keyboard Shortcuts Library') %]</h2> > >- <p>The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a> >- by Binny V A is licensed under the BSD license.</p> >+ <p>[% t('The') %] <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">[% t('OpenJS keyboard shortcuts library') %]</a> >+ [% t('by Binny V A is licensed under the BSD license.') %]</p> > >- <h2>jquery.dataTables.grouping.js</h2> >- <p>The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a> >- plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.</p> >+ <h2>[% t('jquery.dataTables.grouping.js') %]</h2> >+ <p>[% t('The') %] <a href="https://code.google.com/p/jquery-datatables-row-grouping/">[% t('jquery.dataTables.grouping.js') %]</a> >+ [% t('plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.') %]</p> > >- <h2>jQuery Colvis plugin</h2> >- <p>The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a> >- by Allan Jardine is licensed under the BSD 3 and GPL v2 license.</p> >+ <h2>[% t('jQuery Colvis plugin') %]</h2> >+ <p>[% t('The') %] <a href="http://datatables.net/extensions/colvis/">[% t('controls for column visiblity in DataTables') %]</a> >+ [% t('by Allan Jardine is licensed under the BSD 3 and GPL v2 license.') %]</p> > >- <h2>jquery.multiple.select.js</h2> >- <p>The <a href="http://wenzhixin.net.cn/p/multiple-select/">jQuery multiple select plugin</a> >- by Zhixin Wen is licensed under the MIT license.</p> >+ <h2>[% t('jquery.multiple.select.js') %]</h2> >+ <p>[% t('The') %] <a href="http://wenzhixin.net.cn/p/multiple-select/">[% t('jQuery multiple select plugin') %]</a> >+ [% t('by Zhixin Wen is licensed under the MIT license.') %]</p> > >- <h2>Javascript Diff Algorithm</h2> >- <p>The <a href="http://ejohn.org/projects/javascript-diff-algorithm/">Javascript Diff Algorithm</a> plugin by John Resig is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p> >+ <h2>[% t('Javascript Diff Algorithm') %]</h2> >+ <p>[% t('The') %] <a href="http://ejohn.org/projects/javascript-diff-algorithm/">[% t('Javascript Diff Algorithm') %]</a> [% t('plugin by John Resig is licensed under the') %] <a href="http://opensource.org/licenses/mit-license.php">[% t('MIT License') %]</a>.</p> > >- <h2>jQuery Validation Plugin</h2> >- <p>The <a href="http://jqueryvalidation.org/">jQuery Validation Plugin</a> written and maintained by Jörn Zaefferer is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p> >+ <h2>[% t('jQuery Validation Plugin') %]</h2> >+ <p>[% t('The') %] <a href="http://jqueryvalidation.org/">[% t('jQuery Validation Plugin') %]</a> [% t('written and maintained by Jörn Zaefferer is licensed under the') %] <a href="http://opensource.org/licenses/mit-license.php">[% t('MIT License') %]</a>.</p> > >- <h2>TinyMCE WYSIWYG editor</h2> >- <p>The <a href="http://www.tinymce.com/">TinyMCE WYSIWYG editor v3.5.8 </a> by Moxiecode (Ephox) is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">LGPL v2.1</a>.</p> >+ <h2>[% t('TinyMCE WYSIWYG editor') %]</h2> >+ <p>[% t('The') %] <a href="http://www.tinymce.com/">[% t('TinyMCE WYSIWYG editor v3.5.8') %] </a> [% t('by Moxiecode (Ephox) is licensed under the') %] <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">[% t('LGPL v2.1') %]</a>.</p> > >- <h2>Font Awesome</h2> >- <p><a href="http://fontawesome.io">Font Awesome</a> by Dave Gandy is licensed under the <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> and the <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>.</p> >+ <h2>[% t('Font Awesome') %]</h2> >+ <p><a href="http://fontawesome.io">[% t('Font Awesome') %]</a> [% t('by Dave Gandy is licensed under the') %] <a href="http://scripts.sil.org/OFL">[% t('SIL OFL 1.1') %]</a> [% t('and the') %] <a href="http://opensource.org/licenses/mit-license.html">[% t('MIT License') %]</a>.</p> > >- <h2>CodeMirror editing library</h2> >- <p>The <a href="http://codemirror.net/">CodeMirror editing library</a> by Marijn Haverbeke is licensed under an <a href="http://codemirror.net/LICENSE">MIT license</a>.</p> >+ <h2>[% t('CodeMirror editing library') %]</h2> >+ <p>[% t('The') %] <a href="http://codemirror.net/">[% t('CodeMirror editing library') %]</a> [% t('by Marijn Haverbeke is licensed under an') %] <a href="http://codemirror.net/LICENSE">[% t('MIT license') %]</a>.</p> > >- <h2>FileSaver library</h2> >- <p>The <a href="https://github.com/eligrey/FileSaver.js/">FileSaver library</a> by Eli Grey is licensed under an <a href="https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md">MIT license</a>.</p> >+ <h2>[% t('FileSaver library') %]</h2> >+ <p>[% t('The') %] <a href="https://github.com/eligrey/FileSaver.js/">[% t('FileSaver library') %]</a> [% t('by Eli Grey is licensed under an') %] <a href="https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md">[% t('MIT license') %]</a>.</p> > >- <h2>Require.js JS module system</h2> >- <p>The <a href="http://requirejs.org/">Require.js JS module system</a> by The Dojo Foundation is licensed under an <a href="https://github.com/jrburke/requirejs/blob/master/LICENSE">MIT license</a>.</p> >+ <h2>[% t('Require.js JS module system') %]</h2> >+ <p>[% t('The') %] <a href="http://requirejs.org/">[% t('Require.js JS module system') %]</a> [% t('by The Dojo Foundation is licensed under an') %] <a href="https://github.com/jrburke/requirejs/blob/master/LICENSE">[% t('MIT license') %]</a>.</p> > >- <h2>OAI xslt stylesheet</h2> >- <p>The included OAI.xslt file by the <a href="http://dspace.org/">DSpace project</a> is licensed under a <a href="http://www.dspace.org/license/">BSD License</a>.</p> >+ <h2>[% t('OAI xslt stylesheet') %]</h2> >+ <p>[% t('The included OAI.xslt file by the') %] <a href="http://dspace.org/">[% t('DSpace project') %]</a> [% t('is licensed under a') %] <a href="http://www.dspace.org/license/">[% t('BSD License') %]</a>.</p> > >- <h2>Select2</h2> >- <p>The <a href="http://select2.github.io/select2/">Select2</a> library is licensed under <a href="https://github.com/select2/select2/blob/stable/3.5/LICENSE">the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License")</a>.</p> >+ <h2>[% t('Select2') %]</h2> >+ <p>[% t('The') %] <a href="http://select2.github.io/select2/">[% t('Select2') %]</a> [% t('library is licensed under') %] <a href="https://github.com/select2/select2/blob/stable/3.5/LICENSE">[% t('the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License")') %]</a>.</p> > >- <h2>jquery.tablednd.js</h2> >- <p>The <a href="https://github.com/isocra/TableDnD">TableDnD plug-in for jQuery</a> by Denis Howlett is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p> >+ <h2>[% t('jquery.tablednd.js') %]</h2> >+ <p>[% t('The') %] <a href="https://github.com/isocra/TableDnD">[% t('TableDnD plug-in for jQuery') %]</a> [% t('by Denis Howlett is licensed under the') %] <a href="http://opensource.org/licenses/mit-license.php">[% t('MIT License') %]</a>.</p> > >- <h2>Leaflet</h2> >- <p>The <a href="http://leafletjs.com">Leaflet</a> JavaScript library by Vladimir Agafonkinis licensed under the <a href="https://github.com/Leaflet/Leaflet/blob/master/LICENSE">BSD License</a>.</p> >+ <h2>[% t('Leaflet') %]</h2> >+ <p>[% t('The') %] <a href="http://leafletjs.com">[% t('Leaflet') %]</a> [% t('JavaScript library by Vladimir Agafonkinis licensed under the') %] <a href="https://github.com/Leaflet/Leaflet/blob/master/LICENSE">[% t('BSD License') %]</a>.</p> > >- <h2>jquery.emojiarea.js</h2> >- <p>The <a href="https://github.com/diy/jquery-emojiarea">Emojiarea plug-in for jQuery</a> by DIY Co is licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">the Apache License, Version 2.0</a>.</p> >+ <h2>[% t('jquery.emojiarea.js') %]</h2> >+ <p>[% t('The') %] <a href="https://github.com/diy/jquery-emojiarea">[% t('Emojiarea plug-in for jQuery') %]</a> [% t('by DIY Co is licensed under the') %] <a href="http://www.apache.org/licenses/LICENSE-2.0">[% t('the Apache License, Version 2.0') %]</a>.</p> > >- <h2>JSZip</h2> >- <p>The <a href="https://stuk.github.io/jszip/">JSZip</a> JavaScript library is licensed under both the <a href="https://github.com/Stuk/jszip/blob/master/LICENSE.markdown">MIT and GPLv3 Licenses</a>.</p> >+ <h2>[% t('JSZip') %]</h2> >+ <p>[% t('The') %] <a href="https://stuk.github.io/jszip/">[% t('JSZip') %]</a> [% t('JavaScript library is licensed under both the') %] <a href="https://github.com/Stuk/jszip/blob/master/LICENSE.markdown">[% t('MIT and GPLv3 Licenses') %]</a>.</p> > </div> > > <div id="translations"> >- <h2>Translation</h2> >+ <h2>[% t('Translation') %]</h2> > <ul> >-<li>اÙعربÙØ© (Arabic) Version 3.2 to 3.4, 3.16 & 3.18 by KnowledgeWare Technologies; Versions 3.6 to 3.14 by Arabic Koha support team: Karam Qubsi, Kouider Bounama, Sham Bajaa, Ghofran Alshami, Chrestian Aboud, Fatema Salem and Duaa Bazzazi. >-<li>አማርኛ (Amharic) Getway II Ethiopia Co. (Yohannes Mulugeta (Team Leader), Tegene Assefa, Abiyot Bayou)</li> >-<li>Armenian Tigran Zargaryan</li> >-<li>Български (Bulgarian) Radoslav Kolev</li> >-<li>euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, Tabakalera International Contemporary Culture Centre, and Nere Erkiaga</li> >-<li>বাংলা (Bengali) Parthasarathi Mukhopadhyay</li> >-<li>中文 (Chinese)</li> >-<li>Hrvatski (Croatian)</li> >-<li>čeština (Czech)</li> >-<li>Dænsk (Danish)</li> >-<li>Nederlands-Nederland (Dutch-The Netherlands) Sponsored by Rijksmuseum</li> >-<li>Nederlands-België (Dutch-Belgium)</li> >-<li>English</li> >-<li>suomi, suomen kieli (Finnish) Pasi Korkalo</li> >-<li>Français (French) <a href="http://www.koha-fr.org/content/lassociation-kohala">Kohala</a>, Pascale Nalon (ENSMP), and many more </li> >-<li>Galego (Galician) Ignacio Javier</li> >-<li>Deutsch (German) Friedrich zur Hellen, Robert Hillig, Katrin Fischer, Beda Szukics, Mirko Tietgen and Marc Véron</li> >-<li>ελληνικά (Greek, Modern [1453- ]) Georgia Katsarou, Panoraia Gaitanou and Kiriaki Roditi</li> >-<li>עברית (Hebrew)</li> >-<li>हिन्दी (Hindi)</li> >-<li>Magyar (Hungarian)Agnes Imecs</li> >-<li>Norsk BokmÃ¥l (Norwegian) Axel Bojer and Thomas Gramstad</li> >-<li>Norsk Nynorsk (Norwegian) Unni Knutsen and Marit Kristine Ãdland</li> >-<li>(Indonesian)</li> >-<li>Italiano (Italian) for 3.2: Zeno Tajoli, Pietro Gozzetti and Paolo Pozzan; for 3.4 and more: Zeno Tajoli, Stefano Bargioni, Paolo Bizzarri</li> >-<li>日本語 (Japanese)</li> >-<li>한국어 (Korean)</li> >-<li>ಕನ್ನಡ (kannaḍa)</li> >-<li>Latina (Latin)</li> >-<li>Lao Anousak Anthony Souphavanh</li> >-<li>Māori</li> >-<li>മലയാളം (Malayalam)</li> >-<li>فارسى (Persian)</li> >-<li>ଓଡ଼ିଆ (ōṛiyā)</li> >-<li>Polski (Polish)</li> >-<li>Português (Portuguese)</li> >-<li>Română (Romanian)</li> >-<li>Русский (Russian) Victor Titarchuk and Serhij Dubyk</li> >-<li>Español (Spanish) Bernardo González Kriegel, Héctor Castro and Tomás Cohen Arazi, with the help of the koha-es community.</li> >-<li>Svenska (Swedish)</li> >-<li>Tetun (Tetum) Karen Myers</li> >-<li>ภาษาไทย (Thai)</li> >-<li>Türkçe (Turkish) pre-3.8: Selma Aslan; for 3.8+, Suleyman Demirel University (Ugur Bulgan, Onur Erdem, Kemal Caner Bayrakci, and Alper Tutunsatar)</li> >-<li>اردو(Urdu) Ata ur Rehman</li> >-<li>Українська (Ukrainian) Victor Titarchuk and Serhij Dubyk</li> >+<li>[% t('اÙعربÙØ© (Arabic) Version 3.2 to 3.4, 3.16 & 3.18 by KnowledgeWare Technologies; Versions 3.6 to 3.14 by Arabic Koha support team: Karam Qubsi, Kouider Bounama, Sham Bajaa, Ghofran Alshami, Chrestian Aboud, Fatema Salem and Duaa Bazzazi.') %] >+<li>[% t('á ááá (Amharic) Getway II Ethiopia Co. (Yohannes Mulugeta (Team Leader), Tegene Assefa, Abiyot Bayou)') %]</li> >+<li>[% t('Armenian Tigran Zargaryan') %]</li> >+<li>[% t('ÐÑлгаÑÑки (Bulgarian) Radoslav Kolev') %]</li> >+<li>[% t('euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, Tabakalera International Contemporary Culture Centre, and Nere Erkiaga') %]</li> >+<li>[% t('বাà¦à¦²à¦¾ (Bengali) Parthasarathi Mukhopadhyay') %]</li> >+<li>[% t('ä¸æ (Chinese)') %]</li> >+<li>[% t('Hrvatski (Croatian)') %]</li> >+<li>[% t('ÄeÅ¡tina (Czech)') %]</li> >+<li>[% t('Dænsk (Danish)') %]</li> >+<li>[% t('Nederlands-Nederland (Dutch-The Netherlands) Sponsored by Rijksmuseum') %]</li> >+<li>[% t('Nederlands-België (Dutch-Belgium)') %]</li> >+<li>[% t('English') %]</li> >+<li>[% t('suomi, suomen kieli (Finnish) Pasi Korkalo') %]</li> >+<li>[% t('Français (French)') %] <a href="http://www.koha-fr.org/content/lassociation-kohala">[% t('Kohala') %]</a>[% t(', Pascale Nalon (ENSMP), and many more') %] </li> >+<li>[% t('Galego (Galician) Ignacio Javier') %]</li> >+<li>[% t('Deutsch (German) Friedrich zur Hellen, Robert Hillig, Katrin Fischer, Beda Szukics, Mirko Tietgen and Marc Véron') %]</li> >+<li>[% t('ελληνικά (Greek, Modern [1453- ]) Georgia Katsarou, Panoraia Gaitanou and Kiriaki Roditi') %]</li> >+<li>[% t('×¢×ר×ת (Hebrew)') %]</li> >+<li>[% t('हिनà¥à¤¦à¥ (Hindi)') %]</li> >+<li>[% t('Magyar (Hungarian)Agnes Imecs') %]</li> >+<li>[% t('Norsk BokmÃ¥l (Norwegian) Axel Bojer and Thomas Gramstad') %]</li> >+<li>[% t('Norsk Nynorsk (Norwegian) Unni Knutsen and Marit Kristine Ãdland') %]</li> >+<li>[% t('(Indonesian)') %]</li> >+<li>[% t('Italiano (Italian) for 3.2: Zeno Tajoli, Pietro Gozzetti and Paolo Pozzan; for 3.4 and more: Zeno Tajoli, Stefano Bargioni, Paolo Bizzarri') %]</li> >+<li>[% t('æ¥æ¬èª (Japanese)') %]</li> >+<li>[% t('íêµì´ (Korean)') %]</li> >+<li>[% t('à²à²¨à³à²¨à²¡ (kannaá¸a)') %]</li> >+<li>[% t('Latina (Latin)') %]</li> >+<li>[% t('Lao Anousak Anthony Souphavanh') %]</li> >+<li>[% t('MÄori') %]</li> >+<li>[% t('മലയാളഠ(Malayalam)') %]</li> >+<li>[% t('Ùارس٠(Persian)') %]</li> >+<li>[% t('à¬àିଠ(Åá¹iyÄ)') %]</li> >+<li>[% t('Polski (Polish)') %]</li> >+<li>[% t('Português (Portuguese)') %]</li> >+<li>[% t('RomânÄ (Romanian)') %]</li> >+<li>[% t('Ð ÑÑÑкий (Russian) Victor Titarchuk and Serhij Dubyk') %]</li> >+<li>[% t('Español (Spanish) Bernardo González Kriegel, Héctor Castro and Tomás Cohen Arazi, with the help of the koha-es community.') %]</li> >+<li>[% t('Svenska (Swedish)') %]</li> >+<li>[% t('Tetun (Tetum) Karen Myers') %]</li> >+<li>[% t('ภาษาà¹à¸à¸¢ (Thai)') %]</li> >+<li>[% t('Türkçe (Turkish) pre-3.8: Selma Aslan; for 3.8+, Suleyman Demirel University (Ugur Bulgan, Onur Erdem, Kemal Caner Bayrakci, and Alper Tutunsatar)') %]</li> >+<li>[% t('اردÙ(Urdu) Ata ur Rehman') %]</li> >+<li>[% t('УкÑаÑнÑÑка (Ukrainian) Victor Titarchuk and Serhij Dubyk') %]</li> > </ul> > > </div> > > <div id="history"> >- <h2>Koha history timeline</h2> >+ <h2>[% t('Koha history timeline') %]</h2> > [% IF ! timeline_read_error %] > <table style="cursor:pointer"> > <thead> > <tr> >- <td style="font-weight:bold;" >Date</td> >- <td style="font-weight:bold;" >Description</td> >+ <td style="font-weight:bold;">[% t('Date') %]</td> >+ <td style="font-weight:bold;">[% t('Description') %]</td> > </tr> > </thead> > [% FOREACH tabl IN table2 %] >@@ -1087,7 +1088,7 @@ > </table> > [% ELSE %] > <div class="dialog alert"> >- Could not read the history.txt file. Please make sure <docdir> is correctly defined in koha-conf.xml. >+ [% t('Could not read the history.txt file. Please make sure <docdir> is correctly defined in koha-conf.xml.') %] > </div> > [% END %] > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt >index d4a2b4e840..d0c06df020 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt >@@ -1,14 +1,15 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Koha %] > [% USE Branches %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › >- [% IF ( nopermission ) %]Access denied[% END %] >- [% IF ( timed_out ) %]Session timed out[% END %] >- [% IF ( different_ip ) %]IP address change[% END %] >- [% IF too_many_login_attempts %]This account has been locked. >- [% ELSIF invalid_username_or_password %]Invalid username or password[% END %] >- [% IF ( loginprompt ) %]Log in to Koha[% END %] >+<title>[% t('Koha âº') %] >+ [% IF ( nopermission ) %][% t('Access denied') %][% END %] >+ [% IF ( timed_out ) %][% t('Session timed out') %][% END %] >+ [% IF ( different_ip ) %][% t('IP address change') %][% END %] >+ [% IF too_many_login_attempts %][% t('This account has been locked.') %] >+ [% ELSIF invalid_username_or_password %][% t('Invalid username or password') %][% END %] >+ [% IF ( loginprompt ) %][% t('Log in to Koha') %][% END %] > </title> > [% INCLUDE 'doc-head-close.inc' %] > </head> >@@ -17,35 +18,35 @@ > <div class="main container-fluid"> > > <div id="login"> >-<h1><a href="http://koha-community.org">Koha</a></h1> >+<h1><a href="http://koha-community.org">[% t('Koha') %]</a></h1> > [% IF (Koha.Preference('StaffLoginInstructions')) %]<div id="login_instructions">[% Koha.Preference('StaffLoginInstructions') %]</div>[% END %] > [% IF ( nopermission ) %] > <div id="login_error"> >- <strong>Error:</strong> >- You do not have permission to access this page. >+ <strong>[% t('Error:') %]</strong> >+ [% t('You do not have permission to access this page.') %] > </div> >-<p><strong>Log in as a different user</strong></p></h2> >+<p><strong>[% t('Log in as a different user') %]</strong></p></h2> > [% END %] > > [% IF ( timed_out ) %] >-<div id="login_error"><strong>Error: </strong>Session timed out.<br /> Please log in again</div> >+<div id="login_error"><strong>[% t('Error:') %] </strong>[% t('Session timed out.') %]<br /> [% t('Please log in again') %]</div> > [% END %] > > [% IF ( different_ip ) %] >-<div id="login_error"><strong>Error: </strong>IP address has changed. Please log in again </div> >+<div id="login_error"><strong>[% t('Error:') %] </strong>[% t('IP address has changed. Please log in again') %] </div> > [% END %] > > [% IF ( wrongip ) %] >-<div id="login_error"><strong>Error: </strong>Autolocation is switched on and you are logging in with an IP address that doesn't match your library. </div> >+<div id="login_error"><strong>[% t('Error:') %] </strong>[% t('Autolocation is switched on and you are logging in with an IP address that doesn\'t match your library.') %] </div> > [% END %] > > [% IF too_many_login_attempts %] >- <div id="login_error"><strong>Error: </strong>This account has been locked!</div> >+ <div id="login_error"><strong>[% t('Error:') %] </strong>[% t('This account has been locked!') %]</div> > [% IF Koha.Preference('OpacResetPassword') && Koha.Preference('OpacBaseURL') %] >- <a href="[% Koha.Preference('OpacBaseURL') %]/cgi-bin/koha/opac-password-recovery.pl">You must reset your password</a>. >+ <a href="[% Koha.Preference('OpacBaseURL') %]/cgi-bin/koha/opac-password-recovery.pl">[% t('You must reset your password') %]</a>. > [% END %] > [% ELSIF invalid_username_or_password %] >-<div id="login_error"><strong>Error: </strong>Invalid username or password</div> >+<div id="login_error"><strong>[% t('Error:') %] </strong>[% t('Invalid username or password') %]</div> > [% END %] > > <!-- login prompt time--> >@@ -54,18 +55,18 @@ > [% FOREACH INPUT IN INPUTS %] > <input type="hidden" name="[% INPUT.name |html %]" value="[% INPUT.value |html %]" /> > [% END %] >-<p><label for="userid">Username:</label> >+<p><label for="userid">[% t('Username:') %]</label> > <input type="text" name="userid" id="userid" class="input focus" value="[% userid %]" size="20" tabindex="1" /> > </p> >-<p><label for="password">Password:</label> >+<p><label for="password">[% t('Password:') %]</label> > <input type="password" name="password" id="password" class="input" value="" size="20" tabindex="2" /> > </p> > > [% UNLESS IndependentBranches %] > <p> >- <label for="branch">Library:</label> >+ <label for="branch">[% t('Library:') %]</label> > <select name="branch" id="branch" class="input" tabindex="3"> >- <option value="">My library</option> >+ <option value="">[% t('My library') %]</option> > [% FOREACH l IN Branches.all( unfiltered => 1 ) %] > <option value="[% l.branchcode %]">[% l.branchname %]</option> > [% END %] >@@ -78,19 +79,19 @@ > <p class="submit"><input id="submit" type="submit" value="Login" tabindex="4" /></p> > </form> > [% IF ( casAuthentication ) %] >-<h4>Cas login</h4> >+<h4>[% t('Cas login') %]</h4> > > [% IF ( invalidCasLogin ) %] > <!-- This is what is displayed if cas login has failed --> >-<p>Sorry, the CAS login failed.</p> >+<p>[% t('Sorry, the CAS login failed.') %]</p> > [% END %] > > [% IF ( casServerUrl ) %] >- <p><a href="[% casServerUrl %]">If you have a CAS account, please click here to login</a>.<p> >+ <p><a href="[% casServerUrl %]">[% t('If you have a CAS account, please click here to login') %]</a>.<p> > [% END %] > > [% IF ( casServersLoop ) %] >- <p>If you have a CAS account, please choose against which one you would like to authenticate:</p> >+ <p>[% t('If you have a CAS account, please choose against which one you would like to authenticate:') %]</p> > <ul> > [% FOREACH casServer IN casServersLoop %] > <li><a href="[% casServer.value %]">[% casServer.name %]</a></li> >@@ -99,8 +100,8 @@ > [% END %] > > [% IF ( nopermission ) %] >- <p><a href="javascript:window.history.back()">[Previous page]</a> >- <a href="/">[Main page]</a></p> >+ <p><a href="javascript:window.history.back()">[% t('[Previous page]') %]</a> >+ <a href="/">[% t('[Main page]') %]</a></p> > [% END %] > > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/batch/print-notices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/batch/print-notices.tt >index ddf39a37ee..65f06f5429 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/batch/print-notices.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/batch/print-notices.tt >@@ -1,5 +1,6 @@ >+[% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >- <title>Print Notices for [% today %]</title> >+ <title>[% t('Print Notices for') %] [% today %]</title> > <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> > <style type="text/css"> > <!-- >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/common/patron_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/common/patron_search.tt >index 476bf893c7..afe61e1808 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/common/patron_search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/common/patron_search.tt >@@ -1,9 +1,10 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% USE Koha %] > [% USE Branches %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Patron search</title> >+<title>[% t('Koha ⺠Patron search') %]</title> > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.css("css/datatables.css") %] > </head> >@@ -15,27 +16,27 @@ > > <form id="searchform"> > <fieldset class="brief"> >- <h3>Search for patron</h3> >+ <h3>[% t('Search for patron') %]</h3> > <ol> > <li> >- <label for="searchmember_filter">Search:</label> >- <input type="text" id="searchmember_filter" value="[% searchmember %]"/> >+ <label for="searchmember_filter">[% t('Search:') %]</label> >+ <input type="text" id="searchmember_filter" value="[% searchmember %]" /> > </li> > <li> >- <label for="categorycode_filter">Category:</label> >+ <label for="categorycode_filter">[% t('Category:') %]</label> > <select id="categorycode_filter"> >- <option value="">Any</option> >+ <option value="">[% t('Any') %]</option> > [% FOREACH category IN categories %] > <option value="[% category.categorycode %]">[% category.description %]</option> > [% END %] > </select> > </li> > <li> >- <label for="branchcode_filter">Library:</label> >+ <label for="branchcode_filter">[% t('Library:') %]</label> > <select id="branchcode_filter"> > [% SET libraries = Branches.all( only_from_group => 1 ) %] > [% IF libraries.size != 1 %] >- <option value="">Any</option> >+ <option value="">[% t('Any') %]</option> > [% END %] > [% FOREACH l IN libraries %] > <option value="[% l.branchcode %]">[% l.branchname %]</option> >@@ -50,11 +51,11 @@ > </form> > > [% IF patrons_with_acq_perm_only %] >- <div class="hint">Only staff with superlibrarian or acquisitions permissions (or order_manage permission if granular permissions are enabled) are returned in the search results</div> >+ <div class="hint">[% t('Only staff with superlibrarian or acquisitions permissions (or order_manage permission if granular permissions are enabled) are returned in the search results') %]</div> > [% END %] > > <div class="browse"> >- Browse by last name: >+ [% t('Browse by last name:') %] > [% FOREACH letter IN alphabet.split(' ') %] > <a href="#" class="filterByLetter">[% letter %]</a> > [% END %] >@@ -70,15 +71,15 @@ > <tr> > [% FOR column IN columns %] > [% SWITCH column %] >- [% CASE 'cardnumber' %]<th>Card</th> >- [% CASE 'dateofbirth' %]<th>Date of birth</th> >- [% CASE 'address' %]<th>Address</th> >- [% CASE 'name' %]<th>Name</th> >- [% CASE 'branch' %]<th>Library</th> >- [% CASE 'category' %]<th>Category</th> >- [% CASE 'dateexpiry' %]<th>Expires on</td> >- [% CASE 'borrowernotes' %]<th>Notes</th> >- [% CASE 'action' %]<th> </th> >+ [% CASE 'cardnumber' %]<th>[% t('Card') %]</th> >+ [% CASE 'dateofbirth' %]<th>[% t('Date of birth') %]</th> >+ [% CASE 'address' %]<th>[% t('Address') %]</th> >+ [% CASE 'name' %]<th>[% t('Name') %]</th> >+ [% CASE 'branch' %]<th>[% t('Library') %]</th> >+ [% CASE 'category' %]<th>[% t('Category') %]</th> >+ [% CASE 'dateexpiry' %]<th>[% t('Expires on') %]</td> >+ [% CASE 'borrowernotes' %]<th>[% t('Notes') %]</th> >+ [% CASE 'action' %]<th> </th> > [% END %] > [% END %] > </tr> >@@ -87,7 +88,7 @@ > </table> > </div> > >-<div id="closewindow"><a href="#" class="btn btn-default btn-default close">Close</a></div> >+<div id="closewindow"><a href="#" class="btn btn-default btn-default close">[% t('Close') %]</a></div> > </div> > </div> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/errors/errorpage.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/errors/errorpage.tt >index 4d1619c79a..199b181357 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/errors/errorpage.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/errors/errorpage.tt >@@ -1,5 +1,6 @@ >+[% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Error [% errno %]</title> >+<title>[% t('Koha ⺠Error') %] [% errno %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body id="err_[% errno %]" class="err"> >@@ -7,26 +8,26 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › Error [% errno %]</div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> [% t('⺠Error') %] [% errno %]</div> > > <div id="doc" class="yui-t7"> > > <div id="bd"> > <div id="yui-main"> > <div class="yui-b"><div class="yui-g"> >- <h1>An error has occurred!</h1> >- <h2><em>Error [% errno %]</em></h2> >- <h3>This message may have been caused by any of the following reasons:</h3> >+ <h1>[% t('An error has occurred!') %]</h1> >+ <h2><em>[% t('Error') %] [% errno %]</em></h2> >+ <h3>[% t('This message may have been caused by any of the following reasons:') %]</h3> > <ul style="padding-bottom: 0.5em;"> >- <li>You made use of an external link to an item that is no longer available</li> >- <li>You followed an outdated link e.g. from a search engine or a bookmark</li> >- <li>You tried to access a page that needs authentication</li> >- <li>An internal link in the client is broken and the page does not exist</li> >+ <li>[% t('You made use of an external link to an item that is no longer available') %]</li> >+ <li>[% t('You followed an outdated link e.g. from a search engine or a bookmark') %]</li> >+ <li>[% t('You tried to access a page that needs authentication') %]</li> >+ <li>[% t('An internal link in the client is broken and the page does not exist') %]</li> > </ul> >- <h3>What's next?</h3> >+ <h3>[% t('What\'s next?') %]</h3> > <ul style="margin-bottom: 1em; padding-bottom: 1em; border-bottom: 1px solid #CCC;"> >- <li>Use top menu bar to navigate to another part of Koha.</li> >- <li>To report a broken link or any other issue, please contact the Koha Administrator. <a href="mailto:[% admin %]">Send email</a></li> >+ <li>[% t('Use top menu bar to navigate to another part of Koha.') %]</li> >+ <li>[% t('To report a broken link or any other issue, please contact the Koha Administrator.') %] <a href="mailto:[% admin %]">[% t('Send email') %]</a></li> > </ul> > </div> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt >index 8ab1027c10..e82c88a01b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt >@@ -1,10 +1,11 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% USE Branches %] > [% USE Koha %] > [% USE KohaDates %] > > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › ILL requests ›</title> >+<title>[% t('Koha ⺠ILL requests') %] âº</title> > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") %] > [% Asset.css("css/datatables.css") %] >@@ -287,12 +288,12 @@ > [% INCLUDE 'cat-search.inc' %] > > <div id="breadcrumbs"> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> › >- <a href="/cgi-bin/koha/ill/ill-requests.pl">ILL requests</a> >+ <a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠>+ <a href="/cgi-bin/koha/ill/ill-requests.pl">[% t('ILL requests') %]</a> > [% IF query_type == 'create' %] >- › New request >+ [% t('⺠New request') %] > [% ELSIF query_type == 'status' %] >- › Status >+ [% t('⺠Status') %] > [% END %] > </div> > >@@ -301,58 +302,56 @@ > <div id="yui-main"> > <div id="interlibraryloans" class="yui-b"> > [% IF !backends_available %] >- <div class="dialog message">ILL module configuration problem. Take a look at the <a href="/cgi-bin/koha/about.pl#sysinfo">about page</a></div> >+ <div class="dialog message">[% t('ILL module configuration problem. Take a look at the') %] <a href="/cgi-bin/koha/about.pl#sysinfo">[% t('about page') %]</a></div> > [% ELSE %] > [% INCLUDE 'ill-toolbar.inc' %] > > [% IF whole.error %] >- <h1>Error performing operation</h1> >+ <h1>[% t('Error performing operation') %]</h1> > <!-- Dispatch on Status --> >- <p>We encountered an error:</p> >+ <p>[% t('We encountered an error:') %]</p> > <p> > <pre>[% whole.message %] ([% whole.status %])</pre> > </p> > [% END %] > > [% IF query_type == 'create' %] >- <h1>New ILL request</h1> >+ <h1>[% t('New ILL request') %]</h1> > [% IF whole.stage == 'copyrightclearance' %] > <div> > <p> > [% Koha.Preference('ILLModuleCopyrightClearance') %] > </p> >- <a href="?method=create&stage=copyrightclearance&backend=[% whole.value.backend %]" >- class="btn btn-sm btn-default btn-group"><i class="fa fa-check">Yes</i></a> >- <a href="/cgi-bin/koha/ill/ill-requests.pl" >- class="btn btn-sm btn-default btn-group"><i class="fa fa-times">No</i></a> >+ <a href="?method=create&stage=copyrightclearance&backend=[% whole.value.backend %]" class="btn btn-sm btn-default btn-group"><i class="fa fa-check">[% t('Yes') %]</i></a> >+ <a href="/cgi-bin/koha/ill/ill-requests.pl" class="btn btn-sm btn-default btn-group"><i class="fa fa-times">[% t('No') %]</i></a> > </div> > [% ELSE %] > [% PROCESS $whole.template %] > [% END %] > > [% ELSIF query_type == 'confirm' %] >- <h1>Confirm ILL request</h1> >+ <h1>[% t('Confirm ILL request') %]</h1> > [% PROCESS $whole.template %] > > [% ELSIF query_type == 'cancel' and !whole.error %] >- <h1>Cancel a confirmed request</h1> >+ <h1>[% t('Cancel a confirmed request') %]</h1> > [% PROCESS $whole.template %] > > [% ELSIF query_type == 'generic_confirm' %] >- <h1>Place request with partner libraries</h1> >+ <h1>[% t('Place request with partner libraries') %]</h1> > [% IF error %] > [% IF error == 'no_target_email' %] > <div class="alert"> >- No target email addresses found. Either select at least >- one partner or check your ILL partner library records. >+ [% t('No target email addresses found. Either select at least') %] >+ [% t('one partner or check your ILL partner library records.') %] > </div> > [% ELSIF error == 'no_library_email' %] > <div class="alert"> >- Your library has no usable email address. Please set it. >+ [% t('Your library has no usable email address. Please set it.') %] > </div> > [% ELSIF error == 'unkown_error' %] > <div class="alert"> >- Unknown error processing your request. Contact your administrator. >+ [% t('Unknown error processing your request. Contact your administrator.') %] > </div> > [% END %] > [% END %] >@@ -361,14 +360,14 @@ > [% ill_url = "/cgi-bin/koha/ill/ill-requests.pl?method=illview&illrequest_id=" _ request.illrequest_id %] > <form method="POST" action="/cgi-bin/koha/ill/ill-requests.pl"> > <fieldset class="rows"> >- <legend>Interlibrary loan request details</legend> >+ <legend>[% t('Interlibrary loan request details') %]</legend> > <ol> > <li> >- <label for="partner_filter">Filter partner libraries:</label> >+ <label for="partner_filter">[% t('Filter partner libraries:') %]</label> > <input type="text" id="partner_filter"> > </li> > <li> >- <label for="partners" class="required">Select partner libraries:</label> >+ <label for="partners" class="required">[% t('Select partner libraries:') %]</label> > <select size="5" multiple="true" id="partners" name="partners" required="required"> > [% FOREACH partner IN whole.value.partners %] > <option value="[% partner.email %]"> >@@ -379,11 +378,11 @@ > > </li> > <li> >- <label for="subject" class="required">Subject Line</label> >+ <label for="subject" class="required">[% t('Subject Line') %]</label> > <input type="text" name="subject" id="subject" type="text" value="[% whole.value.draft.subject %]" required="required" /> > </li> > <li> >- <label for="body" class="required">Email text:</label> >+ <label for="body" class="required">[% t('Email text:') %]</label> > <textarea name="body" id="body" rows="20" cols="80" required="required">[% whole.value.draft.body %]</textarea> > </li> > </ol> >@@ -392,16 +391,16 @@ > <input type="hidden" value="[% request.illrequest_id %]" name="illrequest_id"> > </fieldset> > <fieldset class="action"> >- <input type="submit" class="btn btn-default" value="Send email"/> >- <span><a href="[% ill_url %]" title="Return to request details">Cancel</a></span> >+ <input type="submit" class="btn btn-default" value="Send email" /> >+ <span><a href="[% ill_url %]" title="[% t('Return to request details') %]">[% t('Cancel') %]</a></span> > </fieldset> > </form> > [% ELSE %] > <fieldset class="rows"> >- <legend>Interlibrary loan request details</legend> >- <p>No partners have been defined yet. Please create appropriate patron records (by default ILLLIBS category).</p> >- <p>Be sure to provide email addresses for these patrons.</p> >- <p><span><a href="[% ill_url %]" title="Return to request details">Cancel</a></span></p> >+ <legend>[% t('Interlibrary loan request details') %]</legend> >+ <p>[% t('No partners have been defined yet. Please create appropriate patron records (by default ILLLIBS category).') %]</p> >+ <p>[% t('Be sure to provide email addresses for these patrons.') %]</p> >+ <p><span><a href="[% ill_url %]" title="[% t('Return to request details') %]">[% t('Cancel') %]</a></span></p> > </fieldset> > [% END %] > <!-- generic_confirm ends here --> >@@ -409,49 +408,49 @@ > [% ELSIF query_type == 'edit_action' %] > <form method="POST" action="/cgi-bin/koha/ill/ill-requests.pl"> > <fieldset class="rows"> >- <legend>Request details</legend> >+ <legend>[% t('Request details') %]</legend> > <ol> > <li class="borrowernumber"> >- <label for="borrowernumber">Patron ID:</label> >+ <label for="borrowernumber">[% t('Patron ID:') %]</label> > <input name="borrowernumber" id="borrowernumber" type="text" value="[% request.borrowernumber %]"> > </li> > <li class="biblio_id"> >- <label for="biblio_id" class="biblio_id">Biblio ID:</label> >+ <label for="biblio_id" class="biblio_id">[% t('Biblio ID:') %]</label> > <input name="biblio_id" id="biblio_id" type="text" value="[% request.biblio_id %]"> > </li> > <li class="branchcode"> >- <label for="library" class="branchcode">Library:</label> >+ <label for="library" class="branchcode">[% t('Library:') %]</label> > <select name="branchcode" id="library"> > [% PROCESS options_for_libraries libraries => Branches.all( selected => request.branchcode ) %] > </select> > </li> > <li class="status"> >- <label class="status">Status:</label> >+ <label class="status">[% t('Status:') %]</label> > [% stat = request.status %] > [% request.capabilities.$stat.name %] > </li> > <li class="updated"> >- <label class="updated">Last updated:</label> >+ <label class="updated">[% t('Last updated:') %]</label> > [% request.updated | $KohaDates with_hours => 1 %] > </li> > <li class="medium"> >- <label class="medium">Request type:</label> >+ <label class="medium">[% t('Request type:') %]</label> > [% request.medium %] > </li> > <li class="cost"> >- <label class="cost">Cost:</label> >+ <label class="cost">[% t('Cost:') %]</label> > [% request.cost || 'N/A' %] > </li> > <li class="req_id"> >- <label class="req_id">Request number:</label> >+ <label class="req_id">[% t('Request number:') %]</label> > [% request.id_prefix _ request.illrequest_id %] > </li> > <li class="notesstaff"> >- <label for="notesstaff" class="notesstaff">Staff notes:</label> >+ <label for="notesstaff" class="notesstaff">[% t('Staff notes:') %]</label> > <textarea name="notesstaff" id="notesstaff" rows="5">[% request.notesstaff %]</textarea> > </li> > <li class="notesopac"> >- <label for="notesopac" class="notesopac">Opac notes:</label> >+ <label for="notesopac" class="notesopac">[% t('Opac notes:') %]</label> > <textarea name="notesopac" id="notesopac" rows="5">[% request.notesopac %]</textarea> > </li> > </ol> >@@ -461,36 +460,36 @@ > <input type="hidden" value="form" name="stage"> > <input type="hidden" value="[% request.illrequest_id %]" name="illrequest_id"> > <input type="submit" value="Submit"> >- <a class="cancel" href="/cgi-bin/koha/ill/ill-requests.pl?method=illview&illrequest_id=[% request.id %]">Cancel</a> >+ <a class="cancel" href="/cgi-bin/koha/ill/ill-requests.pl?method=illview&illrequest_id=[% request.id %]">[% t('Cancel') %]</a> > </fieldset> > </form> > > [% ELSIF query_type == 'delete_confirm' %] > > <div class="dialog alert"> >- <h3>Are you sure you wish to delete this request?</h3> >+ <h3>[% t('Are you sure you wish to delete this request?') %]</h3> > <form action="/cgi-bin/koha/ill/ill-requests.pl" method="post"> > <input type="hidden" name="method" value="delete" /> > <input type="hidden" name="confirmed" value="1" /> > <input type="hidden" name="illrequest_id" value="[% request.id %]" /> >- <button type="submit" class="btn btn-default btn-sm approve"><i class="fa fa-fw fa-check"></i> Yes, delete</button> >+ <button type="submit" class="btn btn-default btn-sm approve"><i class="fa fa-fw fa-check"></i> [% t('Yes, delete') %]</button> > </form> >- <a class="btn btn-default btn-sm deny" href="/cgi-bin/koha/ill/ill-requests.pl?method=illview&illrequest_id=[% request.id %]"><i class="fa fa-fw fa-remove"></i>No, do not delete</a> >+ <a class="btn btn-default btn-sm deny" href="/cgi-bin/koha/ill/ill-requests.pl?method=illview&illrequest_id=[% request.id %]"><i class="fa fa-fw fa-remove"></i>[% t('No, do not delete') %]</a> > </div> > > [% ELSIF query_type == 'illview' %] > [% actions = request.available_actions %] > [% capabilities = request.capabilities %] > [% req_status = request.status %] >- <h1>Manage ILL request</h1> >+ <h1>[% t('Manage ILL request') %]</h1> > <div id="toolbar" class="btn-toolbar"> >- <a title="Edit request" id="ill-toolbar-btn-edit-action" class="btn btn-sm btn-default" href="/cgi-bin/koha/ill/ill-requests.pl?method=edit_action&illrequest_id=[% request.illrequest_id %]"> >+ <a title="[% t('Edit request') %]" id="ill-toolbar-btn-edit-action" class="btn btn-sm btn-default" href="/cgi-bin/koha/ill/ill-requests.pl?method=edit_action&illrequest_id=[% request.illrequest_id %]"> > <span class="fa fa-pencil"></span> >- Edit request >+ [% t('Edit request') %] > </a> > [% FOREACH action IN actions %] > [% IF action.method != 0 %] >- <a title="[% action.ui_method_name %]" id="ill-toolbar-btn-[% action.id | lower %]" class="btn btn-sm btn-default" href="/cgi-bin/koha/ill/ill-requests.pl?method=[% action.method %]&illrequest_id=[% request.illrequest_id %]"> >+ <a title="[% action.ui_method_name %]" id="ill-toolbar-btn-[% action.id | lower %]" class="btn btn-sm btn-default" href="/cgi-bin/koha/ill/ill-requests.pl?method=[% action.method %]&illrequest_id=[% request.illrequest_id %]"> > <span class="fa [% action.ui_method_icon %]"></span> > [% action.ui_method_name %] > </a> >@@ -499,62 +498,62 @@ > </div> > <div id="ill-view-panel" class="panel panel-default"> > <div class="panel-heading"> >- <h3>Request details</h3> >+ <h3>[% t('Request details') %]</h3> > </div> > <div class="panel-body"> >- <h4>Details from library</h4> >+ <h4>[% t('Details from library') %]</h4> > <div class="rows"> > <div class="orderid"> >- <span class="label orderid">Order ID:</span> >+ <span class="label orderid">[% t('Order ID:') %]</span> > [% request.orderid || "N/A" %] > </div> > <div class="borrowernumber"> >- <span class="label borrowernumber">Patron:</span> >+ <span class="label borrowernumber">[% t('Patron:') %]</span> > [% borrowerlink = "/cgi-bin/koha/members/moremember.pl" _ "?borrowernumber=" _ request.patron.borrowernumber %] >- <a href="[% borrowerlink %]" title="View borrower details"> >+ <a href="[% borrowerlink %]" title="[% t('View borrower details') %]"> > [% request.patron.firstname _ " " _ request.patron.surname _ " [" _ request.patron.cardnumber _ "]" %] > </a> > </div> > > <div class="biblio_id"> >- <span class="label biblio_id">Biblio ID:</span> >+ <span class="label biblio_id">[% t('Biblio ID:') %]</span> > [% request.biblio_id || "N/A" %] > </div> > <div class="branchcode"> >- <span class="label branchcode">Library:</span> >+ <span class="label branchcode">[% t('Library:') %]</span> > [% Branches.GetName(request.branchcode) %] > </div> > <div class="status"> >- <span class="label status">Status:</span> >+ <span class="label status">[% t('Status:') %]</span> > [% capabilities.$req_status.name %] > </div> > <div class="updated"> >- <span class="label updated">Last updated:</span> >+ <span class="label updated">[% t('Last updated:') %]</span> > [% request.updated | $KohaDates with_hours => 1 %] > </div> > <div class="medium"> >- <span class="label medium">Request type:</span> >+ <span class="label medium">[% t('Request type:') %]</span> > [% request.medium %] > </div> > <div class="cost"> >- <span class="label cost">Cost:</span> >+ <span class="label cost">[% t('Cost:') %]</span> > [% request.cost || "N/A" %] > </div> > <div class="req_id"> >- <span class="label req_id">Request number:</span> >+ <span class="label req_id">[% t('Request number:') %]</span> > [% request.id_prefix _ request.illrequest_id %] > </div> > <div class="notesstaff"> >- <span class="label notes_staff">Staff notes:</span> >+ <span class="label notes_staff">[% t('Staff notes:') %]</span> > <pre>[% request.notesstaff %]</pre> > </div> > <div class="notesopac"> >- <span class="label notes_opac">Notes:</span> >+ <span class="label notes_opac">[% t('Notes:') %]</span> > <pre>[% request.notesopac %]</pre> > </div> > </div> > <div class="rows"> >- <h4>Details from supplier ([% request.backend %])</h4> >+ <h4>[% t('Details from supplier (') %][% request.backend %])</h4> > [% FOREACH meta IN request.metadata %] > <div class="requestmeta-[% meta.key %]"> > <span class="label">[% meta.key %]:</span> >@@ -563,7 +562,7 @@ > [% END %] > </div> > <div class="rows"> >- <h3><a id="toggle_requestattributes" href="#">Toggle full supplier metadata</a></h3> >+ <h3><a id="toggle_requestattributes" href="#">[% t('Toggle full supplier metadata') %]</a></h3> > <div id="requestattributes" class="content_hidden"> > [% FOREACH attr IN request.illrequestattributes %] > <div class="requestattr-[% attr.type %]"> >@@ -579,21 +578,21 @@ > > [% ELSIF query_type == 'illlist' %] > <!-- illlist --> >- <h1>View ILL requests</h1> >+ <h1>[% t('View ILL requests') %]</h1> > <div id="results"> >- <h3>Details for all requests</h3> >+ <h3>[% t('Details for all requests') %]</h3> > > <table id="ill-requests"> > <thead> > <tr id="illview-header"> >- <th>Author</th> >- <th>Title</th> >- <th>Patron</th> >- <th>Biblio ID</th> >- <th>Library</th> >- <th>Status</th> >- <th>Updated on</th> >- <th>Request number</th> >+ <th>[% t('Author') %]</th> >+ <th>[% t('Title') %]</th> >+ <th>[% t('Patron') %]</th> >+ <th>[% t('Biblio ID') %]</th> >+ <th>[% t('Library') %]</th> >+ <th>[% t('Status') %]</th> >+ <th>[% t('Updated on') %]</th> >+ <th>[% t('Request number') %]</th> > <th class="actions"></th> > </tr> > </thead> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt >index 8a97473edc..85977b6363 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt >@@ -1,8 +1,9 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% USE Koha %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha staff client</title> >+<title>[% t('Koha staff client') %]</title> > [% Asset.css("css/mainpage.css") %] > [% INCLUDE 'doc-head-close.inc' %] > </head> >@@ -10,23 +11,23 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'home-search.inc' %] > >-<div id="breadcrumbs">Home</div> >+<div id="breadcrumbs">[% t('Home') %]</div> > > <div id="container-main" class="container-fluid"> > <div class="row"> > <div class="col-sm-3"> > [% IF ( koha_news_count ) %] > <div id="area-news"> >- <h3><span class="news_title">News</span></h3> >+ <h3><span class="news_title">[% t('News') %]</span></h3> > [% SET newsdisp = Koha.Preference('NewsAuthorDisplay') %] > [% FOREACH koha_new IN koha_news %] > <div class="newsitem" id="news[% koha_new.idnew %]"><h4>[% koha_new.title %]</h4> > <div class="newsbody">[% koha_new.content %]</div> >- <p class="newsfooter"> Posted on [% koha_new.newdate %][% IF( ( newsdisp == 'staff' || newsdisp == 'both' ) && koha_new.borrowernumber ) %] by <span class="newsauthor_title">[% koha_new.author_title %] </span>[% koha_new.author_firstname %] [% koha_new.author_surname %]<br />[% END %] >+ <p class="newsfooter"> [% t('Posted on') %] [% koha_new.newdate %][% IF( ( newsdisp == 'staff' || newsdisp == 'both' ) && koha_new.borrowernumber ) %] [% t('by') %] <span class="newsauthor_title">[% koha_new.author_title %] </span>[% koha_new.author_firstname %] [% koha_new.author_surname %]<br />[% END %] > [% IF ( CAN_user_tools ) %] >- <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&id=[% koha_new.idnew %]">Edit</a> >- | <a class="news_delete" href="/cgi-bin/koha/tools/koha-news.pl?op=del&ids=[% koha_new.idnew %]">Delete</a> >- | <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form">New</a> >+ <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&id=[% koha_new.idnew %]">[% t('Edit') %]</a> >+ | <a class="news_delete" href="/cgi-bin/koha/tools/koha-news.pl?op=del&ids=[% koha_new.idnew %]">[% t('Delete') %]</a> >+ | <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form">[% t('New') %]</a> > [% END %] > </p> > </div> >@@ -40,43 +41,43 @@ > <ul class="biglinks-list"> > [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %] > <li> >- <a class="icon_general icon_circulation" href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> >+ <a class="icon_general icon_circulation" href="/cgi-bin/koha/circ/circulation-home.pl">[% t('Circulation') %]</a> > </li> > [% END %] > > [% IF CAN_user_borrowers_edit_borrowers %] > <li> >- <a class="icon_general icon_patrons" href="/cgi-bin/koha/members/members-home.pl">Patrons</a> >+ <a class="icon_general icon_patrons" href="/cgi-bin/koha/members/members-home.pl">[% t('Patrons') %]</a> > </li> > [% END %] > > [% IF ( CAN_user_catalogue ) %] > <li> >- <a class="icon_general icon_search" href="/cgi-bin/koha/catalogue/search.pl">Advanced search</a> >+ <a class="icon_general icon_search" href="/cgi-bin/koha/catalogue/search.pl">[% t('Advanced search') %]</a> > </li> > [% END %] > > <li> >- <a class="icon_general icon_lists" href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a> >+ <a class="icon_general icon_lists" href="/cgi-bin/koha/virtualshelves/shelves.pl">[% t('Lists') %]</a> > </li> > > [% IF ( UseCourseReserves ) %] > <li> >- <a class="icon_general icon_course_reserves" href="/cgi-bin/koha/course_reserves/course-reserves.pl">Course reserves</a> >+ <a class="icon_general icon_course_reserves" href="/cgi-bin/koha/course_reserves/course-reserves.pl">[% t('Course reserves') %]</a> > </li> > [% END %] > > [% IF ( CAN_user_editcatalogue_edit_catalogue || CAN_user_editcatalogue_edit_items ) %] > <li> >- <a class="icon_general icon_cataloging" href="/cgi-bin/koha/cataloguing/addbooks.pl">Cataloging</a> >+ <a class="icon_general icon_cataloging" href="/cgi-bin/koha/cataloguing/addbooks.pl">[% t('Cataloging') %]</a> > </li> > [% END %] > <li> >- <a class="icon_general icon_authorities" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a> >+ <a class="icon_general icon_authorities" href="/cgi-bin/koha/authorities/authorities-home.pl">[% t('Authorities') %]</a> > </li> > [% IF Koha.Preference('ILLModule') && CAN_user_ill %] > <li> >- <a class="icon_general icon_ill" href="/cgi-bin/koha/ill/ill-requests.pl">ILL requests</a> >+ <a class="icon_general icon_ill" href="/cgi-bin/koha/ill/ill-requests.pl">[% t('ILL requests') %]</a> > </li> > [% END %] > </ul> >@@ -85,38 +86,38 @@ > <ul class="biglinks-list"> > [% IF ( CAN_user_serials ) %] > <li> >- <a class="icon_general icon_serials" href="/cgi-bin/koha/serials/serials-home.pl">Serials</a> >+ <a class="icon_general icon_serials" href="/cgi-bin/koha/serials/serials-home.pl">[% t('Serials') %]</a> > <span class="biglink"></span> > </li> > [% END %] > > [% IF ( CAN_user_acquisition ) %] > <li> >- <a class="icon_general icon_acquisitions" href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> >+ <a class="icon_general icon_acquisitions" href="/cgi-bin/koha/acqui/acqui-home.pl">[% t('Acquisitions') %]</a> > <span class="biglink"></span> > </li> > [% END %] > > [% IF ( CAN_user_reports ) %] > <li> >- <a class="icon_general icon_reports" href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> >+ <a class="icon_general icon_reports" href="/cgi-bin/koha/reports/reports-home.pl">[% t('Reports') %]</a> > </li> > [% END %] > > > [% IF ( CAN_user_tools ) %] > <li> >- <a class="icon_general icon_tools" href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> >+ <a class="icon_general icon_tools" href="/cgi-bin/koha/tools/tools-home.pl">[% t('Tools') %]</a> > </li> > [% END %] > > [% IF ( CAN_user_parameters ) %] > <li> >- <a class="icon_general icon_administration" href="/cgi-bin/koha/admin/admin-home.pl">Koha administration</a> >+ <a class="icon_general icon_administration" href="/cgi-bin/koha/admin/admin-home.pl">[% t('Koha administration') %]</a> > </li> > [% END %] > <li> >- <a class="icon_general icon_koha" href="/cgi-bin/koha/about.pl">About Koha</a> >+ <a class="icon_general icon_koha" href="/cgi-bin/koha/about.pl">[% t('About Koha') %]</a> > </li> > </ul> > </div> <!-- /.col-sm-6 --> >@@ -130,7 +131,7 @@ > [% IF pending_article_requests %] > <div class="pending-info" id="article_requests_pending"> > >- <a href="/cgi-bin/koha/circ/article-requests.pl">Article requests</a>: >+ <a href="/cgi-bin/koha/circ/article-requests.pl">[% t('Article requests') %]</a>: > <span class="pending-number-link">[% pending_article_requests %]</span> > </div> > [% END %] >@@ -138,21 +139,21 @@ > [% IF ( CAN_user_acquisition && pendingsuggestions ) %] > <div class="pending-info" id="suggestions_pending"> > >- <a href="/cgi-bin/koha/suggestion/suggestion.pl#ASKED">Suggestions pending approval</a>: >+ <a href="/cgi-bin/koha/suggestion/suggestion.pl#ASKED">[% t('Suggestions pending approval') %]</a>: > <span class="pending-number-link">[% pendingsuggestions %]</span> > </div> > [% END %] > > [% IF ( CAN_user_tools_moderate_comments && pendingcomments ) %] > <div class="pending-info" id="comments_pending"> >- <a href="/cgi-bin/koha/reviews/reviewswaiting.pl">Comments pending approval</a>: >+ <a href="/cgi-bin/koha/reviews/reviewswaiting.pl">[% t('Comments pending approval') %]</a>: > <span class="pending-number-link">[% pendingcomments %]</span> > </div> > [% END %] > > [% IF ( CAN_user_tools_moderate_tags && pendingtags ) %] > <div class="pending-info" id="tags_pending"> >- <a href="/cgi-bin/koha/tags/review.pl">Tags pending approval</a>: >+ <a href="/cgi-bin/koha/tags/review.pl">[% t('Tags pending approval') %]</a>: > <span class="pending-number-link">[% pendingtags %]</span> > </div> > [% END %] >@@ -160,14 +161,14 @@ > > [% IF ( CAN_user_borrowers_edit_borrowers && pending_borrower_modifications ) %] > <div class="pending-info" id="patron_updates_pending"> >- <a href="/cgi-bin/koha/members/members-update.pl">Patrons requesting modifications</a>: >+ <a href="/cgi-bin/koha/members/members-update.pl">[% t('Patrons requesting modifications') %]</a>: > <span class="pending-number-link">[% pending_borrower_modifications %]</span> > </div> > [% END %] > > [% IF CAN_user_borrowers_edit_borrowers && pending_discharge_requests %] > <div class="pending-info" id="patron_discharges_pending"> >- <a href="/cgi-bin/koha/members/discharges.pl">Discharge requests pending</a>: >+ <a href="/cgi-bin/koha/members/discharges.pl">[% t('Discharge requests pending') %]</a>: > <span class="pending-number-link">[% pending_discharge_requests %]</span> > </div> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >index 91e9e5b754..438a0cef9f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt >@@ -1,3 +1,4 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% USE Koha %] > [% USE KohaDates %] >@@ -6,9 +7,9 @@ > [% USE ItemTypes %] > [% INCLUDE 'doc-head-open.inc' %] > [% UNLESS ( multi_hold ) %] >- <title>Koha › Circulation › Holds › Place a hold on [% title |html %]</title> >+ <title>[% t('Koha ⺠Circulation ⺠Holds ⺠Place a hold on') %] [% title |html %]</title> > [% ELSE %] >- <title>Koha › Circulation › Holds › Confirm holds</title> >+ <title>[% t('Koha ⺠Circulation ⺠Holds ⺠Confirm holds') %]</title> > [% END %] > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.css("css/datatables.css") %] >@@ -229,9 +230,9 @@ function checkMultiHold() { > [% INCLUDE 'circ-search.inc' %] > > [% UNLESS ( multi_hold ) %] >- <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> › <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]">[% title |html %]</a> › Place a hold on [% title |html %]</div> >+ <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/catalogue/search.pl">[% t('Catalog') %]</a> ⺠<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]">[% title |html %]</a> [% t('⺠Place a hold on') %] [% title |html %]</div> > [% ELSE %] >- <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> › Confirm holds</div> >+ <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/catalogue/search.pl">[% t('Catalog') %]</a> [% t('⺠Confirm holds') %]</div> > [% END %] > > <div id="doc3" class="yui-t2"> >@@ -242,17 +243,17 @@ function checkMultiHold() { > [% IF ( noitems ) %] > <div class="dialog alert"> > [%IF (multi_hold) %] >- <strong>Cannot place hold:</strong> one or more records without items attached. >+ <strong>[% t('Cannot place hold:') %]</strong> [% t('one or more records without items attached.') %] > [% ELSE %] >- <strong>Cannot place hold:</strong> this record has no items attached. >+ <strong>[% t('Cannot place hold:') %]</strong> [% t('this record has no items attached.') %] > [% END %] > </div> > [% END %] > > [% IF ( messagetransfert ) %] > <div class="dialog message"> >- <h2>Hold found for ([% nextreservtitle %]), please transfer</h2> >- <p>Hold placed by : <strong> [% nextreservsurname %] [% nextreservfirstname %]</strong> at : <strong> [% branchname %] </strong>, Please transfer this item. >+ <h2>[% t('Hold found for (') %][% nextreservtitle %][% t('), please transfer') %]</h2> >+ <p>[% t('Hold placed by :') %] <strong> [% nextreservsurname %] [% nextreservfirstname %]</strong> [% t('at :') %] <strong> [% branchname %] </strong>[% t(', Please transfer this item.') %] > </p> > <form name="cancelReservewithtransfert" action="branchreserves.pl" method="post"> > <input type="submit" class="button" /> >@@ -261,26 +262,26 @@ function checkMultiHold() { > [% END %] > > [% UNLESS ( multi_hold ) %] >- <h1>Place a hold on [% INCLUDE 'biblio-default-view.inc' %][% title |html %]</a></h1> >+ <h1>[% t('Place a hold on') %] [% INCLUDE 'biblio-default-view.inc' %][% title |html %]</a></h1> > [% ELSE %] >- <h1>Confirm holds</h1> >+ <h1>[% t('Confirm holds') %]</h1> > [% END %] > > [% UNLESS patron OR patron.borrowernumber OR noitems %] > [% IF ( messageborrower ) %] >- <div class="dialog alert"><h3>Patron not found</h3><p>No patron with this name, please, try another</p> </div> >+ <div class="dialog alert"><h3>[% t('Patron not found') %]</h3><p>[% t('No patron with this name, please, try another') %]</p> </div> > [% END %] >- <form id="holds_patronsearch" action="request.pl?biblionumber=[% biblionumber %]" method="post"> >+ <form id="holds_patronsearch" action="request.pl?biblionumber=[% biblionumber %]" method="post"> > <fieldset id="circ_holds_selectborrower" class="brief"> > > [% UNLESS borrowers %] >- <label for="patron">Patron: </label> >- <div class="hint">Enter patron card number or partial name:</div> >+ <label for="patron">[% t('Patron:') %] </label> >+ <div class="hint">[% t('Enter patron card number or partial name:') %]</div> > <input type="text" size="40" id="patron" class="focus" name="findborrower" /> > <input type="submit" value="Search" /> > [% IF multi_hold %] >- <input type="hidden" name="multi_hold" value="[% multi_hold %]"/> >- <input type="hidden" name="biblionumbers" value="[% biblionumbers %]"/> >+ <input type="hidden" name="multi_hold" value="[% multi_hold %]" /> >+ <input type="hidden" name="biblionumbers" value="[% biblionumbers %]" /> > [% ELSE %] > <input type="hidden" name="biblionumber" value="[% biblionumber %]" /> > [% END %] >@@ -291,8 +292,8 @@ function checkMultiHold() { > > [% END %] > [% IF ( multi_hold ) %] >- <input type="hidden" name="multi_hold" value="[% multi_hold %]"/> >- <input type="hidden" name="biblionumbers" value="[% biblionumbers %]"/> >+ <input type="hidden" name="multi_hold" value="[% multi_hold %]" /> >+ <input type="hidden" name="biblionumbers" value="[% biblionumbers %]" /> > [% END %] > </form> > [% ELSIF NOT noitems %] >@@ -301,32 +302,32 @@ function checkMultiHold() { > <div class="dialog alert"> > > [% UNLESS ( multi_hold ) %] >- <h3>Cannot place hold</h3> >+ <h3>[% t('Cannot place hold') %]</h3> > <ul> > [% IF ( exceeded_maxreserves ) %] >- <li><strong>Too many holds: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] </a> can only place a maximum of [% maxreserves %] total holds.</li> >+ <li><strong>[% t('Too many holds:') %] </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] </a> [% t('can only place a maximum of') %] [% maxreserves %] [% t('total holds.') %]</li> > [% ELSIF ( exceeded_holds_per_record ) %] >- <li><strong>Too many holds for this record: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] </a> can only place a maximum of [% max_holds_for_record %] hold(s) on this record.</li> >+ <li><strong>[% t('Too many holds for this record:') %] </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] </a> [% t('can only place a maximum of') %] [% max_holds_for_record %] [% t('hold(s) on this record.') %]</li> > [% ELSIF ( alreadypossession ) %] >- <li> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a> <strong>is already in possession</strong> of one item.</li> >+ <li> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a> <strong>[% t('is already in possession') %]</strong> [% t('of one item.') %]</li> > [% ELSIF ( alreadyreserved ) %] >- <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a> <strong>already has a hold</strong> on this item.</li> >+ <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a> <strong>[% t('already has a hold') %]</strong> [% t('on this item.') %]</li> > [% ELSIF ( ageRestricted ) %] >- <li><strong>Age restricted</strong></li> >+ <li><strong>[% t('Age restricted') %]</strong></li> > [% ELSIF ( none_available ) %] >- <li> <strong>No items are available</strong> to be placed on hold.</li> >+ <li> <strong>[% t('No items are available') %]</strong> [% t('to be placed on hold.') %]</li> > [% ELSIF ( maxreserves ) %] >- <li><strong>Too many holds: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] </a> has too many holds.</li> >+ <li><strong>[% t('Too many holds:') %] </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] </a> [% t('has too many holds.') %]</li> > [% END %] > </ul> > [% ELSE %] >- <h3>Cannot place hold on some items</h3> >+ <h3>[% t('Cannot place hold on some items') %]</h3> > [% IF ( exceeded_maxreserves ) %] >- <li><strong>Too many holds: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] </a> can place [% new_reserves_allowed %] of the requested [% new_reserves_count %] holds for a maximum of [% maxreserves %] total holds.</li> >+ <li><strong>[% t('Too many holds:') %] </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] </a> [% t('can place') %] [% new_reserves_allowed %] [% t('of the requested') %] [% new_reserves_count %] [% t('holds for a maximum of') %] [% maxreserves %] [% t('total holds.') %]</li> > [% ELSIF ( exceeded_holds_per_record ) %] > [% FOREACH biblioloo IN biblioloop %] > [% IF (biblioloo.tooManyHoldsForThisRecord) %] >- <li><strong>Too many holds for <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblioloo.biblionumber %]"> [% biblioloo.title %]</a>: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] </a> can only place a maximum of [% max_holds_for_record %] hold(s) on this record.</li> >+ <li><strong>[% t('Too many holds for') %] <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblioloo.biblionumber %]"> [% biblioloo.title %]</a>: </strong> <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] </a> [% t('can only place a maximum of') %] [% max_holds_for_record %] [% t('hold(s) on this record.') %]</li> > [% END %] > [% END %] > [% END %] >@@ -338,30 +339,30 @@ function checkMultiHold() { > [% IF ( expiry || diffbranch || patron.is_debarred || ( amount_outstanding && Koha.Preference('maxoutstanding') && amount_outstanding > Koha.Preference('maxoutstanding') ) ) %] > <div class="dialog message"><ul> > [% IF ( expiry ) %] >- <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a>: <strong>Account has expired</strong></li> >+ <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a>: <strong>[% t('Account has expired') %]</strong></li> > [% END %] > > [% IF patron.is_debarred %] >- <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]#reldebarments">[% patron.firstname %] [% patron.surname %]</a>: <strong>Patron has restrictions</strong></li> >+ <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]#reldebarments">[% patron.firstname %] [% patron.surname %]</a>: <strong>[% t('Patron has restrictions') %]</strong></li> > [% END %] > > [% IF amount_outstanding && Koha.Preference('maxoutstanding') && amount_outstanding > Koha.Preference('maxoutstanding') %] >- <li><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a>: <strong>Patron has outstanding fines: [% amount_outstanding | format('%.2f') %]</strong></li> >+ <li><a href="/cgi-bin/koha/members/pay.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a>: <strong>[% t('Patron has outstanding fines:') %] [% amount_outstanding | format('%.2f') %]</strong></li> > [% END %] > > [% IF ( diffbranch ) %] >- <li> <strong>Pickup library is different. </strong>Patron: <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a> Patron's home library: ([% Branches.GetName(patron.branchcode) %] / [% patron.branchcode %] )</li> >+ <li> <strong>[% t('Pickup library is different.') %] </strong>[% t('Patron:') %] <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a> [% t('Patron\'s home library: (') %][% Branches.GetName(patron.branchcode) %] / [% patron.branchcode %] )</li> > [% END %] > > </ul></div> > [% END %] > > [% IF ( messageborrower ) %] >- <div class="dialog alert"><h3>Patron not found:</h3> <p>Name or barcode not found. Please try an other </p></div> >+ <div class="dialog alert"><h3>[% t('Patron not found:') %]</h3> <p>[% t('Name or barcode not found. Please try an other') %] </p></div> > [% END %] > > <fieldset class="rows left"> >- <legend>Hold details</legend> >+ <legend>[% t('Hold details') %]</legend> > [% UNLESS ( multi_hold ) %] > <form action="placerequest.pl" method="post" onsubmit="return check();" name="form" id="hold-request-form"> > [% ELSE %] >@@ -372,13 +373,13 @@ function checkMultiHold() { > <input type="hidden" name="type" value="str8" /> > > [% IF ( multi_hold ) %] >- <input type="hidden" name="multi_hold" value="[% multi_hold %]"/> >- <input type="hidden" name="biblionumbers" id="multi_hold_bibs" value="[% biblionumbers %]"/> >- <input type="hidden" name="bad_bibs" id="bad_bibs" value=""/> >- <input type="hidden" name="request" value="any"/> >+ <input type="hidden" name="multi_hold" value="[% multi_hold %]" /> >+ <input type="hidden" name="biblionumbers" id="multi_hold_bibs" value="[% biblionumbers %]" /> >+ <input type="hidden" name="bad_bibs" id="bad_bibs" value="" /> >+ <input type="hidden" name="request" value="any" /> > [% FOREACH biblioloo IN biblioloop %] >- <input type="hidden" name="title_[% biblioloo.biblionumber %]" value="[% biblioloo.title |html %]"/> >- <input type="hidden" name="rank_[% biblioloo.biblionumber %]" value="[% biblioloo.rank %]"/> >+ <input type="hidden" name="title_[% biblioloo.biblionumber %]" value="[% biblioloo.title |html %]" /> >+ <input type="hidden" name="rank_[% biblioloo.biblionumber %]" value="[% biblioloo.rank %]" /> > [% END %] > [% ELSE %] > <input type="hidden" name="biblionumber" value="[% biblionumber %]" /> >@@ -386,25 +387,25 @@ function checkMultiHold() { > <input type="hidden" name="rank-request" value="[% fixedRank %]" /> > [% END %] > >- <ol> <li><span class="label">Patron:</span> >+ <ol> <li><span class="label">[% t('Patron:') %]</span> > [% IF ( patron.borrowernumber ) %] > <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %] ([% patron.cardnumber %])</a> > [% ELSE %] >- Not defined yet >+ [% t('Not defined yet') %] > [% END %] > </li> > [% UNLESS ( multi_hold ) %] > <li> >- <span class="label">Estimated priority:</span> >+ <span class="label">[% t('Estimated priority:') %]</span> > <strong>[% fixedRank %]</strong> > </li> > [% END %] > <li> >- <label for="holdnotes">Notes:</label> >+ <label for="holdnotes">[% t('Notes:') %]</label> > <textarea id="holdnotes" name="notes" cols="30" rows="1"></textarea> > </li> > <li> >- <label for="pickup">Pickup at:</label> >+ <label for="pickup">[% t('Pickup at:') %]</label> > <select name="pickup" size="1" id="pickup"> > [% PROCESS options_for_libraries libraries => Branches.all() %] > </select> >@@ -413,9 +414,9 @@ function checkMultiHold() { > [% UNLESS ( multi_hold ) %] > [% IF Koha.Preference('AllowHoldItemTypeSelection') %] > <li> >- <label for="itemtype">Request specific item type:</label> >+ <label for="itemtype">[% t('Request specific item type:') %]</label> > <select name="itemtype" size="1" id="itemtype"> >- <option value="">Any item type</option> >+ <option value="">[% t('Any item type') %]</option> > [%- FOREACH itemtype IN available_itemtypes %] > <option value="[% itemtype %]">[% ItemTypes.GetDescription( itemtype ) %]</option> > [%- END %] >@@ -426,25 +427,25 @@ function checkMultiHold() { > > [% IF ( reserve_in_future ) %] > <li> >- <label for="from">Hold starts on date:</label> >+ <label for="from">[% t('Hold starts on date:') %]</label> > <input name="reserve_date" id="from" size="10" class="datepickerfrom"> >- <a href="#" id="clear-date-from" class="clear-date">Clear date</a> >+ <a href="#" id="clear-date-from" class="clear-date">[% t('Clear date') %]</a> > </li> > [% END %] > > <li> >- <label for="to">Hold expires on date:</label> >+ <label for="to">[% t('Hold expires on date:') %]</label> > <input name="expiration_date" id="to" size="10" class="datepickerto" /> >- <a href="#" id="clear-date-to" class="clear-date">Clear date</a> >+ <a href="#" id="clear-date-to" class="clear-date">[% t('Clear date') %]</a> > </li> > > [% UNLESS ( multi_hold ) %] >- <li> <label for="requestany">Hold next available item </label> >+ <li> <label for="requestany">[% t('Hold next available item') %] </label> > [% IF force_hold_level == 'item' %] > <input type="checkbox" id="requestany" name="request" disabled="true" /> > [% ELSIF force_hold_level == 'record' %] >- <input type="checkbox" id="requestany" checked="checked" value="Any" disabled="true"/> >- <input type="hidden" name="request" value="Any"/> >+ <input type="checkbox" id="requestany" checked="checked" value="Any" disabled="true" /> >+ <input type="hidden" name="request" value="Any" /> > [% ELSE %] > <input type="checkbox" id="requestany" name="request" checked="checked" value="Any" /> > [% END %] >@@ -454,7 +455,7 @@ function checkMultiHold() { > > [% IF remaining_holds_for_record > 1 %] > <li> >- <label for="holds_to_place_count">Holds to place (count)</label> >+ <label for="holds_to_place_count">[% t('Holds to place (count)') %]</label> > <input type="number" name="holds_to_place_count" min="1" max="[% remaining_holds_for_record %]" step="1" value="1" /> > </li> > [% ELSE %] >@@ -478,34 +479,34 @@ function checkMultiHold() { > [% FOREACH bibitemloo IN bibitemloop %] > <ol> > [% UNLESS ( item_level_itypes ) %] >- <li><span class="label">Item type:</span> [% bibitemloo.description %]</li> >+ <li><span class="label">[% t('Item type:') %]</span> [% bibitemloo.description %]</li> > [% END %] > >- [% IF ( bibitemloo.publicationyear ) %]<li><span class="label">Publication year:</span> [% bibitemloo.publicationyear %]</li>[% END %] >+ [% IF ( bibitemloo.publicationyear ) %]<li><span class="label">[% t('Publication year:') %]</span> [% bibitemloo.publicationyear %]</li>[% END %] > </ol> > > <h2 style="padding: 0 1em;"> >- Place a hold on a specific item >+ [% t('Place a hold on a specific item') %] > [% IF bibitemloo.force_hold_level == 'item' %] >- <span class="error"><i>(Required)</i></span> >+ <span class="error"><i>[% t('(Required)') %]</i></span> > [% END %] > </h2> > <table id="requestspecific"> > <thead> > <tr> >- <th>Hold</th> >+ <th>[% t('Hold') %]</th> > [% IF ( item_level_itypes ) %] >- <th>Item type</th> >+ <th>[% t('Item type') %]</th> > [% END %] >- <th>Barcode</th> >- <th>Home library</th> >- <th>Last location</th> >- <th>Call no.</th> >- <th>Copy number</th> >+ <th>[% t('Barcode') %]</th> >+ <th>[% t('Home library') %]</th> >+ <th>[% t('Last location') %]</th> >+ <th>[% t('Call no.') %]</th> >+ <th>[% t('Copy number') %]</th> > [% IF itemdata_enumchron %] >- <th>Vol no.</th> >+ <th>[% t('Vol no.') %]</th> > [% END %] >- <th class="title-string">Information</th> >+ <th class="title-string">[% t('Information') %]</th> > </tr> > </thead> > <tbody> >@@ -516,32 +517,32 @@ function checkMultiHold() { > <td> > [% IF itemloo.force_hold_level == 'record' # Patron has placed a record level hold previously for this record %] > <span class="error"> >- <i class="fa fa-times fa-lg" alt="Cannot be put on hold"></i> >- Hold must be record level >+ <i class="fa fa-times fa-lg" alt="[% t('Cannot be put on hold') %]"></i> >+ [% t('Hold must be record level') %] > </span> > [% ELSIF ( itemloo.available ) %] > <input type="radio" name="checkitem" value="[% itemloo.itemnumber %]" /> > [% ELSIF ( itemloo.override ) %] > <input type="radio" name="checkitem" class="needsoverride" value="[% itemloo.itemnumber %]" /> >- <i class="fa fa-exclamation-triangle fa-lg" style="color:gold" alt="Requires override of hold policy"/></i> >+ <i class="fa fa-exclamation-triangle fa-lg" style="color:gold" alt="[% t('Requires override of hold policy') %]" /></i> > [% ELSE %] > <span class="error"> >- <i class="fa fa-times fa-lg" alt="Cannot be put on hold"></i> >+ <i class="fa fa-times fa-lg" alt="[% t('Cannot be put on hold') %]"></i> > [% IF itemloo.not_holdable %] > [% IF itemloo.not_holdable == 'damaged' %] >- Item damaged >+ [% t('Item damaged') %] > [% ELSIF itemloo.not_holdable == 'ageRestricted' %] >- Age restricted >+ [% t('Age restricted') %] > [% ELSIF itemloo.not_holdable == 'tooManyHoldsForThisRecord' %] >- Exceeded max holds per record >+ [% t('Exceeded max holds per record') %] > [% ELSIF itemloo.not_holdable == 'tooManyReserves' %] >- Too many holds >+ [% t('Too many holds') %] > [% ELSIF itemloo.not_holdable == 'notReservable' %] >- Not holdable >+ [% t('Not holdable') %] > [% ELSIF itemloo.not_holdable == 'cannotReserveFromOtherBranches' %] >- Patron is from different library >+ [% t('Patron is from different library') %] > [% ELSIF itemloo.not_holdable == 'itemAlreadyOnHold' %] >- Patron already has hold for this item >+ [% t('Patron already has hold for this item') %] > [% ELSE %] > [% itemloo.not_holdable %] > [% END %] >@@ -571,7 +572,7 @@ function checkMultiHold() { > [% itemloo.itemcallnumber %] > </td> > <td> >- [% IF ( itemloo.copynumber ) %][% itemloo.copynumber %][% ELSE %] [% END %] >+ [% IF ( itemloo.copynumber ) %][% itemloo.copynumber %][% ELSE %] [% END %] > </td> > [% IF itemdata_enumchron %] > <td> >@@ -580,44 +581,44 @@ function checkMultiHold() { > [% END %] > <td> > [% IF ( itemloo.onloan ) %] >- <span title="[% itemloo.date_due %]" class="checkedout">Due [% itemloo.date_due | $KohaDates as_due_date => 1 %]</span> >+ <span title="[% itemloo.date_due %]" class="checkedout">[% t('Due') %] [% itemloo.date_due | $KohaDates as_due_date => 1 %]</span> > [% ELSE %] >- <span title="0000-00-00"> >+ <span title="[% t('0000-00-00') %]"> > [% IF ( itemloo.transfertwhen ) %] >- In transit from [% Branches.GetName( itemloo.transfertfrom ) %], >- to [% Branches.GetName( itemloo.transfertto ) %], since [% itemloo.transfertwhen %] >+ [% t('In transit from') %] [% Branches.GetName( itemloo.transfertfrom ) %], >+ [% t('to') %] [% Branches.GetName( itemloo.transfertto ) %][% t(', since') %] [% itemloo.transfertwhen %] > [% END %] > </span> > [% END %] > [% IF ( itemloo.message ) %] >- Unavailable (lost or missing) >+ [% t('Unavailable (lost or missing)') %] > [% END %] > > [% IF ( itemloo.notforloan ) %] >- Not for loan ([% itemloo.notforloanvalue %]) >+ [% t('Not for loan (') %][% itemloo.notforloanvalue %]) > [% END %] > > [% IF ( itemloo.reservedate ) %] > [% IF ( itemloo.nocancel ) %] >- Can't be cancelled when item is in transit >+ [% t('Can\'t be cancelled when item is in transit') %] > [% ELSE %] >- [% IF ( itemloo.waitingdate ) %]Waiting[% ELSE %]On hold[% END %] >- [% IF ( itemloo.canreservefromotherbranches ) %]for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% itemloo.ReservedFor.borrowernumber %]">[% itemloo.ReservedFor.firstname %] [% itemloo.ReservedFor.surname %]</a>[% END %] [% IF ( itemloo.waitingdate ) %]at[% ELSE %]expected at[% END %] [% Branches.GetName( itemloo.ExpectedAtLibrary ) %] >- since >- [% IF ( itemloo.waitingdate ) %][% itemloo.waitingdate | $KohaDates %][% ELSE %][% IF ( itemloo.reservedate ) %][% itemloo.reservedate %][% END %][% END %]. <a class="info" href="modrequest.pl?CancelBiblioNumber=[% itemloo.biblionumber %]&CancelBorrowerNumber=[% itemloo.ReservedFor.borrowernumber %]&CancelItemnumber=[% itemloo.itemnumber %]" onclick="return confirmDelete(MSG_CONFIRM_DELETE_HOLD);">Cancel hold</a> >+ [% IF ( itemloo.waitingdate ) %][% t('Waiting') %][% ELSE %][% t('On hold') %][% END %] >+ [% IF ( itemloo.canreservefromotherbranches ) %][% t('for') %] <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% itemloo.ReservedFor.borrowernumber %]">[% itemloo.ReservedFor.firstname %] [% itemloo.ReservedFor.surname %]</a>[% END %] [% IF ( itemloo.waitingdate ) %][% t('at') %][% ELSE %][% t('expected at') %][% END %] [% Branches.GetName( itemloo.ExpectedAtLibrary ) %] >+ [% t('since') %] >+ [% IF ( itemloo.waitingdate ) %][% itemloo.waitingdate | $KohaDates %][% ELSE %][% IF ( itemloo.reservedate ) %][% itemloo.reservedate %][% END %][% END %]. <a class="info" href="modrequest.pl?CancelBiblioNumber=[% itemloo.biblionumber %]&CancelBorrowerNumber=[% itemloo.ReservedFor.borrowernumber %]&CancelItemnumber=[% itemloo.itemnumber %]" onclick="return confirmDelete(MSG_CONFIRM_DELETE_HOLD);">[% t('Cancel hold') %]</a> > > [% END %] > [% ELSE %] >- Not on hold >+ [% t('Not on hold') %] > [% END %] > > [% IF itemloo.item_level_holds == "N" %] >- <br/>Item level hold not allowed from OPAC >+ <br />[% t('Item level hold not allowed from OPAC') %] > [% ELSIF itemloo.item_level_holds == "F" %] >- <br/>Item level hold forced from OPAC >+ <br />[% t('Item level hold forced from OPAC') %] > [% END %] > [% IF ( itemloo.damaged ) %] >- <br />Damaged >+ <br />[% t('Damaged') %] > [% END %] > </td> > </tr> >@@ -627,7 +628,7 @@ function checkMultiHold() { > </table> > [% IF ( bibitemloo.hiddencount ) %] > <form> >- <p class="hiddencount"><a href="request.pl?biblionumber=[% bibitemloo.biblionumber %]&borrowernumber=[% bibitemloo.borrowernumber %]&showallitems=1">Show all items ([% bibitemloo.hiddencount %] hidden)</a></p> >+ <p class="hiddencount"><a href="request.pl?biblionumber=[% bibitemloo.biblionumber %]&borrowernumber=[% bibitemloo.borrowernumber %]&showallitems=1">[% t('Show all items (') %][% bibitemloo.hiddencount %] [% t('hidden)') %]</a></p> > </form> > [% END %] <!-- hiddencount --> > [% END %] <!-- bibitemloop --> >@@ -636,12 +637,12 @@ function checkMultiHold() { > > <table id="requesttitles"> > <tr> >- <th>Title</th> >+ <th>[% t('Title') %]</th> > [% UNLESS ( item_level_itypes ) %] >- <th>Item type</th> >+ <th>[% t('Item type') %]</th> > [% END %] >- <th>Priority</th> >- <th>Information</th> >+ <th>[% t('Priority') %]</th> >+ <th>[% t('Information') %]</th> > </tr> > [% FOREACH biblioloo IN biblioloop %] > [% IF ( biblioloo.warn ) %] >@@ -653,7 +654,7 @@ function checkMultiHold() { > <ul> > <li><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblioloo.biblionumber %]">[% biblioloo.title |html %]</a></li> > [% IF ( biblioloo.publicationyear ) %] >- <li><span class="label">Publication year:</span> [% biblioloo.publicationyear %]</li> >+ <li><span class="label">[% t('Publication year:') %]</span> [% biblioloo.publicationyear %]</li> > [% END %] > </ul> > [% UNLESS ( biblioloo.warn ) %] >@@ -678,10 +679,10 @@ function checkMultiHold() { > [% END %] > > [% IF ( biblioloo.alreadyres ) %] >- <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a> <strong>already has a hold</strong> on this item </li> >+ <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.firstname %] [% patron.surname %]</a> <strong>[% t('already has a hold') %]</strong> [% t('on this item') %] </li> > [% END %] > [% IF ( biblioloo.none_avail ) %] >- <li> <strong>No items are available</strong> to be placed on hold</li> >+ <li> <strong>[% t('No items are available') %]</strong> [% t('to be placed on hold') %]</li> > [% END %] > > [% IF ( biblioloo.alreadyres ) %] >@@ -718,12 +719,12 @@ function checkMultiHold() { > [% IF ( reserveloop ) %] > <form name="T[% time %]" action="modrequest.pl" method="post"> > [% IF ( multi_hold ) %] >- <input type = "hidden" name="multi_hold" value="1"/> >- <input type = "hidden" name="biblionumbers" value="[% biblionumbers %]"/> >+ <input type="hidden" name="multi_hold" value="1" /> >+ <input type="hidden" name="biblionumbers" value="[% biblionumbers %]" /> > [% END %] > > <fieldset class="rows left"> >-<legend>Existing holds</legend> >+<legend>[% t('Existing holds') %]</legend> > > [% FOREACH biblioloo IN biblioloop %] > >@@ -734,22 +735,22 @@ function checkMultiHold() { > [% END %] > <tr> > [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] >- <th>Priority</th> >- <th> </th> >+ <th>[% t('Priority') %]</th> >+ <th> </th> > [% ELSE %] >- <th>Delete?</th> >+ <th>[% t('Delete?') %]</th> > [% END %] >- <th>Patron</th> >- <th>Notes</th> >- <th>Date</th> >- <th>Expiration</th> >- <th>Pickup library</th> >- <th>Details</th> >+ <th>[% t('Patron') %]</th> >+ <th>[% t('Notes') %]</th> >+ <th>[% t('Date') %]</th> >+ <th>[% t('Expiration') %]</th> >+ <th>[% t('Pickup library') %]</th> >+ <th>[% t('Details') %]</th> > [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] >- <th><img src="[% interface %]/[% theme %]/img/go-bottom.png" alt="Toggle set to lowest priority" /></th> >+ <th><img src="[% interface %]/[% theme %]/img/go-bottom.png" alt="[% t('Toggle set to lowest priority') %]" /></th> > [% END %] >- <th> </th> >- [% IF SuspendHoldsIntranet %]<th> </th><!-- Suspend Holds Column Header -->[% END %] >+ <th> </th> >+ [% IF SuspendHoldsIntranet %]<th> </th><!-- Suspend Holds Column Header -->[% END %] > </tr> > [% FOREACH reserveloo IN biblioloo.reserveloop %] > <tr> >@@ -760,9 +761,9 @@ function checkMultiHold() { > <select name="rank-request"> > [% IF ( reserveloo.found ) %] > [% IF ( reserveloo.intransit ) %] >- <option value="T" selected="selected">In transit</option> >+ <option value="T" selected="selected">[% t('In transit') %]</option> > [% ELSE %] >- <option value="W" selected="selected">Waiting</option> >+ <option value="W" selected="selected">[% t('Waiting') %]</option> > [% END %] > [% END %] > >@@ -777,26 +778,26 @@ function checkMultiHold() { > [% ELSIF !reserveloo.found %] > <option value="[% reserveloo.priority %]" selected="selected">[% reserveloo.priority %]</option> > [% END %] >- <option value="del">del</option> >+ <option value="del">[% t('del') %]</option> > </select> > </td> > > [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] > <td style="white-space:nowrap;"> >- <a title="Move hold up" href="request.pl?action=move&where=up&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >- <img src="[% interface %]/[% theme %]/img/go-up.png" alt="Go up" /> >+ <a title="[% t('Move hold up') %]" href="request.pl?action=move&where=up&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >+ <img src="[% interface %]/[% theme %]/img/go-up.png" alt="[% t('Go up') %]" /> > </a> > >- <a title="Move hold to top" href="request.pl?action=move&where=top&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >- <img src="[% interface %]/[% theme %]/img/go-top.png" alt="Go top" /> >+ <a title="[% t('Move hold to top') %]" href="request.pl?action=move&where=top&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >+ <img src="[% interface %]/[% theme %]/img/go-top.png" alt="[% t('Go top') %]" /> > </a> > >- <a title="Move hold to bottom" href="request.pl?action=move&where=bottom&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >- <img src="[% interface %]/[% theme %]/img/go-bottom.png" alt="Go bottom" /> >+ <a title="[% t('Move hold to bottom') %]" href="request.pl?action=move&where=bottom&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >+ <img src="[% interface %]/[% theme %]/img/go-bottom.png" alt="[% t('Go bottom') %]" /> > </a> > >- <a title="Move hold down" href="request.pl?action=move&where=down&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >- <img src="[% interface %]/[% theme %]/img/go-down.png" alt="Go down" /> >+ <a title="[% t('Move hold down') %]" href="request.pl?action=move&where=down&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >+ <img src="[% interface %]/[% theme %]/img/go-down.png" alt="[% t('Go down') %]" /> > </a> > </td> > [% END %] >@@ -811,12 +812,12 @@ function checkMultiHold() { > [% IF ( reserveloo.found ) %] > [% IF ( reserveloo.atdestination ) %] > [% IF ( reserveloo.found ) %] >- Item waiting at <b> [% reserveloo.wbrname %]</b> <input type="hidden" name="pickup" value="[% reserveloo.wbrcode %]" /> since [% reserveloo.waiting_date | $KohaDates %] >+ [% t('Item waiting at') %] <b> [% reserveloo.wbrname %]</b> <input type="hidden" name="pickup" value="[% reserveloo.wbrcode %]" /> [% t('since') %] [% reserveloo.waiting_date | $KohaDates %] > [% ELSE %] >- Waiting to be pulled <input type="hidden" name="pickup" value="[% reserveloo.wbrcode %]" /> >+ [% t('Waiting to be pulled') %] <input type="hidden" name="pickup" value="[% reserveloo.wbrcode %]" /> > [% END %] > [% ELSE %] >- Item being transferred to <b> [% reserveloo.wbrname %]</b> <input type="hidden" name="pickup" value="[% reserveloo.wbrcode %]" /> >+ [% t('Item being transferred to') %] <b> [% reserveloo.wbrname %]</b> <input type="hidden" name="pickup" value="[% reserveloo.wbrcode %]" /> > [% END %] > [% ELSE %] > [% IF Koha.Preference('IndependentBranches') && Branches.all().size == 1 %] >@@ -835,26 +836,26 @@ function checkMultiHold() { > [% reserveloo.barcodenumber %] > <input type="hidden" name="itemnumber" value="[% reserveloo.itemnumber %]" /> > [% ELSE %] >- No barcode >+ [% t('No barcode') %] > [% END %] > </a> > [% ELSE %] > [% IF ( reserveloo.item_level_hold ) %] >- <i>Only item >+ <i>[% t('Only item') %] > <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% reserveloo.biblionumber %]"> > [% IF ( reserveloo.barcodenumber ) %] > [% reserveloo.barcodenumber %] > <input type="hidden" name="itemnumber" value="[% reserveloo.itemnumber %]" /> > [% ELSE %] >- No barcode >+ [% t('No barcode') %] > [% END %] > </a> > </i> > [% ELSE %] > [% IF reserveloo.itemtype %] >- <i>Next available [% ItemTypes.GetDescription( reserveloo.itemtype ) %] item</i> >+ <i>[% t('Next available') %] [% ItemTypes.GetDescription( reserveloo.itemtype ) %] [% t('item') %]</i> > [% ELSE %] >- <i>Next available</i> >+ <i>[% t('Next available') %]</i> > [% END %] > <input type="hidden" name="itemnumber" value="" /> > [% END %] >@@ -863,33 +864,33 @@ function checkMultiHold() { > > [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] > <td> >- <a title="Toggle lowest priority" href="request.pl?action=setLowestPriority&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >+ <a title="[% t('Toggle lowest priority') %]" href="request.pl?action=setLowestPriority&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> > [% IF ( reserveloo.lowestPriority ) %] >- <img src="[% interface %]/[% theme %]/img/go-bottom.png" alt="Unset lowest priority" /> >+ <img src="[% interface %]/[% theme %]/img/go-bottom.png" alt="[% t('Unset lowest priority') %]" /> > [% ELSE %] >- <img src="[% interface %]/[% theme %]/img/go-down.png" alt="Set to lowest priority" /> >+ <img src="[% interface %]/[% theme %]/img/go-down.png" alt="[% t('Set to lowest priority') %]" /> > [% END %] > </a> > </td> > [% END %] > > <td> >- <a class="cancel-hold" title="Cancel hold" href="request.pl?action=cancel&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >- <img src="[% interface %]/[% theme %]/img/x.png" alt="Cancel" /> >+ <a class="cancel-hold" title="[% t('Cancel hold') %]" href="request.pl?action=cancel&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&reserve_id=[% reserveloo.reserve_id %]&date=[% reserveloo.date %]"> >+ <img src="[% interface %]/[% theme %]/img/x.png" alt="[% t('Cancel') %]" /> > </a> > </td> > > [% IF SuspendHoldsIntranet %] > <td> > [% UNLESS ( reserveloo.found ) %] >- <input type="button" value="[% IF ( reserveloo.suspend ) %]Unsuspend[% ELSE %]Suspend[% END %]" onclick="window.location.href='request.pl?action=toggleSuspend&reserve_id=[% reserveloo.reserve_id %]&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&date=[% reserveloo.date %]&suspend_until=' + $('#suspend_until_[% reserveloo.reserve_id %]').val()" /> >+ <input type="button" value="[% IF ( reserveloo.suspend ) %]Unsuspend[% ELSE %]Suspend[% END %]" onclick="window.location.href='request.pl?action=toggleSuspend&reserve_id=[% reserveloo.reserve_id %]&borrowernumber=[% reserveloo.borrowernumber %]&biblionumber=[% reserveloo.biblionumber %]&date=[% reserveloo.date %]&suspend_until=' + $('#suspend_until_[% reserveloo.reserve_id %]').val()" /> > > [% IF AutoResumeSuspendedHolds %] >- <label for="suspend_until_[% reserveloo.reserve_id %]">[% IF ( reserveloo.suspend ) %] on [% ELSE %] until [% END %]</label> >+ <label for="suspend_until_[% reserveloo.reserve_id %]">[% IF ( reserveloo.suspend ) %] [% t('on') %] [% ELSE %] [% t('until') %] [% END %]</label> > <input name="suspend_until" id="suspend_until_[% reserveloo.reserve_id %]" size="10" value="[% reserveloo.suspend_until | $KohaDates %]" class="datepicker suspend_until_datepicker" /> >- <a href='#' onclick="document.getElementById('suspend_until_[% reserveloo.reserve_id %]').value='';">Clear date</a> >+ <a href="#" onclick="document.getElementById('suspend_until_[% reserveloo.reserve_id %]').value='';">[% t('Clear date') %]</a> > [% ELSE %] >- <input type="hidden" name="suspend_until" id="suspend_until_[% reserveloo.reserve_id %]" value=""/> >+ <input type="hidden" name="suspend_until" id="suspend_until_[% reserveloo.reserve_id %]" value="" /> > [% END %] > [% ELSE %] > <input type="hidden" name="suspend_until" value="" /> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tt >index 37e478c9ac..11825b1fa1 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tt >@@ -1,15 +1,16 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Tools › Comments › [% IF ( status ) %] Approved comments[% ELSE %] Comments awaiting moderation[% END %]</title> >+<title>[% t('Koha ⺠Tools ⺠Comments âº') %] [% IF ( status ) %] [% t('Approved comments') %][% ELSE %] [% t('Comments awaiting moderation') %][% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > </head> > <body id="tools_reviewswaiting" class="tools"> > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> >-› <a href="/cgi-bin/koha/reviews/reviewswaiting.pl">Comments</a> ›[% IF ( status ) %] Approved comments[% ELSE %] Comments awaiting moderation[% END %]</div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/tools/tools-home.pl">[% t('Tools') %]</a> >+⺠<a href="/cgi-bin/koha/reviews/reviewswaiting.pl">[% t('Comments') %]</a> âº[% IF ( status ) %] [% t('Approved comments') %][% ELSE %] [% t('Comments awaiting moderation') %][% END %]</div> > > <div id="doc3" class="yui-t2"> > >@@ -17,13 +18,13 @@ > <div id="yui-main"> > <div class="yui-b"> > >-<h1>Comments</h1> >+<h1>[% t('Comments') %]</h1> > > <!-- The manual invoice and credit buttons --> > <div class="statictabs"> > <ul> >- [% IF ( status ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/reviews/reviewswaiting.pl?status=1">Approved comments</a></li> >- [% IF ( status ) %]<li>[% ELSE %]<li class="active">[% END %]<a href="/cgi-bin/koha/reviews/reviewswaiting.pl" >Comments awaiting moderation</a></li> >+ [% IF ( status ) %]<li class="active">[% ELSE %]<li>[% END %]<a href="/cgi-bin/koha/reviews/reviewswaiting.pl?status=1">[% t('Approved comments') %]</a></li> >+ [% IF ( status ) %]<li>[% ELSE %]<li class="active">[% END %]<a href="/cgi-bin/koha/reviews/reviewswaiting.pl">[% t('Comments awaiting moderation') %]</a></li> > </ul> > <div class="tabs-container"> > >@@ -31,22 +32,22 @@ > <table id="commentst"> > <thead><tr> > <th> >- Commenter >+ [% t('Commenter') %] > </th> > <th> >- On title >+ [% t('On title') %] > </th> > <th> >- Comment >+ [% t('Comment') %] > </th> > <th> >- >+  > </th> > </tr></thead> > <tbody>[% FOREACH review IN reviews %] > <tr> > <td> >- [% IF ( review.borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% review.borrowernumber %]">[% review.patron.surname %], [% review.patron.firstname %]</a>[% ELSE %](deleted patron)[% END %] >+ [% IF ( review.borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% review.borrowernumber %]">[% review.patron.surname %], [% review.patron.firstname %]</a>[% ELSE %][% t('(deleted patron)') %][% END %] > </td> > <td> > <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% review.biblionumber %]">[% review.bibliotitle %]</a> >@@ -55,15 +56,15 @@ > [% review.review |html %] > </td> > <td> >- [% IF ( status ) %]<a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=unapprove&reviewid=[% review.reviewid %]" class="btn btn-default btn-xs"><i class="fa fa-remove"></i> Unapprove</a>[% ELSE %]<a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=approve&reviewid=[% review.reviewid %]" class="btn btn-default btn-xs"><i class="fa fa-check"></i> Approve</a>[% END %] >- <a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=delete&reviewid=[% review.reviewid %]" class="btn btn-default btn-xs"><i class="fa fa-trash" aria-hidden="true"></i> Delete</a> >+ [% IF ( status ) %]<a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=unapprove&reviewid=[% review.reviewid %]" class="btn btn-default btn-xs"><i class="fa fa-remove"></i> [% t('Unapprove') %]</a>[% ELSE %]<a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=approve&reviewid=[% review.reviewid %]" class="btn btn-default btn-xs"><i class="fa fa-check"></i> [% t('Approve') %]</a>[% END %] >+ <a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=delete&reviewid=[% review.reviewid %]" class="btn btn-default btn-xs"><i class="fa fa-trash" aria-hidden="true"></i> [% t('Delete') %]</a> > </td> > </tr> > [% END %]</tbody> > </table> > <div class="pages">[% pagination_bar %]</div> > [% ELSE %] >-[% IF ( status ) %]<p><b>No comments have been approved.</b></p>[% ELSE %]<p><b>No comments to moderate.</b></p>[% END %] >+[% IF ( status ) %]<p><b>[% t('No comments have been approved.') %]</b></p>[% ELSE %]<p><b>[% t('No comments to moderate.') %]</b></p>[% END %] > [% END %] > </div> > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/services/itemrecorddisplay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/services/itemrecorddisplay.tt >index d55268a4db..7dcdb3a125 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/services/itemrecorddisplay.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/services/itemrecorddisplay.tt >@@ -1,3 +1,4 @@ >+[% PROCESS 'i18n.inc' %] > <ol> > [% FOREACH iteminfo IN iteminformation %] > [% IF ( iteminfo.hidden ) %] >@@ -29,7 +30,7 @@ > <input type="hidden" name="tag" value="[% iteminfo.tag %]" /> > <input type="hidden" name="subfield" value="[% iteminfo.subfield %]" /> > <input type="hidden" name="mandatory" value="[% iteminfo.mandatory %]" /> >- [% IF (iteminfo.mandatory) %] <span class="required">Required</span>[% END %] >+ [% IF (iteminfo.mandatory) %] <span class="required">[% t('Required') %]</span>[% END %] > </div> > </li> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >index 16f4ccf256..d53b7b7189 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >@@ -1,3 +1,4 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% USE Branches %] > [% USE AuthorisedValues %] >@@ -5,17 +6,17 @@ > [% USE Price %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Acquisitions › >+<title>[% t('Koha ⺠Acquisitions') %] ⺠> [% IF ( op_save ) %] > [% IF ( suggestionid ) %] >- Suggestions › Edit suggestion #[% suggestionid %] >+ [% t('Suggestions âº') %] [% t('Edit suggestion #') %][% suggestionid %] > [% ELSE %] >- Suggestions › Add suggestion >+ [% t('Suggestions ⺠Add suggestion') %] > [% END %] > [% ELSIF ( op == 'show' ) %] >- Suggestions › Show suggestion #[% suggestionid %] >+ [% t('Suggestions ⺠Show suggestion #') %][% suggestionid %] > [% ELSE %] >- Suggestions management >+ [% t('Suggestions management') %] > [% END %] > </title> > [% INCLUDE 'doc-head-close.inc' %] >@@ -34,17 +35,17 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > <div id="breadcrumbs"> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> › >+ <a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/acqui/acqui-home.pl">[% t('Acquisitions') %]</a> ⺠> [% IF ( op_save ) %] > [% IF ( suggestionid ) %] >- <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> › Edit suggestion #[% suggestionid %] >+ <a href="/cgi-bin/koha/suggestion/suggestion.pl">[% t('Suggestions') %]</a> ⺠[% t('Edit suggestion #') %][% suggestionid %] > [% ELSE %] >- <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> › Add suggestion >+ <a href="/cgi-bin/koha/suggestion/suggestion.pl">[% t('Suggestions') %]</a> [% t('⺠Add suggestion') %] > [% END %] > [% ELSIF ( op == 'show' ) %] >- <a href="/cgi-bin/koha/suggestion/suggestion.pl">Suggestions</a> › Show suggestion #[% suggestionid %] >+ <a href="/cgi-bin/koha/suggestion/suggestion.pl">[% t('Suggestions') %]</a> [% t('⺠Show suggestion #') %][% suggestionid %] > [% ELSE %] >- Suggestions management >+ [% t('Suggestions management') %] > [% END %] > </div> > >@@ -55,63 +56,63 @@ > <div class="yui-b"> > > <div id="toolbar" class="btn-toolbar"> >- <a class="btn btn-default btn-sm" id="editsuggestion" href="suggestion.pl?op=edit&suggestionid=[% suggestionid %]"><i class="fa fa-pencil"></i> Edit</a> >- <a class="btn btn-default btn-sm deletesuggestion" href="suggestion.pl?op=delete&edit_field=[% suggestionid %]"><i class="fa fa-trash"></i> Delete</a> >+ <a class="btn btn-default btn-sm" id="editsuggestion" href="suggestion.pl?op=edit&suggestionid=[% suggestionid %]"><i class="fa fa-pencil"></i> [% t('Edit') %]</a> >+ <a class="btn btn-default btn-sm deletesuggestion" href="suggestion.pl?op=delete&edit_field=[% suggestionid %]"><i class="fa fa-trash"></i> [% t('Delete') %]</a> > </div> > > <fieldset class="rows"> >- <legend>Bibliographic information</legend> >+ <legend>[% t('Bibliographic information') %]</legend> > <ol> > [% IF ( title ) %] > <li> >- <span class="label">Title:</span> >+ <span class="label">[% t('Title:') %]</span> > [% title |html %] > </li> > [% END %] > [% IF ( author ) %] > <li> >- <span class="label">Author:</span> >+ <span class="label">[% t('Author:') %]</span> > [% author |html %] > </li> > [% END %] > [% IF ( copyrightdate ) %] > <li> >- <span class="label">Copyright date:</span> >+ <span class="label">[% t('Copyright date:') %]</span> > [% copyrightdate |html %] > </li> > [% END %] > [% IF ( isbn ) %] > <li> >- <span class="label">ISBN or ISSN or other standard number:</span> >+ <span class="label">[% t('ISBN or ISSN or other standard number:') %]</span> > [% isbn |html %] > </li> > [% END %] > [% IF ( publishercode ) %] > <li> >- <span class="label">Publisher:</span> >+ <span class="label">[% t('Publisher:') %]</span> > [% publishercode |html %] > </li> > [% END %] > [% IF ( place ) %] > <li> >- <span class="label">Publication place:</span> >+ <span class="label">[% t('Publication place:') %]</span> > [% place |html %] > </li> > [% END %] > [% IF ( collectiontitle ) %] > <li> >- <span class="label">Collection title:</span> >+ <span class="label">[% t('Collection title:') %]</span> > [% collectiontitle |html %] > </li> > [% END %] > [% IF ( itemtype ) %] > <li> >- <span class="label">Document type:</span> >+ <span class="label">[% t('Document type:') %]</span> > [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', itemtype, 0 ) %] > </li> > [% END %] > [% IF ( patron_reason_loop ) %] >- <li><span class="label">Reason for suggestion: </span> >+ <li><span class="label">[% t('Reason for suggestion:') %] </span> > [% FOREACH patron_reason_loo IN patron_reason_loop %] > [% IF patron_reason_loo.authorised_value == patronreason %][% patron_reason_loo.lib %][% END %] > [% END %] >@@ -119,28 +120,28 @@ > [% END %] > [% IF ( note ) %] > <li> >- <span class="label">Notes:</span> >+ <span class="label">[% t('Notes:') %]</span> > [% note |html %] > </li> > [% END %] > </ol> > </fieldset> >- <fieldset class="rows"> <legend>Suggestion management</legend> >+ <fieldset class="rows"> <legend>[% t('Suggestion management') %]</legend> > <ol> > <li> >- <span class="label">Status:</span> >+ <span class="label">[% t('Status:') %]</span> > [% SET status_found = 0 %] > [% IF ( STATUS == 'ASKED' ) %] >- Pending >+ [% t('Pending') %] > [% SET status_found = 1 %] > [% ELSIF ( STATUS == 'ACCEPTED' ) %] >- Accepted >+ [% t('Accepted') %] > [% SET status_found = 1 %] > [% ELSIF ( STATUS == 'CHECKED' ) %] >- Checked >+ [% t('Checked') %] > [% SET status_found = 1 %] > [% ELSIF ( STATUS == 'REJECTED' ) %] >- Rejected >+ [% t('Rejected') %] > [% SET status_found = 1 %] > [% ELSE %] > [% FOREACH s IN SuggestionStatuses %] >@@ -154,10 +155,10 @@ > </li> > <li> > <table> >- <thead><tr><th> </th><th>Date</th><th>By</th></tr></thead> >+ <thead><tr><th> </th><th>[% t('Date') %]</th><th>[% t('By') %]</th></tr></thead> > <tbody> > <tr> >- <th>Created by:</th> >+ <th>[% t('Created by:') %]</th> > <td>[% suggesteddate | $KohaDates %]</td> > <td> > [% IF ( suggestedby_borrowernumber ) %] >@@ -167,7 +168,7 @@ > </td> > </tr> > <tr> >- <th>Managed by:</th> >+ <th>[% t('Managed by:') %]</th> > <td>[% manageddate | $KohaDates %]</td> > <td> > [% IF ( managedby_borrowernumber ) %] >@@ -177,7 +178,7 @@ > </td> > </tr> > <tr> >- <th>Accepted on:</th> >+ <th>[% t('Accepted on:') %]</th> > <td>[% accepteddate | $KohaDates %]</td> > <td> > [% IF ( acceptedby_borrowernumber ) %] >@@ -189,31 +190,31 @@ > </tbody> > </table></li></ol> > </fieldset> >- <fieldset class="rows"> <legend>Acquisition information</legend> >+ <fieldset class="rows"> <legend>[% t('Acquisition information') %]</legend> > <ol> > <li> >- <span class="label">Library:</span> [% Branches.GetName( branchcode ) %] >+ <span class="label">[% t('Library:') %]</span> [% Branches.GetName( branchcode ) %] > </li> > <li> >- <span class="label">Fund:</span> [% budgetname %] >+ <span class="label">[% t('Fund:') %]</span> [% budgetname %] > </li> > <li> >- <span class="label">Copies:</span>[% quantity %] >+ <span class="label">[% t('Copies:') %]</span>[% quantity %] > </li> > <li> >- <span class="label">Currency:</span>[% currency %] >+ <span class="label">[% t('Currency:') %]</span>[% currency %] > </li> > <li> >- <span class="label">Price:</span>[% price | $Price %] >+ <span class="label">[% t('Price:') %]</span>[% price | $Price %] > </li> > <li> >- <span class="label">Total</span>[% total | $Price %] >+ <span class="label">[% t('Total') %]</span>[% total | $Price %] > </li> > </ol> > </fieldset> > > <fieldset class="action"> >- <a href="suggestion.pl"><< Back to suggestions</a> >+ <a href="suggestion.pl">[% t('<< Back to suggestions') %]</a> > </fieldset> > > </div> >@@ -237,31 +238,31 @@ > <input type="hidden" name="redirect" id="redirect" value="[% redirect %]" /> > <input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" /> > [% IF ( suggestionid ) %] >- <h1>Edit purchase suggestion #[% suggestionid %]</h1> >- <input type="hidden" name="suggestionid" value="[% suggestionid %]"/> >+ <h1>[% t('Edit purchase suggestion #') %][% suggestionid %]</h1> >+ <input type="hidden" name="suggestionid" value="[% suggestionid %]" /> > [% ELSE %] >- <h1>Enter a new purchase suggestion</h1> >+ <h1>[% t('Enter a new purchase suggestion') %]</h1> > [% END %] >- <fieldset class="rows"> <legend>Bibliographic information</legend><ol> >+ <fieldset class="rows"> <legend>[% t('Bibliographic information') %]</legend><ol> > <li> >- <label for="title" class="required">Title:</label> >+ <label for="title" class="required">[% t('Title:') %]</label> > <input type="text" id="title" name="title" size="80" maxlength="255" value="[% title |html %]" required="required" class="required" /> >- <span class="required">Required</span> >+ <span class="required">[% t('Required') %]</span> > </li> >- <li><label for="author">Author:</label><input type="text" id="author" name="author" size="50" maxlength="80" value="[% author | html %]"/></li> >- <li><label for="copyrightdate">Copyright date:</label><input type="text" id="copyrightdate" name="copyrightdate" size="4" maxlength="4" value="[% copyrightdate | html %]" /></li> >- <li><label for="isbn">ISBN or ISSN or other standard number:</label><input type="text" id="isbn" name="isbn" size="50" maxlength="80" value="[% isbn | html %]"/></li> >- <li><label for="publishercode">Publisher:</label><input type="text" id="publishercode" name="publishercode" size="50" maxlength="80" value="[% publishercode | html %]"/></li> >- <li><label for="place">Publication place:</label><input type="text" id="place" name="place" size="50" maxlength="80" value="[% place | html %]"/></li> >- <li><label for="collectiontitle">Collection title:</label><input type="text" id="collectiontitle" name="collectiontitle" size="50" maxlength="80" value="[% collectiontitle | html %]"/></li> >- <li><label for="itemtype">Document type:</label> >+ <li><label for="author">[% t('Author:') %]</label><input type="text" id="author" name="author" size="50" maxlength="80" value="[% author | html %]" /></li> >+ <li><label for="copyrightdate">[% t('Copyright date:') %]</label><input type="text" id="copyrightdate" name="copyrightdate" size="4" maxlength="4" value="[% copyrightdate | html %]" /></li> >+ <li><label for="isbn">[% t('ISBN or ISSN or other standard number:') %]</label><input type="text" id="isbn" name="isbn" size="50" maxlength="80" value="[% isbn | html %]" /></li> >+ <li><label for="publishercode">[% t('Publisher:') %]</label><input type="text" id="publishercode" name="publishercode" size="50" maxlength="80" value="[% publishercode | html %]" /></li> >+ <li><label for="place">[% t('Publication place:') %]</label><input type="text" id="place" name="place" size="50" maxlength="80" value="[% place | html %]" /></li> >+ <li><label for="collectiontitle">[% t('Collection title:') %]</label><input type="text" id="collectiontitle" name="collectiontitle" size="50" maxlength="80" value="[% collectiontitle | html %]" /></li> >+ <li><label for="itemtype">[% t('Document type:') %]</label> > [% PROCESS 'av-build-dropbox.inc' name="itemtype", category="SUGGEST_FORMAT", size = 20, default=itemtype %] > </li> > [% IF patron_reason_loop %] > <li> >- <label for="patronreason">Reason for suggestion: </label> >+ <label for="patronreason">[% t('Reason for suggestion:') %] </label> > <select name="patronreason" id="patronreason"> >- <option value=""> -- Choose -- </option> >+ <option value=""> [% t('-- Choose --') %] </option> > [% FOREACH patron_reason_loo IN patron_reason_loop %] > [% IF patron_reason_loo.authorised_value == patronreason %] > <option value="[% patron_reason_loo.authorised_value %]" selected="selected">[% patron_reason_loo.lib %]</option> >@@ -272,39 +273,39 @@ > </select> > </li> > [% END %] >- <li><label for="note">Notes:</label><textarea name="note" id="note" rows="5" cols="40">[% note %]</textarea></li> >+ <li><label for="note">[% t('Notes:') %]</label><textarea name="note" id="note" rows="5" cols="40">[% note %]</textarea></li> > </ol> > </fieldset> >- <fieldset class="rows"> <legend>Suggestion management</legend> >+ <fieldset class="rows"> <legend>[% t('Suggestion management') %]</legend> > <ol> > [% IF ( suggestionid ) %] > <li> >- <label for="STATUS">Status:</label> >+ <label for="STATUS">[% t('Status:') %]</label> > <select id="STATUS" name="STATUS"> >- <option value="">No Status</option> >+ <option value="">[% t('No Status') %]</option> > > [% IF (statusselected_ASKED ) %] >- <option value="ASKED" selected="selected">Pending</option> >+ <option value="ASKED" selected="selected">[% t('Pending') %]</option> > [% ELSE %] >- <option value="ASKED">Pending</option> >+ <option value="ASKED">[% t('Pending') %]</option> > [% END %] > > [% IF (statusselected_ACCEPTED ) %] >- <option value="ACCEPTED" selected="selected">Accepted</option> >+ <option value="ACCEPTED" selected="selected">[% t('Accepted') %]</option> > [% ELSE %] >- <option value="ACCEPTED">Accepted</option> >+ <option value="ACCEPTED">[% t('Accepted') %]</option> > [% END %] > > [% IF (statusselected_CHECKED ) %] >- <option value="CHECKED" selected="selected">Checked</option> >+ <option value="CHECKED" selected="selected">[% t('Checked') %]</option> > [% ELSE %] >- <option value="CHECKED">Checked</option> >+ <option value="CHECKED">[% t('Checked') %]</option> > [% END %] > > [% IF ( statusselected_REJECTED ) %] >- <option value="REJECTED" selected="selected">Rejected</option> >+ <option value="REJECTED" selected="selected">[% t('Rejected') %]</option> > [% ELSE %] >- <option value="REJECTED">Rejected</option> >+ <option value="REJECTED">[% t('Rejected') %]</option> > [% END %] > > [% FOREACH s IN SuggestionStatuses %] >@@ -317,9 +318,9 @@ > </select> > </li> > <li> >- <label for="reason">Reason</label> >+ <label for="reason">[% t('Reason') %]</label> > <select class="select-reason" id="reason" name="reason"> >- <option value=""> -- Choose a reason -- </option> >+ <option value=""> [% t('-- Choose a reason --') %] </option> > [% FOREACH reasonsloo IN suggestion.reasonsloop %] > [% IF (reasonsloo.lib == suggestion.reason) %] > <option value="[% reasonsloo.lib %]" selected="selected">[% reasonsloo.lib %]</option> >@@ -327,45 +328,45 @@ > <option value="[% reasonsloo.lib %]">[% reasonsloo.lib %]</option> > [% END %] > [% END %] >- <option value="other">Others...</option> >+ <option value="other">[% t('Others...') %]</option> > </select> > > <span id="other_reason" name="other_reason"> > [% IF other_reason %] >- <input type="text" size="31" id="select-other_reason" name="other_reason" placeholder="please note your reason here..." value="[% suggestion.reason | html %]"/> >+ <input type="text" size="31" id="select-other_reason" name="other_reason" placeholder="[% t('please note your reason here...') %]" value="[% suggestion.reason | html %]" /> > [% ELSE %] >- <input type="text" size="31" id="select-other_reason" name="other_reason" placeholder="please note your reason here..." /> >+ <input type="text" size="31" id="select-other_reason" name="other_reason" placeholder="[% t('please note your reason here...') %]" /> > [% END %] >- <a href="#back">Cancel</a> >+ <a href="#back">[% t('Cancel') %]</a> > </span> > </li> > [% END %] > <li><table> >- <thead><tr><th> </th><th>Date</th><th>By</th></tr></thead> >+ <thead><tr><th> </th><th>[% t('Date') %]</th><th>[% t('By') %]</th></tr></thead> > <tbody> > <tr> >- <th><label for="suggesteddate">Created by:</label> </th> >- <td><input type="text" id="suggesteddate" name="suggesteddate" class="datepicker" size="10" maxlength="10" value="[% suggesteddate | $KohaDates %]"/>[% INCLUDE 'date-format.inc' %]</td> >- <td><input type="hidden" id="suggestedby" name="suggestedby" value="[% suggestedby %]"/>[% IF ( suggestedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestedby_borrowernumber %]">[% suggestedby_surname %], [% suggestedby_firstname %] ([% suggestedby_cardnumber %])</a> [% Branches.GetName( suggestedby_branchcode ) %] ([% suggestedby_description %])[% END %] >+ <th><label for="suggesteddate">[% t('Created by:') %]</label> </th> >+ <td><input type="text" id="suggesteddate" name="suggesteddate" class="datepicker" size="10" maxlength="10" value="[% suggesteddate | $KohaDates %]" />[% INCLUDE 'date-format.inc' %]</td> >+ <td><input type="hidden" id="suggestedby" name="suggestedby" value="[% suggestedby %]" />[% IF ( suggestedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestedby_borrowernumber %]">[% suggestedby_surname %], [% suggestedby_firstname %] ([% suggestedby_cardnumber %])</a> [% Branches.GetName( suggestedby_branchcode ) %] ([% suggestedby_description %])[% END %] > </td> > </tr> > <tr> >- <th><label for="managedon">Managed by:</label> </th> >+ <th><label for="managedon">[% t('Managed by:') %]</label> </th> > <td><input type="text" id="managedon" name="manageddate" class="datepicker" size="10" maxlength="10" value="[% manageddate | $KohaDates %]" />[% INCLUDE 'date-format.inc' %]</td> >- <td><input type="hidden" id="managedby" name="managedby" value="[% managedby %]"/>[% IF ( managedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% managedby_borrowernumber %]">[% managedby_surname %], [% managedby_firstname %] ([% suggestedby_cardnumber %])</a> [% Branches.GetName( managedby_branchcode ) %] ([% managedby_description %])[% END %]</td> >+ <td><input type="hidden" id="managedby" name="managedby" value="[% managedby %]" />[% IF ( managedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% managedby_borrowernumber %]">[% managedby_surname %], [% managedby_firstname %] ([% suggestedby_cardnumber %])</a> [% Branches.GetName( managedby_branchcode ) %] ([% managedby_description %])[% END %]</td> > </tr> > <tr> >- <th><label for="accepteddate">Accepted on:</label> </th> >+ <th><label for="accepteddate">[% t('Accepted on:') %]</label> </th> > <td><input type="text" id="accepteddate" name="accepteddate" class="datepicker" size="10" maxlength="10" value="[% accepteddate | $KohaDates %]" />[% INCLUDE 'date-format.inc' %]</td> >- <td><input type="hidden" id="acceptedby" name="acceptedby" value="[% acceptedby %]"/>[% IF ( acceptedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% acceptedby_borrowernumber %]">[% acceptedby_surname %], [% acceptedby_firstname %] ([% suggestedby_cardnumber %])</a> [% Branches.GetName( acceptedby_branchcode ) %] ([% acceptedby_description %])[% END %]</td> >+ <td><input type="hidden" id="acceptedby" name="acceptedby" value="[% acceptedby %]" />[% IF ( acceptedby_borrowernumber ) %]<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% acceptedby_borrowernumber %]">[% acceptedby_surname %], [% acceptedby_firstname %] ([% suggestedby_cardnumber %])</a> [% Branches.GetName( acceptedby_branchcode ) %] ([% acceptedby_description %])[% END %]</td> > </tr> > </tbody> > </table></li></ol> > </fieldset> >- <fieldset class="rows"> <legend>Acquisition information</legend><ol> >- <li><label for="branchcode">Library:</label> >+ <fieldset class="rows"> <legend>[% t('Acquisition information') %]</legend><ol> >+ <li><label for="branchcode">[% t('Library:') %]</label> > <select name="branchcode" id="branchcode"> >- <option value="">Any</option> >+ <option value="">[% t('Any') %]</option> > [% IF branchfilter %] > [% PROCESS options_for_libraries libraries => Branches.all( selected => branchfilter ) %] > [% ELSE %] >@@ -373,16 +374,16 @@ > [% END %] > </select> > </li> >- <li><label for="budgetid">Fund:</label> >+ <li><label for="budgetid">[% t('Fund:') %]</label> > <select name="budgetid" id="budgetid"> >- <option value="">Any</option>[% FOREACH budgetsloo IN budgetsloop %] >+ <option value="">[% t('Any') %]</option>[% FOREACH budgetsloo IN budgetsloop %] > [% IF ( budgetsloo.selected ) %]<option value="[% budgetsloo.budget_id %]" selected="selected">[% budgetsloo.budget_name %]</option>[% ELSE %]<option value="[% budgetsloo.budget_id %]">[% budgetsloo.budget_name %]</option>[% END %][% END %] > </select> >- </li><li><label for="quantity">Copies:</label> >+ </li><li><label for="quantity">[% t('Copies:') %]</label> > <input type="text" size="10" id="quantity" name="quantity" value="[% quantity %]" /> > </li> > <li> >- <label for="currency">Currency:</label> >+ <label for="currency">[% t('Currency:') %]</label> > [% FOREACH c IN currencies %] > <input type="hidden" value="[% c.rate %]" id="currency_rate_[% c.currency %]" name="currency_rate_[% c.currency %]" /> > <input type="hidden" id="[% c.currency %]" name="[% c.currency %]" value="[% c.rate %]" /> >@@ -398,30 +399,30 @@ > [% END %] > </select> > </li> >- <li><label for="price">Price:</label> >+ <li><label for="price">[% t('Price:') %]</label> > <input type="text" size="20" name="price" id="price" value="[% price %]" /> >- </li><li><label for="total">Total: </label> >- <input type="text" readonly="readonly" id="total" name="total" size="10" value="[% total %]"/> >+ </li><li><label for="total">[% t('Total:') %] </label> >+ <input type="text" readonly="readonly" id="total" name="total" size="10" value="[% total %]" /> > </li></ol> >- </fieldset><input type="hidden" id="returnsuggested" name="returnsuggested" value="[% IF ( returnsuggestedby ) %][% returnsuggestedby %][% ELSE %]noone[% END %]"/> >- <fieldset class="action"><input type="hidden" name="op" value="[% op %]" />[% IF ( suggestionid ) %]<input type="submit" value="Save" /> <a class="cancel" href="[% IF ( returnsuggestedby ) %]/cgi-bin/koha/members/moremember.pl?borrowernumber=[% returnsuggestedby %]#suggestions[% ELSE %]suggestion.pl[% END %]">Cancel</a>[% ELSE %]<input type="submit" value="Submit your suggestion" /> <a class="cancel" href="suggestion.pl">Cancel</a>[% END %] >+ </fieldset><input type="hidden" id="returnsuggested" name="returnsuggested" value="[% IF ( returnsuggestedby ) %][% returnsuggestedby %][% ELSE %]noone[% END %]" /> >+ <fieldset class="action"><input type="hidden" name="op" value="[% op %]" />[% IF ( suggestionid ) %]<input type="submit" value="Save" /> <a class="cancel" href="[% IF ( returnsuggestedby ) %]/cgi-bin/koha/members/moremember.pl?borrowernumber=[% returnsuggestedby %]#suggestions[% ELSE %]suggestion.pl[% END %]">[% t('Cancel') %]</a>[% ELSE %]<input type="submit" value="Submit your suggestion" /> <a class="cancel" href="suggestion.pl">[% t('Cancel') %]</a>[% END %] > </fieldset> > </form> > [% END %] > > [% IF ( op_else ) %] > <div id="toolbar" class="btn-toolbar"> >- <a class="btn btn-default btn-sm" id="newsuggestion" href="suggestion.pl?op=add"><i class="fa fa-plus"></i> New purchase suggestion</a> >+ <a class="btn btn-default btn-sm" id="newsuggestion" href="suggestion.pl?op=add"><i class="fa fa-plus"></i> [% t('New purchase suggestion') %]</a> > </div> > >-<h1>Suggestions management</h1> >+<h1>[% t('Suggestions management') %]</h1> > > > [% FOR m IN messages %] > <div class="dialog [% m.type %]"> > [% SWITCH m.code %] > [% CASE 'already_exists' %] >- The suggestion has not been added. A suggestion with this title already exists (<a href='/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% m.id %]&op=show'>suggestion #[% m.id %]</a>) >+ [% t('The suggestion has not been added. A suggestion with this title already exists (') %]<a href="/cgi-bin/koha/suggestion/suggestion.pl?suggestionid=[% m.id %]&op=show">[% t('suggestion #') %][% m.id %]</a>) > [% CASE %] > [% m.code %] > [% END %] >@@ -435,19 +436,19 @@ > <li> > <a href="#[% suggestion.suggestiontype %]"> > [% IF ( suggestion.suggestiontypelabel ) %] >- [% IF (suggestion.suggestiontypelabel == "Pending") %]Pending >- [% ELSIF (suggestion.suggestiontypelabel == "Accepted") %]Accepted >- [% ELSIF (suggestion.suggestiontypelabel == "Checked") %]Checked >- [% ELSIF (suggestion.suggestiontypelabel == "Rejected") %]Rejected >- [% ELSIF (suggestion.suggestiontypelabel == "Available") %]Available >- [% ELSIF (suggestion.suggestiontypelabel == "Ordered") %]Ordered >- [% ELSIF (suggestion.suggestiontypelabel == "Unknown") %]Status unknown >+ [% IF (suggestion.suggestiontypelabel == "Pending") %][% t('Pending') %] >+ [% ELSIF (suggestion.suggestiontypelabel == "Accepted") %][% t('Accepted') %] >+ [% ELSIF (suggestion.suggestiontypelabel == "Checked") %][% t('Checked') %] >+ [% ELSIF (suggestion.suggestiontypelabel == "Rejected") %][% t('Rejected') %] >+ [% ELSIF (suggestion.suggestiontypelabel == "Available") %][% t('Available') %] >+ [% ELSIF (suggestion.suggestiontypelabel == "Ordered") %][% t('Ordered') %] >+ [% ELSIF (suggestion.suggestiontypelabel == "Unknown") %][% t('Status unknown') %] > [% ELSE %][% suggestion.suggestiontypelabel %][% END %] > [% ELSE %] > [% IF ( suggestion.suggestiontype ) %] > [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestion.suggestiontype ) %] > [% ELSE %] >- No name >+ [% t('No name') %] > [% END %] > [% END %] > ([% suggestion.suggestions_loop.size %])</a></li> >@@ -461,18 +462,18 @@ > <form class="update_suggestions" name="f[% suggestion.suggestiontype %]" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#[% suggestion.suggestiontype %]"> > > [% IF ( suggestion.suggestions_loop ) %] >-<p><a id="CheckAll[% suggestion.suggestiontype %]" href="#">Check all</a> | <a id="UncheckAll[% suggestion.suggestiontype %]" href="#">Uncheck all</a></p> >+<p><a id="CheckAll[% suggestion.suggestiontype %]" href="#">[% t('Check all') %]</a> | <a id="UncheckAll[% suggestion.suggestiontype %]" href="#">[% t('Uncheck all') %]</a></p> > <table id="[% suggestion.suggestiontype %]t" class="sorted"> > <thead> > <tr> >- <th class="NoSort"> </th> >- <th class="anti-the">Suggestion</th> >- <th>Suggested by - on</th> >- <th>Managed by - on</th> >- <th>Library</th> >- <th>Fund</th> >- <th>Status</th> >- <th class="NoSort"> </th> >+ <th class="NoSort"> </th> >+ <th class="anti-the">[% t('Suggestion') %]</th> >+ <th>[% t('Suggested by - on') %]</th> >+ <th>[% t('Managed by - on') %]</th> >+ <th>[% t('Library') %]</th> >+ <th>[% t('Fund') %]</th> >+ <th>[% t('Status') %]</th> >+ <th class="NoSort"> </th> > </tr> > </thead> > <tbody> >@@ -482,12 +483,12 @@ > <input type="checkbox" name="edit_field" value="[% suggestions_loo.suggestionid %]" /> > </td> > <td> >- <a href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid %]&op=show" title="suggestion" > >- [% suggestions_loo.title |html %][% IF ( suggestions_loo.author ) %], by [% suggestions_loo.author %][% END %]</a> >+ <a href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid %]&op=show" title="[% t('suggestion') %]"> >+ [% suggestions_loo.title |html %][% IF ( suggestions_loo.author ) %][% t(', by') %] [% suggestions_loo.author %][% END %]</a> > <br /> >- [% IF ( suggestions_loo.copyrightdate ) %]© [% suggestions_loo.copyrightdate |html %] [% END %] >- [% IF ( suggestions_loo.volumedesc ) %]; Volume:<i>[% suggestions_loo.volumedesc |html %]</i> [% END %] >- [% IF ( suggestions_loo.isbn ) %]; ISBN:<i>[% suggestions_loo.isbn |html %]</i> [% END %][% IF ( suggestions_loo.publishercode ) %]; Published by [% suggestions_loo.publishercode |html %] [% END %][% IF ( suggestions_loo.publicationyear ) %] in <i>[% suggestions_loo.publicationyear |html %]</i> [% END %][% IF ( suggestions_loo.place ) %] in <i>[% suggestions_loo.place |html %]</i> [% END %][% IF ( suggestions_loo.collectiontitle ) %]; [% suggestions_loo.collectiontitle |html %] [% END %][% IF ( suggestions_loo.itemtype ) %]; [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', suggestions_loo.itemtype, 0 ) %] [% END %]<br />[% IF ( suggestions_loo.note ) %]<span class="note">[% suggestions_loo.note |html%]</span>[% END %] >+ [% IF ( suggestions_loo.copyrightdate ) %]© [% suggestions_loo.copyrightdate |html %] [% END %] >+ [% IF ( suggestions_loo.volumedesc ) %][% t('; Volume:') %]<i>[% suggestions_loo.volumedesc |html %]</i> [% END %] >+ [% IF ( suggestions_loo.isbn ) %][% t('; ISBN:') %]<i>[% suggestions_loo.isbn |html %]</i> [% END %][% IF ( suggestions_loo.publishercode ) %][% t('; Published by') %] [% suggestions_loo.publishercode |html %] [% END %][% IF ( suggestions_loo.publicationyear ) %] [% t('in') %] <i>[% suggestions_loo.publicationyear |html %]</i> [% END %][% IF ( suggestions_loo.place ) %] [% t('in') %] <i>[% suggestions_loo.place |html %]</i> [% END %][% IF ( suggestions_loo.collectiontitle ) %]; [% suggestions_loo.collectiontitle |html %] [% END %][% IF ( suggestions_loo.itemtype ) %]; [% AuthorisedValues.GetByCode( 'SUGGEST_FORMAT', suggestions_loo.itemtype, 0 ) %] [% END %]<br />[% IF ( suggestions_loo.note ) %]<span class="note">[% suggestions_loo.note |html%]</span>[% END %] > </td> > <td> > <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% suggestions_loo.suggestedby %]">[% suggestions_loo.surnamesuggestedby %][% IF ( suggestions_loo.firstnamesuggestedby ) %], [% suggestions_loo.firstnamesuggestedby %][% END %] [% IF (suggestions_loo.cardnumbersuggestedby ) %]([% suggestions_loo.cardnumbersuggestedby %])[% END %]</a> >@@ -505,19 +506,19 @@ > </td> > <td> > [% IF ( suggestions_loo.ASKED ) %] >- Pending >+ [% t('Pending') %] > [% ELSIF ( suggestions_loo.ACCEPTED ) %] >- Accepted >+ [% t('Accepted') %] > [% ELSIF ( suggestions_loo.ORDERED ) %] >- Ordered >+ [% t('Ordered') %] > [% ELSIF ( suggestions_loo.REJECTED ) %] >- Rejected >+ [% t('Rejected') %] > [% ELSIF ( suggestions_loo.CHECKED ) %] >- Checked >+ [% t('Checked') %] > [% ELSIF AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestions_loo.STATUS ) %] > [% AuthorisedValues.GetByCode( 'SUGGEST_STATUS', suggestions_loo.STATUS ) %] > [% ELSE %] >- Status unknown >+ [% t('Status unknown') %] > [% END %] > > [% IF ( suggestions_loo.reason ) %] >@@ -525,40 +526,40 @@ > [% END %] > </td> > <td class="actions"> >- <a class="btn btn-xs btn-default" href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid %]&op=edit"><i class="fa fa-pencil"></i> Edit</a> >- <a class="btn btn-default btn-xs deletesuggestion" href="suggestion.pl?op=delete&edit_field=[% suggestions_loo.suggestionid %]"><i class="fa fa-trash"></i> Delete</a> >+ <a class="btn btn-xs btn-default" href="suggestion.pl?suggestionid=[% suggestions_loo.suggestionid %]&op=edit"><i class="fa fa-pencil"></i> [% t('Edit') %]</a> >+ <a class="btn btn-default btn-xs deletesuggestion" href="suggestion.pl?op=delete&edit_field=[% suggestions_loo.suggestionid %]"><i class="fa fa-trash"></i> [% t('Delete') %]</a> > </td> > </tr> > [% END %]</tbody> > </table> <fieldset> > <div id="select-reason[% suggestion.suggestiontype %]"> > <div id="status[% suggestion.suggestiontype %]"> >- <label for="STATUS[% suggestion.suggestiontype %]">Mark selected as: </label> >+ <label for="STATUS[% suggestion.suggestiontype %]">[% t('Mark selected as:') %] </label> > <select name="STATUS" id="STATUS[% suggestion.suggestiontype %]"> >- <option value=""> -- Choose a status --</option> >+ <option value=""> [% t('-- Choose a status --') %]</option> > > [% IF (statusselected_ASKED ) %] >- <option value="ASKED" selected="selected">Pending</option> >+ <option value="ASKED" selected="selected">[% t('Pending') %]</option> > [% ELSE %] >- <option value="ASKED">Pending</option> >+ <option value="ASKED">[% t('Pending') %]</option> > [% END %] > > [% IF (statusselected_ACCEPTED ) %] >- <option value="ACCEPTED" selected="selected">Accepted</option> >+ <option value="ACCEPTED" selected="selected">[% t('Accepted') %]</option> > [% ELSE %] >- <option value="ACCEPTED">Accepted</option> >+ <option value="ACCEPTED">[% t('Accepted') %]</option> > [% END %] > > [% IF (statusselected_CHECKED ) %] >- <option value="CHECKED" selected="selected">Checked</option> >+ <option value="CHECKED" selected="selected">[% t('Checked') %]</option> > [% ELSE %] >- <option value="CHECKED">Checked</option> >+ <option value="CHECKED">[% t('Checked') %]</option> > [% END %] > > [% IF ( statusselected_REJECTED ) %] >- <option value="REJECTED" selected="selected">Rejected</option> >+ <option value="REJECTED" selected="selected">[% t('Rejected') %]</option> > [% ELSE %] >- <option value="REJECTED">Rejected</option> >+ <option value="REJECTED">[% t('Rejected') %]</option> > [% END %] > > [% FOREACH s IN SuggestionStatuses %] >@@ -566,23 +567,23 @@ > [% END %] > </select> > >- <label for="reason[% suggestion.suggestiontype %]">with this reason:</label> >+ <label for="reason[% suggestion.suggestiontype %]">[% t('with this reason:') %]</label> > <select id="reason[% suggestion.suggestiontype %]" name="reason[% suggestion.suggestiontype %]"> >- <option value=""> -- Choose a reason -- </option> >+ <option value=""> [% t('-- Choose a reason --') %] </option> > [% FOREACH reasonsloo IN suggestion.reasonsloop %] > <option value="[% reasonsloo.lib %]">[% reasonsloo.lib %]</option> > [% END %] >- <option value="other">Others...</option> >+ <option value="other">[% t('Others...') %]</option> > </select> > > <span id="other_reason[% suggestion.suggestiontype %]"> >- <input type="text" size="31" id="select-other_reason[% suggestion.suggestiontype %]" name="other_reason[% suggestion.suggestiontype %]" placeholder="please note your reason here..." /> >- <a href="#back[% suggestion.suggestiontype %]">Cancel</a> >+ <input type="text" size="31" id="select-other_reason[% suggestion.suggestiontype %]" name="other_reason[% suggestion.suggestiontype %]" placeholder="[% t('please note your reason here...') %]" /> >+ <a href="#back[% suggestion.suggestiontype %]">[% t('Cancel') %]</a> > </span> > >- <strong style="padding: 0 1em;">OR:</strong> >+ <strong style="padding: 0 1em;">[% t('OR:') %]</strong> > >- <label for="[% suggestion.suggestiontype %]delete">Delete selected</label> >+ <label for="[% suggestion.suggestiontype %]delete">[% t('Delete selected') %]</label> > <input type="checkbox" name="op" id="[% suggestion.suggestiontype %]delete" /> > </div> > </div> >@@ -595,7 +596,7 @@ > <input type="submit" value="Submit" /></fieldset> > </form> > [% ELSE %] >- <b>No results.</b> >+ <b>[% t('No results.') %]</b> > [% END %] > </div> > [% END %] >@@ -606,74 +607,74 @@ > > [% UNLESS ( op_save ) %] [% UNLESS ( op == 'show' ) %]<div class="yui-b"> > <form name="suggestionfilter" action="suggestion.pl" method="get"> >-<fieldset class="brief"><ol style="display:block;"><li><label for="displayby">Organize by: </label> >+<fieldset class="brief"><ol style="display:block;"><li><label for="displayby">[% t('Organize by:') %] </label> > <select name="displayby" id="displayby" style="width:auto;"> > [% IF ( displayby == "STATUS" ) %] >- <option value="STATUS" selected="selected">Status</option> >+ <option value="STATUS" selected="selected">[% t('Status') %]</option> > [% ELSE %] >- <option value="STATUS">Status</option> >+ <option value="STATUS">[% t('Status') %]</option> > [% END %] > [% IF ( displayby == "branchcode" ) %] >- <option value="branchcode" selected="selected">Library</option> >+ <option value="branchcode" selected="selected">[% t('Library') %]</option> > [% ELSE %] >- <option value="branchcode">Library</option> >+ <option value="branchcode">[% t('Library') %]</option> > [% END %] > [% IF ( displayby == "itemtype" ) %] >- <option value="itemtype" selected="selected">Item type</option> >+ <option value="itemtype" selected="selected">[% t('Item type') %]</option> > [% ELSE %] >- <option value="itemtype">Item type</option> >+ <option value="itemtype">[% t('Item type') %]</option> > [% END %] > [% IF ( displayby == "managedby" ) %] >- <option value="managedby" selected="selected">Managed by</option> >+ <option value="managedby" selected="selected">[% t('Managed by') %]</option> > [% ELSE %] >- <option value="managedby">Managed by</option> >+ <option value="managedby">[% t('Managed by') %]</option> > [% END %] > [% IF ( displayby == "acceptedby" ) %] >- <option value="acceptedby" selected="selected">Accepted by</option> >+ <option value="acceptedby" selected="selected">[% t('Accepted by') %]</option> > [% ELSE %] >- <option value="acceptedby">Accepted by</option> >+ <option value="acceptedby">[% t('Accepted by') %]</option> > [% END %] > </select> <input type="submit" value="Go" /></li></ol></fieldset> >-<h4>Filter by: <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[clear]</a></h4> >+<h4>[% t('Filter by:') %] <a style="font-size:80%;font-weight:normal;" href="/cgi-bin/koha/suggestion/suggestion.pl">[% t('[clear]') %]</a></h4> > <div style="display:block;" id="limits"> > >- <fieldset class="brief"><h4 class="local_collapse"><a href="#">Bibliographic information</a></h4> >- <ol> <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="isbn"> ISBN:</label><input type="text" id="isbn" name="isbn" value="[% isbn | html %]" /></li> >- <li><label for="publishercode"> Publisher:</label><input type="text" id="publishercode" name="publishercode" value="[% publishercode | html %]" /></li> >- <li><label for="copyrightdate_filter"> Copyright date:</label><input type="text" id="copyrightdate_filter" name="copyrightdate" value="[% copyrightdate | html %]" /></li> >- <li><label for="collectiontitle"> Collection title:</label><input type="text" id="collectiontitle" name="collectiontitle" value="[% collectiontitle | html %]" /></li><li><input type="submit" value="Go" /></li></ol> >+ <fieldset class="brief"><h4 class="local_collapse"><a href="#">[% t('Bibliographic information') %]</a></h4> >+ <ol> <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="isbn"> [% t('ISBN:') %]</label><input type="text" id="isbn" name="isbn" value="[% isbn | html %]" /></li> >+ <li><label for="publishercode"> [% t('Publisher:') %]</label><input type="text" id="publishercode" name="publishercode" value="[% publishercode | html %]" /></li> >+ <li><label for="copyrightdate_filter"> [% t('Copyright date:') %]</label><input type="text" id="copyrightdate_filter" name="copyrightdate" value="[% copyrightdate | html %]" /></li> >+ <li><label for="collectiontitle"> [% t('Collection title:') %]</label><input type="text" id="collectiontitle" name="collectiontitle" value="[% collectiontitle | html %]" /></li><li><input type="submit" value="Go" /></li></ol> > </fieldset> >- <fieldset class="brief"><h4 class="local_collapse"><a href="#">Suggestion information</a></h4> >+ <fieldset class="brief"><h4 class="local_collapse"><a href="#">[% t('Suggestion information') %]</a></h4> > <ol> > <li> >- <label for="STATUS"> Status:</label> >+ <label for="STATUS"> [% t('Status:') %]</label> > <select name="STATUS" id="STATUS"> >- <option value="">Any</option> >+ <option value="">[% t('Any') %]</option> > > [% IF (statusselected_ASKED ) %] >- <option value="ASKED" selected="selected">Pending</option> >+ <option value="ASKED" selected="selected">[% t('Pending') %]</option> > [% ELSE %] >- <option value="ASKED">Pending</option> >+ <option value="ASKED">[% t('Pending') %]</option> > [% END %] > > [% IF (statusselected_ACCEPTED ) %] >- <option value="ACCEPTED" selected="selected">Accepted</option> >+ <option value="ACCEPTED" selected="selected">[% t('Accepted') %]</option> > [% ELSE %] >- <option value="ACCEPTED">Accepted</option> >+ <option value="ACCEPTED">[% t('Accepted') %]</option> > [% END %] > > [% IF (statusselected_CHECKED ) %] >- <option value="CHECKED" selected="selected">Checked</option> >+ <option value="CHECKED" selected="selected">[% t('Checked') %]</option> > [% ELSE %] >- <option value="CHECKED">Checked</option> >+ <option value="CHECKED">[% t('Checked') %]</option> > [% END %] > > [% IF ( statusselected_REJECTED ) %] >- <option value="REJECTED" selected="selected">Rejected</option> >+ <option value="REJECTED" selected="selected">[% t('Rejected') %]</option> > [% ELSE %] >- <option value="REJECTED">Rejected</option> >+ <option value="REJECTED">[% t('Rejected') %]</option> > [% END %] > > [% FOREACH s IN SuggestionStatuses %] >@@ -686,58 +687,58 @@ > </select> > </li> > >- <li><label for="suggestedby"> Suggested by:</label><select id="suggestedby" name="suggestedby"><option value="">Any</option> >+ <li><label for="suggestedby"> [% t('Suggested by:') %]</label><select id="suggestedby" name="suggestedby"><option value="">[% t('Any') %]</option> > [% FOREACH suggestedby_loo IN suggestedby_loop %][% IF ( suggestedby_loo.selected ) %]<option value="[% suggestedby_loo.code %]" selected="selected">[% suggestedby_loo.desc %]</option>[% ELSE %]<option value="[% suggestedby_loo.code %]">[% suggestedby_loo.desc %]</option>[% END %][% END %] > </select></li> > <li> >- <label for="suggesteddate_from">Suggested date from:</label> >+ <label for="suggesteddate_from">[% t('Suggested date from:') %]</label> > <input type="text" id="suggesteddate_from" size="10" name="suggesteddate_from" value="[% suggesteddate_from %]" /> > </li> > <li> >- <label for="suggesteddate_to">To:</label> >+ <label for="suggesteddate_to">[% t('To:') %]</label> > <input type="text" id="suggesteddate_to" size="10" name="suggesteddate_to" value="[% suggesteddate_to %]" /> > </li> >- <li><label for="managedby"> Managed by:</label><select id="managedby" name="managedby"><option value="">Any</option> >+ <li><label for="managedby"> [% t('Managed by:') %]</label><select id="managedby" name="managedby"><option value="">[% t('Any') %]</option> > [% FOREACH managedby_loo IN managedby_loop %][% IF ( managedby_loo.selected ) %]<option value="[% managedby_loo.code %]" selected="selected">[% managedby_loo.desc %]</option>[% ELSE %]<option value="[% managedby_loo.code %]">[% managedby_loo.desc %]</option>[% END %][% END %] > </select></li> > <li> >- <label for="manageddate_from">Management date from:</label> >+ <label for="manageddate_from">[% t('Management date from:') %]</label> > <input type="text" id="manageddate_from" size="10" name="manageddate_from" value="[% manageddate_from %]" /> > </li> > <li> >- <label for="manageddate_to">To:</label> >+ <label for="manageddate_to">[% t('To:') %]</label> > <input type="text" id="manageddate_to" size="10" name="manageddate_to" value="[% manageddate_to %]" /> > </li> >- <li><label for="acceptedby"> Accepted by:</label><select id="acceptedby" name="acceptedby"><option value="">Any</option> >+ <li><label for="acceptedby"> [% t('Accepted by:') %]</label><select id="acceptedby" name="acceptedby"><option value="">[% t('Any') %]</option> > [% FOREACH acceptedby_loo IN acceptedby_loop %][% IF ( acceptedby_loo.selected ) %] <option value="[% acceptedby_loo.code %]" selected="selected">[% acceptedby_loo.desc %]</option>[% ELSE %]<option value="[% acceptedby_loo.code %]">[% acceptedby_loo.desc %]</option>[% END %][% END %] > </select></li> > <li> >- <label for="accepteddate_from">Accepted date from:</label> >+ <label for="accepteddate_from">[% t('Accepted date from:') %]</label> > <input type="text" id="accepteddate_from" size="10" name="accepteddate_from" value="[% accepteddate_from %]" /> > </li> > <li> >- <label for="accepteddate_to">To:</label> >+ <label for="accepteddate_to">[% t('To:') %]</label> > <input type="text" id="accepteddate_to" size="10" name="accepteddate_to" value="[% accepteddate_to %]" /> > </li> > <li><input type="submit" value="Go" /></li></ol> > </fieldset> > >- <fieldset class="brief"><h4 class="local_collapse"><a href="#">Acquisition information</a></h4> >- <ol><li><label for="budgetid"> Book fund:</label> >+ <fieldset class="brief"><h4 class="local_collapse"><a href="#">[% t('Acquisition information') %]</a></h4> >+ <ol><li><label for="budgetid"> [% t('Book fund:') %]</label> > <select name="budgetid" id="budgetid"> >- <option value="__ANY__">Any</option> >+ <option value="__ANY__">[% t('Any') %]</option> > [% IF budgetid == '__NONE__' %] >- <option value="__NONE__" selected="selected">None</option> >+ <option value="__NONE__" selected="selected">[% t('None') %]</option> > [% ELSE %] >- <option value="__NONE__">None</option> >+ <option value="__NONE__">[% t('None') %]</option> > [% END %] > [% FOREACH budgetid_loo IN budgetid_loop %] > [% IF ( budgetid_loo.selected ) %] <option value="[% budgetid_loo.code %]" selected="selected">[% budgetid_loo.desc %]</option>[% ELSE %]<option value="[% budgetid_loo.code %]">[% budgetid_loo.desc %]</option>[% END %] > [% END %] > </select></li> >- <li><label for="branchcode">Library:</label> >+ <li><label for="branchcode">[% t('Library:') %]</label> > <select name="branchcode" id="branchcode"> >- <option value="__ANY__">Any</option> >+ <option value="__ANY__">[% t('Any') %]</option> > [% IF branchfilter %] > [% PROCESS options_for_libraries libraries => Branches.all( selected => branchfilter ) %] > [% ELSE %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt >index e1ced5b598..8e309845d4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt >@@ -1,7 +1,8 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Koha › Tools › Tags › [% IF ( do_it ) %]Review › [% ELSE %]Review tags[% END %]</title> >+<title>[% t('Koha ⺠Tools ⺠Tags âº') %] [% IF ( do_it ) %][% t('Review âº') %] [% ELSE %][% t('Review tags') %][% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.css("css/datatables.css") %] > <style type="text/css"> >@@ -12,19 +13,19 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › <a href="/cgi-bin/koha/tags/review.pl">Tags</a> › Results for tag <i>[% tag %]</i></div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/tools/tools-home.pl">[% t('Tools') %]</a> ⺠<a href="/cgi-bin/koha/tags/review.pl">[% t('Tags') %]</a> [% t('⺠Results for tag') %] <i>[% tag %]</i></div> > > <div id="doc3" class="yui-t2"> > <div id="bd"> > <div id="yui-main"> > <div class="yui-b"> > [% IF ( titles ) %] >-<h3>Titles tagged with the term <i>[% tag %]</i></h3> >+<h3>[% t('Titles tagged with the term') %] <i>[% tag %]</i></h3> > <table id="itemst"> > <thead><tr> >- <th>Title</th> >- <th>Location</th> >- <th> </th> >+ <th>[% t('Title') %]</th> >+ <th>[% t('Location') %]</th> >+ <th> </th> > </tr></thead> > > [% FOREACH title IN titles %] >@@ -38,7 +39,7 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : > [% END %]</p> > [% IF ( title.notes ) %] > <p>[% title.notes |html%]</p>[% END %] >- [% IF ( title.TagLoop ) %]<p style="font-size:90%"><strong>Tagged with:</strong> [% FOREACH TagLoo IN title.TagLoop %] >+ [% IF ( title.TagLoop ) %]<p style="font-size:90%"><strong>[% t('Tagged with:') %]</strong> [% FOREACH TagLoo IN title.TagLoop %] > <a href="/cgi-bin/koha/tags/list.pl?tag=[% TagLoo.term %]">[% TagLoo.term |html %]</a> <span class="weight">([% TagLoo.weight_total %])</span>[% IF ( loop.last ) %][% ELSE %], [% END %] > [% END %]</p> > [% END %] >@@ -50,27 +51,27 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : > ([% item.itemcallnumber %]) > [% END %] > </li> >- [% END %]</ul>[% ELSE %]This record has no items.[% END %] >+ [% END %]</ul>[% ELSE %][% t('This record has no items.') %][% END %] > </td> >- <td><form method="post" action="/cgi-bin/koha/tags/list.pl"><input type="hidden" name="op" value="del" /><input type="hidden" name="tag" value="[% tag %]" /><input type="hidden" name="tag_id" value="[% title.tag_id %]" /><button type="submit" class="delete btn btn-default btn-sm"><i class="fa fa-trash"></i> Remove tag</button></form></td> >+ <td><form method="post" action="/cgi-bin/koha/tags/list.pl"><input type="hidden" name="op" value="del" /><input type="hidden" name="tag" value="[% tag %]" /><input type="hidden" name="tag_id" value="[% title.tag_id %]" /><button type="submit" class="delete btn btn-default btn-sm"><i class="fa fa-trash"></i> [% t('Remove tag') %]</button></form></td> > </tr> > [% END %] > </table> > [% ELSE %] >- <div class="dialog message">There are no titles tagged with the term <i>[% tag %]</i></div> >+ <div class="dialog message">[% t('There are no titles tagged with the term') %] <i>[% tag %]</i></div> > [% END %] > </form> > </div> > </div> > <div class="yui-b"> > <ul> >- <li><a href="/cgi-bin/koha/tags/review.pl?approved=1">Approved tags</a> >+ <li><a href="/cgi-bin/koha/tags/review.pl?approved=1">[% t('Approved tags') %]</a> > </li> >- <li><a href="/cgi-bin/koha/tags/review.pl?approved=-1">Rejected tags</a> >+ <li><a href="/cgi-bin/koha/tags/review.pl?approved=-1">[% t('Rejected tags') %]</a> > </li> >- <li><a href="/cgi-bin/koha/tags/review.pl?approved=0">Pending tags</a> >+ <li><a href="/cgi-bin/koha/tags/review.pl?approved=0">[% t('Pending tags') %]</a> > </li> >- <li><a href="/cgi-bin/koha/tags/review.pl?approved=all">All tags</a> >+ <li><a href="/cgi-bin/koha/tags/review.pl?approved=all">[% t('All tags') %]</a> > </li> > </ul> > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt >index 6898da40b4..66df0d6812 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt >@@ -1,8 +1,9 @@ >+[% PROCESS 'i18n.inc' %] > [% USE Asset %] > [% USE KohaDates %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] >-<title>Home › Tools › Tags › [% IF ( do_it ) %]Review › [% ELSE %]Review tags[% END %]</title> >+<title>[% t('Home ⺠Tools ⺠Tags âº') %] [% IF ( do_it ) %][% t('Review âº') %] [% ELSE %][% t('Review tags') %][% END %]</title> > [% INCLUDE 'doc-head-close.inc' %] > [% Asset.css("css/datatables.css") %] > <style type="text/css"> >@@ -18,7 +19,7 @@ tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › Tags</div> >+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> ⺠<a href="/cgi-bin/koha/tools/tools-home.pl">[% t('Tools') %]</a> [% t('⺠Tags') %]</div> > > <div id="doc3" class="yui-t2"> > <div id="bd"> >@@ -27,40 +28,40 @@ tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } > > <div class="yui-ge"> > <div class="yui-u first"> >-<h1>Tags</h1> >+<h1>[% t('Tags') %]</h1> > <form method="post" action="/cgi-bin/koha/tags/review.pl" class="checkboxed"> >- <h4>Displaying >- [% IF ( filter_approved_all ) %]all[% END %] >- [% IF ( filter_approved_ok ) %]approved[% END %] >- [% IF ( filter_approved_pending ) %]pending[% END %] >- [% IF ( filter_approved_rej ) %]rejected[% END %] >- terms >+ <h4>[% t('Displaying') %] >+ [% IF ( filter_approved_all ) %][% t('all') %][% END %] >+ [% IF ( filter_approved_ok ) %][% t('approved') %][% END %] >+ [% IF ( filter_approved_pending ) %][% t('pending') %][% END %] >+ [% IF ( filter_approved_rej ) %][% t('rejected') %][% END %] >+ [% t('terms') %] > </h4> > > [% IF ( op_count ) %] > <div class="dialog message" id="main_status"> >- [% IF ( op == 'approve' ) %] Approved >- [% ELSIF ( op == 'reject' ) %] Rejected >- [% ELSIF ( op == 'test' ) %] Tested >- [% ELSE %]Unknown Operation ([% op %]) on >+ [% IF ( op == 'approve' ) %] [% t('Approved') %] >+ [% ELSIF ( op == 'reject' ) %] [% t('Rejected') %] >+ [% ELSIF ( op == 'test' ) %] [% t('Tested') %] >+ [% ELSE %][% t('Unknown Operation (') %][% op %][% t(') on') %] > [% END %] >- [% op_count %] Term(s). >+ [% op_count %] [% t('Term(s).') %] > </div> > [% END %] > [% IF ( message_loop ) %] > <div class="dialog alert" id="main_error"> > [% FOREACH message_loo IN message_loop %] >- [% IF ( message_loo.date_from ) %]<strong>Error: </strong>"Date from" is not a legal value ("[% message_loo.date_from %]"). >- [% ELSIF ( message_loo.date_to ) %]<strong>Error: </strong>"Date to" is not a legal value ("[% message_loo.date_to %]"). >- [% ELSIF ( message_loo.failed_ok ) %]<strong>Error: </strong>Failed to approve term ([% message_loo.failed_ok %]). >- [% ELSIF ( message_loo.failed_rej ) %]<strong>Error: </strong>Failed to reject term ([% message_loo.failed_rej %]). >- [% ELSIF ( message_loo.approver ) %]No match for user ([% message_loo.approver %]). FILTER REQUIRES BORROWERNUMBER (not name). >- [% ELSIF ( message_loo.approved_by ) %]<strong>Error: </strong>No match for borrowernumber ([% message_loo.approved_by %]). >- [% ELSIF ( message_loo.op_zero ) %]<strong>Error: </strong> The root koha user in your KOHA_CONF file >- (default: kohaadmin) is not a valid tag moderator. These actions are logged >- by borrowernumber, so the moderator must exist in your borrowers table. >- Please log in as a different authorized staff user to moderate tags. >- [% ELSE %]Unrecognized error! >+ [% IF ( message_loo.date_from ) %]<strong>[% t('Error:') %] </strong>[% t('"Date from" is not a legal value ("') %][% message_loo.date_from %]"). >+ [% ELSIF ( message_loo.date_to ) %]<strong>[% t('Error:') %] </strong>[% t('"Date to" is not a legal value ("') %][% message_loo.date_to %]"). >+ [% ELSIF ( message_loo.failed_ok ) %]<strong>[% t('Error:') %] </strong>[% t('Failed to approve term (') %][% message_loo.failed_ok %]). >+ [% ELSIF ( message_loo.failed_rej ) %]<strong>[% t('Error:') %] </strong>[% t('Failed to reject term (') %][% message_loo.failed_rej %]). >+ [% ELSIF ( message_loo.approver ) %][% t('No match for user (') %][% message_loo.approver %][% t('). FILTER REQUIRES BORROWERNUMBER (not name).') %] >+ [% ELSIF ( message_loo.approved_by ) %]<strong>[% t('Error:') %] </strong>[% t('No match for borrowernumber (') %][% message_loo.approved_by %]). >+ [% ELSIF ( message_loo.op_zero ) %]<strong>[% t('Error:') %] </strong> [% t('The root koha user in your KOHA_CONF file') %] >+ [% t('(default: kohaadmin) is not a valid tag moderator. These actions are logged') %] >+ [% t('by borrowernumber, so the moderator must exist in your borrowers table.') %] >+ [% t('Please log in as a different authorized staff user to moderate tags.') %] >+ [% ELSE %][% t('Unrecognized error!') %] > [% END %] > <br /> > [% END %] >@@ -76,14 +77,14 @@ tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } > <table id="tagst"> > <thead> > <tr> >- <th class="NoSort"> </th> >- <th class="NoSort"> </th> >- <th>Status</th> >- <th>Term</th> >- <th>Weight</th> >- <th class="NoSort">Actions</th> >- [% UNLESS ( filter_approved_pending ) %]<th>Reviewer</th>[% END %] >- <th class="title-string">Date</th> >+ <th class="NoSort"> </th> >+ <th class="NoSort"> </th> >+ <th>[% t('Status') %]</th> >+ <th>[% t('Term') %]</th> >+ <th>[% t('Weight') %]</th> >+ <th class="NoSort">[% t('Actions') %]</th> >+ [% UNLESS ( filter_approved_pending ) %]<th>[% t('Reviewer') %]</th>[% END %] >+ <th class="title-string">[% t('Date') %]</th> > </tr> > </thead> > <tbody> >@@ -96,11 +97,11 @@ tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } > </td> > <td> > [% IF ( tagloo.approved == -1 ) %] >- <span class="rejected status[% offset + loop.count %]">Rejected</span> >+ <span class="rejected status[% offset + loop.count %]">[% t('Rejected') %]</span> > [% ELSIF ( tagloo.approved == 1 ) %] >- <span class="approved status[% offset + loop.count %]">Approved</span> >+ <span class="approved status[% offset + loop.count %]">[% t('Approved') %]</span> > [% ELSE %] >- <span class="pending status[% offset + loop.count %]">Pending</span> >+ <span class="pending status[% offset + loop.count %]">[% t('Pending') %]</span> > [% END %] > </td> > <td><a href="/cgi-bin/koha/tags/list.pl?tag=[% tagloo.term|uri %]">[% tagloo.term|html %]</a> >@@ -110,23 +111,23 @@ tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } > [% IF ( tagloo.approved ) %] > <td class="actions"><span class="ajax_buttons" style="visibility:hidden"> > [% IF ( tagloo.approved == -1 ) %] >- <button data-num="[% offset + loop.count %]" class="approval_btn ok btn btn-default btn-xs" type="submit" title="[% tagloo.term|html %]" value="Approve" name="approve"><i class="fa fa-check"></i> Approve</button> >- <button data-num="[% offset + loop.count %]" class="approval_btn rej btn btn-default btn-xs" disabled="disabled" type="submit" title="[% tagloo.term|html %]" value="Rejected" name="reject"><i class="fa fa-remove"></i> Rejected</button> >+ <button data-num="[% offset + loop.count %]" class="approval_btn ok btn btn-default btn-xs" type="submit" title="[% tagloo.term|html %]" value="Approve" name="approve"><i class="fa fa-check"></i> [% t('Approve') %]</button> >+ <button data-num="[% offset + loop.count %]" class="approval_btn rej btn btn-default btn-xs" disabled="disabled" type="submit" title="[% tagloo.term|html %]" value="Rejected" name="reject"><i class="fa fa-remove"></i> [% t('Rejected') %]</button> > [% ELSE %] >- <button data-num="[% offset + loop.count %]" class="approval_btn ok btn btn-default btn-xs" disabled="disabled" type="submit" title="[% tagloo.term|html %]" value="Approved" name="approve"><i class="fa fa-check"></i> Approved</button> >- <button data-num="[% offset + loop.count %]" class="approval_btn rej btn btn-default btn-xs" type="submit" title="[% tagloo.term|html %]" value="Reject" name="reject"><i class="fa fa-remove"></i> Reject</button> >+ <button data-num="[% offset + loop.count %]" class="approval_btn ok btn btn-default btn-xs" disabled="disabled" type="submit" title="[% tagloo.term|html %]" value="Approved" name="approve"><i class="fa fa-check"></i> [% t('Approved') %]</button> >+ <button data-num="[% offset + loop.count %]" class="approval_btn rej btn btn-default btn-xs" type="submit" title="[% tagloo.term|html %]" value="Reject" name="reject"><i class="fa fa-remove"></i> [% t('Reject') %]</button> > [% END %] > </span> > </td> >- <td>[% IF ( tagloo.approved_by_name ) %]<a href="/cgi-bin/koha/tags/review.pl?approved_by=[% tagloo.approved_by %]&approved=all">[% tagloo.approved_by_name %]</a>[% ELSE %] [% END %] >+ <td>[% IF ( tagloo.approved_by_name ) %]<a href="/cgi-bin/koha/tags/review.pl?approved_by=[% tagloo.approved_by %]&approved=all">[% tagloo.approved_by_name %]</a>[% ELSE %] [% END %] > </td> > [% ELSE %] > <td class="actions"><span class="ajax_buttons" style="visibility:hidden"> >- <button data-num="[% offset + loop.count %]" class="approval_btn ok btn btn-default btn-xs" type="submit" title="[% tagloo.term|html %]" value="Approve" name="approve"><i class="fa fa-check"></i> Approve</button> >- <button data-num="[% offset + loop.count %]" class="approval_btn rej btn btn-default btn-xs" type="submit" title="[% tagloo.term|html %]" value="Reject" name="reject"><i class="fa fa-remove"></i> Reject</button> >+ <button data-num="[% offset + loop.count %]" class="approval_btn ok btn btn-default btn-xs" type="submit" title="[% tagloo.term|html %]" value="Approve" name="approve"><i class="fa fa-check"></i> [% t('Approve') %]</button> >+ <button data-num="[% offset + loop.count %]" class="approval_btn rej btn btn-default btn-xs" type="submit" title="[% tagloo.term|html %]" value="Reject" name="reject"><i class="fa fa-remove"></i> [% t('Reject') %]</button> > </span> > </td> >- [% UNLESS ( filter_approved_pending ) %]<td> </td>[% END %] >+ [% UNLESS ( filter_approved_pending ) %]<td> </td>[% END %] > [% END %] > <td> > <span title="[% tagloo.date_approved %]">[% tagloo.date_approved | $KohaDates %]</span> >@@ -137,44 +138,44 @@ tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } > </table> > [% END %] > [% IF ( tagloop ) %]<fieldset class="action"> >- <button type="submit" value="Approve" class="btn btn-default btn-sm" id="approve_button" name="op-approve"><i class="fa fa-check"></i> Approve</button> >- <button type="submit" value="Reject" class="btn btn-default btn-sm" id="reject_button" name="op-reject"><i class="fa fa-remove"></i> Reject</button> >+ <button type="submit" value="Approve" class="btn btn-default btn-sm" id="approve_button" name="op-approve"><i class="fa fa-check"></i> [% t('Approve') %]</button> >+ <button type="submit" value="Reject" class="btn btn-default btn-sm" id="reject_button" name="op-reject"><i class="fa fa-remove"></i> [% t('Reject') %]</button> > </fieldset>[% END %] > </form> > </div> > <div class="yui-u"> > <fieldset class="brief"> >- <h4>Terms summary</h4> >+ <h4>[% t('Terms summary') %]</h4> > <ul> >- <li><a href="/cgi-bin/koha/tags/review.pl?approved=1">Approved</a>: >+ <li><a href="/cgi-bin/koha/tags/review.pl?approved=1">[% t('Approved') %]</a>: > <span id="terms_summary_approved_count">[% approved_count %]</span> > </li> >- <li><a href="/cgi-bin/koha/tags/review.pl?approved=-1">Rejected</a>: >+ <li><a href="/cgi-bin/koha/tags/review.pl?approved=-1">[% t('Rejected') %]</a>: > <span id="terms_summary_rejected_count">[% rejected_count %]</span> > </li> >- <li><a href="/cgi-bin/koha/tags/review.pl?approved=0">Pending</a>: >+ <li><a href="/cgi-bin/koha/tags/review.pl?approved=0">[% t('Pending') %]</a>: > <span id="terms_summary_unapproved_count">[% unapproved_count %]</span> > </li> >- <li><a href="/cgi-bin/koha/tags/review.pl?approved=all">Total</a>: >+ <li><a href="/cgi-bin/koha/tags/review.pl?approved=all">[% t('Total') %]</a>: > <span id="terms_summary_approved_total">[% approved_total %]</span> > </li> > </ul> >- <span id="terms_summary_status"> </span> >+ <span id="terms_summary_status"> </span> > </fieldset> > <fieldset class="brief"> >- <h4>Check lists</h4> >- <div class="description">Enter a word or phrase to check against approved/rejected lists: </div> >+ <h4>[% t('Check lists') %]</h4> >+ <div class="description">[% t('Enter a word or phrase to check against approved/rejected lists:') %] </div> > <form method="post" action="/cgi-bin/koha/tags/review.pl"> > <input type="text" size="14" name="test" id="test" /> >- <fieldset class="action"><button type="submit" value="Test" class="approval_btn btn btn-default btn-sm" id="test_button" name="op-test"><i class="fa fa-check-square-o" aria-hidden="true"></i> Test</button></fieldset> >+ <fieldset class="action"><button type="submit" value="Test" class="approval_btn btn btn-default btn-sm" id="test_button" name="op-test"><i class="fa fa-check-square-o" aria-hidden="true"></i> [% t('Test') %]</button></fieldset> > <div id="verdict"> > [% IF ( test_term ) %] > [% IF ( verdict_ok ) %] >- "[% test_term %]" is permitted. >+ "[% test_term %][% t('" is permitted.') %] > [% ELSIF ( verdict_rej ) %] >- "[% test_term %]" is prohibited. >+ "[% test_term %][% t('" is prohibited.') %] > [% ELSIF ( verdict_indeterminate ) %] >- "[% test_term %]" is neither permitted nor prohibited. >+ "[% test_term %][% t('" is neither permitted nor prohibited.') %] > [% END %] > [% END %] > </div> >@@ -189,35 +190,35 @@ tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } > <div class="yui-b"> > <form method="post" action="/cgi-bin/koha/tags/review.pl"> > <fieldset class="brief"> >- <h4>Filters</h4> >+ <h4>[% t('Filters') %]</h4> > <ol> >- <li><label for="tag">Term:</label> <input type="text" name="tag" id="tag" value="[% filter_tag %]" /> >+ <li><label for="tag">[% t('Term:') %]</label> <input type="text" name="tag" id="tag" value="[% filter_tag %]" /> > </li> >- <li><label for="approved">Status:</label> >+ <li><label for="approved">[% t('Status:') %]</label> > <select name="approved" id="approved"> >- [% IF ( filter_approved_all ) %]<option selected="selected" value="all">all</option> >- [% ELSE %]<option value="all">all</option>[% END %] >- [% IF ( filter_approved_ok ) %]<option selected="selected" value="1">approved</option> >- [% ELSE %]<option value="1">approved</option>[% END %] >- [% IF ( filter_approved_pending ) %]<option selected="selected" value="0">pending</option> >- [% ELSE %]<option value="0">pending</option>[% END %] >- [% IF ( filter_approved_rej ) %]<option selected="selected" value="-1">rejected</option> >- [% ELSE %]<option value="-1">rejected</option>[% END %] >+ [% IF ( filter_approved_all ) %]<option selected="selected" value="all">[% t('all') %]</option> >+ [% ELSE %]<option value="all">[% t('all') %]</option>[% END %] >+ [% IF ( filter_approved_ok ) %]<option selected="selected" value="1">[% t('approved') %]</option> >+ [% ELSE %]<option value="1">[% t('approved') %]</option>[% END %] >+ [% IF ( filter_approved_pending ) %]<option selected="selected" value="0">[% t('pending') %]</option> >+ [% ELSE %]<option value="0">[% t('pending') %]</option>[% END %] >+ [% IF ( filter_approved_rej ) %]<option selected="selected" value="-1">[% t('rejected') %]</option> >+ [% ELSE %]<option value="-1">[% t('rejected') %]</option>[% END %] > </select> > </li> >- <li><label for="approver">Reviewer:</label> <input type="text" name="approver" id="approver" value="[% filter_approver %]" /> >+ <li><label for="approver">[% t('Reviewer:') %]</label> <input type="text" name="approver" id="approver" value="[% filter_approver %]" /> > </li> > <li> >- <label for="from">Date: from </label> >+ <label for="from">[% t('Date: from') %] </label> > <input type="text" size="10" id="from" name="from" value="[% filter_date_approved_from %]" class="datepickerfrom" /> > <div class="hint">[% INCLUDE 'date-format.inc' %]</div> > >- <label for="to">...to </label> >+ <label for="to">[% t('...to') %] </label> > <input type="text" size="10" id="to" name="to" value="[% filter_date_approved_to %]" class="datepickerto" /> > <div class="hint">[% INCLUDE 'date-format.inc' %]</div> > </li> > </ol> >- <fieldset class="action"><button type="submit" class="btn btn-default btn-sm"><i class="fa fa-filter" aria-hidden="true"></i> Apply filter(s)</button></fieldset> >+ <fieldset class="action"><button type="submit" class="btn btn-default btn-sm"><i class="fa fa-filter" aria-hidden="true"></i> [% t('Apply filter(s)') %]</button></fieldset> > </fieldset> > </form> > </div> >-- >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