cryptonas/plugins/language_selection/language_selection.cs

26 lines
829 B
C#
Raw Normal View History

2006-11-06 17:05:00 +01:00
<?cs # $Id$ ?>
<?cs call:handle_messages() ?>
<fieldset>
<legend>
<?cs call:show_plugin_icon() ?>
<?cs var:html_escape(Lang.Plugins.language_selection.Title.Lang) ?>
</legend>
<?cs call:show_help(Lang.Plugins.language_selection.Help.Select) ?>
2007-01-29 00:29:08 +01:00
<ul class="lang">
2006-11-06 17:05:00 +01:00
<?cs loop:index = #0, subcount(Data.Languages)-1, #1 ?>
<li><a href="<?cs
2006-12-08 01:49:32 +01:00
call:link("language_selection", 'weblang', Data.Languages[index].name, '','') ?>" title="<?cs
2006-11-09 19:19:17 +01:00
var:html_escape(Data.Languages[index].link) ?>" ><?cs
var:html_escape(Data.Languages[index].link) ?></a>
<?cs if:Settings.Language == Data.Languages[index].name ?>
&nbsp;<img src="icons/language_selection?image=list_marker_tango.gif"
alt="symbol: current language" style="vertical-align:middle" />
<?cs /if ?>
</li><?cs /loop ?>
2006-11-06 17:05:00 +01:00
</ul>
2007-01-29 00:29:08 +01:00
</fieldset>