Bugzilla – Attachment 131938 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 duplicate, missing or mismatching <span>
Bug-29602-follow-up-fix-duplicate-missing-or-misma.patch (text/plain), 7.31 KB, created by
Victor Grousset/tuxayo
on 2022-03-19 16:08:55 UTC
(
hide
)
Description:
Bug 29602: (follow-up) fix duplicate, missing or mismatching <span>
Filename:
MIME Type:
Creator:
Victor Grousset/tuxayo
Created:
2022-03-19 16:08:55 UTC
Size:
7.31 KB
patch
obsolete
>From ab2bfa6145198835925308892818c0264caeb280 Mon Sep 17 00:00:00 2001 >From: Victor Grousset/tuxayo <victor@tuxayo.net> >Date: Sat, 5 Feb 2022 21:43:04 +0100 >Subject: [PATCH] Bug 29602: (follow-up) fix duplicate, missing or mismatching > <span> > >--- > koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt | 2 +- > .../intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 2 +- > .../prog/en/modules/tools/additional-contents.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt | 4 ++-- > koha-tmpl/opac-tmpl/bootstrap/en/includes/xslt-handler.inc | 2 +- > 8 files changed, 9 insertions(+), 9 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc >index 2ec1cd6ec8..e047700963 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc >@@ -71,7 +71,7 @@ > [%- data.cardnumber | html -%] > [%- END -%] > [%- ELSE -%] >- <span>A patron from library [% Branches.GetName( patron.branchcode ) | html -%]<span> >+ <span>A patron from library [% Branches.GetName( patron.branchcode ) | html -%]</span> > [%- END -%] > > [%- IF hide_patron_infos_if_needed AND ( display_patron_name OR display_cardnumber ) -%] >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 2b3f4c1499..bbc9b3dc63 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt >@@ -66,7 +66,7 @@ > [% END %] > <h1> > [% IF ( invoiceclosedate ) %] >- <span>Receipt summary for <em>[% name | html %]</em><span> [% IF ( invoice ) %] <em> [ [% invoice | html %] ] </em>[% END %] >+ <span>Receipt summary for <em>[% name | html %]</em></span> [% IF ( invoice ) %] <em> [ [% invoice | html %] ] </em>[% END %] > [% ELSE %] > <span>Receive orders from [% name | html %]</span> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt >index dd6206780f..7582f6d18b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt >@@ -7,7 +7,7 @@ > [% IF (server.servertype||type) == 'sru' %] > <span>SRU</span> > [% ELSIF (server.servertype||type) == 'zed' %] >- </span>Z39.50</span> >+ <span>Z39.50</span> > [% END %] > [% END %] > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt >index 8e71b9cc55..7a2860fe7f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt >@@ -87,7 +87,7 @@ > <td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates with_hours => 1 %]</td> > <td> > [% IF ( QUEUED_MESSAGE.failure_code ) %] >- [% IF ( QUEUED_MESSAGE.failure_code == "INVALID_BORNUMBER" ) %]<span><span>Invalid borrowernumber [% borrowernumber | html %]</span> >+ [% IF ( QUEUED_MESSAGE.failure_code == "INVALID_BORNUMBER" ) %]<span>Invalid borrowernumber [% borrowernumber | html %]</span> > [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_EMAIL' ) %]<span>Unable to find an email address for this borrower</span> > [% ELSIF (matches = QUEUED_MESSAGE.failure_code.match('INVALID_EMAIL:(\w+)') ) %]<span>Invalid [% matches.0 | html %] email address found [% borrowernumber | html %]</span> > [% ELSIF ( QUEUED_MESSAGE.failure_code == 'NO_FROM' ) %]<span>Missing from email address</span> >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 fcbe146f16..765e0fe3aa 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt >@@ -198,7 +198,7 @@ > <span>Pending</span> > [% SET status_found = 1 %] > [% ELSIF ( STATUS == 'ACCEPTED' ) %] >- <span>Accepted<span> >+ <span>Accepted</span> > [% SET status_found = 1 %] > [% ELSIF ( STATUS == 'CHECKED' ) %] > <span>Checked</span> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt >index 5d4ef858aa..36763d292a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt >@@ -86,7 +86,7 @@ > [% CASE 'error_on_update' %] > <span>An error occurred when updating this content. Perhaps it already exists</span> > [% CASE 'error_on_insert' %] >- <span>An error occurred when adding this content. Check the logs >+ <span>An error occurred when adding this content. Check the logs</span> > [% CASE 'error_on_delete' %] > <span>An error occurred when deleting this content. Check the logs</span> > [% CASE 'success_on_update' %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >index a3bf016bc8..98cba7e72b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >@@ -292,9 +292,9 @@ > <td> > [% FOREACH problem IN result.problems %] > [% IF problem.key == 'wrongplace' %] >- <span>Found in wrong place<span><br/> >+ <span>Found in wrong place</span><br/> > [% ELSIF problem.key == 'changestatus' %] >- <span>Unknown not-for-loan status<span><br/> >+ <span>Unknown not-for-loan status</span><br/> > [% ELSIF problem.key == 'not_scanned' %] > <span>Missing (not scanned)</span><br/> > [% ELSIF problem.key == 'checkedout' %] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/xslt-handler.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/xslt-handler.inc >index 42862057e9..bfe0f15138 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/xslt-handler.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/xslt-handler.inc >@@ -2,7 +2,7 @@ > [% CASE 'XSLTH_ERR_NO_FILE' %] > <span>No XSLT file passed.</span> > [% CASE 'XSLTH_ERR_FILE_NOT_FOUND' %] >- <span>XSLT file not found.</span></span> >+ <span>XSLT file not found.</span> > [% CASE 'XSLTH_ERR_LOADING' %] > <span>Error while loading stylesheet.</span> > [% CASE 'XSLTH_ERR_PARSING_CODE' %] >-- >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