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, },