[Koha-bugs] [Bug 30733] Simplify translatable strings

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Jun 16 18:34:56 CEST 2022


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30733

Paul Derscheid <paul.derscheid at lmscloud.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |paul.derscheid at lmscloud.de

--- Comment #99 from Paul Derscheid <paul.derscheid at lmscloud.de> ---
I this intended?
---

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt
b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt
index 6af47706d0..a39f377914 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt
@@ -38,7 +38,7 @@ Your cart

             <p>
             [% IF ( BIBLIO_RESULT.HASAUTHORS ) %]
-            <span>Author(s): [% IF ( BIBLIO_RESULT.author ) %][%
BIBLIO_RESULT.author | $raw %][% END %]
+            <span><span>Author(s):</span> [% IF ( BIBLIO_RESULT.author ) %][%
BIBLIO_RESULT.author | $raw %][% END %]

             [% IF ( BIBLIO_RESULT.MARCAUTHORS ) %]
                 [% IF ( BIBLIO_RESULT.author ) %]; [% END %]

---

I think there's something wrong here..

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 905fd07bd3..917a7ef246 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt
@@ -516,14 +516,15 @@ Note that permanent location is a code, and location may
be an authval.

                         [% IF item.recalled %]
                             [% IF item.recall.waiting_date %]
-                                Waiting at [% Branches.GetName(
item.recall.pickup_library_id ) | html %] since [% item.recall.waiting_date |
$KohaDates %]
+                                <span>Waiting at [% Branches.GetName(
item.recall.pickup_library_id ) | html %] since [% item.recall.waiting_date |
$KohaDates %]</span>
                             [% ELSE %]
-                                Item recalled by <a
href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[%
item.recall.patron_id | uri %]">[% item.recall.patron.firstname | html %] [%
item.recall.patron.surname | html %] ([% item.recall.patron.cardnumber | html
%])</a> on [% item.recall.created_date | $KohaDates %]                          
+                                [% patron_link = BLOCK %]<a
href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[%
item.recall.patron_id | uri %]">[% item.recall.patron.firstname | html %] [%
item.recall.patron.surname | html %] ([% item.recall.patron.cardnumber | html
%])</a>[% END %]                                                        
+                                <span>Item recalled by [% patron_link| $raw %]
on [% item.recall.created_date | $KohaDates %]</span>
                             [% END %]
                         [% END %]

---

diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt
b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt
index 8953297ab7..445ec01a03 100644
--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt
+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-tags.tt

@@ -127,7 +127,7 @@
                                 <div class="dialog message">[% added_count |
html %] [% IF ( added_count == 1 ) %]tag[% ELSE %]tags[% END %] successfully
added.</div>
                             [% END %]
                             [% IF ( deleted_count ) %]
-                            <div class="dialog message">[% deleted_count |
html %] [% IF ( deleted_count == 1 ) %]tag[% ELSE %]tags[% END %] successfully
deleted.</div>
+                                <div class="dialog message">[% deleted_count |
html %] [% IF ( deleted_count == 1 ) %]tag[% ELSE %]tags[% END %] successfully
deleted.</div>
                             [% END %]
                         [% END # /add_op %]

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list