From b044ad80a98edb3de509addcea015a08ee47ec1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Mon, 23 May 2016 11:20:10 +0200 Subject: [PATCH] Bug 16563: Translatability: Issues in opac-account.tt (sentence splitting) This patch removes splitting by -tags from 2 sentences. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt index 4be46b7..c5951df 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt @@ -34,10 +34,10 @@ [% IF message == 'valid_payment' %]

Your payment of $[% message_value %] has been processed successfully!

[% ELSIF message == 'duplicate_payment' %] -

A payment with the transaction id [% message_value %] has already been posted to an account.

+

A payment with the transaction id '[% message_value %]' has already been posted to an account.

Please contact a librarian for details.

[% ELSIF message == 'invalid_payment' %] -

The transaction id [% message_value %] for this payment is invalid.

+

The transaction id '[% message_value %]' for this payment is invalid.

Please contact a librarian for details.

[% END %] -- 1.7.10.4