From: Katrin Fischer <[email protected]> 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 <[email protected]> --- .../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 _______________________________________________ Koha-patches mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
