diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-27 17:27:22 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-27 17:27:22 +0000 |
commit | 4f30d660080e406809386fbd9c9cf89b567b8360 (patch) | |
tree | 4d26af33f41db33c8be0d1354ffcc0b19bd8e472 /tools/Langpack Suite/Form1.cs | |
parent | cf42e27a55d6a8ed61df7fc82493d1b92ada9e20 (diff) |
dbtool.txt check is removed from langpack generator tool
git-svn-id: http://svn.miranda-ng.org/main/trunk@1215 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools/Langpack Suite/Form1.cs')
-rw-r--r-- | tools/Langpack Suite/Form1.cs | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/tools/Langpack Suite/Form1.cs b/tools/Langpack Suite/Form1.cs index 2a2aa17e69..99c9979c42 100644 --- a/tools/Langpack Suite/Form1.cs +++ b/tools/Langpack Suite/Form1.cs @@ -295,25 +295,6 @@ namespace Langpack_Suite }
LangPack.WriteLine("");
- if (File.Exists(FolderName + "\\=dbtool=.txt"))
- {
- ReadFile = new StreamReader(FolderName + "\\=dbtool=.txt");
- while ((s = ReadFile.ReadLine()) != null)
- {
- LangPack.WriteLine(s);
- }
- ReadFile.Close();
- }
- else
- {
- LocaleText = rm.GetString("DbtoolNotFound", culture);
- InfMessageLangBox.Text = InfMessageLangBox.Text + LocaleText + "\r\n";
- LocaleText = rm.GetString("GenStop", culture);
- InfMessageLangBox.Text = InfMessageLangBox.Text + LocaleText;
- return;
- }
-
- LangPack.WriteLine("");
if (File.Exists(FolderName + "\\=DUPES=.txt"))
{
ReadFile = new StreamReader(FolderName + "\\=DUPES=.txt");
@@ -498,25 +479,6 @@ namespace Langpack_Suite }
LangPack.WriteLine("");
- if (File.Exists(FolderName + "\\=dbtool=.txt"))
- {
- ReadFile = new StreamReader(FolderName + "\\=dbtool=.txt");
- while ((s = ReadFile.ReadLine()) != null)
- {
- LangPack.WriteLine(s);
- }
- ReadFile.Close();
- }
- else
- {
- LocaleText = rm.GetString("DbtoolNotFound", culture);
- InfMessageLangBox.Text = InfMessageLangBox.Text + LocaleText + "\r\n";
- LocaleText = rm.GetString("GenStop", culture);
- InfMessageLangBox.Text = InfMessageLangBox.Text + LocaleText;
- return;
- }
-
- LangPack.WriteLine("");
if (File.Exists(FolderName + "\\=DUPES=.txt"))
{
ReadFile = new StreamReader(FolderName + "\\=DUPES=.txt");
|