3c94c8ddd0
* Delete README.old.md Deleted old version of README, there's already a new version * Delete Readme.txt This guide is outdated, there's README.md already * Update README.md Edited for grammar and added credits down below * Update CLang_en.cs Fixed grammar
71 lines
2.9 KiB
C#
71 lines
2.9 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
|
||
namespace TJAPlayer3
|
||
{
|
||
internal class CLang_en : ILang
|
||
{
|
||
string ILang.GetString(int idx)
|
||
{
|
||
if (!dictionnary.ContainsKey(idx))
|
||
return "[!] Index not found in dictionary";
|
||
|
||
return dictionnary[idx];
|
||
}
|
||
|
||
|
||
private static readonly Dictionary<int, string> dictionnary = new Dictionary<int, string>
|
||
{
|
||
[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.",
|
||
[6] = "Player count",
|
||
[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.",
|
||
[8] = "Risky",
|
||
[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.",
|
||
[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" +
|
||
"In case TimeStretch=ON, some sound\n" +
|
||
"lag occurs slower than x0.900.",
|
||
[16] = "Layout type",
|
||
[17] = "You can change the layout type \ndisplayed on the song select screen.\n" +
|
||
"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",
|
||
|
||
[100] = "Rhythm Game",
|
||
[101] = "Exam Dojo",
|
||
[102] = "Taiko towers",
|
||
[103] = "Shop",
|
||
[104] = "Taiko adventure",
|
||
[105] = "Settings",
|
||
[106] = "Exit",
|
||
|
||
[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 !",
|
||
[152] = "Play long charts within a limited\ncount of lives and reach\nthe top of the tower !",
|
||
[153] = "Buy new songs, petit-chara or characters\nusing the medals you won in game !",
|
||
[154] = "Surpass various obstacles and\nunlock new content and horizons !",
|
||
[155] = "Change your game style\n or general settings !",
|
||
[156] = "Quit the game.\nSee you next time !",
|
||
|
||
[1000] = "Reached floor",
|
||
[1001] = "F",
|
||
[1002] = "P",
|
||
[1003] = "Score",
|
||
};
|
||
}
|
||
}
|