More localize (#7869)

* Localize replacement accents

* Localize bar signs

* Holidays

* Localize species
This commit is contained in:
Alex Evgrashin
2022-05-03 11:32:06 +03:00
committed by GitHub
parent 15312d93c7
commit 89fda5ec83
13 changed files with 401 additions and 164 deletions

View File

@@ -24,7 +24,7 @@ namespace Content.Server.Speech.EntitySystems
{
var words = _proto.Index<ReplacementAccentPrototype>(component.Accent).Words;
args.Message = words.Length != 0 ? _random.Pick(words) : "";
args.Message = words.Length != 0 ? Loc.GetString(_random.Pick(words)) : "";
}
}
}