Skip to content

Commit

Permalink
Update App.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
tenshi64 authored Mar 12, 2024
1 parent 186994f commit 50d2fc3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
Expand Down Expand Up @@ -79,7 +79,7 @@ private void ChangeLanguageInFile()
{
int numLines = File.ReadLines(ApplicationLanguageData + "lang.ini").Count();
string[] lang = File.ReadAllLines(ApplicationLanguageData + "lang.ini");
string[] words = new string[] { "en", "pl", "ru", "du", "fr", "jp", "ch", "tu", "esp", "it" };
string[] words = new string[] { "en", "pl", "ru", "de", "fr", "jp", "ch", "tu", "esp", "it" };

bool found = false;
string word = "";
Expand All @@ -102,7 +102,7 @@ private void ChangeLanguageInFile()
case "ru":
word = "русский";
break;
case "du":
case "de":
word = "Deutsch";
break;
case "fr":
Expand Down

0 comments on commit 50d2fc3

Please sign in to comment.