validate: replace "<" and ">" by html entities
improve SuccessMessage.InitRunning added a TODO for open translation issues
This commit is contained in:
parent
0c9bd1dfd1
commit
78e07ec99e
5 changed files with 5 additions and 4 deletions
1
cbox-tree.d/usr/share/cryptobox/lang/TODO
Normal file
1
cbox-tree.d/usr/share/cryptobox/lang/TODO
Normal file
|
@ -0,0 +1 @@
|
|||
si: SuccessMessage.InitRunning contains only the first sentence
|
|
@ -157,7 +157,7 @@ Lang {
|
|||
SuccessMessage {
|
||||
InitRunning {
|
||||
Title = Initialisierung läuft
|
||||
Text = Die Initialisierung der CryptoBox wird im Hintergrund abgeschlossen.
|
||||
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.
|
||||
}
|
||||
|
||||
ConfigSaved {
|
||||
|
|
|
@ -157,7 +157,7 @@ Lang {
|
|||
SuccessMessage {
|
||||
InitRunning {
|
||||
Title = Initialization running
|
||||
Text = The initialization will be completed in background.
|
||||
Text = The initialization will be completed in background. You may configure it now. The encrypted filesystem can be activated in a few minutes.
|
||||
}
|
||||
|
||||
ConfigSaved {
|
||||
|
|
|
@ -37,7 +37,7 @@ Lang {
|
|||
DoMount = Aktivacija kriptiranega datotečnega sistema
|
||||
Configuration = Konfiguracija
|
||||
CryptoIsActive = Kriptirani podatki so dostopni.
|
||||
CryptoIsDown = Kriptirani podatki soso za èiteni pred kakr nimkoli dostopom.
|
||||
CryptoIsDown = Kriptirani podatki soso zaèiteni pred kakr nimkoli dostopom.
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ function do_single()
|
|||
then sed "1,/CBOX-STATUS-begin/d; /CBOX-STATUS-end/,\$d" "${2}/${TESTNAME}.html" >"${2}/${TESTNAME}.status"
|
||||
# the diff option "-B" is required, because the status output of
|
||||
# the cryptobox.pl script contains some blank lines
|
||||
cat "$1/output" | substitute_constants | diff -NB - "${2}/${TESTNAME}.status" >"${2}/${TESTNAME}.diff" || true
|
||||
cat "$1/output" | substitute_constants | diff -NB - "${2}/${TESTNAME}.status" | sed 's/</\</g; s/>/\>/g' >"${2}/${TESTNAME}.diff" || true
|
||||
rm "${2}/${TESTNAME}.status"
|
||||
fi
|
||||
cp "$1/description" "${2}/${TESTNAME}.desc"
|
||||
|
|
Loading…
Reference in a new issue