Make all localisation class strings verbatim

This commit is contained in:
smoogipoo
2021-06-14 16:51:17 +09:00
parent ebe850fe9f
commit aa5dae84b2
6 changed files with 16 additions and 16 deletions

View File

@ -7,10 +7,10 @@ namespace osu.Game.Localisation
{
public enum Language
{
[Description("English")]
[Description(@"English")]
en,
[Description("日本語")]
[Description(@"日本語")]
ja
}
}