From d73fcd53ffcc51446cd8d176da5bade12135c20f Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Mon, 6 Oct 2025 12:38:49 +0300 Subject: [PATCH] Update ContentLocalizationManager.cs --- Content.Shared/Localizations/ContentLocalizationManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index 5b01b62bd7..b229ece71b 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -30,7 +30,7 @@ namespace Content.Shared.Localizations //CP14 Boilerplate! Should be deleted when https://github.com/space-wizards/space-station-14/pull/34404 is merged _loc.Initialize(); //CP14 Boilerplate end - + _loc.LoadCulture(culture); /* @@ -64,6 +64,7 @@ namespace Content.Shared.Localizations _loc.AddFunction(culture, "NATURALFIXED", FormatNaturalFixed); _loc.AddFunction(culture, "NATURALPERCENT", FormatNaturalPercent); _loc.AddFunction(culture, "PLAYTIME", FormatPlaytime); + _loc.AddFunction(culture, "MAKEPLURAL", FormatMakePlural); _loc.AddFunction(culture, "MANY", FormatMany); // TODO: Temporary fix for MANY() fluent errors. Remove after resolve errors.