Fluent Localisation Fixes (#3344)

Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
This commit is contained in:
Remie Richards
2021-02-22 00:07:46 +00:00
committed by GitHub
parent 63947a6d35
commit 85916b87b4
31 changed files with 276 additions and 141 deletions

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Content.Client.GameObjects.Components.Arcade;
@@ -525,12 +525,12 @@ namespace Content.Client.Arcade
public void UpdatePoints(int points)
{
_pointsLabel.Text = Loc.GetString("Points: {0}", points);
_pointsLabel.Text = Loc.GetString("blockgame-points-label", ("points", points));
}
public void UpdateLevel(int level)
{
_levelLabel.Text = Loc.GetString("Level {0}", level + 1);
_levelLabel.Text = Loc.GetString("blockgame-level-label", ("level", level + 1));
}
public void UpdateHighscores(List<BlockGameMessages.HighScoreEntry> localHighscores,