Add basic example NL entity localizations.

Make secret stash use fluent in one spot as example.
This commit is contained in:
Pieter-Jan Briers
2021-05-11 23:13:43 +02:00
parent 8d9d574c52
commit 4e89ba560e
3 changed files with 17 additions and 1 deletions

View File

@@ -66,7 +66,7 @@ namespace Content.Server.GameObjects.Components.Items.Storage
if (!hands.Drop(itemToHide, _itemContainer))
return false;
Owner.PopupMessage(user, Loc.GetString("You hide {0:theName} in {1}.", itemToHide, SecretPartName));
Owner.PopupMessage(user, Loc.GetString("comp-secret-stash-action-hide", ("item", itemToHide), ("this", SecretPartName)));
return true;
}