From 07e69aa97a7ef4089b8e61510ae3fd9b52583f8c Mon Sep 17 00:00:00 2001
From: Katrin Fischer <Katrin.Fischer.83@web.de>
Date: Tue, 17 Mar 2015 23:31:00 +0100
Subject: [PATCH] Bug 13856: Hard to translate strings on patron search results
page
'Add selected patrons to:' at the top of the patron search result
table is hard to translate correctly, because the 'to:' appears
as a separate string from the rest of the sentence.
To test:
- Make sure patron lists are activated
- Do a patron search with more than 1 result
- Look for the text at the top of the search results table
- Verify it looks the same before and after the patch
Bonus:
- run perl translate update <langcode> and verify the
2 strings are now 1 string with the patch applied
---
koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt
index ea90bfd..d481c60 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt
@@ -336,8 +336,7 @@ function filterByFirstLetterSurname(letter) {
<a href="javascript:void(0)" onclick="$('.selection').prop('checked', false)">Clear all</a>
|
<span>
- Add selected patrons
- <label for="add_to_patron_list">to:</label>
+ <label for="add_to_patron_list">Add selected patrons to:</label>
<select id="add_to_patron_list" name="add_to_patron_list">
<option value=""></option>
[% IF patron_lists %]
--
1.9.1