validate: replace "<" and ">" by html entities

improve SuccessMessage.InitRunning
added a TODO for open translation issues
This commit is contained in:
lars 2005-10-02 17:15:39 +00:00
parent 0c9bd1dfd1
commit 78e07ec99e
5 changed files with 5 additions and 4 deletions

View file

@ -0,0 +1 @@
si: SuccessMessage.InitRunning contains only the first sentence

View file

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

View file

@ -157,7 +157,7 @@ Lang {
SuccessMessage { SuccessMessage {
InitRunning { InitRunning {
Title = Initialization running 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 { ConfigSaved {

View file

@ -37,7 +37,7 @@ Lang {
DoMount = Aktivacija kriptiranega datotečnega sistema DoMount = Aktivacija kriptiranega datotečnega sistema
Configuration = Konfiguracija Configuration = Konfiguracija
CryptoIsActive = Kriptirani podatki so dostopni. 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.
} }

View file

@ -26,7 +26,7 @@ function do_single()
then sed "1,/CBOX-STATUS-begin/d; /CBOX-STATUS-end/,\$d" "${2}/${TESTNAME}.html" >"${2}/${TESTNAME}.status" 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 diff option "-B" is required, because the status output of
# the cryptobox.pl script contains some blank lines # 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/</\&lt;/g; s/>/\&gt;/g' >"${2}/${TESTNAME}.diff" || true
rm "${2}/${TESTNAME}.status" rm "${2}/${TESTNAME}.status"
fi fi
cp "$1/description" "${2}/${TESTNAME}.desc" cp "$1/description" "${2}/${TESTNAME}.desc"