[Gpg4win-commits] [git] Gpg4win - branch, master, updated. gpg4win-2.1.0-174-g847f120
by Andre Heinecke
cvs at cvs.gnupg.org
Fri May 10 18:21:23 CEST 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG for Windows".
The branch, master has been updated
via 847f1203895c94f75a5a563058ccaf1175af273a (commit)
from 85b5709242b49bf90eb7c251d01cc1614d346941 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 847f1203895c94f75a5a563058ccaf1175af273a
Author: Andre Heinecke <aheinecke at intevation.de>
Date: Fri May 10 16:02:21 2013 +0000
Fix language setting for non germans
Kleopatra is in en_US if it is not in german.
* src/inst-kleopatra.nsi: Fix langauge configuration
--
$LANGUAGE contains a number for example 1033 for english
so this can't be used as kde language configuration
diff --git a/src/inst-kleopatra.nsi b/src/inst-kleopatra.nsi
index fea2979..c126d97 100644
--- a/src/inst-kleopatra.nsi
+++ b/src/inst-kleopatra.nsi
@@ -423,7 +423,7 @@ ${MementoSection} "Kleopatra" SEC_kleopatra
FileWrite $1 '[Locale] $\r$\n'
StrCmp $LANGUAGE "1031" german_locale 0
FileWrite $1 'Country=en $\r$\n'
- FileWrite $1 'Language=$LANGUAGE $\r$\n'
+ FileWrite $1 'Language=en_US $\r$\n'
Goto kdeglobals_done
german_locale:
FileWrite $1 'Country=de $\r$\n'
-----------------------------------------------------------------------
Summary of changes:
src/inst-kleopatra.nsi | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
GnuPG for Windows
http://git.gnupg.org
More information about the Gpg4win-commits
mailing list