Bugzilla – Attachment 131423 Details for
Bug 29602
We must be nicer with translators
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29602: (follow-up) Fix TT tags broken due to missing %
Bug-29602-follow-up-Fix-TT-tags-broken-due-to-miss.patch (text/plain), 24.88 KB, created by
Victor Grousset/tuxayo
on 2022-03-06 23:19:30 UTC
(
hide
)
Description:
Bug 29602: (follow-up) Fix TT tags broken due to missing %
Filename:
MIME Type:
Creator:
Victor Grousset/tuxayo
Created:
2022-03-06 23:19:30 UTC
Size:
24.88 KB
patch
obsolete
>From 04ba3bcad8464c6b78472a0dfde7b8bd605a717a Mon Sep 17 00:00:00 2001 >From: Victor Grousset/tuxayo <victor@tuxayo.net> >Date: Fri, 4 Feb 2022 23:38:13 +0100 >Subject: [PATCH] Bug 29602: (follow-up) Fix TT tags broken due to missing % > >--- > .../prog/en/modules/acqui/basket.tt | 6 +-- > .../prog/en/modules/admin/matching-rules.tt | 14 +++--- > .../prog/en/modules/catalogue/detail.tt | 10 ++-- > .../prog/en/modules/circ/returns.tt | 20 ++++---- > .../en/modules/labels/label-edit-layout.tt | 16 +++--- > .../prog/en/modules/labels/label-manage.tt | 16 +++--- > .../prog/en/modules/patroncards/manage.tt | 26 +++++----- > .../prog/en/modules/reports/dictionary.tt | 12 ++--- > .../prog/en/modules/reports/issues_stats.tt | 32 ++++++------ > .../prog/en/modules/tools/csv-profiles.tt | 12 ++--- > .../bootstrap/en/includes/accounts.inc | 50 +++++++++---------- > .../includes/authorities-search-results.inc | 14 +++--- > .../en/includes/opac-authorities.inc | 26 +++++----- > 13 files changed, 127 insertions(+), 127 deletions(-) > >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 6cc6fa0954..a14045a4db 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >@@ -337,9 +337,9 @@ > <li> > <span class="label">Create items when:</span> > [% SWITCH basket.create_items %] >- [% CASE 'receiving' ]<span>Receiving items</span> >- [% CASE 'cataloguing' ]<span>Cataloguing items</span> >- [% CASE ]<span>Placing orders</span> >+ [% CASE 'receiving' %]<span>Receiving items</span> >+ [% CASE 'cataloguing' %]<span>Cataloguing items</span> >+ [% CASE %]<span>Placing orders</span> > [% END %] > </li> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/matching-rules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/matching-rules.tt >index 2d342dd0ad..86ff1bfb43 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/matching-rules.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/matching-rules.tt >@@ -18,13 +18,13 @@ > > [% BLOCK norms_text %] > [% SWITCH norm %] >- [% CASE 'none' ]<span>None</span> >- [% CASE 'remove_spaces' ]<span>Remove spaces</span> >- [% CASE 'upper_case' ]<span>Uppercase</span> >- [% CASE 'lower_case' ]<span>Lowercase</span> >- [% CASE 'legacy_default' ]<span>Legacy default</span> >- [% CASE 'ISBN' ]<span>ISBN</span> >- [% CASE ]<span>[% norm | html %]</span> >+ [% CASE 'none' %]<span>None</span> >+ [% CASE 'remove_spaces' %]<span>Remove spaces</span> >+ [% CASE 'upper_case' %]<span>Uppercase</span> >+ [% CASE 'lower_case' %]<span>Lowercase</span> >+ [% CASE 'legacy_default' %]<span>Legacy default</span> >+ [% CASE 'ISBN' %]<span>ISBN</span> >+ [% CASE %]<span>[% norm | html %]</span> > [% END %] > [% END %] > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >index 2364000964..1f6c331902 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >@@ -801,11 +801,11 @@ Note that permanent location is a code, and location may be an authval. > <td data-order="[% order.datereceived | uri %]">[% order.datereceived | $KohaDates%]</td> > <td> > [% SWITCH order.orderstatus %] >- [% CASE 'new' ]<span>New</span> >- [% CASE 'ordered' ]<span>Ordered</span> >- [% CASE 'partial' ]<span>Partial</span> >- [% CASE 'complete' ]<span>Complete</span> >- [% CASE 'cancelled' ]<span>Cancelled</span> >+ [% CASE 'new' %]<span>New</span> >+ [% CASE 'ordered' %]<span>Ordered</span> >+ [% CASE 'partial' %]<span>Partial</span> >+ [% CASE 'complete' %]<span>Complete</span> >+ [% CASE 'cancelled' %]<span>Cancelled</span> > [% END %] > </td> > <td>[% order.quantity | html %]</td> >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 861dc7fef6..32b6a6b464 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt >@@ -125,16 +125,16 @@ > <h3>Reason for transfer</h3> > <p> > [%- SWITCH trigger -%] >- [%- CASE 'Manual' -]<span>Manual</span> >- [%- CASE 'StockrotationAdvance' -]<span>Stock rotation advance</span> >- [%- CASE 'StockrotationRepatriation' -]<span>Stock rotation repatriation</span> >- [%- CASE 'ReturnToHome' -]<span>Return to home library</span> >- [%- CASE 'ReturnToHolding' -]<span>Return to holding library</span> >- [%- CASE 'RotatingCollection' -]<span>Rotating collection</span> >- [%- CASE 'Reserve' -]<span>Reserve</span> >- [%- CASE 'LostReserve' -]<span>Lost reserve</span> >- [%- CASE 'CancelReserve' -]<span>Cancelled reserve</span> >- [%- CASE 'TransferCancellation' -]<span>Transfer was cancelled whilst in transit</span> >+ [%- CASE 'Manual' -%]<span>Manual</span> >+ [%- CASE 'StockrotationAdvance' -%]<span>Stock rotation advance</span> >+ [%- CASE 'StockrotationRepatriation' -%]<span>Stock rotation repatriation</span> >+ [%- CASE 'ReturnToHome' -%]<span>Return to home library</span> >+ [%- CASE 'ReturnToHolding' -%]<span>Return to holding library</span> >+ [%- CASE 'RotatingCollection' -%]<span>Rotating collection</span> >+ [%- CASE 'Reserve' -%]<span>Reserve</span> >+ [%- CASE 'LostReserve' -%]<span>Lost reserve</span> >+ [%- CASE 'CancelReserve' -%]<span>Cancelled reserve</span> >+ [%- CASE 'TransferCancellation' -%]<span>Transfer was cancelled whilst in transit</span> > [%- END -%] > </p> > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-layout.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-layout.tt >index 0c32ee24cd..7d9d76a188 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-layout.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-layout.tt >@@ -2,11 +2,11 @@ > [% SET footerjs = 1 %] > [%- BLOCK translate_label_types -%] > [%- SWITCH type -%] >- [%- CASE 'BIB' -]<span> Only the bibliographic data is printed</span> >- [%- CASE 'BARBIB'-]<span> Barcode proceeds bibliographic data</span> >- [%- CASE 'BIBBAR'-]<span> Bibliographic data proceeds barcode</span> >- [%- CASE 'ALT' -]<span> Barcode and bibliographic data are printed on alternating labels</span> >- [%- CASE 'BAR' -]<span> Only the barcode is printed</span> >+ [%- CASE 'BIB' -%]<span> Only the bibliographic data is printed</span> >+ [%- CASE 'BARBIB'-%]<span> Barcode proceeds bibliographic data</span> >+ [%- CASE 'BIBBAR'-%]<span> Bibliographic data proceeds barcode</span> >+ [%- CASE 'ALT' -%]<span> Barcode and bibliographic data are printed on alternating labels</span> >+ [%- CASE 'BAR' -%]<span> Only the barcode is printed</span> > [%- END -%] > [%- END -%] > [% INCLUDE 'doc-head-open.inc' %] >@@ -16,9 +16,9 @@ > > [% BLOCK translate_justification_types %] > [% SWITCH type %] >-[% CASE 'L' ]<span>Left</span> >-[% CASE 'C' ]<span>Center</span> >-[% CASE 'R' ]<span>Right</span> >+[% CASE 'L' %]<span>Left</span> >+[% CASE 'C' %]<span>Center</span> >+[% CASE 'R' %]<span>Right</span> > [% END %] > [% END %] > <body id="labels_label-edit-layout" class="tools labels"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt >index d283fc6844..a376713171 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-manage.tt >@@ -3,14 +3,14 @@ > [% SET footerjs = 1 %] > [% BLOCK translate_label_element %] > [%- SWITCH element -%] >-[%- CASE 'layout' -]<span>layout</span> >-[%- CASE 'Layouts' -]<span>Layouts</span> >-[%- CASE 'template' -]<span>template</span> >-[%- CASE 'Templates' -]<span>Templates</span> >-[%- CASE 'profile' -]<span>profile</span> >-[%- CASE 'Profiles' -]<span>Profiles</span> >-[%- CASE 'batch' -]<span>batch</span> >-[%- CASE 'Batches' -]<span>Batches</span> >+[%- CASE 'layout' -%]<span>layout</span> >+[%- CASE 'Layouts' -%]<span>Layouts</span> >+[%- CASE 'template' -%]<span>template</span> >+[%- CASE 'Templates' -%]<span>Templates</span> >+[%- CASE 'profile' -%]<span>profile</span> >+[%- CASE 'Profiles' -%]<span>Profiles</span> >+[%- CASE 'batch' -%]<span>batch</span> >+[%- CASE 'Batches' -%]<span>Batches</span> > [%- END -%] > [% END %] > [% INCLUDE 'doc-head-open.inc' %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/manage.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/manage.tt >index b7ce452569..d91be67fbb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/manage.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/manage.tt >@@ -2,23 +2,23 @@ > [% SET footerjs = 1 %] > [% BLOCK translate_card_element %] > [%- SWITCH element -%] >-[%- CASE 'layout' -]<span>layout</span> >-[%- CASE 'Layouts' -]<span>Layouts</span> >-[%- CASE 'template' -]<span>template</span> >-[%- CASE 'Templates' -]<span>Templates</span> >-[%- CASE 'profile' -]<span>profile</span> >-[%- CASE 'Profiles' -]<span>Profiles</span> >-[%- CASE 'batch' -]<span>batch</span> >-[%- CASE 'Batches' -]<span>Batches</span> >-[%- CASE 'Actions' -]<span>Actions</span> >+[%- CASE 'layout' -%]<span>layout</span> >+[%- CASE 'Layouts' -%]<span>Layouts</span> >+[%- CASE 'template' -%]<span>template</span> >+[%- CASE 'Templates' -%]<span>Templates</span> >+[%- CASE 'profile' -%]<span>profile</span> >+[%- CASE 'Profiles' -%]<span>Profiles</span> >+[%- CASE 'batch' -%]<span>batch</span> >+[%- CASE 'Batches' -%]<span>Batches</span> >+[%- CASE 'Actions' -%]<span>Actions</span> > [%- END -%] > [% END %] > [% BLOCK translate_card_elements %] > [%- SWITCH element -%] >-[%- CASE 'layout' -]<span>layouts</span> >-[%- CASE 'template' -]<span>templates</span> >-[%- CASE 'profile' -]<span>profiles</span> >-[%- CASE 'batch' -]<span>batches</span> >+[%- CASE 'layout' -%]<span>layouts</span> >+[%- CASE 'template' -%]<span>templates</span> >+[%- CASE 'profile' -%]<span>profiles</span> >+[%- CASE 'batch' -%]<span>batches</span> > [%- END -%] > [% END %] > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt >index 65881d1a00..a0d15d20fe 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt >@@ -11,12 +11,12 @@ > > [%- BLOCK area_name -%] > [%- SWITCH area -%] >- [%- CASE 'CIRC' -]<span>Circulation</span> >- [%- CASE 'CAT' -]<span>Catalog</span> >- [%- CASE 'PAT' -]<span>Patrons</span> >- [%- CASE 'ACQ' -]<span>Acquisitions</span> >- [%- CASE 'ACC' -]<span>Accounts</span> >- [%- CASE 'SER' -]<span>Serials</span> >+ [%- CASE 'CIRC' -%]<span>Circulation</span> >+ [%- CASE 'CAT' -%]<span>Catalog</span> >+ [%- CASE 'PAT' -%]<span>Patrons</span> >+ [%- CASE 'ACQ' -%]<span>Acquisitions</span> >+ [%- CASE 'ACC' -%]<span>Accounts</span> >+ [%- CASE 'SER' -%]<span>Serials</span> > [%- END -%] > [%- END -%] > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt >index 6b7436ae4b..ebd797e20b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt >@@ -59,22 +59,22 @@ > <li> > [% END %] > [% SWITCH loopfilte.crit %] >- [% CASE 0 ]<span>Period from [% loopfilte.filter | html %]</span> >- [% CASE 1 ]<span>Period to [% loopfilte.filter | html %]</span> >- [% CASE 2 ]<span>Patron category = [% loopfilte.filter | html %]</span> >- [% CASE 3 ]<span>Item type = [% loopfilte.filter | html %]</span> >- [% CASE 4 ]<span>Issuing library = [% loopfilte.filter | html %]</span> >- [% CASE 5 ]<span>Collection = [% loopfilte.filter | html %]</span> >- [% CASE 6 ]<span>Location = [% loopfilte.filter | html %]</span> >- [% CASE 7 ]<span>Item call number >= [% loopfilte.filter | html %]</span> >- [% CASE 8 ]<span>Item call number < [% loopfilte.filter | html %]</span> >- [% CASE 9 ]<span>Patron sort1 = [% loopfilte.filter | html %]</span> >- [% CASE 10 ]<span>Patron sort2 = [% loopfilte.filter | html %]</span> >- [% CASE 11 ]<span>Home library = [% loopfilte.filter | html %]</span> >- [% CASE 12 ]<span>Holding library = [% loopfilte.filter | html %]</span> >- [% CASE 13 ]<span>Patron library = [% loopfilte.filter | html %]</span> >- [% CASE 14 ]<span>Issuing library = [% loopfilte.filter | html %]</span> >- [% CASE ]<span>[% loopfilte.crit | html %] = [% loopfilte.filter | html %]</span> >+ [% CASE 0 %]<span>Period from [% loopfilte.filter | html %]</span> >+ [% CASE 1 %]<span>Period to [% loopfilte.filter | html %]</span> >+ [% CASE 2 %]<span>Patron category = [% loopfilte.filter | html %]</span> >+ [% CASE 3 %]<span>Item type = [% loopfilte.filter | html %]</span> >+ [% CASE 4 %]<span>Issuing library = [% loopfilte.filter | html %]</span> >+ [% CASE 5 %]<span>Collection = [% loopfilte.filter | html %]</span> >+ [% CASE 6 %]<span>Location = [% loopfilte.filter | html %]</span> >+ [% CASE 7 %]<span>Item call number >= [% loopfilte.filter | html %]</span> >+ [% CASE 8 %]<span>Item call number < [% loopfilte.filter | html %]</span> >+ [% CASE 9 %]<span>Patron sort1 = [% loopfilte.filter | html %]</span> >+ [% CASE 10 %]<span>Patron sort2 = [% loopfilte.filter | html %]</span> >+ [% CASE 11 %]<span>Home library = [% loopfilte.filter | html %]</span> >+ [% CASE 12 %]<span>Holding library = [% loopfilte.filter | html %]</span> >+ [% CASE 13 %]<span>Patron library = [% loopfilte.filter | html %]</span> >+ [% CASE 14 %]<span>Issuing library = [% loopfilte.filter | html %]</span> >+ [% CASE %]<span>[% loopfilte.crit | html %] = [% loopfilte.filter | html %]</span> > [% END %] > </li> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt >index d56cd01b7b..e0bbf67677 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt >@@ -126,12 +126,12 @@ > [% END %] > > [% BLOCK used_for_description %] >- [% IF used_for_code == 'export_records' ]<span> Export records</span> >- [% ELSIF used_for_code == 'late_issues' ]<span> Late serial issues claims</span> >- [% ELSIF used_for_code == 'late_orders' ]<span> Export late orders</span> >- [% ELSIF used_for_code == 'export_basket' ]<span> Basket export in acquisition</span> >- [% ELSIF used_for_code == 'export_lost_items' ]<span> Export lost items in report</span> >- [% ELSE ]<span> Unknown usage</span> >+ [% IF used_for_code == 'export_records' %]<span> Export records</span> >+ [% ELSIF used_for_code == 'late_issues' %]<span> Late serial issues claims</span> >+ [% ELSIF used_for_code == 'late_orders' %]<span> Export late orders</span> >+ [% ELSIF used_for_code == 'export_basket' %]<span> Basket export in acquisition</span> >+ [% ELSIF used_for_code == 'export_lost_items' %]<span> Export lost items in report</span> >+ [% ELSE %]<span> Unknown usage</span> > [% END %] > [% END %] > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc >index 01e3df116e..c0886be3de 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/accounts.inc >@@ -11,36 +11,36 @@ > > [%- BLOCK debit_type_description -%] > [%- SWITCH debit_type_code -%] >- [%- CASE 'ACCOUNT' -]<span>Account creation fee</span> >- [%- CASE 'ACCOUNT_RENEW' -]<span>Account renewal fee</span> >- [%- CASE 'ARTICLE_REQUEST' -]<span>Article request fee</span> >- [%- CASE 'LOST' -]<span>Lost item</span> >- [%- CASE 'MANUAL' -]<span>Manual fee</span> >- [%- CASE 'NEW_CARD' -]<span>New card</span> >- [%- CASE 'OVERDUE' -]<span>Fine</span> >- [%- CASE 'PROCESSING' -]<span>Lost item processing fee</span> >- [%- CASE 'RENT' -]<span>Rental fee</span> >- [%- CASE 'RENT_DAILY' -]<span>Daily rental fee</span> >- [%- CASE 'RENT_RENEW' -]<span>Renewal of rental item</span> >- [%- CASE 'RENT_DAILY_RENEW' -]<span>Renewal of daily rental item</span> >- [%- CASE 'RESERVE' -]<span>Hold fee</span> >- [%- CASE 'RESERVE_EXPIRED' -]<span>Hold waiting too long</span> >- [%- CASE 'Payout' -]<span>Payout</span> >- [%- CASE -]<span>[% debit_type.description | html %]</span> >+ [%- CASE 'ACCOUNT' -%]<span>Account creation fee</span> >+ [%- CASE 'ACCOUNT_RENEW' -%]<span>Account renewal fee</span> >+ [%- CASE 'ARTICLE_REQUEST' -%]<span>Article request fee</span> >+ [%- CASE 'LOST' -%]<span>Lost item</span> >+ [%- CASE 'MANUAL' -%]<span>Manual fee</span> >+ [%- CASE 'NEW_CARD' -%]<span>New card</span> >+ [%- CASE 'OVERDUE' -%]<span>Fine</span> >+ [%- CASE 'PROCESSING' -%]<span>Lost item processing fee</span> >+ [%- CASE 'RENT' -%]<span>Rental fee</span> >+ [%- CASE 'RENT_DAILY' -%]<span>Daily rental fee</span> >+ [%- CASE 'RENT_RENEW' -%]<span>Renewal of rental item</span> >+ [%- CASE 'RENT_DAILY_RENEW' -%]<span>Renewal of daily rental item</span> >+ [%- CASE 'RESERVE' -%]<span>Hold fee</span> >+ [%- CASE 'RESERVE_EXPIRED' -%]<span>Hold waiting too long</span> >+ [%- CASE 'Payout' -%]<span>Payout</span> >+ [%- CASE -%]<span>[% debit_type.description | html %]</span> > [%- END -%] > [%- END -%] > > [%- BLOCK credit_type_description -%] > [%- SWITCH credit_type_code -%] >- [%- CASE 'PAYMENT' -]<span>Payment</span> >- [%- CASE 'WRITEOFF' -]<span>Writeoff</span> >- [%- CASE 'FORGIVEN' -]<span>Forgiven</span> >- [%- CASE 'CREDIT' -]<span>Credit</span> >- [%- CASE 'LOST_FOUND' -]<span>Lost item fee refund</span> >- [%- CASE 'OVERPAYMENT' -]<span>Overpayment refund</span> >- [%- CASE 'REFUND' -]<span>Refund</span> >- [%- CASE 'CANCELLATION' -]<span>Cancelled charge</span> >- [%- CASE -]<span>[% credit_type.description | html %]</span> >+ [%- CASE 'PAYMENT' -%]<span>Payment</span> >+ [%- CASE 'WRITEOFF' -%]<span>Writeoff</span> >+ [%- CASE 'FORGIVEN' -%]<span>Forgiven</span> >+ [%- CASE 'CREDIT' -%]<span>Credit</span> >+ [%- CASE 'LOST_FOUND' -%]<span>Lost item fee refund</span> >+ [%- CASE 'OVERPAYMENT' -%]<span>Overpayment refund</span> >+ [%- CASE 'REFUND' -%]<span>Refund</span> >+ [%- CASE 'CANCELLATION' -%]<span>Cancelled charge</span> >+ [%- CASE -%]<span>[% credit_type.description | html %]</span> > [%- END -%] > [%- END -%] > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/authorities-search-results.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/authorities-search-results.inc >index 82acd785e4..faf507fe44 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/authorities-search-results.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/authorities-search-results.inc >@@ -33,13 +33,13 @@ > [% UNLESS ( type=='seefrom' || type=='seealso' ) %] > <span class="type"> > [% SWITCH type %] >- [% CASE 'earlier' ]<span>(Earlier heading)</span> >- [% CASE 'later' ]<span>(Later heading)</span> >- [% CASE 'acronym' ]<span>(Acronym)</span> >- [% CASE 'musical' ]<span>(Musical composition)</span> >- [% CASE 'broader' ]<span>(Broader heading)</span> >- [% CASE 'narrower' ]<span>(Narrower heading)</span> >- [% CASE 'parent' ]<span>(Immediate parent body)</span> >+ [% CASE 'earlier' %]<span>(Earlier heading)</span> >+ [% CASE 'later' %]<span>(Later heading)</span> >+ [% CASE 'acronym' %]<span>(Acronym)</span> >+ [% CASE 'musical' %]<span>(Musical composition)</span> >+ [% CASE 'broader' %]<span>(Broader heading)</span> >+ [% CASE 'narrower' %]<span>(Narrower heading)</span> >+ [% CASE 'parent' %]<span>(Immediate parent body)</span> > [% CASE %] > [% IF type %]([% type | html %])[% END %] > [% END %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-authorities.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-authorities.inc >index b2f08a952e..2bbad1a9e3 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-authorities.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-authorities.inc >@@ -24,13 +24,13 @@ > [% BLOCK authtypelabel %] > [% UNLESS ( type=='seefrom' || type=='seealso' || type=='' ) %] > <span class="type">[% FILTER trim %][% SWITCH type %] >- [% CASE 'earlier' ]<span>Earlier heading</span> >- [% CASE 'later' ]<span>Later heading</span> >- [% CASE 'acronym' ]<span>Acronym</span> >- [% CASE 'musical' ]<span>Musical composition</span> >- [% CASE 'broader' ]<span>Broader heading</span> >- [% CASE 'narrower' ]<span>Narrower heading</span> >- [% CASE ]<span>[% type | html %]</span> >+ [% CASE 'earlier' %]<span>Earlier heading</span> >+ [% CASE 'later' %]<span>Later heading</span> >+ [% CASE 'acronym' %]<span>Acronym</span> >+ [% CASE 'musical' %]<span>Musical composition</span> >+ [% CASE 'broader' %]<span>Broader heading</span> >+ [% CASE 'narrower' %]<span>Narrower heading</span> >+ [% CASE %]<span>[% type | html %]</span> > [% END %][% END %]</span> > [% END %] > [% END %] >@@ -60,11 +60,11 @@ > > [% BLOCK language %] > [% SWITCH lang %] >- [% CASE ['en', 'eng'] ]<span>English</span> >- [% CASE ['fr', 'fre'] ]<span>French</span> >- [% CASE ['it', 'ita'] ]<span>Italian</span> >- [% CASE ['de', 'ger', 'deu'] ]<span>German</span> >- [% CASE ['es', 'spa'] ]<span>Spanish</span> >- [% CASE ]<span>[% lang | html %]</span> >+ [% CASE ['en', 'eng'] %]<span>English</span> >+ [% CASE ['fr', 'fre'] %]<span>French</span> >+ [% CASE ['it', 'ita'] %]<span>Italian</span> >+ [% CASE ['de', 'ger', 'deu'] %]<span>German</span> >+ [% CASE ['es', 'spa'] %]<span>Spanish</span> >+ [% CASE %]<span>[% lang | html %]</span> > [% END %] > [% END %] >-- >2.35.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 29602
:
128108
|
128109
|
128534
|
128535
|
128542
|
128543
|
130196
|
130197
|
130198
|
130199
|
130200
|
131421
|
131422
|
131423
|
131424
|
131425
|
131934
|
131935
|
131936
|
131937
|
131938
|
133129
|
133130
|
133131
|
133132
|
133133
|
133370
|
133371
|
133372
|
133373
|
133374
|
133381
|
133382
|
133383
|
133384
|
133385
|
133495
|
133521