Mark non-moddable translation strings as constant.

This commit is contained in:
Matthias Mailänder
2022-11-17 21:54:39 +01:00
committed by Gustas
parent 4f016f149f
commit 760a1245c5
58 changed files with 807 additions and 795 deletions

View File

@@ -24,19 +24,19 @@ namespace OpenRA.Mods.Common.Widgets.Logic
public static class LobbyUtils
{
[TranslationReference]
static readonly string Open = "open";
const string Open = "open";
[TranslationReference]
static readonly string Closed = "closed";
const string Closed = "closed";
[TranslationReference]
static readonly string Bots = "bots";
const string Bots = "bots";
[TranslationReference]
static readonly string BotsDisabled = "bots-disabled";
const string BotsDisabled = "bots-disabled";
[TranslationReference]
static readonly string Slot = "slot";
const string Slot = "slot";
class SlotDropDownOption
{