From e1e3a39c5c5f49d5d0e8e13b2a435e7e1d96316f Mon Sep 17 00:00:00 2001 From: Anna Date: Tue, 8 Feb 2022 12:23:10 -0500 Subject: [PATCH] fix: use localised names for presets --- ChatTwo/Util/TabsUtil.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ChatTwo/Util/TabsUtil.cs b/ChatTwo/Util/TabsUtil.cs index 01ee4d0..97a25c2 100755 --- a/ChatTwo/Util/TabsUtil.cs +++ b/ChatTwo/Util/TabsUtil.cs @@ -1,10 +1,11 @@ using ChatTwo.Code; +using ChatTwo.Resources; namespace ChatTwo.Util; internal static class TabsUtil { internal static Tab VanillaGeneral => new() { - Name = "General", + Name = Language.Tabs_Presets_General, ChatCodes = new Dictionary { // Special [ChatType.Debug] = ChatSourceExt.All, @@ -67,7 +68,7 @@ internal static class TabsUtil { }; internal static Tab VanillaEvent => new() { - Name = "Event", + Name = Language.Tabs_Presets_Event, ChatCodes = new Dictionary { [ChatType.NpcDialogue] = ChatSourceExt.All, },