Bug 4497: Make tabs for managing suggestions translatable
authorKatrin Fischer <Katrin.Fischer.83@web.de>
Sun, 17 Jul 2011 18:53:29 +0000 (20:53 +0200)
committerChris Cormack <chrisc@catalyst.net.nz>
Mon, 1 Aug 2011 01:12:01 +0000 (13:12 +1200)
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@myacpl.org>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt

index 8bcf5cb..38d784f 100644 (file)
@@ -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>