diff --git a/templates/web/edugain/select_sp.tt2.html b/templates/web/edugain/select_sp.tt2.html index 49a16a3bdb12effc9563f8f4c6a6c7d1d33c70f9..ef07dffef6e7004f75b007c8731f5d85196ff39e 100644 --- a/templates/web/edugain/select_sp.tt2.html +++ b/templates/web/edugain/select_sp.tt2.html @@ -17,7 +17,7 @@ [% FOREACH group IN groups() %] <fieldset> - <legend>[% group.label %]</legend> + <legend>[% lh.localize(group.label) %]</legend> [% SWITCH group.type %] [% CASE 'list' %] <select id="[% group.id %]" name="[% group.id %]"> @@ -27,7 +27,7 @@ [% END %] </select> [% CASE 'link' %] - <a class="button" href="[% group.url %]">[% group.label %]</a> + <a class="button" href="[% group.url %]">[% lh.localize(group.message) %]</a> [% END %] </fieldset> [% END %] diff --git a/templates/web/renater/select_sp.tt2.html b/templates/web/renater/select_sp.tt2.html index b1226edadc25f69c43d4124abadb4cd61b8696d4..2ea753adb3de1e2cb4cfc66d5e98fc6bb6511429 100644 --- a/templates/web/renater/select_sp.tt2.html +++ b/templates/web/renater/select_sp.tt2.html @@ -17,7 +17,7 @@ [% FOREACH group IN groups %] <fieldset> - <legend>[% group.label %]</legend> + <legend>[% lh.maketext(group.label) %]</legend> [% SWITCH group.type %] [% CASE 'list' %] <select id="[% group.id %]" name="[% group.id %]"> @@ -27,7 +27,7 @@ [% END %] </select> [% CASE 'link' %] - <a class="button" href="[% group.url %]">[% group.message %]</a> + <a class="button" href="[% group.url %]">[% lh.maketext(group.message) %]</a> [% END %] </fieldset> [% END %]