1
0
mirror of synced 2025-02-17 19:09:25 +01:00
OpenTaiko/TJAPlayer3/I18N/CLang_en.cs

29 lines
801 B
C#
Raw Normal View History

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 dictionnary";
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.",
};
}
}