source: trunk/root/templates/includes/locale_select.tt @ 453

Last change on this file since 453 was 453, checked in by nanardon, 14 years ago
  • Dutch translation
  • Property svn:keywords set to Id
File size: 375 bytes
RevLine 
[321]1<!-- $Id$ -->
[446]2<form action="[% c.uri_for('/', c.req.path) %]" method="POST">
[445]3
[453]4[% langs = [ 'fr', 'de', 'it', 'nl' ] %]
[434]5<select name="[% varname || 'locale' %]">
[321]6    <option>C</option>
[340]7[% FOREACH lang = langs.sort %]
[321]8    <option[% " selected" IF locale == lang %]>[% lang | html %]</option>
9[% END %]
10</select>
[446]11<input type="submit" value="[% l('Change language') %]">
12</form>
Note: See TracBrowser for help on using the repository browser.