diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-12 11:43:00 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-01-12 11:43:00 +0000 |
commit | 6dcdacb2973363639a5c1358ac18356d0aa66994 (patch) | |
tree | 1872a83c2b3519cb6ef35bcf03b3cc52324c29b6 /tools/Langpack Suite/Form1.cs | |
parent | 4c62623259f76dc84b98a89c429b585ce48fa92e (diff) |
added german interface language
git-svn-id: http://svn.miranda-ng.org/main/trunk@3066 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools/Langpack Suite/Form1.cs')
-rw-r--r-- | tools/Langpack Suite/Form1.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/Langpack Suite/Form1.cs b/tools/Langpack Suite/Form1.cs index f37ffac809..653762a47f 100644 --- a/tools/Langpack Suite/Form1.cs +++ b/tools/Langpack Suite/Form1.cs @@ -106,6 +106,10 @@ namespace Langpack_Suite {
LanguageComboBox.SelectedIndex = 3;
}
+ else if (culture.ToString() == "de-DE")
+ {
+ LanguageComboBox.SelectedIndex = 4;
+ }
else
{
culture = CultureInfo.CreateSpecificCulture("en-US");
@@ -815,6 +819,8 @@ namespace Langpack_Suite culture = CultureInfo.CreateSpecificCulture("uk-UA");
if (LanguageComboBox.SelectedIndex == 3)
culture = CultureInfo.CreateSpecificCulture("be-BY");
+ if (LanguageComboBox.SelectedIndex == 4)
+ culture = CultureInfo.CreateSpecificCulture("de-DE");
adjustCulture();
}
|