refactor: use localization constants for last remaining literals

This commit is contained in:
2026-06-23 21:44:35 +08:00
parent 8d70ce8862
commit 76d9d9fa21
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -347,7 +347,7 @@ public class PlayerPatch : PatchImpl<PlayerPatch>
AutoCruiseEnabled.Value = !AutoCruiseEnabled.Value;
if (!DSPGame.IsMenuDemo && GameMain.isRunning)
{
UIRoot.instance.uiGame.generalTips.InvokeRealtimeTipAhead((AutoCruiseEnabled.Value ? "AutoCruiseOn" : "AutoCruiseOff").Translate());
UIRoot.instance.uiGame.generalTips.InvokeRealtimeTipAhead((AutoCruiseEnabled.Value ? I18NKeys.AutoCruiseOn : I18NKeys.AutoCruiseOff).Translate());
}
}