2021-11-01 21:24:14 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace TJAPlayer3
|
2021-10-24 09:20:14 +02:00
|
|
|
|
{
|
|
|
|
|
internal class CLang_en : ILang
|
|
|
|
|
{
|
2021-10-24 13:50:33 +02:00
|
|
|
|
string ILang.GetString(int idx)
|
2021-10-24 09:20:14 +02:00
|
|
|
|
{
|
2021-10-24 13:50:33 +02:00
|
|
|
|
if (!dictionnary.ContainsKey(idx))
|
2021-11-01 21:24:14 +01:00
|
|
|
|
return "[!] Index not found in dictionary";
|
2021-10-24 13:50:33 +02:00
|
|
|
|
|
|
|
|
|
return dictionnary[idx];
|
2021-10-24 09:20:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-24 13:50:33 +02:00
|
|
|
|
|
|
|
|
|
private static readonly Dictionary<int, string> dictionnary = new Dictionary<int, string>
|
2021-10-24 09:20:14 +02:00
|
|
|
|
{
|
2021-10-24 13:50:33 +02:00
|
|
|
|
[0] = "Change the displayed language\ningame and within the menus.",
|
|
|
|
|
[1] = "System language",
|
|
|
|
|
[2] = "<< Return to Menu",
|
|
|
|
|
[3] = "Return to left menu.",
|
|
|
|
|
[4] = "Reload song data",
|
|
|
|
|
[5] = "Retrieve and update the song list.",
|
2021-10-25 11:48:37 +02:00
|
|
|
|
[6] = "Player count",
|
2021-11-01 21:24:14 +01:00
|
|
|
|
[7] = "Change the ingame player countF\nSetting it to 2 makes able to play\nregular charts at 2 players by splitting \nthe screen in half.",
|
2021-10-25 11:48:37 +02:00
|
|
|
|
[8] = "Risky",
|
2021-11-01 21:24:14 +01:00
|
|
|
|
[9] = "Risky mode:\nSet it over 1, in case you'd like to specify\n the number of Poor/Miss times to be\n FAILED.\nSet 0 to disable Risky mode.",
|
2021-10-25 11:48:37 +02:00
|
|
|
|
[10] = "Song speed",
|
|
|
|
|
[11] = "It changes the song speed.\n" +
|
|
|
|
|
"For example, you can play in half\n" +
|
|
|
|
|
" speed by setting PlaySpeed = 0.500\n" +
|
|
|
|
|
" for your practice.\n" +
|
|
|
|
|
"\n" +
|
|
|
|
|
"Note: It also changes the songs' pitch.\n" +
|
2021-11-04 04:34:24 +01:00
|
|
|
|
"In case TimeStretch=ON, some audio\n" +
|
|
|
|
|
"lag occurs if slower than x0.900.",
|
2021-10-25 23:58:47 +02:00
|
|
|
|
[16] = "Layout type",
|
2021-11-04 04:34:24 +01:00
|
|
|
|
[17] = "You can change the layout of the songs \ndisplayed on the song select screen.\n" +
|
2021-10-25 23:58:47 +02:00
|
|
|
|
"0 : Regular (Up to down diagonal)\n" +
|
|
|
|
|
"1 : Vertical\n" +
|
|
|
|
|
"2 : Down to up diagonal\n" +
|
|
|
|
|
"3 : Half-circle facing right\n" +
|
|
|
|
|
"4 : Half-circle facing left",
|
2021-10-26 18:22:21 +02:00
|
|
|
|
|
2021-11-03 03:37:01 +01:00
|
|
|
|
[100] = "Taiko Mode",
|
2021-11-04 04:34:24 +01:00
|
|
|
|
[101] = "Dan-i Dojo",
|
|
|
|
|
[102] = "Taiko Towers",
|
2021-10-26 18:22:21 +02:00
|
|
|
|
[103] = "Shop",
|
2021-11-04 04:34:24 +01:00
|
|
|
|
[104] = "Taiko Adventure",
|
|
|
|
|
[105] = "My Room",
|
2021-11-03 03:37:01 +01:00
|
|
|
|
[106] = "Settings",
|
|
|
|
|
[107] = "Exit",
|
2021-10-26 18:22:21 +02:00
|
|
|
|
|
|
|
|
|
[150] = "Play your favorite\nsongs at your own pace !",
|
|
|
|
|
[151] = "Play multiple charts in continuation\nfollowing challenging exams\nin order to get a PASS rank !",
|
2021-11-01 21:24:14 +01:00
|
|
|
|
[152] = "Play long charts within a limited\ncount of lives and reach\nthe top of the tower !",
|
2021-11-04 04:34:24 +01:00
|
|
|
|
[153] = "Buy new songs, petit-chara or characters\nusing the medals you earned in game !",
|
2021-10-26 18:22:21 +02:00
|
|
|
|
[154] = "Surpass various obstacles and\nunlock new content and horizons !",
|
2021-11-03 03:37:01 +01:00
|
|
|
|
[155] = "Change your nameplate info\n or your character visuals !",
|
|
|
|
|
[156] = "Change your game style\n or general settings !",
|
|
|
|
|
[157] = "Quit the game.\nSee you next time !",
|
2021-10-26 18:22:21 +02:00
|
|
|
|
|
|
|
|
|
[1000] = "Reached floor",
|
|
|
|
|
[1001] = "F",
|
|
|
|
|
[1002] = "P",
|
|
|
|
|
[1003] = "Score",
|
2021-10-24 13:50:33 +02:00
|
|
|
|
};
|
2021-10-24 09:20:14 +02:00
|
|
|
|
}
|
2021-11-01 21:24:14 +01:00
|
|
|
|
}
|