From c4b4ae06e19fe51499bd8cc6d0857dc5f39c4486 Mon Sep 17 00:00:00 2001 From: Andrew Isherwood Date: Thu, 4 Oct 2018 13:38:20 +0100 Subject: [PATCH] Bug 20941: (follow-up) Wrap N/A strings in All N/A strings in ILL templates wrapped in to aid translation --- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 12 ++++++------ koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index 2e199a486f..918d41556c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -438,11 +438,11 @@
  • - [% type || 'N/A' | html %] + [% type || 'N/A' | html %]
  • - [% request.cost || 'N/A' | html %] + [% request.cost || 'N/A' | html %]
  • @@ -510,7 +510,7 @@
    Order ID: - [% request.orderid || "N/A" | html %] + [% request.orderid || 'N/A' | html %]
    Patron: @@ -522,7 +522,7 @@
    Bibliographic record ID: - [% request.biblio_id || "N/A" | html %] + [% request.biblio_id || 'N/A' | html %]
    Library: @@ -539,11 +539,11 @@
    Request type: % type = request.get_type %] - [% type || 'N/A' | html %] + [% type || 'N/A' | html %]
    Cost: - [% request.cost || "N/A" | html %] + [% request.cost || 'N/A' | html %]
    Request number: diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt index c5ff708c10..e3ff91f353 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt @@ -126,10 +126,10 @@ [% status = request.status | html %] [% type = request.get_type %] - [% request.metadata.Author || 'N/A' | html %] - [% request.metadata.Title || 'N/A' | html %] + [% request.metadata.Author || 'N/A' | html %] + [% request.metadata.Title || 'N/A' | html %] [% request.backend | html %] - [% type || 'N/A' | html %] + [% type || 'N/A' | html %] [% request.capabilities.$status.name | html %] [% request.placed | html %] [% request.updated | html %] @@ -169,7 +169,7 @@
  • - [% type || 'N/A' | html %] + [% type || 'N/A' | html %]
  • @@ -194,7 +194,7 @@ [% FOREACH meta IN request.metadata %]
    [% meta.key | html %]: - [% meta.value || 'N/A' | html %] + [% meta.value || 'N/A' | html %]
    [% END %] -- 2.11.0