Skip to content

Commit

Permalink
Update Events.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
tenshi64 authored Mar 12, 2024
1 parent 7216e67 commit 186994f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Events.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 @@ -589,7 +589,7 @@ 한국어 ko
switch (cbInGameLangauge.SelectedItem.ToString())
{
case "Deutsch":
word = "du";
word = "de";
break;
case "English":
word = "en";
Expand Down Expand Up @@ -655,7 +655,7 @@ private void cbLanguage_SelectedIndexChanged(object sender, EventArgs e)
word = "ru";
break;
case "Deutsch":
word = "du";
word = "de";
break;
case "Français":
word = "fr";
Expand All @@ -680,7 +680,7 @@ private void cbLanguage_SelectedIndexChanged(object sender, EventArgs e)
string file = File.ReadAllText(ApplicationLanguageData + "lang.ini");
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" };

for (int a = 0; a < numLines; a++)
{
Expand Down

0 comments on commit 186994f

Please sign in to comment.