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
Line 
1<!-- $Id$ -->
2<form action="[% c.uri_for('/', c.req.path) %]" method="POST">
3
4[% langs = [ 'fr', 'de', 'it', 'nl' ] %]
5<select name="[% varname || 'locale' %]">
6    <option>C</option>
7[% FOREACH lang = langs.sort %]
8    <option[% " selected" IF locale == lang %]>[% lang | html %]</option>
9[% END %]
10</select>
11<input type="submit" value="[% l('Change language') %]">
12</form>
Note: See TracBrowser for help on using the repository browser.