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
18 lines
829 B
C#
18 lines
829 B
C#
<?cs # $Id$ ?>
|
|
|
|
<h3><?cs var:html_escape(Lang.Plugins.volume_rename.Title.ChangeVolumeName) ?></h3>
|
|
|
|
<?cs call:handle_messages() ?>
|
|
|
|
<?cs if:Data.CurrentDisk.active ?>
|
|
<?cs call:hint("Plugins.volume_rename.NoRenameIfActive") ?>
|
|
<?cs else ?>
|
|
<p><?cs call:print_form_header("set_name", "volume_rename") ?>
|
|
<label for="vol_name"><?cs var:html_escape(Lang.Text.ContainerName) ?>: </label>
|
|
<input type="text" name="vol_name" tabindex="10" size="15" id="vol_name" value="<?cs var:html_escape(Data.CurrentDisk.name) ?>" />
|
|
<input type="hidden" name="device" value="<?cs var:html_escape(Data.CurrentDisk.device) ?>" />
|
|
<input type="hidden" name="store" value="set_name" />
|
|
<button type="submit" tabindex="11"><?cs var:html_escape(Lang.Plugins.volume_rename.Button.ContainerNameSet) ?></button>
|
|
</form></p>
|
|
<?cs /if ?>
|
|
|