| 1 |
figdor32 |
2 |
using System; |
| 2 |
|
|
using System.Collections.Generic; |
| 3 |
|
|
using System.Linq; |
| 4 |
|
|
using System.Text; |
| 5 |
|
|
using System.Threading.Tasks; |
| 6 |
|
|
|
| 7 |
|
|
namespace TELTest { |
| 8 |
|
|
internal static class Localization { |
| 9 |
|
|
public static Dictionary<string, string> UI = new Dictionary<string, string>() { |
| 10 |
|
|
{"SAVESCORE", "Czy chcesz zapisac wynik online?\r\n[Wpisz swoj nick i wcisnij ENTER, lub nic i ENTER aby pominac]" }, |
| 11 |
|
|
{"ANYKEYCONTINUE", "Nacisnij klawisz aby kontynuowac..." }, |
| 12 |
|
|
{"ANYKEYEXIT", "Any key to exit..." }, |
| 13 |
|
|
{"SELECTGAME", "Wybierz tryb gry/akcje:" } |
| 14 |
|
|
}; |
| 15 |
|
|
/* |
| 16 |
|
|
{"SAVESCORE", "Would you like to save your score on the online scoreboard?\r\n[Enter nick and enter, or empty and enter to skip]" }, |
| 17 |
|
|
{"ANYKEYCONTINUE", "Any key to continue..." }, |
| 18 |
|
|
{"ANYKEYEXIT", "Any key to exit..." }, |
| 19 |
|
|
{"SELECTGAME", "Please select a gamemode:" } |
| 20 |
|
|
*/ |
| 21 |
|
|
} |
| 22 |
|
|
} |