There we go

This commit is contained in:
Sir Warock 2026-05-04 17:15:51 +02:00
parent e3f3cc596b
commit 76f2a66b7c
2 changed files with 5 additions and 5 deletions

View File

@ -107,7 +107,7 @@ public sealed class LightReplacerMenuBoundUserInterface(EntityUid owner, Enum ui
var switchLight = new RadialMenuActionOption<(string, LightBulbType)>(SwitchActiveLight, (name, lightType))
{
IconSpecifier = RadialMenuIconSpecifier.With(light),
ToolTip = Loc.GetString("comp-light-replacer-select-lights", ("light-name", light)),
ToolTip = Loc.GetString("comp-light-replacer-select-lights", ("light-name", name)),
};
options.Add(switchLight);
}

View File

@ -2,14 +2,14 @@
### Interaction Messages
# Shown when player tries to replace light, but there is no lights left
comp-light-replacer-missing-light-dv = No {$light-name}s left in {THE($light-replacer)}.
comp-light-replacer-missing-light-dv = No {MAKEPLURAL($light-name)} left in {THE($light-replacer)}.
# Shown when a player attempts to replace a light with the same color & type as the active light.
comp-light-replacer-same-light = This fixture already holds {INDEFINITE($light-name)} {$light-name}!
# Radial Menu messages
comp-light-replacer-eject-specified-lights = Eject all {$light-name}s.
comp-light-replacer-select-lights = Select {$light-name}s.
comp-light-replacer-eject-specified-lights = Eject all {MAKEPLURAL($light-name)}.
comp-light-replacer-select-lights = Select {MAKEPLURAL($light-name)}.
comp-light-replacer-open-empty = {CAPITALIZE(THE($light-replacer))} is completely empty!
# Label
@ -20,5 +20,5 @@ comp-light-replacer-label = Tube: {$tube}
comp-light-replacer-light-listing-dv = {$amount ->
[one] [color=yellow]{$amount}[/color] [color=gray]{$light-name}[/color]
*[other] [color=yellow]{$amount}[/color] [color=gray]{$light-name}s[/color]
*[other] [color=yellow]{$amount}[/color] [color=gray]{MAKEPLURAL($light-name)}[/color]
}