minor language improvements

action 'mount_do' now displays 'empty' instead of 'status'
This commit is contained in:
lars 2005-10-03 00:53:37 +00:00
parent 42168e04f3
commit 11bc71a35f
4 changed files with 6 additions and 6 deletions

View File

@ -24,7 +24,7 @@ function log_msg()
# the log file is not writable during boot - try before writing ...
[ -w "$LOG_FILE" ] || return 0
echo >>"$LOG_FILE"
echo "######## `date` ########" >>"$LOG_FILE"
echo "##### `date` #####" >>"$LOG_FILE"
echo "$1" >>"$LOG_FILE"
}

View File

@ -157,7 +157,7 @@ Lang {
SuccessMessage {
InitRunning {
Title = Initialisierung läuft
Text = Die Initialisierung der CryptoBox wird im Hintergrund abgeschlossen. Sie können die CryptoBox nun konfigurieren. Das verschlüsselte Dateisystem kann in ein paar Minuten aktiviert werden.
Text = Die Initialisierung der CryptoBox wird im Hintergrund abgeschlossen. Sie können die CryptoBox nun konfigurieren. Sie können das verschlüsselte Dateisystem in ein paar Minuten aktivieren.
}
ConfigSaved {

View File

@ -149,7 +149,7 @@ Lang {
IPAddressChanged {
Title = Change of network address
Text = The network address has been changed. In a few seconds you will be redirected to the new address.
Text = The network address has been changed. In a few seconds you will get redirected to the new address.
}
}
@ -157,7 +157,7 @@ Lang {
SuccessMessage {
InitRunning {
Title = Initialization running
Text = The initialization will be completed in background. You may configure it now. The encrypted filesystem can be activated in a few minutes.
Text = The initialization will be completed in background. You may configure it now. You may activate the encrypted filesystem in a few minutes.
}
ConfigSaved {

View File

@ -325,9 +325,9 @@ if ( ! &check_ssl()) {
$pagedata->setValue('Data.Action', 'umount_form');
} else {
$pagedata->setValue('Data.Success', 'UmountDone');
$pagedata->setValue('Data.Action', 'status');
$pagedata->setValue('Data.Action', 'empty');
$pagedata->setValue('Data.Redirect.Action', 'status');
$pagedata->setValue('Data.Redirect.Delay', "60");
$pagedata->setValue('Data.Redirect.Delay', "30");
}
}
################ mount_do ########################