summaryrefslogtreecommitdiff
path: root/tools/Langpack Suite/Form1.cs
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-01-17 12:07:27 +0000
committerRobert Pösel <robyer@seznam.cz>2013-01-17 12:07:27 +0000
commit4e65d84411d125552395e434922221bf52932a56 (patch)
tree6cd831a7698b47724013c9fdc035ec434fccd2cb /tools/Langpack Suite/Form1.cs
parent419cb6f99f77e70f428c660506dc12ea005d3546 (diff)
Langpack Suite: Added czech translation
git-svn-id: http://svn.miranda-ng.org/main/trunk@3132 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools/Langpack Suite/Form1.cs')
-rw-r--r--tools/Langpack Suite/Form1.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/Langpack Suite/Form1.cs b/tools/Langpack Suite/Form1.cs
index a70fb0608b..8c39d08a27 100644
--- a/tools/Langpack Suite/Form1.cs
+++ b/tools/Langpack Suite/Form1.cs
@@ -110,6 +110,10 @@ namespace Langpack_Suite
{
LanguageComboBox.SelectedIndex = 4;
}
+ else if (culture.ToString() == "cs-CZ")
+ {
+ LanguageComboBox.SelectedIndex = 5;
+ }
else
{
culture = CultureInfo.CreateSpecificCulture("en-US");
@@ -826,6 +830,8 @@ namespace Langpack_Suite
culture = CultureInfo.CreateSpecificCulture("be-BY");
if (LanguageComboBox.SelectedIndex == 4)
culture = CultureInfo.CreateSpecificCulture("de-DE");
+ if (LanguageComboBox.SelectedIndex == 5)
+ culture = CultureInfo.CreateSpecificCulture("cs-CZ");
adjustCulture();
}