[Koha-patches] [PATCH] [SIGNED-OFF]Bug 4497: Make tabs for managing suggestions translatable

Owen Leonard oleonard at myacpl.org
Mon Jul 18 14:40:56 CEST 2011


From: Katrin Fischer <Katrin.Fischer.83 at web.de>

This patch makes the tabs on the manage suggestion page translatable.

To test:
- Create some suggestions in intranet or opac and manage them to make the
different status tabs appear: accecpted, pending, checked, rejected
- Apply patch, run 'perl translate update <languagecode>'
- Check po file for string '%s %sPending %sAccepted %sChecked %sRejected %sAvailable %sOrdered%s %s%s %sNo name%s (%s)'
- Translate it, save and run 'perl translate install <languagecode>'

Tabs should now appear translated.

Signed-off-by: Owen Leonard <oleonard at myacpl.org>
---
 .../prog/en/modules/suggestion/suggestion.tt       |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

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 8bcf5cb..38d784f 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt
@@ -204,7 +204,15 @@ $(document).ready(function() { calcNewsuggTotal(); });
 <div id="suggestiontabs" class="toptabs">
 <ul class="ui-tabs-nav">
 [% FOREACH suggestion IN suggestions %]
-[% IF ( suggestion.first ) %]<li class="ui-tabs-selected">[% ELSE %]<li>[% END %]<a href="suggestion.pl#[% suggestion.suggestiontype %]">[% IF ( suggestion.suggestiontypelabel ) %][% suggestion.suggestiontypelabel %][% ELSE %]No name[% END %] ([% suggestion.suggestionscount %])</a></li>
+[% IF ( suggestion.first ) %]<li class="ui-tabs-selected">[% ELSE %]<li>[% END %]<a href="suggestion.pl#[% suggestion.suggestiontype %]">[% IF ( suggestion.suggestiontypelabel ) %]
+    [% IF (suggestion.suggestiontypelabel == "Pending") %]Pending
+    [% ELSIF (suggestion.suggestiontypelabel == "Accepted") %]Accepted
+    [% ELSIF (suggestion.suggestiontypelabel == "Checked") %]Checked
+    [% ELSIF (suggestion.suggestiontypelabel == "Rejected") %]Rejected
+    [% ELSIF (suggestion.suggestiontypelabel == "Available") %]Available
+    [% ELSIF (suggestion.suggestiontypelabel == "Ordered") %]Ordered[% ELSE %]
+    [% suggestion.suggestiontypelabel %][% END %]
+    [% ELSE %]No name[% END %] ([% suggestion.suggestionscount %])</a></li>
 [% END %]
     </ul>
     </div>
-- 
1.7.3



More information about the Koha-patches mailing list