From 2c350207c951c6f05576fd3b2917c3d4551084de Mon Sep 17 00:00:00 2001 From: lars Date: Fri, 3 Nov 2006 14:27:11 +0000 Subject: [PATCH] added some informations about language files added warnings for non-ssl and readonly-config --- pythonrewrite/lang/en.hdf | 23 +++++++++++++++---- pythonrewrite/lang/language_specification.txt | 16 +++++++++++++ 2 files changed, 34 insertions(+), 5 deletions(-) create mode 100644 pythonrewrite/lang/language_specification.txt diff --git a/pythonrewrite/lang/en.hdf b/pythonrewrite/lang/en.hdf index 142583a..0da1457 100644 --- a/pythonrewrite/lang/en.hdf +++ b/pythonrewrite/lang/en.hdf @@ -119,6 +119,24 @@ WarningMessage { Title = The container is mounted Text = This action is not available while the container is active. Please turn it off first. } + + ReadOnlyConfig { + Title = Settings can not be stored + Text = If you want to store your settings permanently, then you should create a configuration partition. Go to "Preferences -> Disk Partitioning" in order to do this. + Link { + Text = Create configuration partition + Link = BASE_LINK/plugins/partition + } + } + + NoSSL { + Title = Unencrypted connection + Text = You should use https instead of http to connect to the CryptoBox. Otherwise your passwords are open to other users of your network. + Link { + Text = Use encrypted connection + Link = https://CURRENT_LINK + } + } } @@ -152,11 +170,6 @@ ErrorMessage { Text = You have requested an undefined action. } - NoSSL { - Title = Unencrypted connection - Text = The CryptoBox only accepts encrypted connections (https), so the password is safe from curious eyes. The encrypted connection will be established in a few seconds. - } - InitFailed { Title = Initialization failed Text = Please send the logfiles (see above) to the developers of the CryptoBox (cryptobox@systemausfall.org). diff --git a/pythonrewrite/lang/language_specification.txt b/pythonrewrite/lang/language_specification.txt new file mode 100644 index 0000000..4221152 --- /dev/null +++ b/pythonrewrite/lang/language_specification.txt @@ -0,0 +1,16 @@ +Some important notes regarding the language files: + +1) language file informations + +The toplevel attribute "Name" is mandatory and should represent the local name of +the language (e.g.: english, deutsch, francais, ...). + + +2) warning/success messages + +Attributes: + Title - title of the message + Text - text of the message + Link.Text - (optional) textual representation of a link + Lint.Link - (optional) href of a link +