Switch to count naming

This commit is contained in:
Gustas
2025-04-19 13:24:27 +03:00
committed by Paul Chote
parent 9da921756d
commit d4a08e5b58
4 changed files with 23 additions and 24 deletions

View File

@@ -120,7 +120,7 @@ namespace OpenRA.Mods.Common.Widgets
sealed class CopyPasteEditorAction : IEditorAction
{
[FluentReference("amount")]
[FluentReference("count")]
const string CopiedTiles = "notification-copied-tiles";
public string Text { get; }
@@ -131,7 +131,7 @@ namespace OpenRA.Mods.Common.Widgets
{
this.editorBlit = editorBlit;
Text = FluentProvider.GetMessage(CopiedTiles, "amount", editorBlit.TileCount());
Text = FluentProvider.GetMessage(CopiedTiles, "count", editorBlit.TileCount());
}
public void Execute()