cryptonas/plugins/language_selection/language_selection.cs
lars 108acd0e8a 'log' plugin: show warning if no log file is used
moved log file reading from cryptobox/core/main to 'log' plugin
added unittests for volume_mount, volume_format_fs and volume_rename
replace "get help" links with a "help mode" displaying information for every form
added first drafts of help texts for volume_mount, volume_format and partition
replaced the word 'container' with 'volume' in english texts
2006-12-12 13:34:05 +00:00

23 lines
772 B
C#

<?cs # $Id$ ?>
<h1><?cs var:html_escape(Lang.Plugins.language_selection.Title.Language) ?></h1>
<?cs call:handle_messages() ?>
<?cs call:show_help(Lang.Plugins.language_selection.Help.Select) ?>
<div id="lang">
<ul>
<?cs loop:index = #0, subcount(Data.Languages)-1, #1 ?>
<li><a href="<?cs
call:link("language_selection", 'weblang', Data.Languages[index].name, '','') ?>" title="<?cs
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 ?>
</ul>
</div>