Bugzilla – Attachment 109890 Details for
Bug 25744
Replace i tags with em AND b tags with strong in the staff interface
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 25744: replace <b> with <strong> in the staff interface
Bug-25744-replace-b-with-strong-in-the-staff-inter.patch (text/plain), 87.80 KB, created by
Julian Maurice
on 2020-09-11 07:56:15 UTC
(
hide
)
Description:
Bug 25744: replace <b> with <strong> in the staff interface
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2020-09-11 07:56:15 UTC
Size:
87.80 KB
patch
obsolete
>From b8da9ceaa43213d1786871374e64477b2879fe80 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Thu, 6 Aug 2020 18:21:52 +0000 >Subject: [PATCH] Bug 25744: replace <b> with <strong> in the staff interface > >This patch set attempts to replace all the <i> tags with <em> and all >the <b> tags with <strong> in the staff interface. >I attempted to get all the templates, includes, and xslt files. > >To test: > >1. Review the changes as best as possible, looking for mistakes. >2. grep for <i> and <b> in the modules, includes, and xslt folders. You should get nothing/ >3. If you grep '<\/i>' you should only see instances of Font Awesome. >4. If you grep '<\/b>' you should only see instances where caret is used. > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> >--- > .../en/includes/budgets-active-currency.inc | 2 +- > .../prog/en/includes/cateditor-ui.inc | 2 +- > .../prog/en/includes/checkouts-table.inc | 2 +- > .../prog/en/includes/holds_table.inc | 4 +- > .../prog/en/includes/waiting_holds.inc | 2 +- > .../intranet-tmpl/prog/en/modules/about.tt | 64 +++++++++---------- > .../prog/en/modules/acqui/basket.tt | 8 +-- > .../prog/en/modules/acqui/invoice-files.tt | 2 +- > .../prog/en/modules/acqui/lateorders.tt | 2 +- > .../prog/en/modules/acqui/neworderempty.tt | 4 +- > .../prog/en/modules/acqui/orderreceive.tt | 2 +- > .../prog/en/modules/acqui/parcel.tt | 8 +-- > .../prog/en/modules/admin/aqplan.tt | 4 +- > .../en/modules/admin/auth_tag_structure.tt | 2 +- > .../prog/en/modules/admin/checkmarc.tt | 2 +- > .../prog/en/modules/admin/itemtypes.tt | 6 +- > .../prog/en/modules/authorities/detail.tt | 2 +- > .../authorities/searchresultlist-auth.tt | 2 +- > .../prog/en/modules/basket/basket.tt | 2 +- > .../prog/en/modules/catalogue/MARCdetail.tt | 4 +- > .../prog/en/modules/catalogue/issuehistory.tt | 2 +- > .../en/modules/catalogue/labeledMARCdetail.tt | 4 +- > .../prog/en/modules/cataloguing/addbooks.tt | 2 +- > .../value_builder/unimarc_field_210c.tt | 2 +- > .../prog/en/modules/circ/branchoverdues.tt | 2 +- > .../prog/en/modules/circ/branchtransfers.tt | 8 +-- > .../prog/en/modules/circ/circulation.tt | 4 +- > .../prog/en/modules/circ/pendingreserves.tt | 4 +- > .../prog/en/modules/circ/reserveratios.tt | 6 +- > .../prog/en/modules/circ/returns.tt | 4 +- > .../en/modules/circ/transferstoreceive.tt | 2 +- > .../prog/en/modules/ill/log/status_change.tt | 2 +- > .../prog/en/modules/labels/result.tt | 2 +- > .../prog/en/modules/members/paycollect.tt | 2 +- > .../en/modules/onboarding/onboardingstep1.tt | 2 +- > .../en/modules/onboarding/onboardingstep2.tt | 4 +- > .../en/modules/onboarding/onboardingstep3.tt | 2 +- > .../prog/en/modules/plugins/plugins-upload.tt | 14 ++-- > .../intranet-tmpl/prog/en/modules/pos/pay.tt | 2 +- > .../en/modules/reports/acquisitions_stats.tt | 2 +- > .../modules/reports/guided_reports_start.tt | 6 +- > .../prog/en/modules/reviews/reviewswaiting.tt | 2 +- > .../en/modules/serials/checkexpiration.tt | 6 +- > .../prog/en/modules/serials/result.tt | 2 +- > .../modules/serials/routing-preview-slip.tt | 6 +- > .../prog/en/modules/suggestion/suggestion.tt | 2 +- > .../prog/en/modules/tools/export.tt | 6 +- > .../prog/en/modules/tools/holidays.tt | 4 +- > .../prog/en/modules/tools/import_borrowers.tt | 8 +-- > .../prog/en/modules/tools/letter.tt | 2 +- > .../en/modules/tools/manage-marc-import.tt | 4 +- > .../prog/en/modules/tools/picture-upload.tt | 36 +++++------ > .../prog/en/modules/tools/problem-reports.tt | 2 +- > .../prog/en/modules/tools/quotes.tt | 2 +- > .../prog/en/modules/tools/upload-images.tt | 12 ++-- > 55 files changed, 149 insertions(+), 149 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-active-currency.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-active-currency.inc >index ca14976e14..dfa669022d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-active-currency.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/budgets-active-currency.inc >@@ -1,6 +1,6 @@ > [% IF ( currency ) %] > [% IF ( not hide ) %] >- <p><b>Currency = [% currency | html %]</b></p> >+ <p><strong>Currency = [% currency | html %]</strong></p> > [% END %] > [% ELSE %] > <div class="dialog alert"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc >index cc038b955a..b8afedb50b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc >@@ -1156,7 +1156,7 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr > > var errors = []; > $.each( result.errors, function() { >- var error = '<b>' + _("Line ") + (this.line + 1) + ':</b> '; >+ var error = '<strong>' + _("Line ") + (this.line + 1) + ':</strong> '; > > switch ( this.error ) { > case 'failed': error += _("failed to run"); break; >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc >index 7b967bec89..1efa03b568 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc >@@ -55,7 +55,7 @@ > > [% IF Koha.Preference('ExportCircHistory') %] > <fieldset> >- <label for="issues-table-output-format"><b>Export checkouts using format:</b></label> >+ <label for="issues-table-output-format"><strong>Export checkouts using format:</strong></label> > <select name="issues-table-output-format" id="issues-table-output-format"> > <option value="iso2709_995">MARC with items</option> > <option value="iso2709">MARC without items</option> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc >index fa8c1f6d3f..febcf4e1a7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc >@@ -121,12 +121,12 @@ > [% IF ( hold.found ) %] > [% IF ( hold.atdestination ) %] > [% IF ( hold.found ) %] >- Item waiting at <b> [% hold.wbrname | html %]</b> <input type="hidden" name="pickup" value="[% hold.wbrcode | html %]" /> since [% hold.waiting_date | $KohaDates %] >+ Item waiting at <strong> [% hold.wbrname | html %]</strong> <input type="hidden" name="pickup" value="[% hold.wbrcode | html %]" /> since [% hold.waiting_date | $KohaDates %] > [% ELSE %] > Waiting to be pulled <input type="hidden" name="pickup" value="[% hold.wbrcode | html %]" /> > [% END %] > [% ELSE %] >- Item being transferred to <b> [% hold.wbrname | html %]</b> <input type="hidden" name="pickup" value="[% hold.wbrcode | html %]" /> >+ Item being transferred to <strong> [% hold.wbrname | html %]</strong> <input type="hidden" name="pickup" value="[% hold.wbrcode | html %]" /> > [% END %] > [% ELSE %] > [% IF Koha.Preference('IndependentBranches') && Branches.all().size == 1 %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc >index c3a01dbedb..90cb36856a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc >@@ -25,7 +25,7 @@ > [% INCLUDE 'biblio-title.inc' biblio=reserveloo.biblio %] > </a> > [% UNLESS ( item_level_itypes ) %] >- [% IF ( ItemTypes.GetDescription(reserveloo.item.effective_itemtype) ) %] (<b>[% ItemTypes.GetDescription(reserveloo.item.effective_itemtype) | html %]</b>) >+ [% IF ( ItemTypes.GetDescription(reserveloo.item.effective_itemtype) ) %] (<strong>[% ItemTypes.GetDescription(reserveloo.item.effective_itemtype) | html %]</strong>) > [% END %] > [% END %] > <br />Barcode: [% reserveloo.item.barcode | html %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >index 1113f9f5fd..cc4ef76dec 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt >@@ -109,9 +109,9 @@ > </tr> > <tr><th scope="row">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"><strong>Error</strong> </th><td>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 ) | html %] </td></tr> >+ <tr><th scope="row"><strong>Warning</strong> </th><td>Error message from Zebra: [% ( errZebraConnection ) | html %] </td></tr> > [% END %] > <tr> > <th scope="row">Date and time: </th> >@@ -264,89 +264,89 @@ > <table> > <caption>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"><strong>Warning</strong> </th><td>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 interface and the OPAC will be broken.</td></tr> >+ <tr><th scope="row"><strong>Warning</strong> </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 interface and the OPAC will be broken.</td></tr> > [% END %] > [% IF warnPrefAnonymousPatronOPACPrivacy %] >- <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"><strong>Warning</strong> </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> > [% END %] > [% IF warnPrefAnonymousPatronAnonSuggestions %] >- <tr><th scope="row"><b>Warning</b> </th><td>System preference 'AnonSuggestions' 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"><strong>Warning</strong> </th><td>System preference 'AnonSuggestions' 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 warnPrefAnonymousPatronOPACPrivacy_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"><strong>Warning</strong> </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> > [% END %] > [% IF warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist %] >- <tr><th scope="row"><b>Warning</b> </th><td>System preference 'AnonSuggestions' set, but AnonymousPatron preference 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"><strong>Warning</strong> </th><td>System preference 'AnonSuggestions' set, but AnonymousPatron preference 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"><strong>Warning</strong> </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> > [% 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 | html %] </td></tr> >+ <tr><th scope="row"><strong>Warning</strong> </th><td>System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError | html %] </td></tr> > [% END %] > [% IF AutoSelfCheckPatronDoesNotHaveSelfCheckPerm %] >- <tr><th scope="row"><b>Warning</b> </th><td> >+ <tr><th scope="row"><strong>Warning</strong> </th><td> > 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> >+ <tr><th scope="row"><strong>Warning</strong> </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. > </td></tr> > [% END %] > [% IF warnNoTemplateCaching %] >- <tr><th scope="row"><b>Warning</b> </th><td> >+ <tr><th scope="row"><strong>Warning</strong> </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. > </td></tr> > [% END %] > [% IF warnILLConfiguration %] > [% IF no_ill_backends %] >- <tr><th scope="row"><b>Warning</b> </th><td> >+ <tr><th scope="row"><strong>Warning</strong> </th><td> > 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> >+ <tr><th scope="row"><strong>Warning</strong> </th><td> > 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_branch_not_defined %] >- <tr><th scope="row"><b>Warning</b> </th><td> >+ <tr><th scope="row"><strong>Warning</strong> </th><td> > The ILL module is enabled, but no 'branch' block is defined in koha-conf.xml. You must define this block before use. > </td></tr> > [%END %] > [% IF ill_partner_code_doesnt_exist %] >- <tr><th scope="row"><b>Warning</b> </th><td> >+ <tr><th scope="row"><strong>Warning</strong> </th><td> > The ILL module is enabled, but the configured 'partner_code' ([% ill_partner_code_doesnt_exist | html %]) is not defined on the system. > </td></tr> > [% END %] > [% END %] > [% IF oauth2_missing_deps %] >- <tr><th scope="row"><b>Warning</b> </th><td> >+ <tr><th scope="row"><strong>Warning</strong> </th><td> > System preference 'RESTOAuth2ClientCredentials' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled. > </td></tr> > [% END %] > [% IF bad_yaml_prefs %] >- <tr><th scope="row"><b>Warning</b> </th><td> >+ <tr><th scope="row"><strong>Warning</strong> </th><td> > Some system preferences have badly formatted YAML content: [% bad_yaml_prefs.join(', ') | html %] > </td></tr> > [% END %] > [% IF config_bcrypt_settings_no_set %] >- <tr><th scope="row"><b>Warning</b> </th><td> >+ <tr><th scope="row"><strong>Warning</strong> </th><td> > System preference 'Pseudonymization' is set, but there is not 'bcrypt_settings' entry defined in the $KOHA_CONF file. > </td></tr> > [% END %] > [% IF config_bcrypt_settings_no_set %] >- <tr><th scope="row"><b>Warning</b> </th><td> >+ <tr><th scope="row"><strong>Warning</strong> </th><td> > System preference 'Pseudonymization' is set, but there is not 'bcrypt_settings' entry defined in the $KOHA_CONF file. > </td></tr> > [% END %] > [% IF warnHiddenBiblionumbers.size %] >- <tr><th scope="row"><b>Warning</b> </th><td> >+ <tr><th scope="row"><strong>Warning</strong> </th><td> > [% FOR w IN warnHiddenBiblionumbers %] > Biblio framework "[% w.frameworkcode | html %]" has the biblionumber field hidden at the interface [% w.interface | html %]<br/> > [% END %] >@@ -361,7 +361,7 @@ > [% FOREACH config_entry IN xml_config_warnings %] > [% IF config_entry.error == 'zebra_bib_index_mode_is_grs1' %] > <tr> >- <th scope="row"><b>Warning</b></th> >+ <th scope="row"><strong>Warning</strong></th> > <td>The <zebra_bib_index_mode> entry set to 'grs1', which is no longer supported. > 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> >@@ -369,7 +369,7 @@ > </tr> > [% ELSIF config_entry.error == 'zebra_auth_index_mode_is_grs1' %] > <tr> >- <th scope="row"><b>Warning</b></th> >+ <th scope="row"><strong>Warning</strong></th> > <td>The <zebra_auth_index_mode> entry set to 'grs1', which is no longer supported. > 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> >@@ -377,42 +377,42 @@ > </tr> > [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >+ <th scope="row"><strong>Warning</strong></th> > <td>The <use_zebra_facets> entry is missing in your configuration file. Falling back > to legacy facet calculation. > </td> > </tr> > [% ELSIF config_entry.error == 'log4perl_entry_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >+ <th scope="row"><strong>Warning</strong></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. > </td> > </tr> > [% ELSIF config_entry.error == 'lockdir_entry_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >+ <th scope="row"><strong>Warning</strong></th> > <td>You are missing the <lockdir> entry in your koha-conf.xml file. Please > add it, pointing to your Koha instance's lock dir. > </td> > </tr> > [% ELSIF config_entry.error == 'lockdir_not_writable' %] > <tr> >- <th scope="row"><b>Warning</b></th> >+ <th scope="row"><strong>Warning</strong></th> > <td>The configured <lockdir> entry in your koha-conf.xml file points to a > non-writable directory ([% config_entry.lockdir | html %]). > </td> > </tr> > [% ELSIF config_entry.error == 'uploadpath_entry_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >+ <th scope="row"><strong>Warning</strong></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. > </td> > </tr> > [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >+ <th scope="row"><strong>Warning</strong></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. >@@ -420,7 +420,7 @@ > </tr> > [% ELSIF config_entry.error == 'tmp_path_missing' %] > <tr> >- <th scope="row"><b>Warning</b></th> >+ <th scope="row"><strong>Warning</strong></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 | html %]'. >@@ -436,7 +436,7 @@ > <caption>Issuing rules</caption> > [% FOREACH unit IN ir_units %] > <tr> >- <th scope="row"><b>Warning</b></th> >+ <th scope="row"><strong>Warning</strong></th> > <td>The [% unit.branchcode || 'branchcode=default' | html %], [% unit.categorycode || 'categorycode=default' | html %], [% unit.itemtype || 'itemtype=default' | html %] > issuingrule will fallback to 'days' for 'lengthunit' as it is incorrectly defined as > [% unit.rule_value | html %]. >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >index 0c3cd0e3da..651a232162 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >@@ -569,16 +569,16 @@ > <span class="button" title="Can't delete catalog record, see constraints below">Can't cancel order and delete catalog record</span><br> > [% END %] > [% IF ( books_loo.left_item ) %] >- <b title="Can't delete catalog record, because of [% books_loo.items | html %] existing hold(s)" >[% books_loo.items | html %] item(s) left</b><br> >+ <strong title="Can't delete catalog record, because of [% books_loo.items | html %] existing hold(s)" >[% books_loo.items | html %] item(s) left</strong><br> > [% END %] > [% IF ( books_loo.left_biblio ) %] >- <b title="Can't delete catalog record, delete other orders linked to it first">[% books_loo.biblios | html %] order(s) left</b><br> >+ <strong title="Can't delete catalog record, delete other orders linked to it first">[% books_loo.biblios | html %] order(s) left</strong><br> > [% END %] > [% IF ( books_loo.left_subscription ) %] >- <b title="Can't delete catalog record, delete subscriptions first">[% books_loo.subscriptions | html %] subscription(s) left</b><br> >+ <strong title="Can't delete catalog record, delete subscriptions first">[% books_loo.subscriptions | html %] subscription(s) left</strong><br> > [% END %] > [% IF ( books_loo.left_holds ) %] >- <b title="Can't delete catalog record or order, cancel holds first">[% books_loo.holds | html %] hold(s) left</b> >+ <strong title="Can't delete catalog record or order, cancel holds first">[% books_loo.holds | html %] hold(s) left</strong> > [% END %] > </td> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice-files.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice-files.tt >index ff713b87b3..f28cfd6c17 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice-files.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice-files.tt >@@ -19,7 +19,7 @@ > <main> > > <h2>Files for invoice: [% invoicenumber | html %]</h2> >- <p><b>Vendor: </b><a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | uri %]">[% suppliername | html %]</a></p> >+ <p><strong>Vendor: </strong><a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid | uri %]">[% suppliername | html %]</a></p> > <br /> > [% IF errors %] > <div class="dialog alert"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt >index 30dcef50b4..2fbd09bfee 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt >@@ -98,7 +98,7 @@ > ([% lateorder.basket.bookseller.id | html %]) > </td> > <td> >- <b>[% lateorder.biblio.title | html %]</b> >+ <strong>[% lateorder.biblio.title | html %]</strong> > [% IF ( lateorder.biblio.author ) %]<br/><em>Author:</em> [% lateorder.biblio.author | html %][% END %] > [% IF ( lateorder.biblio.biblioitem.publishercode ) %] > <br/><em>Published by:</em> [% lateorder.biblio.biblioitem.publishercode | html %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt >index 1aa9241296..955cfc6b17 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt >@@ -253,7 +253,7 @@ > [% IF (AcqCreateItemOrdering) %] > > <div id="items_list" style="display:none"> >- <p><b>Items list</b></p> >+ <p><strong>Items list</strong></p> > <div style="width:100%;overflow:auto;"> > <table> > <thead> >@@ -486,7 +486,7 @@ > <div class="modal-dialog"> > <div class="modal-content"> > <h3>Invalid number of copies</h3> >- <p>Please enter a <b>number</b>, greater than or equal to 1</p> >+ <p>Please enter a <strong>number</strong>, greater than or equal to 1</p> > </div> > </div> > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt >index 26789a418e..c02a783c19 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt >@@ -142,7 +142,7 @@ > </fieldset> > [% ELSIF (AcqCreateItemReceiving) %] > <div id="items_list" style="display:none"> >- <p><b>Items list</b></p> >+ <p><strong>Items list</strong></p> > <div style="width:100%;overflow:auto;"> > <table> > <thead> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt >index f454b6b662..d23ab7a4f6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt >@@ -192,16 +192,16 @@ > <span class="button" title="Can't delete catalog record, see constraints below">Can't cancel order and delete catalog record</span><br> > [% END %] > [% IF ( loop_order.left_item ) %] >- <b title="Can't delete catalog record, because of [% loop_order.items | html %] existing item(s)" >[% loop_order.items | html %] item(s) left</b><br> >+ <strong title="Can't delete catalog record, because of [% loop_order.items | html %] existing item(s)" >[% loop_order.items | html %] item(s) left</strong><br> > [% END %] > [% IF ( loop_order.left_biblio ) %] >- <b title="Can't delete catalog record, delete other orders linked to it first">[% loop_order.biblios | html %] order(s) left</b><br> >+ <strong title="Can't delete catalog record, delete other orders linked to it first">[% loop_order.biblios | html %] order(s) left</strong><br> > [% END %] > [% IF ( loop_order.left_subscription ) %] >- <b title="Can't delete catalog record, delete subscriptions first">[% loop_order.subscriptions | html %] subscription(s) left</b><br> >+ <strong title="Can't delete catalog record, delete subscriptions first">[% loop_order.subscriptions | html %] subscription(s) left</strong><br> > [% END %] > [% IF ( loop_order.left_holds ) %] >- <b title="Can't delete catalog record or order, cancel holds first">[% loop_order.holds | html %] hold(s) left</b> >+ <strong title="Can't delete catalog record or order, cancel holds first">[% loop_order.holds | html %] hold(s) left</strong> > [% END %] > </td> > </tr> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt >index 4677ad4305..08a03e7dc0 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt >@@ -37,9 +37,9 @@ > > [% INCLUDE 'budgets-active-currency.inc' %] > [% IF ( show_actual ) %] >- <p><b>Each cell contain both actual and estimated values.</b></p> >+ <p><strong>Each cell contain both actual and estimated values.</strong></p> > [% ELSE %] >- <p><b>Cells contain estimated values only.</b></p> >+ <p><strong>Cells contain estimated values only.</strong></p> > [% END %] > > <p id="selections"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_tag_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_tag_structure.tt >index c6b95b17b4..53b35acbe6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_tag_structure.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_tag_structure.tt >@@ -202,7 +202,7 @@ > <tbody> > [% FOREACH loo IN loop %] > <tr> >- <td><b>[% loo.tagfield | html %]</b></td> >+ <td><strong>[% loo.tagfield | html %]</strong></td> > <td>[% loo.liblibrarian | html %]</td> > <td>[% IF ( loo.repeatable ) %]Yes[% ELSE %]No[% END %]</td> > <td>[% IF ( loo.mandatory ) %]Yes[% ELSE %]No[% END %]</td> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/checkmarc.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/checkmarc.tt >index c940616bd5..4a78bcc8d9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/checkmarc.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/checkmarc.tt >@@ -267,7 +267,7 @@ > </table> > [% ELSE %] > </table> >- <p><b>Configuration OK, you don't have errors in your MARC parameters table</b></p> >+ <p><strong>Configuration OK, you don't have errors in your MARC parameters table</strong></p> > [% END %] > > </main> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >index 53ab7d2ea0..b2c4ca0bcf 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >@@ -343,7 +343,7 @@ Item types administration > <label for="summary">Summary: </label> > <textarea id="summary" name="summary" cols="55" rows="5">[% itemtype.summary | html %]</textarea> > <p>Enter a summary that will overwrite the default one in search results lists. Example, for a website itemtype : </p> >- <p><b><a href="[856u]">open site</a></b> will show the link just below the title</p> >+ <p><strong><a href="[856u]">open site</a></strong> will show the link just below the title</p> > </li> > </ol> > </fieldset> >@@ -426,7 +426,7 @@ Item types administration > [% itemtype.description | html %] (default)<br/> > [% FOR description IN itemtype.translated_descriptions %] > [% IF description.translation == itemtype.translated_description %] >- -- <b>[% description.translation | html %]</b> >+ -- <strong>[% description.translation | html %]</strong> > [% ELSE %] > -- [% description.translation | html %] ([% description.lang | html %]) > [% END %] >@@ -440,7 +440,7 @@ Item types administration > [% itemtype.description | html %] (default)<br/> > [% FOR description IN itemtype.translated_descriptions %] > [% IF description.translation == itemtype.translated_description %] >- <b>[% description.translation | html %]</b> >+ <strong>[% description.translation | html %]</strong> > [% ELSE %] > [% description.translation | html %] ([% description.lang | html %]) > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt >index c06d753334..2afd64247c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt >@@ -77,7 +77,7 @@ > [% FOREACH subfiel IN innerloo.subfield %] > <p> > <label class="labelsubfield"> >- [% UNLESS ( subfiel.hide_marc ) %]<b>[% subfiel.marc_subfield | html %]</b>[% END %] >+ [% UNLESS ( subfiel.hide_marc ) %]<strong>[% subfiel.marc_subfield | html %]</strong>[% END %] > <span title="[% subfiel.long_desc | html %]" class="desc">[% subfiel.short_desc | html %]</span></label> > [% IF ( subfiel.is_url ) %] > <a href="[% subfiel.marc_value | url %]">[% subfiel.marc_value | html %]</a> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt >index 21c6e24f05..e16baca296 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt >@@ -32,7 +32,7 @@ > [% END %] > <div> > >- <p><b>Results [% from | html %] to [% to | html %] of [% total | html %]</b></p> >+ <p><strong>Results [% from | html %] to [% to | html %] of [% total | html %]</strong></p> > [% ELSE %] > > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt >index 05036622a5..6998d374fb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt >@@ -4,7 +4,7 @@ > [% BLOCK controls %] > <p class="cart-controls"> > <a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a> <a id="CheckNone" href="#"><i class="fa fa-remove"></i> Clear all</a> >- | <b>Selected items :</b> >+ | <strong>Selected items :</strong> > <a href="#" id="remove_from_cart">Remove</a> > > [% IF ( loggedinusername ) %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt >index 954a08b60f..6357521acd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/MARCdetail.tt >@@ -40,7 +40,7 @@ > <h1>MARC record: [% biblionumber | html %] ( [% bibliotitle | html %] )</h1> > [% END %] > >- <p><b>With framework : <select name="Frameworks" id="Frameworks"> >+ <p><strong>With framework : <select name="Frameworks" id="Frameworks"> > <option value="">Default</option> > [% FOREACH framework IN frameworks %] > [% IF framework.frameworkcode == frameworkcode %] >@@ -49,7 +49,7 @@ > <option value="[% framework.frameworkcode | html %]">[% framework.frameworktext | html %]</option> > [% END %] > [% END %] >- </select> </b></p> >+ </select> </strong></p> > [% IF ( ocoins ) %] > <!-- COinS / OpenURL --> > <span class="Z3988" title="[% ocoins | html %]"></span> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt >index 5ab47ff454..bee2f41767 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt >@@ -90,7 +90,7 @@ > </table> > [% ELSE %] > <div class="dialog message"><p> >- <b>[% biblio.title | html %][% IF biblio.author %], by [% biblio.author | html %][% END %]</b> has never been checked out.</p></div> >+ <strong>[% biblio.title | html %][% IF biblio.author %], by [% biblio.author | html %][% END %]</strong> has never been checked out.</p></div> > > [% END %] > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt >index c55028421a..9d16fd72ef 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt >@@ -42,7 +42,7 @@ > [% UNLESS ( popup ) %] > <h1>Labeled MARC biblio : [% biblionumber | html %] ( [% bibliotitle | html %] )</h1> > [% END %] >- <p><b>With framework: >+ <p><strong>With framework: > <select name="Frameworks" id="Frameworks" size="1" onchange="Changefwk(this);"> > <option value="">Default</option> > [% FOREACH framework IN frameworks %] >@@ -53,7 +53,7 @@ > [% END %] > [% END %] > </select> >- </b></p> >+ </strong></p> > <!-- div id="bibliotabs" class="toptabs numbered" --> > <div> > <table class="labeledmarc-table"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >index 18a22be998..ed525c7d8f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >@@ -148,7 +148,7 @@ > </div> <!-- /.searchresults --> > [% ELSE # IF total %] > [% IF ( query ) %] >- [% IF ( error ) %]<div class="dialog alert">[% END %]<b>No results found</b> >+ [% IF ( error ) %]<div class="dialog alert">[% END %]<strong>No results found</strong> > [% IF ( error ) %] > Error: <span class="error">[% error | html %]</span></div> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c.tt >index 0ce0861bad..c7d95184bb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_210c.tt >@@ -48,7 +48,7 @@ > </div>[% END %] > <p> > [% IF ( total ) %] >- <b>Results [% from | html %] to [% to | html %] of [% total | html %]</b><br /><br /> >+ <strong>Results [% from | html %] to [% to | html %] of [% total | html %]</strong><br /><br /> > [% ELSE %] > No results found<br /> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tt >index 2fe5e873a2..65173bbace 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchoverdues.tt >@@ -85,7 +85,7 @@ > <td> > <p> > <a href="/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=[% todayoverduesloo.biblionumber | uri %]">[% todayoverduesloo.title | html %]</a> >- (<b>[% todayoverduesloo.description | html %]</b>) >+ (<strong>[% todayoverduesloo.description | html %]</strong>) > <br />Barcode : [% todayoverduesloo.barcode | html %] > </p> > </td> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt >index 322417d075..3a927d7f55 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt >@@ -125,12 +125,12 @@ > <li>Transfer is not allowed for: > <ol> > [% IF ( Koha.Preference('BranchTransferLimitsType') == 'itemtype' ) %] >- <li>Item type: <b>[% ItemTypes.GetDescription( errmsgloo.code ) | html %]</b></li> >+ <li>Item type: <strong>[% ItemTypes.GetDescription( errmsgloo.code ) | html %]</strong></li> > [% ELSE %] >- <li>Collection: <b>[% AuthorisedValues.GetByCode( 'CCODE', errmsgloo.code ) | html %]</b></li> >+ <li>Collection: <strong>[% AuthorisedValues.GetByCode( 'CCODE', errmsgloo.code ) | html %]</strong></li> > [% END %] >- <li>Originating library: <b>[% Branches.GetName( errmsgloo.fbr ) | html %]</b></li> >- <li>Destination library: <b>[% Branches.GetName( errmsgloo.tbr ) | html %]</b></li> >+ <li>Originating library: <strong>[% Branches.GetName( errmsgloo.fbr ) | html %]</strong></li> >+ <li>Destination library: <strong>[% Branches.GetName( errmsgloo.tbr ) | html %]</strong></li> > </ol> > </li> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index cf9d5e4540..0d7842db3f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -69,7 +69,7 @@ > [% END %] > > [% IF alert.HIGHHOLDS %] >- <div class="dialog message">High demand item. <b>Loan period was not shortened due to override.</b> Shortened due date would have been [% alert.HIGHHOLDS.returndate | $KohaDates %] ([% alert.HIGHHOLDS.duration | html %] days).</div> >+ <div class="dialog message">High demand item. <strong>Loan period was not shortened due to override.</strong> Shortened due date would have been [% alert.HIGHHOLDS.returndate | $KohaDates %] ([% alert.HIGHHOLDS.duration | html %] days).</div> > [% END %] > > [% IF alert.RETURNED_FROM_ANOTHER %] >@@ -185,7 +185,7 @@ > [% END %] > > [% IF PREVISSUE %] >- <li>Patron has previously checked out this title: <b>[% biblio.title | html %] [% IF biblio.author %] by [% biblio.author | html %][% END %]</b>. Check out anyway?</li> >+ <li>Patron has previously checked out this title: <strong>[% biblio.title | html %] [% IF biblio.author %] by [% biblio.author | html %][% END %]</strong>. Check out anyway?</li> > [% END %] > > [% IF BIBLIO_ALREADY_ISSUED %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >index 94f5cc42d8..9b482407b2 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >@@ -70,7 +70,7 @@ > [% FOREACH reserveloo IN reserveloop %] > <tr> > [% IF ( reserveloo.borrowernumber ) %] >- <td><p><b>[% reserveloo.pullcount | html %]</b></p></td> >+ <td><p><strong>[% reserveloo.pullcount | html %]</strong></p></td> > <td>[% reserveloo.count | html %]</td> > <td>[% reserveloo.rcount | html %]</td> > <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% reserveloo.borrowernumber | uri %]">[% reserveloo.firstname | html %] [% reserveloo.surname | html %]</a></td> >@@ -211,7 +211,7 @@ > </tfoot> > </table> > [% ELSE %] >- <b>No items found.</b> >+ <strong>No items found.</strong> > [% END %] > </div> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/reserveratios.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/reserveratios.tt >index 74b4b360c3..9567fc3af9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/reserveratios.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/reserveratios.tt >@@ -100,9 +100,9 @@ > [% IF ( CAN_user_acquisition && basketno && booksellerid ) %]<!-- [% reserveloo.ratiocalc | html %] --> > <a href="/cgi-bin/koha/acqui/neworderempty.pl?biblionumber=[% reserveloo.biblionumber | uri %]&booksellerid=[% booksellerid | uri %]&basketno=[% basketno | uri %]&rr_quantity_to_order=[% reserveloo.ratiocalc | uri %]" class="btn btn-default btn-xs"><i class="fa fa-plus"></i> [% reserveloo.ratiocalc | html %] to order</a> > [% ELSE %] >- <b>[% reserveloo.ratiocalc | html %] to order</b> >+ <strong>[% reserveloo.ratiocalc | html %] to order</strong> > [% END %] >- [% IF ( reserveloo.pendingorders ) %]<br><b>[% reserveloo.pendingorders | html %] pending</b>[% END %] >+ [% IF ( reserveloo.pendingorders ) %]<br><strong>[% reserveloo.pendingorders | html %] pending</strong>[% END %] > [% ELSE %] > 0 to order > [% END %] >@@ -113,7 +113,7 @@ > </tbody> > </table> > [% ELSE %] >- <b>No items found.</b> >+ <strong>No items found.</strong> > [% END %] > > </main> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >index 0647470a5e..1e1ca7d2ff 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >@@ -276,10 +276,10 @@ > <p class="problem"><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% errmsgloo.debarborrowernumber | uri %]">[% errmsgloo.debarname | html %]([% errmsgloo.debarcardnumber | html %])</a> is now debarred until [% errmsgloo.debarred | $KohaDates %].</p> > [% END %] > [% IF ( errmsgloo.prevdebarred ) %] >- <p class="problem"><b>Reminder: </b>Patron was earlier restricted until [% errmsgloo.prevdebarred | $KohaDates %].</p> >+ <p class="problem"><strong>Reminder: </strong>Patron was earlier restricted until [% errmsgloo.prevdebarred | $KohaDates %].</p> > [% END %] > [% IF ( errmsgloo.foreverdebarred ) %] >- <p class="problem"><b>Reminder: </b>Patron has an indefinite restriction.</p> >+ <p class="problem"><strong>Reminder: </strong>Patron has an indefinite restriction.</p> > [% END %] > [% IF errmsgloo.data_corrupted %] > <p class="problem">The item has not been checked in due to a configuration issue in your system. You must ask an administrator to take a look at the <a href="/cgi-bin/koha/about.pl#sysinfo">about page</a> and search for the "data problems" section</p> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt >index f0c3d4ffdf..bebcd88be1 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt >@@ -53,7 +53,7 @@ > <td><p><span title="[% reser.datetransfer | html %]">[% reser.datetransfer | $KohaDates %]</span></p> [% IF ( reser.messcompa ) %]<span class="error">Transfer is [% reser.diff | html %] days late</span>[% END %]</td> > <td> > [% INCLUDE 'biblio-default-view.inc' biblionumber = reser.biblionumber %][% INCLUDE 'biblio-title.inc' biblio=reser %]</a> [% IF ( reser.author ) %]by [% reser.author | html %][% END %] >- [% IF ( reser.itemtype ) %] (<b>[% reser.itemtype | html %]</b>)[% END %] >+ [% IF ( reser.itemtype ) %] (<strong>[% reser.itemtype | html %]</strong>)[% END %] > <br />Barcode: [% reser.barcode | html %] > </td> > <td>[% IF ( reser.patron ) %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/log/status_change.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/log/status_change.tt >index bde7367a0b..5c18443165 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/log/status_change.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/log/status_change.tt >@@ -1,6 +1,6 @@ > [% USE KohaDates %] > <p> >-[% log.timestamp | $KohaDates with_hours => 1 %] : <b>Status changed</b> >+[% log.timestamp | $KohaDates with_hours => 1 %] : <strong>Status changed</strong> > [% IF log.info.status_before %] > [% before = log.info.status_before %] > [% display_before = log.aliases.$before ? log.aliases.$before.lib : request.capabilities.$before.name %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/result.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/labels/result.tt >index 642a933de4..8e5657a219 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/result.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/labels/result.tt >@@ -51,7 +51,7 @@ > <div style="border-bottom:1px solid #CCC;padding:1em 0;"> > <h4>[% result_se.title | html %]</h4> > <p>[% IF ( result_se.author ) %]by [% result_se.author | html %][% END %] >- [[% result_se.itemtype | html %]], [% IF ( result_se.publishercode ) %][% result_se.publishercode | html %] [% END %][% IF ( result_se.place ) %][% result_se.place | html %] [% END %][% IF ( result_se.copyrightdate ) %][% result_se.copyrightdate | html %], [% END %][% IF ( result_se.pages ) %][% result_se.pages | html %][% END %][% IF ( result_se.isbn ) %], <b>ISBN: </b>[% result_se.isbn | html %][% END %][% IF ( result_se.notes ) %],<br />[% result_se.notes | html %][% END %]</p> >+ [[% result_se.itemtype | html %]], [% IF ( result_se.publishercode ) %][% result_se.publishercode | html %] [% END %][% IF ( result_se.place ) %][% result_se.place | html %] [% END %][% IF ( result_se.copyrightdate ) %][% result_se.copyrightdate | html %], [% END %][% IF ( result_se.pages ) %][% result_se.pages | html %][% END %][% IF ( result_se.isbn ) %], <strong>ISBN: </strong>[% result_se.isbn | html %][% END %][% IF ( result_se.notes ) %],<br />[% result_se.notes | html %][% END %]</p> > > <table> > [% FOREACH item_tabl IN result_se.item_table %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt >index f1daae3fa2..8808f53524 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt >@@ -335,7 +335,7 @@ > </div> > <div class="modal-body"> > <p>The amount collected from the patron is higher than the amount to be paid.</p> >- <p>The change to give is <b><span id="modal_change">0.00</span></b>.</p> >+ <p>The change to give is <strong><span id="modal_change">0.00</span></strong>.</p> > <p>Confirm this payment?</p> > </div> > <div class="modal-footer"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt >index ba5aaa3134..01fd4e5f1d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt >@@ -30,7 +30,7 @@ > </li> > </ol> > <p>To add another library and for more settings, go to: >- <span class="breadcrumbs"> Administration <b>›</b> Libraries and groups </span> >+ <span class="breadcrumbs"> Administration <strong>›</strong> Libraries and groups </span> > </p> > <input type="submit" class="btn btn-primary" value="Submit" /> > </fieldset> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt >index 4f7643c083..b01da625cd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt >@@ -116,7 +116,7 @@ > > <p> > To add another patron category and for more settings go to: >- <span class="breadcrumbs"> Administration <b>›</b> Patron categories</span> >+ <span class="breadcrumbs"> Administration <strong>›</strong> Patron categories</span> > </p> > > <input type="submit" class="btn btn-primary" value="Submit" /> >@@ -132,4 +132,4 @@ > <script src="[% interface | html %]/[% theme | html %]/js/onboarding.js"></script> > [% END %] > >-[% INCLUDE 'installer-intranet-bottom.inc' %] >\ No newline at end of file >+[% INCLUDE 'installer-intranet-bottom.inc' %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt >index a5702eb7eb..273aa6cd9d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt >@@ -65,7 +65,7 @@ > [% END %] > </select> > <span class="required">Required</span><br><br> >- <b>Note:</b> If you installed sample patron categories please select the "Staff" option in the patron categories dropdown box. >+ <strong>Note:</strong> If you installed sample patron categories please select the "Staff" option in the patron categories dropdown box. > </li> > </ol> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-upload.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-upload.tt >index 06daeb54f1..ff2fefaee1 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-upload.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-upload.tt >@@ -22,18 +22,18 @@ > [% IF ( ERRORS ) %] > <div class="dialog alert"> > [% FOREACH ERROR IN ERRORS %] >- [% IF ( ERROR.NOTKPZ ) %]<li><b>The upload file does not appear to be a kpz file. The extension is not '.kpz'.</b></li> >- [% ELSIF ( ERROR.NOWRITETEMP ) %]<li><b>This script is not able to create/write to the necessary temporary directory.</b></li> >- [% ELSIF ( ERROR.EMPTYUPLOAD ) %]<li><b>The upload file appears to be empty.</b></li> >- [% ELSIF ( ERROR.UZIPFAIL ) %]<li><b>[% ERROR.UZIPFAIL | html %] failed to unpack.<br />Please verify the integrity of the zip file and retry.</b></li> >- [% ELSIF ( ERROR.NOWRITEPLUGINS ) %]<li><b>Cannot unpack file to the plugins directory.<br />Please verify that the Apache user can write to the plugins directory.</b></li> >- [% ELSE %]<li><b>[% ERROR.CORERR | html %] An unknown error has occurred.<br />Please review the error log for more details.</b></li>[% END %] >+ [% IF ( ERROR.NOTKPZ ) %]<li><strong>The upload file does not appear to be a kpz file. The extension is not '.kpz'.</strong></li> >+ [% ELSIF ( ERROR.NOWRITETEMP ) %]<li><strong>This script is not able to create/write to the necessary temporary directory.</strong></li> >+ [% ELSIF ( ERROR.EMPTYUPLOAD ) %]<li><strong>The upload file appears to be empty.</strong></li> >+ [% ELSIF ( ERROR.UZIPFAIL ) %]<li><strong>[% ERROR.UZIPFAIL | html %] failed to unpack.<br />Please verify the integrity of the zip file and retry.</strong></li> >+ [% ELSIF ( ERROR.NOWRITEPLUGINS ) %]<li><strong>Cannot unpack file to the plugins directory.<br />Please verify that the Apache user can write to the plugins directory.</strong></li> >+ [% ELSE %]<li><strong>[% ERROR.CORERR | html %] An unknown error has occurred.<br />Please review the error log for more details.</strong></li>[% END %] > [% END %] > </div> > [% END %] > <form method="post" action="/cgi-bin/koha/plugins/plugins-upload.pl" enctype="multipart/form-data"> > <fieldset class="brief"> >- <div class="hint"><b>NOTE:</b> Only KPZ file format is supported.</div> >+ <div class="hint"><strong>NOTE:</strong> Only KPZ file format is supported.</div> > <ol> > <li> > <label for="uploadfile">Select the file to upload: </label><input type="file" id="uploadfile" name="uploadfile" /> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt >index 9cbb74638b..3977ca09d7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt >@@ -165,7 +165,7 @@ > </div> > <div class="modal-body"> > <p>The amount collected from the patron is higher than the amount to be paid.</p> >- <p>The change to give is <b><span id="modal_change">[% 0 | $Price %]</span></b>.</p> >+ <p>The change to give is <strong><span id="modal_change">[% 0 | $Price %]</span></strong>.</p> > <p>Confirm this payment?</p> > </div> > <div class="modal-footer"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt >index c1ad99bfa4..4db99d2c41 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt >@@ -19,7 +19,7 @@ > [% FOREACH mainloo IN mainloop %] > <h1>Acquisitions statistics </h1> > [% IF ( mainloo.loopfilter.size ) %] >- <p><b>Filtered on:</b></p> >+ <p><strong>Filtered on:</strong></p> > [% FOREACH loopfilte IN mainloo.loopfilter %] > <p> > [% SWITCH loopfilte.crit %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >index 658cef5aee..153d7b7ced 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >@@ -394,7 +394,7 @@ > [% IF ( build1 ) %] > [% IF ( cache_error) %] > <div class="dialog alert"> >- <b> Please choose a cache_expiry less than 30 days </b> >+ <strong> Please choose a cache_expiry less than 30 days </strong> > </div> > [% END %] > >@@ -1207,10 +1207,10 @@ > [% IF ( errors ) %] > <form action="/cgi-bin/koha/reports/guided_reports.pl" method="post"> > <div class="dialog alert"> >- <b>The following error was encountered:</b><br /> >+ <strong>The following error was encountered:</strong><br /> > [% FOREACH error IN errors %] > [% IF ( error.sqlerr ) %] >- This report contains the SQL keyword <b>[% error.sqlerr | html %]</b>.<br /> >+ This report contains the SQL keyword <strong>[% error.sqlerr | html %]</strong>.<br /> > Use of this keyword is not allowed in Koha reports due to security and data integrity risks. Only SELECT queries are allowed.<br /> > Please return to the "Saved Reports" screen and delete this report or retry creating a new one. > [% ELSIF ( error.queryerr ) %] >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 ec04aa2153..20b9b85f20 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tt >@@ -63,7 +63,7 @@ > </table> > <div class="pages">[% pagination_bar | $raw %]</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><strong>No comments have been approved.</strong></p>[% ELSE %]<p><strong>No comments to moderate.</strong></p>[% END %] > [% END %] > </div> > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt >index 091451c2a7..c71a3ea278 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt >@@ -50,15 +50,15 @@ > > [% IF ( subscriptions_loop ) %] > <p> >- <b>[% numsubscription | html %]</b> subscription(s) >+ <strong>[% numsubscription | html %]</strong> subscription(s) > [% IF ( title ) %] > with title matching <span class="title">[% title | html %]</class> > [% IF ( issn ) %]and [% END %] > [% END %] > [% IF ( issn ) %] >- with ISSN matching <b>[% issn | html %]</b> >+ with ISSN matching <strong>[% issn | html %]</strong> > [% END %] >- will expire before <b>[% date | $KohaDates %]</b> >+ will expire before <strong>[% date | $KohaDates %]</strong> > </p> > > <div class="checkexpiration-table_table_controls"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt >index 064f09b3d4..2ead597be2 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt >@@ -43,7 +43,7 @@ > [% ELSE %] > > <div class="dialog message"> >- <p>No results found for <b>[% query | html %]</b></p> >+ <p>No results found for <strong>[% query | html %]</strong></p> > </div> > > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt >index 9caefcca57..a740c5d69f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt >@@ -17,11 +17,11 @@ > <td colspan="2"><h3>[% libraryname | html %]</h3></td> > </tr> > <tr> >- <td colspan="2"><b>Title:</b> [% title | html %]<br />[% issue | html %]</td> >+ <td colspan="2"><strong>Title:</strong> [% title | html %]<br />[% issue | html %]</td> > </tr> > <tr> >- <td><b>Name</b></td> >- <td><b>Date due</b></td> >+ <td><strong>Name</strong></td> >+ <td><strong>Date due</strong></td> > </tr> > [% FOREACH memberloo IN memberloop %] > <tr> >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 5b5fe47f13..4e801db741 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >@@ -757,7 +757,7 @@ > </div> > > [% ELSE %] >- <b>No results.</b> >+ <strong>No results.</strong> > [% END %] > </form> > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt >index bfd7809a6d..4e9a992c04 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt >@@ -45,7 +45,7 @@ > </ul> > <div id="bibs"> > <p> >- <b>Note : The items are exported by this tool unless specified.</b> >+ <strong>Note : The items are exported by this tool unless specified.</strong> > </p> > > <form method="post" enctype="multipart/form-data" action="/cgi-bin/koha/tools/export.pl"> >@@ -230,7 +230,7 @@ > [% IF ( allow_db_export ) %] > <div id="db"> > <form method="post" action="/cgi-bin/koha/tools/export.pl"> >- <p><b>Note : This export file will be very large, and is generated nightly.</b></p> >+ <p><strong>Note : This export file will be very large, and is generated nightly.</strong></p> > <fieldset class="rows"> > <legend> Choose a file </legend> > [% IF ( dbfiles && (dbfiles.size > 0) ) %] >@@ -256,7 +256,7 @@ > [% IF ( allow_conf_export ) %] > <div id="conf"> > <form method="post" action="/cgi-bin/koha/tools/export.pl"> >- <p><b>Note : This export file will be very large, and is generated nightly.</b></p> >+ <p><strong>Note : This export file will be very large, and is generated nightly.</strong></p> > <fieldset class="rows"> > <legend> Choose a file </legend> > [% IF ( conffiles && (conffiles.size > 0) ) %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >index 7900be3f35..62142d8dd6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt >@@ -74,7 +74,7 @@ td.repeatableyearly a.ui-state-default { background: #FFCC66 none; color : Bl > <input type="hidden" id="showYear" name="showYear" /> > </li> > <li class="dateinsert"> >- <b>To Date : </b> >+ <strong>To Date : </strong> > <input type="text" id="datecancelrange" name="datecancelrange" size="20" value="[% datecancelrange | html %]" class="datepicker"/> > </li> > <li><label for="showTitle">Title: </label><input type="text" name="showTitle" id="showTitle" size="35" /></li> >@@ -150,7 +150,7 @@ td.repeatableyearly a.ui-state-default { background: #FFCC66 none; color : Bl > <input type="hidden" id="newYear" name="newYear" /> > </li> > <li class="dateinsert"> >- <b>To date: </b> >+ <strong>To date: </strong> > <input type="text" id="dateofrange" name="dateofrange" size="20" value="[% dateofrange | html %]" class="datepicker" /> > </li> > <li><label for="title">Title: </label><input type="text" name="newTitle" id="title" size="35" /></li> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt >index 5ee2fadf72..9f69f69e3c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/import_borrowers.tt >@@ -285,7 +285,7 @@ > <ul> > <li>The first line in the file must be a header row defining which columns you are supplying in the import file.</li> > >- <li><b>Download a starter CSV file with all the columns <a href="?sample=1">here</a>.</b> Values are comma-separated.</li> >+ <li><strong>Download a starter CSV file with all the columns <a href="?sample=1">here</a>.</strong> Values are comma-separated.</li> > > <li> > OR choose which fields you want to supply from the following list: >@@ -298,12 +298,12 @@ > > [% IF ( Koha.Preference('ExtendedPatronAttributes') ) %] > <li> >- If loading patron attributes, the 'patron_attributes' field should contain a comma-separated list of attribute types and values. The attribute type code and a colon should precede each value. For example: <b>INSTID:12345,LANG:fr</b> or <b>STARTDATE:January 1 2010,TRACK:Day</b>. If an input record has more than one attribute, the fields should either be entered as an unquoted string (previous examples), or with each field wrapped in separate double quotes and delimited by a comma: <b>"STARTDATE:January 1, 2010","TRACK:Day"</b>. The second syntax would be required if the data might have a comma in it, like a date string. >+ If loading patron attributes, the 'patron_attributes' field should contain a comma-separated list of attribute types and values. The attribute type code and a colon should precede each value. For example: <strong>INSTID:12345,LANG:fr</strong> or <strong>STARTDATE:January 1 2010,TRACK:Day</strong>. If an input record has more than one attribute, the fields should either be entered as an unquoted string (previous examples), or with each field wrapped in separate double quotes and delimited by a comma: <strong>"STARTDATE:January 1, 2010","TRACK:Day"</strong>. The second syntax would be required if the data might have a comma in it, like a date string. > </li> > [% END %] > > <li> >- <strong>Required fields:</strong> The fields 'surname', 'branchcode', and 'categorycode' are <em>required</em> and 'branchcode' and 'categorycode' <b>must match</b> valid entries in your database. >+ <strong>Required fields:</strong> The fields 'surname', 'branchcode', and 'categorycode' are <em>required</em> and 'branchcode' and 'categorycode' <strong>must match</strong> valid entries in your database. > </li> > > <li> >@@ -311,7 +311,7 @@ > </li> > > <li> >- Date formats should match your system preference, and <b>must</b> be zero-padded, e.g. '01/02/2008'. Alternatively, >+ Date formats should match your system preference, and <strong>must</strong> be zero-padded, e.g. '01/02/2008'. Alternatively, > you can supply dates in ISO format (e.g., '2010-10-28'). > </li> > </ul> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt >index 4bfed8b44c..29e89152cc 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt >@@ -121,7 +121,7 @@ > </div> <!-- /#toolbar --> > > [% IF ( search ) %] >- <p>You searched for <b>[% searchfield | html %]</b></p> >+ <p>You searched for <strong>[% searchfield | html %]</strong></p> > [% END %] > > [% IF ( letter && !independant_branch) %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt >index 0c946594d5..91c89c97b7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt >@@ -46,13 +46,13 @@ > [% ELSE %] > <div class="dialog message"> > [% END %] >- <p><b> >+ <p><strong> > [% IF ( label_batch_msg == "error" ) %] > Error attempting to create label batch. Please ask your system administrator to check the log for more details. > [% ELSE %] > Label <a href="/cgi-bin/koha/labels/label-edit-batch.pl?op=edit&element_id=[% label_batch_msg | uri %]" >batch #[% label_batch_msg | html %]</a> created. > [% END %] >- </b></p> >+ </strong></p> > </div> > [% END %] > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/picture-upload.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/picture-upload.tt >index 38ea53f6df..29fd108ad3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/picture-upload.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/picture-upload.tt >@@ -57,15 +57,15 @@ > <td> > [% IF ( filename.filerrors ) %] > [% FOREACH filerror IN filename.filerrors %] >- [% IF ( filerror.DBERR ) %]<b>ERROR:</b> Image not imported because the database returned an error. Please refer to the error log for more details. >- [% ELSIF ( filerror.IMGEXISTS ) %]<b>ERROR:</b> Image not imported because this patron does not exist in the database. >- [% ELSIF ( filerror.MIMERR ) %]<b>ERROR:</b> Image not imported because the image format is unrecognized. >- [% ELSIF ( filerror.CORERR ) %]<b>ERROR:</b> Image not imported because the image file is corrupted. >- [% ELSIF ( filerror.OPNERR ) %]<b>ERROR:</b> Image not imported because Koha was unable to open the image for reading. >- [% ELSIF ( filerror.OVRSIZ ) %]<b>ERROR:</b> Image not imported because the image file is too big (see online help for maximum size). >- [% ELSIF ( filerror.CRDFIL ) %]<b>ERROR:</b> Image not imported ([% filerror.CRDFIL | html %] missing). >- [% ELSIF ( filerror.CARDNUMBER_DOES_NOT_EXIST ) %]<b>ERROR:</b> Image not imported because this patron does not exist in the database. >- [% ELSE %]<b>ERROR:</b> Image not imported because of an unknown error. Please refer to the error log for more details. >+ [% IF ( filerror.DBERR ) %]<strong>ERROR:</strong> Image not imported because the database returned an error. Please refer to the error log for more details. >+ [% ELSIF ( filerror.IMGEXISTS ) %]<strong>ERROR:</strong> Image not imported because this patron does not exist in the database. >+ [% ELSIF ( filerror.MIMERR ) %]<strong>ERROR:</strong> Image not imported because the image format is unrecognized. >+ [% ELSIF ( filerror.CORERR ) %]<strong>ERROR:</strong> Image not imported because the image file is corrupted. >+ [% ELSIF ( filerror.OPNERR ) %]<strong>ERROR:</strong> Image not imported because Koha was unable to open the image for reading. >+ [% ELSIF ( filerror.OVRSIZ ) %]<strong>ERROR:</strong> Image not imported because the image file is too big (see online help for maximum size). >+ [% ELSIF ( filerror.CRDFIL ) %]<strong>ERROR:</strong> Image not imported ([% filerror.CRDFIL | html %] missing). >+ [% ELSIF ( filerror.CARDNUMBER_DOES_NOT_EXIST ) %]<strong>ERROR:</strong> Image not imported because this patron does not exist in the database. >+ [% ELSE %]<strong>ERROR:</strong> Image not imported because of an unknown error. Please refer to the error log for more details. > [% END %] > [% END %] > [% ELSE %] imported successfully. >@@ -88,20 +88,20 @@ > [% IF ( ERRORS ) %] > <div class="dialog alert"> > [% FOREACH ERROR IN ERRORS %] >- [% IF ( ERROR.NOTZIP ) %]<li><b>The upload file does not appear to be a zip file. The extension is not '.zip'.</b></li> >- [% ELSIF ( ERROR.NOWRITETEMP ) %]<li><b>This script is not able to create/write to the necessary temporary directory.</b></li> >- [% ELSIF ( ERROR.EMPTYUPLOAD ) %]<li><b>The upload file appears to be empty.</b></li> >- [% ELSIF ( ERROR.OPNLINK ) %]<li><b>Cannot open [% ERROR.OPNLINK | html %] to read.<br />Please verify that it exists.</b></li> >- [% ELSIF ( ERROR.OPNIMG ) %]<li><b>Cannot open [% ERROR.OPNIMG | html %] to read.<br />Please verify that it exists.</b></li> >- [% ELSIF ( ERROR.DELERR ) %]<li><b>Unrecognized or missing field delimiter.<br />Please verify that you are using either a single quote or a tab.</b></li> >- [% ELSIF ( ERROR.UZIPFAIL ) %]<li><b>[% ERROR.UZIPFAIL | html %] failed to unpack.<br />Please verify the integrity of the ZIP file and retry.</b></li> >- [% ELSE %]<li><b>[% ERROR.CORERR | html %] An unknown error has occurred.<br />Please review the error log for more details.</b></li>[% END %] >+ [% IF ( ERROR.NOTZIP ) %]<li><strong>The upload file does not appear to be a zip file. The extension is not '.zip'.</strong></li> >+ [% ELSIF ( ERROR.NOWRITETEMP ) %]<li><strong>This script is not able to create/write to the necessary temporary directory.</strong></li> >+ [% ELSIF ( ERROR.EMPTYUPLOAD ) %]<li><strong>The upload file appears to be empty.</strong></li> >+ [% ELSIF ( ERROR.OPNLINK ) %]<li><strong>Cannot open [% ERROR.OPNLINK | html %] to read.<br />Please verify that it exists.</strong></li> >+ [% ELSIF ( ERROR.OPNIMG ) %]<li><strong>Cannot open [% ERROR.OPNIMG | html %] to read.<br />Please verify that it exists.</strong></li> >+ [% ELSIF ( ERROR.DELERR ) %]<li><strong>Unrecognized or missing field delimiter.<br />Please verify that you are using either a single quote or a tab.</strong></li> >+ [% ELSIF ( ERROR.UZIPFAIL ) %]<li><strong>[% ERROR.UZIPFAIL | html %] failed to unpack.<br />Please verify the integrity of the ZIP file and retry.</strong></li> >+ [% ELSE %]<li><strong>[% ERROR.CORERR | html %] An unknown error has occurred.<br />Please review the error log for more details.</strong></li>[% END %] > [% END %] > </div> > [% END %] > <form method="post" action="/cgi-bin/koha/tools/picture-upload.pl" enctype="multipart/form-data" id="upload_form"> > <fieldset class="rows"> >- <p><b>NOTE:</b> Only PNG, GIF, JPEG, XPM formats are supported.</p> >+ <p><strong>NOTE:</strong> Only PNG, GIF, JPEG, XPM formats are supported.</p> > <ol class="radio"> > <li> > <label for="zipfile"><input type="radio" id="zipfile" name="filetype" value="zip" checked="checked" /> Zip file</label></li> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt >index 4b59c661a4..2a1ce36c32 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt >@@ -76,7 +76,7 @@ > <tr> > <td><input type="checkbox" name="report_ids" value="[% report.reportid | html %]"></td> > <td> >- <b>[% report.title | html %]</b><br> >+ <strong>[% report.title | html %]</strong><br> > [% report.content | html %] > </td> > <td><a href="[% OPACBaseURL | url %][% report.problempage | url %]">[% OPACBaseURL | url %][% report.problempage | html %]</a></td> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt >index 6b3e9c15e3..5339069a0f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt >@@ -26,7 +26,7 @@ > <div id="quote_editor_inst"> > <ul> > <li>Click on the 'Add quote' button to add a single quote; Press the <Enter> key to save the quote.<br /> >- <b>Note: </b>Both the 'source' and 'text' fields must have content in order for the quote to be saved.</li> >+ <strong>Note: </strong>Both the 'source' and 'text' fields must have content in order for the quote to be saved.</li> > <li>Click on any field to edit the contents; Press the <Enter> key to save edit.</li> > <li>Click on one or more quote numbers to select entire quotes for deletion; Click the 'Delete quote(s)' button to delete selected quotes.</li> > <li>Click the 'Import quotes' button in the toolbar to import a CSV file of quotes.</li> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt >index ac771fd61e..ee8296b7d4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload-images.tt >@@ -27,12 +27,12 @@ > <li>[% total | html %] images found</li> > [% IF ( error ) %] > <div class="dialog alert"> >- [% IF ( error == 'UZIPFAIL' ) %]<p><b>Failed to unzip archive.<br />Please ensure you are uploading a valid zip file and try again.</b></p> >- [% ELSIF ( error == 'OPNLINK' ) %]<p><b>Cannot open folder index (idlink.txt or datalink.txt) to read.<br />Please verify that it exists.</b></p> >- [% ELSIF ( error == 'OPNIMG' ) %]<p><b>Cannot process file as an image.<br />Please ensure you only upload GIF, JPEG, PNG, or XPM images.</b></p> >- [% ELSIF ( error == 'DELERR' ) %]<p><b>Unrecognized or missing field delimiter.<br />Please verify that you are using either a single quote or a tab.</b></p> >- [% ELSIF ( error == 'DBERR' ) %]<p><b>Unable to save image to database.</b></p> >- [% ELSE %]<p><b>An unknown error has occurred.<br />Please review the error log for more details.</b></p>[% END %] >+ [% IF ( error == 'UZIPFAIL' ) %]<p><strong>Failed to unzip archive.<br />Please ensure you are uploading a valid zip file and try again.</strong></p> >+ [% ELSIF ( error == 'OPNLINK' ) %]<p><strong>Cannot open folder index (idlink.txt or datalink.txt) to read.<br />Please verify that it exists.</strong></p> >+ [% ELSIF ( error == 'OPNIMG' ) %]<p><strong>Cannot process file as an image.<br />Please ensure you only upload GIF, JPEG, PNG, or XPM images.</strong></p> >+ [% ELSIF ( error == 'DELERR' ) %]<p><strong>Unrecognized or missing field delimiter.<br />Please verify that you are using either a single quote or a tab.</strong></p> >+ [% ELSIF ( error == 'DBERR' ) %]<p><strong>Unable to save image to database.</strong></p> >+ [% ELSE %]<p><strong>An unknown error has occurred.<br />Please review the error log for more details.</strong></p>[% END %] > </div> > </li> > [% END %] >-- >2.20.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 25744
:
107903
|
107906
|
109758
|
109759
|
109889
| 109890