ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/Qzhteln/trunk/TELTest/Localization.cs
Revision: 2
Committed: Wed Feb 11 13:07:01 2026 UTC (8 weeks, 4 days ago) by figdor32
File size: 954 byte(s)
Log Message:
Initial check-in

File Contents

# Content
1 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 }