mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-08-05 22:30:21 +08:00
refactor: use localization constants at remaining call sites
This commit is contained in:
@@ -99,6 +99,6 @@ internal static class AutoConstructUI
|
||||
public static void UpdateConstructCountText(int count)
|
||||
{
|
||||
if (ConstructCountText == null) return;
|
||||
ConstructCountText.text = String.Format("Buildings to construct: {0}".Translate(), count);
|
||||
ConstructCountText.text = String.Format(I18NKeys.BuildingsToConstruct0.Translate(), count);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user