From 40fd726519756470d4c487f33a353b5ec3532d75 Mon Sep 17 00:00:00 2001 From: Infi Date: Sat, 6 Apr 2024 03:01:32 +0200 Subject: [PATCH] Add adventurer plate context option --- ChatTwo/ChatTwo.csproj | 2 +- ChatTwo/GameFunctions/GameFunctions.cs | 14 + ChatTwo/PayloadHandler.cs | 190 +- ChatTwo/Plugin.cs | 1 + ChatTwo/Resources/Language.Designer.cs | 3261 +++++++++++++++--------- ChatTwo/Resources/Language.resx | 62 +- ChatTwo/Util/WrapperUtil.cs | 12 + 7 files changed, 2178 insertions(+), 1364 deletions(-) create mode 100644 ChatTwo/Util/WrapperUtil.cs diff --git a/ChatTwo/ChatTwo.csproj b/ChatTwo/ChatTwo.csproj index 0e0d957..c3a870a 100755 --- a/ChatTwo/ChatTwo.csproj +++ b/ChatTwo/ChatTwo.csproj @@ -1,7 +1,7 @@ - 1.19.2 + 1.19.3 net8.0-windows enable enable diff --git a/ChatTwo/GameFunctions/GameFunctions.cs b/ChatTwo/GameFunctions/GameFunctions.cs index d4bf65f..8a604fe 100755 --- a/ChatTwo/GameFunctions/GameFunctions.cs +++ b/ChatTwo/GameFunctions/GameFunctions.cs @@ -273,6 +273,20 @@ internal unsafe class GameFunctions : IDisposable { return this._inInstance() != 0; } + internal bool TryOpenAdventurerPlate(ulong playerId) + { + try + { + AgentCharaCard.Instance()->OpenCharaCard(playerId); + return true; + } + catch (Exception e) + { + Plugin.Log.Warning(e, "Unable to open adventurer plate"); + return false; + } + } + internal void ClickNoviceNetworkButton() { var agent = Framework.Instance()->GetUiModule()->GetAgentModule()->GetAgentByInternalId(AgentId.ChatLog); // case 3 diff --git a/ChatTwo/PayloadHandler.cs b/ChatTwo/PayloadHandler.cs index ac077bb..9e5bb7c 100755 --- a/ChatTwo/PayloadHandler.cs +++ b/ChatTwo/PayloadHandler.cs @@ -7,6 +7,7 @@ using Dalamud.Game.ClientState.Objects.SubKinds; using Dalamud.Game.Text.SeStringHandling; using Dalamud.Game.Text.SeStringHandling.Payloads; using Dalamud.Interface.Internal; +using Dalamud.Interface.Internal.Notifications; using Dalamud.Interface.Utility; using Dalamud.Utility; using ImGuiNET; @@ -31,30 +32,30 @@ internal sealed class PayloadHandler { private uint _lastHoverCounter; internal PayloadHandler(PluginUi ui, ChatLog log) { - this.Ui = ui; - this.Log = log; + Ui = ui; + Log = log; } internal void Draw() { - this.DrawPopups(); + DrawPopups(); - if (this._handleTooltips && ++this._hoverCounter - this._lastHoverCounter > 1) { + if (_handleTooltips && ++_hoverCounter - _lastHoverCounter > 1) { GameFunctions.GameFunctions.CloseItemTooltip(); - this._hoveredItem = 0; - this._hoverCounter = this._lastHoverCounter = 0; - this._handleTooltips = false; + _hoveredItem = 0; + _hoverCounter = _lastHoverCounter = 0; + _handleTooltips = false; } } private void DrawPopups() { - if (this.Popup == null) { + if (Popup == null) { return; } - var (chunk, payload) = this.Popup.Value; + var (chunk, payload) = Popup.Value; if (!ImGui.BeginPopup(PopupId)) { - this.Popup = null; + Popup = null; return; } @@ -63,26 +64,26 @@ internal sealed class PayloadHandler { var drawn = false; switch (payload) { case PlayerPayload player: { - this.DrawPlayerPopup(chunk, player); + DrawPlayerPopup(chunk, player); drawn = true; break; } case ItemPayload item: { - this.DrawItemPopup(item); + DrawItemPopup(item); drawn = true; break; } } - this.ContextFooter(drawn, chunk); - this.Integrations(chunk, payload); + ContextFooter(drawn, chunk); + Integrations(chunk, payload); ImGui.PopID(); ImGui.EndPopup(); } private void Integrations(Chunk chunk, Payload? payload) { - var registered = this.Ui.Plugin.Ipc.Registered; + var registered = Ui.Plugin.Ipc.Registered; if (registered.Count == 0) { return; } @@ -97,7 +98,7 @@ internal sealed class PayloadHandler { foreach (var id in registered) { try { - this.Ui.Plugin.Ipc.Invoke(id, sender, contentId, payload, chunk.Message?.SenderSource, chunk.Message?.ContentSource); + Ui.Plugin.Ipc.Invoke(id, sender, contentId, payload, chunk.Message?.SenderSource, chunk.Message?.ContentSource); } catch (Exception ex) { Plugin.Log.Error(ex, "Error executing integration"); } @@ -122,10 +123,10 @@ internal sealed class PayloadHandler { return; } - ImGui.Checkbox(Language.Context_ScreenshotMode, ref this.Ui.ScreenshotMode); + ImGui.Checkbox(Language.Context_ScreenshotMode, ref Ui.ScreenshotMode); if (ImGui.Selectable(Language.Context_HideChat)) { - this.Log.UserHide(); + Log.UserHide(); } if (chunk.Message is { } message) { @@ -148,9 +149,12 @@ internal sealed class PayloadHandler { var col = ImGui.GetStyle().Colors[(int) ImGuiCol.TextDisabled]; ImGui.PushStyleColor(ImGuiCol.Text, col); - try { + try + { ImGui.TextUnformatted(message.Code.Type.Name()); - } finally { + } + finally + { ImGui.PopStyleColor(); } } @@ -161,10 +165,10 @@ internal sealed class PayloadHandler { internal void Click(Chunk chunk, Payload? payload, ImGuiMouseButton button) { switch (button) { case ImGuiMouseButton.Left: - this.LeftClickPayload(chunk, payload); + LeftClickPayload(chunk, payload); break; case ImGuiMouseButton.Right: - this.RightClickPayload(chunk, payload); + RightClickPayload(chunk, payload); break; } } @@ -174,25 +178,25 @@ internal sealed class PayloadHandler { switch (payload) { case StatusPayload status: { - this.DoHover(() => this.HoverStatus(status), hoverSize); + DoHover(() => HoverStatus(status), hoverSize); break; } case ItemPayload item: { - if (this.Ui.Plugin.Config.NativeItemTooltips) { + if (Ui.Plugin.Config.NativeItemTooltips) { GameFunctions.GameFunctions.OpenItemTooltip(item.RawItemId); - this._handleTooltips = true; - if (this._hoveredItem != item.RawItemId) { - this._hoveredItem = item.RawItemId; - this._hoverCounter = this._lastHoverCounter = 0; + _handleTooltips = true; + if (_hoveredItem != item.RawItemId) { + _hoveredItem = item.RawItemId; + _hoverCounter = _lastHoverCounter = 0; } else { - this._lastHoverCounter = this._hoverCounter; + _lastHoverCounter = _hoverCounter; } break; } - this.DoHover(() => this.HoverItem(item), hoverSize); + DoHover(() => HoverItem(item), hoverSize); break; } } @@ -203,11 +207,14 @@ internal sealed class PayloadHandler { ImGui.BeginTooltip(); ImGui.PushTextWrapPos(); + ImGui.PushStyleColor(ImGuiCol.Text, Ui.DefaultText); - ImGui.PushStyleColor(ImGuiCol.Text, this.Ui.DefaultText); - try { + try + { inside(); - } finally { + } + finally + { ImGui.PopStyleColor(); ImGui.PopTextWrapPos(); ImGui.EndTooltip(); @@ -225,21 +232,21 @@ internal sealed class PayloadHandler { } private void HoverStatus(StatusPayload status) { - if (this.Ui.Plugin.TextureCache.GetStatus(status.Status) is { } icon) { + if (Ui.Plugin.TextureCache.GetStatus(status.Status) is { } icon) { InlineIcon(icon); } var name = ChunkUtil.ToChunks(status.Status.Name.ToDalamudString(), ChunkSource.None, null); - this.Log.DrawChunks(name.ToList()); + Log.DrawChunks(name.ToList()); ImGui.Separator(); var desc = ChunkUtil.ToChunks(status.Status.Description.ToDalamudString(), ChunkSource.None, null); - this.Log.DrawChunks(desc.ToList()); + Log.DrawChunks(desc.ToList()); } private void HoverItem(ItemPayload item) { if (item.Kind == ItemPayload.ItemKind.EventItem) { - this.HoverEventItem(item); + HoverEventItem(item); return; } @@ -247,16 +254,16 @@ internal sealed class PayloadHandler { return; } - if (this.Ui.Plugin.TextureCache.GetItem(item.Item, item.IsHQ) is { } icon) { + if (Ui.Plugin.TextureCache.GetItem(item.Item, item.IsHQ) is { } icon) { InlineIcon(icon); } var name = ChunkUtil.ToChunks(item.Item.Name.ToDalamudString(), ChunkSource.None, null); - this.Log.DrawChunks(name.ToList()); + Log.DrawChunks(name.ToList()); ImGui.Separator(); var desc = ChunkUtil.ToChunks(item.Item.Description.ToDalamudString(), ChunkSource.None, null); - this.Log.DrawChunks(desc.ToList()); + Log.DrawChunks(desc.ToList()); } private void HoverEventItem(ItemPayload payload) { @@ -265,18 +272,18 @@ internal sealed class PayloadHandler { return; } - if (this.Ui.Plugin.TextureCache.GetEventItem(item) is { } icon) { + if (Ui.Plugin.TextureCache.GetEventItem(item) is { } icon) { InlineIcon(icon); } var name = ChunkUtil.ToChunks(item.Name.ToDalamudString(), ChunkSource.None, null); - this.Log.DrawChunks(name.ToList()); + Log.DrawChunks(name.ToList()); ImGui.Separator(); var help = Plugin.DataManager.GetExcelSheet()?.GetRow(payload.RawItemId); if (help != null) { var desc = ChunkUtil.ToChunks(help.Description.ToDalamudString(), ChunkSource.None, null); - this.Log.DrawChunks(desc.ToList()); + Log.DrawChunks(desc.ToList()); } } @@ -287,28 +294,28 @@ internal sealed class PayloadHandler { break; } case QuestPayload quest: { - this.Ui.Plugin.Common.Functions.Journal.OpenQuest(quest.Quest); + Ui.Plugin.Common.Functions.Journal.OpenQuest(quest.Quest); break; } case DalamudLinkPayload link: { - this.ClickLinkPayload(chunk, payload, link); + ClickLinkPayload(chunk, payload, link); break; } case DalamudPartyFinderPayload pf: { if (pf.LinkType == DalamudPartyFinderPayload.PartyFinderLinkType.PartyFinderNotification) { GameFunctions.GameFunctions.OpenPartyFinder(); } else { - this.Ui.Plugin.Functions.OpenPartyFinder(pf.ListingId); + Ui.Plugin.Functions.OpenPartyFinder(pf.ListingId); } break; } case ChatTwoPartyFinderPayload pf: { - this.Ui.Plugin.Functions.OpenPartyFinder(pf.Id); + Ui.Plugin.Functions.OpenPartyFinder(pf.Id); break; } case AchievementPayload achievement: { - this.Ui.Plugin.Functions.OpenAchievement(achievement.Id); + Ui.Plugin.Functions.OpenAchievement(achievement.Id); break; } case RawPayload raw: { @@ -335,7 +342,7 @@ internal sealed class PayloadHandler { var payloads = source.Payloads.Skip(start).Take(end - start + 1).ToList(); if (!Plugin.ChatGui.RegisteredLinkHandlers.TryGetValue((link.Plugin, link.CommandId), out var value)) { - Plugin.Log.Warning("could not find dalamudLinkHandlers"); + Plugin.Log.Warning("Could not find DalamudLinkHandlers"); return; } @@ -349,13 +356,13 @@ internal sealed class PayloadHandler { } private void RightClickPayload(Chunk chunk, Payload? payload) { - this.Popup = (chunk, payload); + Popup = (chunk, payload); ImGui.OpenPopup(PopupId); } private void DrawItemPopup(ItemPayload payload) { if (payload.Kind == ItemPayload.ItemKind.EventItem) { - this.DrawEventItemPopup(payload); + DrawEventItemPopup(payload); return; } @@ -366,7 +373,7 @@ internal sealed class PayloadHandler { var hq = payload.Kind == ItemPayload.ItemKind.Hq; - if (this.Ui.Plugin.TextureCache.GetItem(item, hq) is { } icon) { + if (Ui.Plugin.TextureCache.GetItem(item, hq) is { } icon) { InlineIcon(icon); } @@ -378,33 +385,32 @@ internal sealed class PayloadHandler { name.Payloads.Add(new TextPayload(" ")); } - this.Log.DrawChunks(ChunkUtil.ToChunks(name, ChunkSource.None, null).ToList(), false); + Log.DrawChunks(ChunkUtil.ToChunks(name, ChunkSource.None, null).ToList(), false); ImGui.Separator(); var realItemId = payload.RawItemId; - if (item.EquipSlotCategory.Row != 0) { if (ImGui.Selectable(Language.Context_TryOn)) { - this.Ui.Plugin.Functions.Context.TryOn(realItemId, 0); + Ui.Plugin.Functions.Context.TryOn(realItemId, 0); } if (ImGui.Selectable(Language.Context_ItemComparison)) { - this.Ui.Plugin.Functions.Context.OpenItemComparison(realItemId); + Ui.Plugin.Functions.Context.OpenItemComparison(realItemId); } } if (item.ItemSearchCategory.Value?.Category == 3) { if (ImGui.Selectable(Language.Context_SearchRecipes)) { - this.Ui.Plugin.Functions.Context.SearchForRecipesUsingItem(payload.ItemId); + Ui.Plugin.Functions.Context.SearchForRecipesUsingItem(payload.ItemId); } } if (ImGui.Selectable(Language.Context_SearchForItem)) { - this.Ui.Plugin.Functions.Context.SearchForItem(realItemId); + Ui.Plugin.Functions.Context.SearchForItem(realItemId); } if (ImGui.Selectable(Language.Context_Link)) { - this.Ui.Plugin.Functions.Context.LinkItem(realItemId); + Ui.Plugin.Functions.Context.LinkItem(realItemId); } if (ImGui.Selectable(Language.Context_CopyItemName)) { @@ -422,18 +428,17 @@ internal sealed class PayloadHandler { return; } - if (this.Ui.Plugin.TextureCache.GetEventItem(item) is { } icon) { + if (Ui.Plugin.TextureCache.GetEventItem(item) is { } icon) { InlineIcon(icon); } var name = item.Name.ToDalamudString(); - this.Log.DrawChunks(ChunkUtil.ToChunks(name, ChunkSource.None, null).ToList(), false); + Log.DrawChunks(ChunkUtil.ToChunks(name, ChunkSource.None, null).ToList(), false); ImGui.Separator(); var realItemId = payload.RawItemId; - if (ImGui.Selectable(Language.Context_Link)) { - this.Ui.Plugin.Functions.Context.LinkItem(realItemId); + Ui.Plugin.Functions.Context.LinkItem(realItemId); } if (ImGui.Selectable(Language.Context_CopyItemName)) { @@ -448,7 +453,6 @@ internal sealed class PayloadHandler { return; var world = player.World; - if (chunk.Message?.Code.Type == ChatType.FreeCompanyLoginLogout) { if (Plugin.ClientState.LocalPlayer?.HomeWorld.GameData is { } homeWorld) { world = homeWorld; @@ -463,40 +467,41 @@ internal sealed class PayloadHandler { }); } - this.Log.DrawChunks(name, false); + Log.DrawChunks(name, false); ImGui.Separator(); if (ImGui.Selectable(Language.Context_SendTell)) { - this.Log.Chat = $"/tell {player.PlayerName}"; + Log.Chat = $"/tell {player.PlayerName}"; if (world.IsPublic) { - this.Log.Chat += $"@{world.Name}"; + Log.Chat += $"@{world.Name}"; } - this.Log.Chat += " "; - this.Log.Activate = true; + Log.Chat += " "; + Log.Activate = true; } + var validContentId = chunk.Message?.ContentId is not (null or 0); if (world.IsPublic) { var party = Plugin.PartyList; var leader = (ulong?) party[(int) party.PartyLeaderIndex]?.ContentId; var isLeader = party.Length == 0 || Plugin.ClientState.LocalContentId == leader; var member = party.FirstOrDefault(member => member.Name.TextValue == player.PlayerName && member.World.Id == world.RowId); var isInParty = member != default; - var inInstance = this.Ui.Plugin.Functions.IsInInstance(); + var inInstance = Ui.Plugin.Functions.IsInInstance(); var inPartyInstance = Plugin.DataManager.GetExcelSheet()!.GetRow(Plugin.ClientState.TerritoryType)?.TerritoryIntendedUse is (41 or 47 or 48 or 52 or 53); if (isLeader) { if (!isInParty) { if (inInstance && inPartyInstance) { - if (chunk.Message?.ContentId is not (null or 0) && ImGui.Selectable(Language.Context_InviteToParty)) { - this.Ui.Plugin.Functions.Party.InviteInInstance(chunk.Message!.ContentId); + if (validContentId && ImGui.Selectable(Language.Context_InviteToParty)) { + Ui.Plugin.Functions.Party.InviteInInstance(chunk.Message!.ContentId); } } else if (!inInstance && ImGui.BeginMenu(Language.Context_InviteToParty)) { if (ImGui.Selectable(Language.Context_InviteToParty_SameWorld)) { - this.Ui.Plugin.Functions.Party.InviteSameWorld(player.PlayerName, (ushort) world.RowId, chunk.Message?.ContentId ?? 0); + Ui.Plugin.Functions.Party.InviteSameWorld(player.PlayerName, (ushort) world.RowId, chunk.Message?.ContentId ?? 0); } - if (chunk.Message?.ContentId is not (null or 0) && ImGui.Selectable(Language.Context_InviteToParty_DifferentWorld)) { - this.Ui.Plugin.Functions.Party.InviteOtherWorld(chunk.Message!.ContentId); + if (validContentId && ImGui.Selectable(Language.Context_InviteToParty_DifferentWorld)) { + Ui.Plugin.Functions.Party.InviteOtherWorld(chunk.Message!.ContentId); } ImGui.EndMenu(); @@ -505,55 +510,58 @@ internal sealed class PayloadHandler { if (isInParty && member != null && (!inInstance || (inInstance && inPartyInstance))) { if (ImGui.Selectable(Language.Context_Promote)) { - this.Ui.Plugin.Functions.Party.Promote(player.PlayerName, (ulong) member.ContentId); + Ui.Plugin.Functions.Party.Promote(player.PlayerName, (ulong) member.ContentId); } if (ImGui.Selectable(Language.Context_KickFromParty)) { - this.Ui.Plugin.Functions.Party.Kick(player.PlayerName, (ulong) member.ContentId); + Ui.Plugin.Functions.Party.Kick(player.PlayerName, (ulong) member.ContentId); } } } - var isFriend = this.Ui.Plugin.Common.Functions.FriendList.List.Any(friend => friend.Name.TextValue == player.PlayerName && friend.HomeWorld == world.RowId); + var isFriend = Ui.Plugin.Common.Functions.FriendList.List.Any(friend => friend.Name.TextValue == player.PlayerName && friend.HomeWorld == world.RowId); if (!isFriend && ImGui.Selectable(Language.Context_SendFriendRequest)) { - this.Ui.Plugin.Functions.SendFriendRequest(player.PlayerName, (ushort) world.RowId); + Ui.Plugin.Functions.SendFriendRequest(player.PlayerName, (ushort) world.RowId); } if (ImGui.Selectable(Language.Context_AddToBlacklist)) { - this.Ui.Plugin.Functions.AddToBlacklist(player.PlayerName, (ushort) world.RowId); + Ui.Plugin.Functions.AddToBlacklist(player.PlayerName, (ushort) world.RowId); } - if (this.Ui.Plugin.Functions.IsMentor() && ImGui.Selectable(Language.Context_InviteToNoviceNetwork)) { - this.Ui.Plugin.Functions.Context.InviteToNoviceNetwork(player.PlayerName, (ushort) world.RowId); + if (Ui.Plugin.Functions.IsMentor() && ImGui.Selectable(Language.Context_InviteToNoviceNetwork)) { + Ui.Plugin.Functions.Context.InviteToNoviceNetwork(player.PlayerName, (ushort) world.RowId); } } var inputChannel = chunk.Message?.Code.Type.ToInputChannel(); if (inputChannel != null && ImGui.Selectable(Language.Context_ReplyInSelectedChatMode)) { - this.Ui.Plugin.Functions.Chat.SetChannel(inputChannel.Value); - this.Log.Activate = true; + Ui.Plugin.Functions.Chat.SetChannel(inputChannel.Value); + Log.Activate = true; } - if (ImGui.Selectable(Language.Context_Target) && this.FindCharacterForPayload(player) is { } obj) { + if (ImGui.Selectable(Language.Context_Target) && FindCharacterForPayload(player) is { } obj) { Plugin.TargetManager.Target = obj; } + if (validContentId && ImGui.Selectable(Language.Context_AdventurerPlate)) + { + if (!Ui.Plugin.Functions.TryOpenAdventurerPlate(chunk.Message!.ContentId)) + WrapperUtil.AddNotification(Language.Context_AdventurerPlateError, NotificationType.Warning); + } + // View Party Finder 0x2E } private PlayerCharacter? FindCharacterForPayload(PlayerPayload payload) { foreach (var obj in Plugin.ObjectTable) { - if (obj is not PlayerCharacter character) { + if (obj is not PlayerCharacter character) continue; - } - if (character.Name.TextValue != payload.PlayerName) { + if (character.Name.TextValue != payload.PlayerName) continue; - } - if (payload.World.IsPublic && character.HomeWorld.Id != payload.World.RowId) { + if (payload.World.IsPublic && character.HomeWorld.Id != payload.World.RowId) continue; - } return character; } diff --git a/ChatTwo/Plugin.cs b/ChatTwo/Plugin.cs index 68e35a5..b6bb45f 100755 --- a/ChatTwo/Plugin.cs +++ b/ChatTwo/Plugin.cs @@ -31,6 +31,7 @@ public sealed class Plugin : IDalamudPlugin { [PluginService] internal static ITextureProvider TextureProvider { get; private set; } = null!; [PluginService] internal static IGameInteropProvider GameInteropProvider { get; private set; } = null!; [PluginService] internal static IGameConfig GameConfig { get; private set; } = null!; + [PluginService] internal static INotificationManager Notification { get; private set; } = null!; internal Configuration Config { get; } internal Commands Commands { get; } diff --git a/ChatTwo/Resources/Language.Designer.cs b/ChatTwo/Resources/Language.Designer.cs index 6cf8d03..4f3d0dd 100755 --- a/ChatTwo/Resources/Language.Designer.cs +++ b/ChatTwo/Resources/Language.Designer.cs @@ -11,32 +11,46 @@ namespace ChatTwo.Resources { using System; - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Language { - private static System.Resources.ResourceManager resourceMan; + private static global::System.Resources.ResourceManager resourceMan; - private static System.Globalization.CultureInfo resourceCulture; + private static global::System.Globalization.CultureInfo resourceCulture; - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Language() { } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Resources.ResourceManager ResourceManager { + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { get { - if (object.Equals(null, resourceMan)) { - System.Resources.ResourceManager temp = new System.Resources.ResourceManager("ChatTwo.Resources.Language", typeof(Language).Assembly); + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ChatTwo.Resources.Language", typeof(Language).Assembly); resourceMan = temp; } return resourceMan; } } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - internal static System.Globalization.CultureInfo Culture { + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -45,1486 +59,2245 @@ namespace ChatTwo.Resources { } } - internal static string Options_HideChat_Name { - get { - return ResourceManager.GetString("Options_HideChat_Name", resourceCulture); - } - } - - internal static string Options_HideChat_Description { - get { - return ResourceManager.GetString("Options_HideChat_Description", resourceCulture); - } - } - - internal static string Options_HideDuringCutscenes_Name { - get { - return ResourceManager.GetString("Options_HideDuringCutscenes_Name", resourceCulture); - } - } - - internal static string Options_HideDuringCutscenes_Description { - get { - return ResourceManager.GetString("Options_HideDuringCutscenes_Description", resourceCulture); - } - } - - internal static string Options_NativeItemTooltips_Name { - get { - return ResourceManager.GetString("Options_NativeItemTooltips_Name", resourceCulture); - } - } - - internal static string Options_NativeItemTooltips_Description { - get { - return ResourceManager.GetString("Options_NativeItemTooltips_Description", resourceCulture); - } - } - - internal static string Options_SidebarTabView_Name { - get { - return ResourceManager.GetString("Options_SidebarTabView_Name", resourceCulture); - } - } - - internal static string Options_SidebarTabView_Description { - get { - return ResourceManager.GetString("Options_SidebarTabView_Description", resourceCulture); - } - } - - internal static string Options_PrettierTimestamps_Name { - get { - return ResourceManager.GetString("Options_PrettierTimestamps_Name", resourceCulture); - } - } - - internal static string Options_PrettierTimestamps_Description { - get { - return ResourceManager.GetString("Options_PrettierTimestamps_Description", resourceCulture); - } - } - - internal static string Options_MoreCompactPretty_Name { - get { - return ResourceManager.GetString("Options_MoreCompactPretty_Name", resourceCulture); - } - } - - internal static string Options_MoreCompactPretty_Description { - get { - return ResourceManager.GetString("Options_MoreCompactPretty_Description", resourceCulture); - } - } - - internal static string Options_ShowNoviceNetwork_Name { - get { - return ResourceManager.GetString("Options_ShowNoviceNetwork_Name", resourceCulture); - } - } - - internal static string Options_ShowNoviceNetwork_Description { - get { - return ResourceManager.GetString("Options_ShowNoviceNetwork_Description", resourceCulture); - } - } - - internal static string Options_FontSize_Name { - get { - return ResourceManager.GetString("Options_FontSize_Name", resourceCulture); - } - } - - internal static string Options_WindowOpacity_Name { - get { - return ResourceManager.GetString("Options_WindowOpacity_Name", resourceCulture); - } - } - - internal static string Options_CanMove_Name { - get { - return ResourceManager.GetString("Options_CanMove_Name", resourceCulture); - } - } - - internal static string Options_CanResize_Name { - get { - return ResourceManager.GetString("Options_CanResize_Name", resourceCulture); - } - } - - internal static string Options_ShowTitleBar_Name { - get { - return ResourceManager.GetString("Options_ShowTitleBar_Name", resourceCulture); - } - } - - internal static string Options_Display_Tab { - get { - return ResourceManager.GetString("Options_Display_Tab", resourceCulture); - } - } - - internal static string Options_ChatColours_Tab { - get { - return ResourceManager.GetString("Options_ChatColours_Tab", resourceCulture); - } - } - - internal static string Options_ChatColours_Reset { - get { - return ResourceManager.GetString("Options_ChatColours_Reset", resourceCulture); - } - } - - internal static string Options_ChatColours_Import { - get { - return ResourceManager.GetString("Options_ChatColours_Import", resourceCulture); - } - } - - internal static string Options_Tabs_Tab { - get { - return ResourceManager.GetString("Options_Tabs_Tab", resourceCulture); - } - } - - internal static string Options_Tabs_Add { - get { - return ResourceManager.GetString("Options_Tabs_Add", resourceCulture); - } - } - - internal static string Options_Tabs_Delete { - get { - return ResourceManager.GetString("Options_Tabs_Delete", resourceCulture); - } - } - - internal static string Options_Tabs_MoveUp { - get { - return ResourceManager.GetString("Options_Tabs_MoveUp", resourceCulture); - } - } - - internal static string Options_Tabs_MoveDown { - get { - return ResourceManager.GetString("Options_Tabs_MoveDown", resourceCulture); - } - } - - internal static string Options_Tabs_Name { - get { - return ResourceManager.GetString("Options_Tabs_Name", resourceCulture); - } - } - - internal static string Options_Tabs_ShowTimestamps { - get { - return ResourceManager.GetString("Options_Tabs_ShowTimestamps", resourceCulture); - } - } - - internal static string Options_Tabs_UnreadMode { - get { - return ResourceManager.GetString("Options_Tabs_UnreadMode", resourceCulture); - } - } - - internal static string Options_Tabs_NoInputChannel { - get { - return ResourceManager.GetString("Options_Tabs_NoInputChannel", resourceCulture); - } - } - - internal static string Options_Tabs_InputChannel { - get { - return ResourceManager.GetString("Options_Tabs_InputChannel", resourceCulture); - } - } - - internal static string Options_Tabs_Channels { - get { - return ResourceManager.GetString("Options_Tabs_Channels", resourceCulture); - } - } - - internal static string UnreadMode_All_Tooltip { - get { - return ResourceManager.GetString("UnreadMode_All_Tooltip", resourceCulture); - } - } - - internal static string UnreadMode_Unseen_Tooltip { - get { - return ResourceManager.GetString("UnreadMode_Unseen_Tooltip", resourceCulture); - } - } - - internal static string UnreadMode_None_Tooltip { - get { - return ResourceManager.GetString("UnreadMode_None_Tooltip", resourceCulture); - } - } - - internal static string Tab_DefaultName { - get { - return ResourceManager.GetString("Tab_DefaultName", resourceCulture); - } - } - - internal static string Settings_Kofi { - get { - return ResourceManager.GetString("Settings_Kofi", resourceCulture); - } - } - - internal static string Settings_SaveAndClose { - get { - return ResourceManager.GetString("Settings_SaveAndClose", resourceCulture); - } - } - - internal static string Settings_Save { - get { - return ResourceManager.GetString("Settings_Save", resourceCulture); - } - } - - internal static string Settings_Discard { - get { - return ResourceManager.GetString("Settings_Discard", resourceCulture); - } - } - - internal static string Settings_Title { - get { - return ResourceManager.GetString("Settings_Title", resourceCulture); - } - } - - internal static string ChatLog_SwitcherDisabled { - get { - return ResourceManager.GetString("ChatLog_SwitcherDisabled", resourceCulture); - } - } - - internal static string ChatLog_HideChat { - get { - return ResourceManager.GetString("ChatLog_HideChat", resourceCulture); - } - } - - internal static string ChatLog_Tabs_MoveUp { - get { - return ResourceManager.GetString("ChatLog_Tabs_MoveUp", resourceCulture); - } - } - - internal static string ChatLog_Tabs_MoveLeft { - get { - return ResourceManager.GetString("ChatLog_Tabs_MoveLeft", resourceCulture); - } - } - - internal static string ChatLog_Tabs_MoveDown { - get { - return ResourceManager.GetString("ChatLog_Tabs_MoveDown", resourceCulture); - } - } - - internal static string ChatLog_Tabs_MoveRight { - get { - return ResourceManager.GetString("ChatLog_Tabs_MoveRight", resourceCulture); - } - } - - internal static string Options_Tabs_ChannelTypes_Chat { - get { - return ResourceManager.GetString("Options_Tabs_ChannelTypes_Chat", resourceCulture); - } - } - - internal static string Options_Tabs_ChannelTypes_Battle { - get { - return ResourceManager.GetString("Options_Tabs_ChannelTypes_Battle", resourceCulture); - } - } - - internal static string Options_Tabs_ChannelTypes_Announcements { - get { - return ResourceManager.GetString("Options_Tabs_ChannelTypes_Announcements", resourceCulture); - } - } - - internal static string UnreadMode_All { - get { - return ResourceManager.GetString("UnreadMode_All", resourceCulture); - } - } - - internal static string UnreadMode_Unseen { - get { - return ResourceManager.GetString("UnreadMode_Unseen", resourceCulture); - } - } - - internal static string UnreadMode_None { - get { - return ResourceManager.GetString("UnreadMode_None", resourceCulture); - } - } - - internal static string ChatSource_Self { - get { - return ResourceManager.GetString("ChatSource_Self", resourceCulture); - } - } - - internal static string ChatSource_PartyMember { - get { - return ResourceManager.GetString("ChatSource_PartyMember", resourceCulture); - } - } - - internal static string ChatSource_AllianceMember { - get { - return ResourceManager.GetString("ChatSource_AllianceMember", resourceCulture); - } - } - - internal static string ChatSource_Other { - get { - return ResourceManager.GetString("ChatSource_Other", resourceCulture); - } - } - - internal static string ChatSource_EngagedEnemy { - get { - return ResourceManager.GetString("ChatSource_EngagedEnemy", resourceCulture); - } - } - - internal static string ChatSource_UnengagedEnemy { - get { - return ResourceManager.GetString("ChatSource_UnengagedEnemy", resourceCulture); - } - } - - internal static string ChatSource_FriendlyNpc { - get { - return ResourceManager.GetString("ChatSource_FriendlyNpc", resourceCulture); - } - } - - internal static string ChatSource_SelfPet { - get { - return ResourceManager.GetString("ChatSource_SelfPet", resourceCulture); - } - } - - internal static string ChatSource_PartyPet { - get { - return ResourceManager.GetString("ChatSource_PartyPet", resourceCulture); - } - } - - internal static string ChatSource_AlliancePet { - get { - return ResourceManager.GetString("ChatSource_AlliancePet", resourceCulture); - } - } - - internal static string ChatSource_OtherPet { - get { - return ResourceManager.GetString("ChatSource_OtherPet", resourceCulture); - } - } - - internal static string Options_Font_Name { - get { - return ResourceManager.GetString("Options_Font_Name", resourceCulture); - } - } - - internal static string Options_JapaneseFont_Name { - get { - return ResourceManager.GetString("Options_JapaneseFont_Name", resourceCulture); - } - } - - internal static string Options_Font_Description { - get { - return ResourceManager.GetString("Options_Font_Description", resourceCulture); - } - } - - internal static string Options_Font_Warning { - get { - return ResourceManager.GetString("Options_Font_Warning", resourceCulture); - } - } - - internal static string Options_JapaneseFont_Description { - get { - return ResourceManager.GetString("Options_JapaneseFont_Description", resourceCulture); - } - } - - internal static string Options_Tabs_ChannelTypes_Special { - get { - return ResourceManager.GetString("Options_Tabs_ChannelTypes_Special", resourceCulture); - } - } - - internal static string Options_Fonts_Tab { - get { - return ResourceManager.GetString("Options_Fonts_Tab", resourceCulture); - } - } - - internal static string Options_SymbolsFontSize_Name { - get { - return ResourceManager.GetString("Options_SymbolsFontSize_Name", resourceCulture); - } - } - - internal static string Options_JapaneseFontSize_Name { - get { - return ResourceManager.GetString("Options_JapaneseFontSize_Name", resourceCulture); - } - } - - internal static string Options_SymbolsFontSize_Description { - get { - return ResourceManager.GetString("Options_SymbolsFontSize_Description", resourceCulture); - } - } - - internal static string ChatLog_Tabs_Delete { - get { - return ResourceManager.GetString("ChatLog_Tabs_Delete", resourceCulture); - } - } - - internal static string Options_HideWhenNotLoggedIn_Name { - get { - return ResourceManager.GetString("Options_HideWhenNotLoggedIn_Name", resourceCulture); - } - } - - internal static string Options_HideWhenNotLoggedIn_Description { - get { - return ResourceManager.GetString("Options_HideWhenNotLoggedIn_Description", resourceCulture); - } - } - - internal static string Tabs_Presets_General { - get { - return ResourceManager.GetString("Tabs_Presets_General", resourceCulture); - } - } - - internal static string Options_Tabs_Preset { - get { - return ResourceManager.GetString("Options_Tabs_Preset", resourceCulture); - } - } - - internal static string Tabs_Presets_Event { - get { - return ResourceManager.GetString("Tabs_Presets_Event", resourceCulture); - } - } - - internal static string Options_Tabs_NewTab { - get { - return ResourceManager.GetString("Options_Tabs_NewTab", resourceCulture); - } - } - - internal static string Options_About_Tab { - get { - return ResourceManager.GetString("Options_About_Tab", resourceCulture); - } - } - - internal static string Options_About_Opening { - get { - return ResourceManager.GetString("Options_About_Opening", resourceCulture); - } - } - - internal static string Options_About_ClickUp { - get { - return ResourceManager.GetString("Options_About_ClickUp", resourceCulture); - } - } - - internal static string Options_About_CrowdIn { - get { - return ResourceManager.GetString("Options_About_CrowdIn", resourceCulture); - } - } - - internal static string Options_About_Translators { - get { - return ResourceManager.GetString("Options_About_Translators", resourceCulture); - } - } - - internal static string CommandHelpSide_None { - get { - return ResourceManager.GetString("CommandHelpSide_None", resourceCulture); - } - } - - internal static string CommandHelpSide_Left { - get { - return ResourceManager.GetString("CommandHelpSide_Left", resourceCulture); - } - } - - internal static string CommandHelpSide_Right { - get { - return ResourceManager.GetString("CommandHelpSide_Right", resourceCulture); - } - } - - internal static string Options_CommandHelpSide_Name { - get { - return ResourceManager.GetString("Options_CommandHelpSide_Name", resourceCulture); - } - } - - internal static string Options_CommandHelpSide_Description { - get { - return ResourceManager.GetString("Options_CommandHelpSide_Description", resourceCulture); - } - } - - internal static string Options_HideWhenUiHidden_Name { - get { - return ResourceManager.GetString("Options_HideWhenUiHidden_Name", resourceCulture); - } - } - - internal static string Options_HideWhenUiHidden_Description { - get { - return ResourceManager.GetString("Options_HideWhenUiHidden_Description", resourceCulture); - } - } - - internal static string Options_KeybindMode_Name { - get { - return ResourceManager.GetString("Options_KeybindMode_Name", resourceCulture); - } - } - - internal static string Options_KeybindMode_Description { - get { - return ResourceManager.GetString("Options_KeybindMode_Description", resourceCulture); - } - } - - internal static string Options_Miscellaneous_Tab { - get { - return ResourceManager.GetString("Options_Miscellaneous_Tab", resourceCulture); - } - } - - internal static string LanguageOverride_None { - get { - return ResourceManager.GetString("LanguageOverride_None", resourceCulture); - } - } - - internal static string KeybindMode_Flexible_Name { - get { - return ResourceManager.GetString("KeybindMode_Flexible_Name", resourceCulture); - } - } - - internal static string KeybindMode_Strict_Name { - get { - return ResourceManager.GetString("KeybindMode_Strict_Name", resourceCulture); - } - } - - internal static string KeybindMode_Flexible_Tooltip { - get { - return ResourceManager.GetString("KeybindMode_Flexible_Tooltip", resourceCulture); - } - } - - internal static string KeybindMode_Strict_Tooltip { - get { - return ResourceManager.GetString("KeybindMode_Strict_Tooltip", resourceCulture); - } - } - - internal static string Options_Language_Name { - get { - return ResourceManager.GetString("Options_Language_Name", resourceCulture); - } - } - - internal static string Options_Language_Description { - get { - return ResourceManager.GetString("Options_Language_Description", resourceCulture); - } - } - - internal static string Options_DatabaseBattleMessages_Name { - get { - return ResourceManager.GetString("Options_DatabaseBattleMessages_Name", resourceCulture); - } - } - - internal static string Options_DatabaseBattleMessages_Description { - get { - return ResourceManager.GetString("Options_DatabaseBattleMessages_Description", resourceCulture); - } - } - - internal static string Options_LoadPreviousSession_Name { - get { - return ResourceManager.GetString("Options_LoadPreviousSession_Name", resourceCulture); - } - } - - internal static string Options_LoadPreviousSession_Description { - get { - return ResourceManager.GetString("Options_LoadPreviousSession_Description", resourceCulture); - } - } - - internal static string Options_Database_Tab { - get { - return ResourceManager.GetString("Options_Database_Tab", resourceCulture); - } - } - - internal static string Options_FilterIncludePreviousSessions_Name { - get { - return ResourceManager.GetString("Options_FilterIncludePreviousSessions_Name", resourceCulture); - } - } - - internal static string Options_FilterIncludePreviousSessions_Description { - get { - return ResourceManager.GetString("Options_FilterIncludePreviousSessions_Description", resourceCulture); - } - } - - internal static string Options_Database_Advanced_Warning { - get { - return ResourceManager.GetString("Options_Database_Advanced_Warning", resourceCulture); - } - } - - internal static string Options_Database_Advanced { - get { - return ResourceManager.GetString("Options_Database_Advanced", resourceCulture); - } - } - - internal static string Options_SharedMode_Name { - get { - return ResourceManager.GetString("Options_SharedMode_Name", resourceCulture); - } - } - - internal static string Options_SharedMode_Description { - get { - return ResourceManager.GetString("Options_SharedMode_Description", resourceCulture); - } - } - - internal static string Options_SharedMode_Warning { - get { - return ResourceManager.GetString("Options_SharedMode_Warning", resourceCulture); - } - } - - internal static string ChatLog_Tabs_PopOut { - get { - return ResourceManager.GetString("ChatLog_Tabs_PopOut", resourceCulture); - } - } - - internal static string Options_HideSameTimestamps_Name { - get { - return ResourceManager.GetString("Options_HideSameTimestamps_Name", resourceCulture); - } - } - - internal static string Options_HideSameTimestamps_Description { - get { - return ResourceManager.GetString("Options_HideSameTimestamps_Description", resourceCulture); - } - } - - internal static string Options_ShowPopOutTitleBar_Name { - get { - return ResourceManager.GetString("Options_ShowPopOutTitleBar_Name", resourceCulture); - } - } - - internal static string Options_Tabs_PopOut { - get { - return ResourceManager.GetString("Options_Tabs_PopOut", resourceCulture); - } - } - - internal static string Options_Tabs_IndependentOpacity { - get { - return ResourceManager.GetString("Options_Tabs_IndependentOpacity", resourceCulture); - } - } - - internal static string Options_Tabs_Opacity { - get { - return ResourceManager.GetString("Options_Tabs_Opacity", resourceCulture); - } - } - - internal static string Options_FontsEnabled { - get { - return ResourceManager.GetString("Options_FontsEnabled", resourceCulture); - } - } - - internal static string AutoTranslate_Search_Hint { - get { - return ResourceManager.GetString("AutoTranslate_Search_Hint", resourceCulture); - } - } - - internal static string Options_SortAutoTranslate_Name { - get { - return ResourceManager.GetString("Options_SortAutoTranslate_Name", resourceCulture); - } - } - - internal static string Options_SortAutoTranslate_Description { - get { - return ResourceManager.GetString("Options_SortAutoTranslate_Description", resourceCulture); - } - } - + /// + /// Looks up a localized string similar to Ctrl + {0}. + /// internal static string AutoTranslate_Completion_Key { get { return ResourceManager.GetString("AutoTranslate_Completion_Key", resourceCulture); } } - internal static string Options_ExtraGlyphs_Name { + /// + /// Looks up a localized string similar to Search Auto Translate.... + /// + internal static string AutoTranslate_Search_Hint { get { - return ResourceManager.GetString("Options_ExtraGlyphs_Name", resourceCulture); + return ResourceManager.GetString("AutoTranslate_Search_Hint", resourceCulture); } } - internal static string Options_ExtraGlyphs_Description { + /// + /// Looks up a localized string similar to Hide chat. + /// + internal static string ChatLog_HideChat { get { - return ResourceManager.GetString("Options_ExtraGlyphs_Description", resourceCulture); + return ResourceManager.GetString("ChatLog_HideChat", resourceCulture); } } - internal static string ExtraGlyphRanges_ChineseFull_Name { + /// + /// Looks up a localized string similar to Disabled for this tab.. + /// + internal static string ChatLog_SwitcherDisabled { get { - return ResourceManager.GetString("ExtraGlyphRanges_ChineseFull_Name", resourceCulture); + return ResourceManager.GetString("ChatLog_SwitcherDisabled", resourceCulture); } } - internal static string ExtraGlyphRanges_ChineseSimplifiedCommon_Name { + /// + /// Looks up a localized string similar to Delete tab. + /// + internal static string ChatLog_Tabs_Delete { get { - return ResourceManager.GetString("ExtraGlyphRanges_ChineseSimplifiedCommon_Name", resourceCulture); + return ResourceManager.GetString("ChatLog_Tabs_Delete", resourceCulture); } } - internal static string ExtraGlyphRanges_Cyrillic_Name { + /// + /// Looks up a localized string similar to Move down. + /// + internal static string ChatLog_Tabs_MoveDown { get { - return ResourceManager.GetString("ExtraGlyphRanges_Cyrillic_Name", resourceCulture); + return ResourceManager.GetString("ChatLog_Tabs_MoveDown", resourceCulture); } } - internal static string ExtraGlyphRanges_Japanese_Name { + /// + /// Looks up a localized string similar to Move left. + /// + internal static string ChatLog_Tabs_MoveLeft { get { - return ResourceManager.GetString("ExtraGlyphRanges_Japanese_Name", resourceCulture); + return ResourceManager.GetString("ChatLog_Tabs_MoveLeft", resourceCulture); } } - internal static string ExtraGlyphRanges_Korean_Name { + /// + /// Looks up a localized string similar to Move right. + /// + internal static string ChatLog_Tabs_MoveRight { get { - return ResourceManager.GetString("ExtraGlyphRanges_Korean_Name", resourceCulture); + return ResourceManager.GetString("ChatLog_Tabs_MoveRight", resourceCulture); } } - internal static string ExtraGlyphRanges_Thai_Name { + /// + /// Looks up a localized string similar to Move up. + /// + internal static string ChatLog_Tabs_MoveUp { get { - return ResourceManager.GetString("ExtraGlyphRanges_Thai_Name", resourceCulture); + return ResourceManager.GetString("ChatLog_Tabs_MoveUp", resourceCulture); } } - internal static string ExtraGlyphRanges_Vietnamese_Name { + /// + /// Looks up a localized string similar to Pop out. + /// + internal static string ChatLog_Tabs_PopOut { get { - return ResourceManager.GetString("ExtraGlyphRanges_Vietnamese_Name", resourceCulture); + return ResourceManager.GetString("ChatLog_Tabs_PopOut", resourceCulture); } } - internal static string Context_Integrations { + /// + /// Looks up a localized string similar to Alliance Member. + /// + internal static string ChatSource_AllianceMember { get { - return ResourceManager.GetString("Context_Integrations", resourceCulture); + return ResourceManager.GetString("ChatSource_AllianceMember", resourceCulture); } } - internal static string Context_ScreenshotMode { + /// + /// Looks up a localized string similar to Pet (Alliance member). + /// + internal static string ChatSource_AlliancePet { get { - return ResourceManager.GetString("Context_ScreenshotMode", resourceCulture); + return ResourceManager.GetString("ChatSource_AlliancePet", resourceCulture); } } - internal static string Context_HideChat { + /// + /// Looks up a localized string similar to Engaged Enemy. + /// + internal static string ChatSource_EngagedEnemy { get { - return ResourceManager.GetString("Context_HideChat", resourceCulture); + return ResourceManager.GetString("ChatSource_EngagedEnemy", resourceCulture); } } - internal static string Context_Copy { + /// + /// Looks up a localized string similar to Friendly NPC. + /// + internal static string ChatSource_FriendlyNpc { get { - return ResourceManager.GetString("Context_Copy", resourceCulture); + return ResourceManager.GetString("ChatSource_FriendlyNpc", resourceCulture); } } - internal static string Context_TryOn { + /// + /// Looks up a localized string similar to Other. + /// + internal static string ChatSource_Other { get { - return ResourceManager.GetString("Context_TryOn", resourceCulture); + return ResourceManager.GetString("ChatSource_Other", resourceCulture); } } - internal static string Context_ItemComparison { + /// + /// Looks up a localized string similar to Pet (Other). + /// + internal static string ChatSource_OtherPet { get { - return ResourceManager.GetString("Context_ItemComparison", resourceCulture); + return ResourceManager.GetString("ChatSource_OtherPet", resourceCulture); } } - internal static string Context_SearchRecipes { + /// + /// Looks up a localized string similar to Party Member. + /// + internal static string ChatSource_PartyMember { get { - return ResourceManager.GetString("Context_SearchRecipes", resourceCulture); + return ResourceManager.GetString("ChatSource_PartyMember", resourceCulture); } } - internal static string Context_SearchForItem { + /// + /// Looks up a localized string similar to Pet (Party). + /// + internal static string ChatSource_PartyPet { get { - return ResourceManager.GetString("Context_SearchForItem", resourceCulture); + return ResourceManager.GetString("ChatSource_PartyPet", resourceCulture); } } - internal static string Context_Link { + /// + /// Looks up a localized string similar to Self. + /// + internal static string ChatSource_Self { get { - return ResourceManager.GetString("Context_Link", resourceCulture); + return ResourceManager.GetString("ChatSource_Self", resourceCulture); } } - internal static string Context_CopyItemName { + /// + /// Looks up a localized string similar to Pet (Self). + /// + internal static string ChatSource_SelfPet { get { - return ResourceManager.GetString("Context_CopyItemName", resourceCulture); + return ResourceManager.GetString("ChatSource_SelfPet", resourceCulture); } } - internal static string Context_SendTell { + /// + /// Looks up a localized string similar to Unengaged Enemy. + /// + internal static string ChatSource_UnengagedEnemy { get { - return ResourceManager.GetString("Context_SendTell", resourceCulture); - } - } - - internal static string Context_InviteToParty { - get { - return ResourceManager.GetString("Context_InviteToParty", resourceCulture); - } - } - - internal static string Context_InviteToParty_SameWorld { - get { - return ResourceManager.GetString("Context_InviteToParty_SameWorld", resourceCulture); - } - } - - internal static string Context_InviteToParty_DifferentWorld { - get { - return ResourceManager.GetString("Context_InviteToParty_DifferentWorld", resourceCulture); - } - } - - internal static string Context_Promote { - get { - return ResourceManager.GetString("Context_Promote", resourceCulture); - } - } - - internal static string Context_KickFromParty { - get { - return ResourceManager.GetString("Context_KickFromParty", resourceCulture); - } - } - - internal static string Context_SendFriendRequest { - get { - return ResourceManager.GetString("Context_SendFriendRequest", resourceCulture); - } - } - - internal static string Context_AddToBlacklist { - get { - return ResourceManager.GetString("Context_AddToBlacklist", resourceCulture); - } - } - - internal static string Context_InviteToNoviceNetwork { - get { - return ResourceManager.GetString("Context_InviteToNoviceNetwork", resourceCulture); - } - } - - internal static string Context_ReplyInSelectedChatMode { - get { - return ResourceManager.GetString("Context_ReplyInSelectedChatMode", resourceCulture); - } - } - - internal static string Context_Target { - get { - return ResourceManager.GetString("Context_Target", resourceCulture); - } - } - - internal static string ChatType_Debug { - get { - return ResourceManager.GetString("ChatType_Debug", resourceCulture); - } - } - - internal static string ChatType_Urgent { - get { - return ResourceManager.GetString("ChatType_Urgent", resourceCulture); - } - } - - internal static string ChatType_Notice { - get { - return ResourceManager.GetString("ChatType_Notice", resourceCulture); - } - } - - internal static string ChatType_Say { - get { - return ResourceManager.GetString("ChatType_Say", resourceCulture); - } - } - - internal static string ChatType_Shout { - get { - return ResourceManager.GetString("ChatType_Shout", resourceCulture); - } - } - - internal static string ChatType_TellOutgoing { - get { - return ResourceManager.GetString("ChatType_TellOutgoing", resourceCulture); - } - } - - internal static string ChatType_TellIncoming { - get { - return ResourceManager.GetString("ChatType_TellIncoming", resourceCulture); - } - } - - internal static string ChatType_Party { - get { - return ResourceManager.GetString("ChatType_Party", resourceCulture); - } - } - - internal static string ChatType_Alliance { - get { - return ResourceManager.GetString("ChatType_Alliance", resourceCulture); - } - } - - internal static string ChatType_Linkshell1 { - get { - return ResourceManager.GetString("ChatType_Linkshell1", resourceCulture); - } - } - - internal static string ChatType_Linkshell2 { - get { - return ResourceManager.GetString("ChatType_Linkshell2", resourceCulture); - } - } - - internal static string ChatType_Linkshell3 { - get { - return ResourceManager.GetString("ChatType_Linkshell3", resourceCulture); - } - } - - internal static string ChatType_Linkshell4 { - get { - return ResourceManager.GetString("ChatType_Linkshell4", resourceCulture); - } - } - - internal static string ChatType_Linkshell5 { - get { - return ResourceManager.GetString("ChatType_Linkshell5", resourceCulture); - } - } - - internal static string ChatType_Linkshell6 { - get { - return ResourceManager.GetString("ChatType_Linkshell6", resourceCulture); - } - } - - internal static string ChatType_Linkshell7 { - get { - return ResourceManager.GetString("ChatType_Linkshell7", resourceCulture); - } - } - - internal static string ChatType_Linkshell8 { - get { - return ResourceManager.GetString("ChatType_Linkshell8", resourceCulture); - } - } - - internal static string ChatType_FreeCompany { - get { - return ResourceManager.GetString("ChatType_FreeCompany", resourceCulture); - } - } - - internal static string ChatType_NoviceNetwork { - get { - return ResourceManager.GetString("ChatType_NoviceNetwork", resourceCulture); - } - } - - internal static string ChatType_CustomEmotes { - get { - return ResourceManager.GetString("ChatType_CustomEmotes", resourceCulture); - } - } - - internal static string ChatType_StandardEmotes { - get { - return ResourceManager.GetString("ChatType_StandardEmotes", resourceCulture); - } - } - - internal static string ChatType_Yell { - get { - return ResourceManager.GetString("ChatType_Yell", resourceCulture); - } - } - - internal static string ChatType_CrossWorldParty { - get { - return ResourceManager.GetString("ChatType_CrossWorldParty", resourceCulture); - } - } - - internal static string ChatType_PvpTeam { - get { - return ResourceManager.GetString("ChatType_PvpTeam", resourceCulture); - } - } - - internal static string ChatType_CrossLinkshell1 { - get { - return ResourceManager.GetString("ChatType_CrossLinkshell1", resourceCulture); - } - } - - internal static string ChatType_CrossLinkshell2 { - get { - return ResourceManager.GetString("ChatType_CrossLinkshell2", resourceCulture); - } - } - - internal static string ChatType_CrossLinkshell3 { - get { - return ResourceManager.GetString("ChatType_CrossLinkshell3", resourceCulture); - } - } - - internal static string ChatType_CrossLinkshell4 { - get { - return ResourceManager.GetString("ChatType_CrossLinkshell4", resourceCulture); - } - } - - internal static string ChatType_CrossLinkshell5 { - get { - return ResourceManager.GetString("ChatType_CrossLinkshell5", resourceCulture); - } - } - - internal static string ChatType_CrossLinkshell6 { - get { - return ResourceManager.GetString("ChatType_CrossLinkshell6", resourceCulture); - } - } - - internal static string ChatType_CrossLinkshell7 { - get { - return ResourceManager.GetString("ChatType_CrossLinkshell7", resourceCulture); - } - } - - internal static string ChatType_CrossLinkshell8 { - get { - return ResourceManager.GetString("ChatType_CrossLinkshell8", resourceCulture); - } - } - - internal static string ChatType_Damage { - get { - return ResourceManager.GetString("ChatType_Damage", resourceCulture); - } - } - - internal static string ChatType_Miss { - get { - return ResourceManager.GetString("ChatType_Miss", resourceCulture); + return ResourceManager.GetString("ChatSource_UnengagedEnemy", resourceCulture); } } + /// + /// Looks up a localized string similar to Actions used. + /// internal static string ChatType_Action { get { return ResourceManager.GetString("ChatType_Action", resourceCulture); } } - internal static string ChatType_Item { - get { - return ResourceManager.GetString("ChatType_Item", resourceCulture); - } - } - - internal static string ChatType_Healing { - get { - return ResourceManager.GetString("ChatType_Healing", resourceCulture); - } - } - - internal static string ChatType_GainBuff { - get { - return ResourceManager.GetString("ChatType_GainBuff", resourceCulture); - } - } - - internal static string ChatType_GainDebuff { - get { - return ResourceManager.GetString("ChatType_GainDebuff", resourceCulture); - } - } - - internal static string ChatType_LoseBuff { - get { - return ResourceManager.GetString("ChatType_LoseBuff", resourceCulture); - } - } - - internal static string ChatType_LoseDebuff { - get { - return ResourceManager.GetString("ChatType_LoseDebuff", resourceCulture); - } - } - + /// + /// Looks up a localized string similar to Alarm Notifications. + /// internal static string ChatType_Alarm { get { return ResourceManager.GetString("ChatType_Alarm", resourceCulture); } } - internal static string ChatType_Echo { + /// + /// Looks up a localized string similar to Alliance. + /// + internal static string ChatType_Alliance { get { - return ResourceManager.GetString("ChatType_Echo", resourceCulture); - } - } - - internal static string ChatType_System { - get { - return ResourceManager.GetString("ChatType_System", resourceCulture); + return ResourceManager.GetString("ChatType_Alliance", resourceCulture); } } + /// + /// Looks up a localized string similar to Battle System Messages. + /// internal static string ChatType_BattleSystem { get { return ResourceManager.GetString("ChatType_BattleSystem", resourceCulture); } } - internal static string ChatType_GatheringSystem { - get { - return ResourceManager.GetString("ChatType_GatheringSystem", resourceCulture); - } - } - - internal static string ChatType_Error { - get { - return ResourceManager.GetString("ChatType_Error", resourceCulture); - } - } - - internal static string ChatType_NpcDialogue { - get { - return ResourceManager.GetString("ChatType_NpcDialogue", resourceCulture); - } - } - - internal static string ChatType_LootNotice { - get { - return ResourceManager.GetString("ChatType_LootNotice", resourceCulture); - } - } - - internal static string ChatType_Progress { - get { - return ResourceManager.GetString("ChatType_Progress", resourceCulture); - } - } - - internal static string ChatType_LootRoll { - get { - return ResourceManager.GetString("ChatType_LootRoll", resourceCulture); - } - } - + /// + /// Looks up a localized string similar to Synthesis Messages. + /// internal static string ChatType_Crafting { get { return ResourceManager.GetString("ChatType_Crafting", resourceCulture); } } - internal static string ChatType_Gathering { + /// + /// Looks up a localized string similar to Cross-world Linkshell [1]. + /// + internal static string ChatType_CrossLinkshell1 { get { - return ResourceManager.GetString("ChatType_Gathering", resourceCulture); + return ResourceManager.GetString("ChatType_CrossLinkshell1", resourceCulture); } } - internal static string ChatType_NpcAnnouncement { + /// + /// Looks up a localized string similar to Cross-world Linkshell [2]. + /// + internal static string ChatType_CrossLinkshell2 { get { - return ResourceManager.GetString("ChatType_NpcAnnouncement", resourceCulture); + return ResourceManager.GetString("ChatType_CrossLinkshell2", resourceCulture); } } + /// + /// Looks up a localized string similar to Cross-world Linkshell [3]. + /// + internal static string ChatType_CrossLinkshell3 { + get { + return ResourceManager.GetString("ChatType_CrossLinkshell3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cross-world Linkshell [4]. + /// + internal static string ChatType_CrossLinkshell4 { + get { + return ResourceManager.GetString("ChatType_CrossLinkshell4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cross-world Linkshell [5]. + /// + internal static string ChatType_CrossLinkshell5 { + get { + return ResourceManager.GetString("ChatType_CrossLinkshell5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cross-world Linkshell [6]. + /// + internal static string ChatType_CrossLinkshell6 { + get { + return ResourceManager.GetString("ChatType_CrossLinkshell6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cross-world Linkshell [7]. + /// + internal static string ChatType_CrossLinkshell7 { + get { + return ResourceManager.GetString("ChatType_CrossLinkshell7", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cross-world Linkshell [8]. + /// + internal static string ChatType_CrossLinkshell8 { + get { + return ResourceManager.GetString("ChatType_CrossLinkshell8", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cross-world Party. + /// + internal static string ChatType_CrossWorldParty { + get { + return ResourceManager.GetString("ChatType_CrossWorldParty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Emotes. + /// + internal static string ChatType_CustomEmotes { + get { + return ResourceManager.GetString("ChatType_CustomEmotes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Damage dealt. + /// + internal static string ChatType_Damage { + get { + return ResourceManager.GetString("ChatType_Damage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Debug. + /// + internal static string ChatType_Debug { + get { + return ResourceManager.GetString("ChatType_Debug", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Echo. + /// + internal static string ChatType_Echo { + get { + return ResourceManager.GetString("ChatType_Echo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error Messages. + /// + internal static string ChatType_Error { + get { + return ResourceManager.GetString("ChatType_Error", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Free Company. + /// + internal static string ChatType_FreeCompany { + get { + return ResourceManager.GetString("ChatType_FreeCompany", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Free Company Announcements. + /// internal static string ChatType_FreeCompanyAnnouncement { get { return ResourceManager.GetString("ChatType_FreeCompanyAnnouncement", resourceCulture); } } + /// + /// Looks up a localized string similar to Free Company Member Login Notifications. + /// internal static string ChatType_FreeCompanyLoginLogout { get { return ResourceManager.GetString("ChatType_FreeCompanyLoginLogout", resourceCulture); } } - internal static string ChatType_RetainerSale { + /// + /// Looks up a localized string similar to Beneficial effects granted. + /// + internal static string ChatType_GainBuff { get { - return ResourceManager.GetString("ChatType_RetainerSale", resourceCulture); + return ResourceManager.GetString("ChatType_GainBuff", resourceCulture); } } - internal static string ChatType_PeriodicRecruitmentNotification { + /// + /// Looks up a localized string similar to Detrimental effects inflicted. + /// + internal static string ChatType_GainDebuff { get { - return ResourceManager.GetString("ChatType_PeriodicRecruitmentNotification", resourceCulture); + return ResourceManager.GetString("ChatType_GainDebuff", resourceCulture); } } - internal static string ChatType_Sign { + /// + /// Looks up a localized string similar to Gathering Messages. + /// + internal static string ChatType_Gathering { get { - return ResourceManager.GetString("ChatType_Sign", resourceCulture); + return ResourceManager.GetString("ChatType_Gathering", resourceCulture); } } - internal static string ChatType_RandomNumber { + /// + /// Looks up a localized string similar to Gathering System Messages. + /// + internal static string ChatType_GatheringSystem { get { - return ResourceManager.GetString("ChatType_RandomNumber", resourceCulture); - } - } - - internal static string ChatType_NoviceNetworkSystem { - get { - return ResourceManager.GetString("ChatType_NoviceNetworkSystem", resourceCulture); - } - } - - internal static string ChatType_Orchestrion { - get { - return ResourceManager.GetString("ChatType_Orchestrion", resourceCulture); - } - } - - internal static string ChatType_PvpTeamAnnouncement { - get { - return ResourceManager.GetString("ChatType_PvpTeamAnnouncement", resourceCulture); - } - } - - internal static string ChatType_PvpTeamLoginLogout { - get { - return ResourceManager.GetString("ChatType_PvpTeamLoginLogout", resourceCulture); - } - } - - internal static string ChatType_MessageBook { - get { - return ResourceManager.GetString("ChatType_MessageBook", resourceCulture); - } - } - - internal static string ChatType_GmTell { - get { - return ResourceManager.GetString("ChatType_GmTell", resourceCulture); - } - } - - internal static string ChatType_GmSay { - get { - return ResourceManager.GetString("ChatType_GmSay", resourceCulture); - } - } - - internal static string ChatType_GmShout { - get { - return ResourceManager.GetString("ChatType_GmShout", resourceCulture); - } - } - - internal static string ChatType_GmYell { - get { - return ResourceManager.GetString("ChatType_GmYell", resourceCulture); - } - } - - internal static string ChatType_GmParty { - get { - return ResourceManager.GetString("ChatType_GmParty", resourceCulture); + return ResourceManager.GetString("ChatType_GatheringSystem", resourceCulture); } } + /// + /// Looks up a localized string similar to Free Company (GM). + /// internal static string ChatType_GmFreeCompany { get { return ResourceManager.GetString("ChatType_GmFreeCompany", resourceCulture); } } + /// + /// Looks up a localized string similar to Linkshell [1] (GM). + /// internal static string ChatType_GmLinkshell1 { get { return ResourceManager.GetString("ChatType_GmLinkshell1", resourceCulture); } } + /// + /// Looks up a localized string similar to Linkshell [2] (GM). + /// internal static string ChatType_GmLinkshell2 { get { return ResourceManager.GetString("ChatType_GmLinkshell2", resourceCulture); } } + /// + /// Looks up a localized string similar to Linkshell [3] (GM). + /// internal static string ChatType_GmLinkshell3 { get { return ResourceManager.GetString("ChatType_GmLinkshell3", resourceCulture); } } + /// + /// Looks up a localized string similar to Linkshell [4] (GM). + /// internal static string ChatType_GmLinkshell4 { get { return ResourceManager.GetString("ChatType_GmLinkshell4", resourceCulture); } } + /// + /// Looks up a localized string similar to Linkshell [5] (GM). + /// internal static string ChatType_GmLinkshell5 { get { return ResourceManager.GetString("ChatType_GmLinkshell5", resourceCulture); } } + /// + /// Looks up a localized string similar to Linkshell [6] (GM). + /// internal static string ChatType_GmLinkshell6 { get { return ResourceManager.GetString("ChatType_GmLinkshell6", resourceCulture); } } + /// + /// Looks up a localized string similar to Linkshell [7] (GM). + /// internal static string ChatType_GmLinkshell7 { get { return ResourceManager.GetString("ChatType_GmLinkshell7", resourceCulture); } } + /// + /// Looks up a localized string similar to Linkshell [8] (GM). + /// internal static string ChatType_GmLinkshell8 { get { return ResourceManager.GetString("ChatType_GmLinkshell8", resourceCulture); } } + /// + /// Looks up a localized string similar to Novice Network (GM). + /// internal static string ChatType_GmNoviceNetwork { get { return ResourceManager.GetString("ChatType_GmNoviceNetwork", resourceCulture); } } - internal static string Options_CollapseDuplicateMessages_Name { + /// + /// Looks up a localized string similar to Party (GM). + /// + internal static string ChatType_GmParty { get { - return ResourceManager.GetString("Options_CollapseDuplicateMessages_Name", resourceCulture); + return ResourceManager.GetString("ChatType_GmParty", resourceCulture); } } - internal static string Options_CollapseDuplicateMessages_Description { + /// + /// Looks up a localized string similar to Say (GM). + /// + internal static string ChatType_GmSay { get { - return ResourceManager.GetString("Options_CollapseDuplicateMessages_Description", resourceCulture); + return ResourceManager.GetString("ChatType_GmSay", resourceCulture); } } - internal static string Options_Tabs_ExtraChatChannels { + /// + /// Looks up a localized string similar to Shout (GM). + /// + internal static string ChatType_GmShout { get { - return ResourceManager.GetString("Options_Tabs_ExtraChatChannels", resourceCulture); + return ResourceManager.GetString("ChatType_GmShout", resourceCulture); } } - internal static string Options_Tabs_ExtraChatAll { + /// + /// Looks up a localized string similar to Tell (GM). + /// + internal static string ChatType_GmTell { get { - return ResourceManager.GetString("Options_Tabs_ExtraChatAll", resourceCulture); + return ResourceManager.GetString("ChatType_GmTell", resourceCulture); } } + /// + /// Looks up a localized string similar to Yell (GM). + /// + internal static string ChatType_GmYell { + get { + return ResourceManager.GetString("ChatType_GmYell", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Healing. + /// + internal static string ChatType_Healing { + get { + return ResourceManager.GetString("ChatType_Healing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Items used. + /// + internal static string ChatType_Item { + get { + return ResourceManager.GetString("ChatType_Item", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Linkshell [1]. + /// + internal static string ChatType_Linkshell1 { + get { + return ResourceManager.GetString("ChatType_Linkshell1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Linkshell [2]. + /// + internal static string ChatType_Linkshell2 { + get { + return ResourceManager.GetString("ChatType_Linkshell2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Linkshell [3]. + /// + internal static string ChatType_Linkshell3 { + get { + return ResourceManager.GetString("ChatType_Linkshell3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Linkshell [4]. + /// + internal static string ChatType_Linkshell4 { + get { + return ResourceManager.GetString("ChatType_Linkshell4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Linkshell [5]. + /// + internal static string ChatType_Linkshell5 { + get { + return ResourceManager.GetString("ChatType_Linkshell5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Linkshell [6]. + /// + internal static string ChatType_Linkshell6 { + get { + return ResourceManager.GetString("ChatType_Linkshell6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Linkshell [7]. + /// + internal static string ChatType_Linkshell7 { + get { + return ResourceManager.GetString("ChatType_Linkshell7", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Linkshell [8]. + /// + internal static string ChatType_Linkshell8 { + get { + return ResourceManager.GetString("ChatType_Linkshell8", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Loot Notices. + /// + internal static string ChatType_LootNotice { + get { + return ResourceManager.GetString("ChatType_LootNotice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Loot Messages. + /// + internal static string ChatType_LootRoll { + get { + return ResourceManager.GetString("ChatType_LootRoll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Beneficial effects lost. + /// + internal static string ChatType_LoseBuff { + get { + return ResourceManager.GetString("ChatType_LoseBuff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Detrimental effects cured. + /// + internal static string ChatType_LoseDebuff { + get { + return ResourceManager.GetString("ChatType_LoseDebuff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Message Book Alert. + /// + internal static string ChatType_MessageBook { + get { + return ResourceManager.GetString("ChatType_MessageBook", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed attacks. + /// + internal static string ChatType_Miss { + get { + return ResourceManager.GetString("ChatType_Miss", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Notice. + /// + internal static string ChatType_Notice { + get { + return ResourceManager.GetString("ChatType_Notice", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Novice Network. + /// + internal static string ChatType_NoviceNetwork { + get { + return ResourceManager.GetString("ChatType_NoviceNetwork", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Novice Network Announcements. + /// + internal static string ChatType_NoviceNetworkSystem { + get { + return ResourceManager.GetString("ChatType_NoviceNetworkSystem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NPC Dialogue (Announcements). + /// + internal static string ChatType_NpcAnnouncement { + get { + return ResourceManager.GetString("ChatType_NpcAnnouncement", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NPC Dialogue. + /// + internal static string ChatType_NpcDialogue { + get { + return ResourceManager.GetString("ChatType_NpcDialogue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Current Orchestrion Track Messages. + /// + internal static string ChatType_Orchestrion { + get { + return ResourceManager.GetString("ChatType_Orchestrion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Party. + /// + internal static string ChatType_Party { + get { + return ResourceManager.GetString("ChatType_Party", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Periodic Recruitment Notifications. + /// + internal static string ChatType_PeriodicRecruitmentNotification { + get { + return ResourceManager.GetString("ChatType_PeriodicRecruitmentNotification", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Progression Messages. + /// + internal static string ChatType_Progress { + get { + return ResourceManager.GetString("ChatType_Progress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PvP Team. + /// + internal static string ChatType_PvpTeam { + get { + return ResourceManager.GetString("ChatType_PvpTeam", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PvP Team Announcements. + /// + internal static string ChatType_PvpTeamAnnouncement { + get { + return ResourceManager.GetString("ChatType_PvpTeamAnnouncement", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PvP Team Member Login Notifications. + /// + internal static string ChatType_PvpTeamLoginLogout { + get { + return ResourceManager.GetString("ChatType_PvpTeamLoginLogout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Random Number Messages. + /// + internal static string ChatType_RandomNumber { + get { + return ResourceManager.GetString("ChatType_RandomNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Retainer Sale Notifications. + /// + internal static string ChatType_RetainerSale { + get { + return ResourceManager.GetString("ChatType_RetainerSale", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Say. + /// + internal static string ChatType_Say { + get { + return ResourceManager.GetString("ChatType_Say", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Shout. + /// + internal static string ChatType_Shout { + get { + return ResourceManager.GetString("ChatType_Shout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sign Messages for PC Targets. + /// + internal static string ChatType_Sign { + get { + return ResourceManager.GetString("ChatType_Sign", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Standard Emotes. + /// + internal static string ChatType_StandardEmotes { + get { + return ResourceManager.GetString("ChatType_StandardEmotes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to System Messages. + /// + internal static string ChatType_System { + get { + return ResourceManager.GetString("ChatType_System", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tell (Incoming). + /// + internal static string ChatType_TellIncoming { + get { + return ResourceManager.GetString("ChatType_TellIncoming", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tell (Outgoing). + /// + internal static string ChatType_TellOutgoing { + get { + return ResourceManager.GetString("ChatType_TellOutgoing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Urgent. + /// + internal static string ChatType_Urgent { + get { + return ResourceManager.GetString("ChatType_Urgent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yell. + /// + internal static string ChatType_Yell { + get { + return ResourceManager.GetString("ChatType_Yell", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Left. + /// + internal static string CommandHelpSide_Left { + get { + return ResourceManager.GetString("CommandHelpSide_Left", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None. + /// + internal static string CommandHelpSide_None { + get { + return ResourceManager.GetString("CommandHelpSide_None", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Right. + /// + internal static string CommandHelpSide_Right { + get { + return ResourceManager.GetString("CommandHelpSide_Right", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add to Blacklist. + /// + internal static string Context_AddToBlacklist { + get { + return ResourceManager.GetString("Context_AddToBlacklist", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View Adventurer Plate. + /// + internal static string Context_AdventurerPlate { + get { + return ResourceManager.GetString("Context_AdventurerPlate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to open adventurer plate at this moment. + /// + internal static string Context_AdventurerPlateError { + get { + return ResourceManager.GetString("Context_AdventurerPlateError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + internal static string Context_Copy { + get { + return ResourceManager.GetString("Context_Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Item Name. + /// + internal static string Context_CopyItemName { + get { + return ResourceManager.GetString("Context_CopyItemName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide chat. + /// + internal static string Context_HideChat { + get { + return ResourceManager.GetString("Context_HideChat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Integrations. + /// + internal static string Context_Integrations { + get { + return ResourceManager.GetString("Context_Integrations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invite to Novice Network. + /// + internal static string Context_InviteToNoviceNetwork { + get { + return ResourceManager.GetString("Context_InviteToNoviceNetwork", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invite to Party. + /// + internal static string Context_InviteToParty { + get { + return ResourceManager.GetString("Context_InviteToParty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Different world. + /// + internal static string Context_InviteToParty_DifferentWorld { + get { + return ResourceManager.GetString("Context_InviteToParty_DifferentWorld", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Same world. + /// + internal static string Context_InviteToParty_SameWorld { + get { + return ResourceManager.GetString("Context_InviteToParty_SameWorld", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Item Comparison. + /// + internal static string Context_ItemComparison { + get { + return ResourceManager.GetString("Context_ItemComparison", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Kick from Party. + /// + internal static string Context_KickFromParty { + get { + return ResourceManager.GetString("Context_KickFromParty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Link. + /// + internal static string Context_Link { + get { + return ResourceManager.GetString("Context_Link", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Promote. + /// + internal static string Context_Promote { + get { + return ResourceManager.GetString("Context_Promote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reply in Selected Chat Mode. + /// + internal static string Context_ReplyInSelectedChatMode { + get { + return ResourceManager.GetString("Context_ReplyInSelectedChatMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Screenshot mode. + /// + internal static string Context_ScreenshotMode { + get { + return ResourceManager.GetString("Context_ScreenshotMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search for Item. + /// + internal static string Context_SearchForItem { + get { + return ResourceManager.GetString("Context_SearchForItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Recipes Using This Material. + /// + internal static string Context_SearchRecipes { + get { + return ResourceManager.GetString("Context_SearchRecipes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send Friend Request. + /// + internal static string Context_SendFriendRequest { + get { + return ResourceManager.GetString("Context_SendFriendRequest", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send Tell. + /// + internal static string Context_SendTell { + get { + return ResourceManager.GetString("Context_SendTell", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Target. + /// + internal static string Context_Target { + get { + return ResourceManager.GetString("Context_Target", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try On. + /// + internal static string Context_TryOn { + get { + return ResourceManager.GetString("Context_TryOn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chinese (full). + /// + internal static string ExtraGlyphRanges_ChineseFull_Name { + get { + return ResourceManager.GetString("ExtraGlyphRanges_ChineseFull_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chinese (common simplified). + /// + internal static string ExtraGlyphRanges_ChineseSimplifiedCommon_Name { + get { + return ResourceManager.GetString("ExtraGlyphRanges_ChineseSimplifiedCommon_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cyrillic. + /// + internal static string ExtraGlyphRanges_Cyrillic_Name { + get { + return ResourceManager.GetString("ExtraGlyphRanges_Cyrillic_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Japanese. + /// + internal static string ExtraGlyphRanges_Japanese_Name { + get { + return ResourceManager.GetString("ExtraGlyphRanges_Japanese_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Korean. + /// + internal static string ExtraGlyphRanges_Korean_Name { + get { + return ResourceManager.GetString("ExtraGlyphRanges_Korean_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thai. + /// + internal static string ExtraGlyphRanges_Thai_Name { + get { + return ResourceManager.GetString("ExtraGlyphRanges_Thai_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vietnamese. + /// + internal static string ExtraGlyphRanges_Vietnamese_Name { + get { + return ResourceManager.GetString("ExtraGlyphRanges_Vietnamese_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Flexible. + /// + internal static string KeybindMode_Flexible_Name { + get { + return ResourceManager.GetString("KeybindMode_Flexible_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Process keybinds with modifiers even if other modifiers are pressed.. + /// + internal static string KeybindMode_Flexible_Tooltip { + get { + return ResourceManager.GetString("KeybindMode_Flexible_Tooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Strict. + /// + internal static string KeybindMode_Strict_Name { + get { + return ResourceManager.GetString("KeybindMode_Strict_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Only process keybinds with modifiers if no other modifiers are pressed.. + /// + internal static string KeybindMode_Strict_Tooltip { + get { + return ResourceManager.GetString("KeybindMode_Strict_Tooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Dalamud's default language. + /// + internal static string LanguageOverride_None { + get { + return ResourceManager.GetString("LanguageOverride_None", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} is performing a database migration.. + /// internal static string Migration_Line1 { get { return ResourceManager.GetString("Migration_Line1", resourceCulture); } } + /// + /// Looks up a localized string similar to {0} and the plugin installer will be unavailable until it is complete.. + /// internal static string Migration_Line2 { get { return ResourceManager.GetString("Migration_Line2", resourceCulture); } } + /// + /// Looks up a localized string similar to This may take a few minutes depending on the size of your chat database.. + /// internal static string Migration_Line3 { get { return ResourceManager.GetString("Migration_Line3", resourceCulture); } } + /// + /// Looks up a localized string similar to Do not close FFXIV, unload Dalamud, or turn off your computer during this time.. + /// internal static string Migration_Line4 { get { return ResourceManager.GetString("Migration_Line4", resourceCulture); } } + + /// + /// Looks up a localized string similar to Click the button to the left to see what's being worked on and what's next.. + /// + internal static string Options_About_ClickUp { + get { + return ResourceManager.GetString("Options_About_ClickUp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Click the button to the left to help translate {0}.. + /// + internal static string Options_About_CrowdIn { + get { + return ResourceManager.GetString("Options_About_CrowdIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} is a project to completely recreate the in-game chat and make it even better.. + /// + internal static string Options_About_Opening { + get { + return ResourceManager.GetString("Options_About_Opening", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to About. + /// + internal static string Options_About_Tab { + get { + return ResourceManager.GetString("Options_About_Tab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Translators. + /// + internal static string Options_About_Translators { + get { + return ResourceManager.GetString("Options_About_Translators", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow moving chat. + /// + internal static string Options_CanMove_Name { + get { + return ResourceManager.GetString("Options_CanMove_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow resizing chat. + /// + internal static string Options_CanResize_Name { + get { + return ResourceManager.GetString("Options_CanResize_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import from game. + /// + internal static string Options_ChatColours_Import { + get { + return ResourceManager.GetString("Options_ChatColours_Import", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset to default. + /// + internal static string Options_ChatColours_Reset { + get { + return ResourceManager.GetString("Options_ChatColours_Reset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chat colours. + /// + internal static string Options_ChatColours_Tab { + get { + return ResourceManager.GetString("Options_ChatColours_Tab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Replace consecutive duplicate messages with a counter appended to the first instance of the message.. + /// + internal static string Options_CollapseDuplicateMessages_Description { + get { + return ResourceManager.GetString("Options_CollapseDuplicateMessages_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collapse duplicate messages. + /// + internal static string Options_CollapseDuplicateMessages_Name { + get { + return ResourceManager.GetString("Options_CollapseDuplicateMessages_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The side of {0} to display help for commands on.. + /// + internal static string Options_CommandHelpSide_Description { + get { + return ResourceManager.GetString("Options_CommandHelpSide_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Command help side. + /// + internal static string Options_CommandHelpSide_Name { + get { + return ResourceManager.GetString("Options_CommandHelpSide_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Advanced. + /// + internal static string Options_Database_Advanced { + get { + return ResourceManager.GetString("Options_Database_Advanced", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do not click these buttons unless you know what you're doing.. + /// + internal static string Options_Database_Advanced_Warning { + get { + return ResourceManager.GetString("Options_Database_Advanced_Warning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Database. + /// + internal static string Options_Database_Tab { + get { + return ResourceManager.GetString("Options_Database_Tab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If battle messages are saved to the database, the size of the database will grow much faster, and there will be a noticeable freeze when saving settings. It is recommended to leave this disabled.. + /// + internal static string Options_DatabaseBattleMessages_Description { + get { + return ResourceManager.GetString("Options_DatabaseBattleMessages_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save battle messages in database. + /// + internal static string Options_DatabaseBattleMessages_Name { + get { + return ResourceManager.GetString("Options_DatabaseBattleMessages_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display. + /// + internal static string Options_Display_Tab { + get { + return ResourceManager.GetString("Options_Display_Tab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extra glyphs can be added to {0}'s global font by enabling the checkboxes below. This will likely require increasing Dalamud's font atlas size.. + /// + internal static string Options_ExtraGlyphs_Description { + get { + return ResourceManager.GetString("Options_ExtraGlyphs_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extra font glyphs. + /// + internal static string Options_ExtraGlyphs_Name { + get { + return ResourceManager.GetString("Options_ExtraGlyphs_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Include messages from before the game was launched when populating tabs. Tabs are populated when the settings are saved.. + /// + internal static string Options_FilterIncludePreviousSessions_Description { + get { + return ResourceManager.GetString("Options_FilterIncludePreviousSessions_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Include previous sessions when populating tabs. + /// + internal static string Options_FilterIncludePreviousSessions_Name { + get { + return ResourceManager.GetString("Options_FilterIncludePreviousSessions_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The font {0} will use to display non-Japanese text.. + /// + internal static string Options_Font_Description { + get { + return ResourceManager.GetString("Options_Font_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font. + /// + internal static string Options_Font_Name { + get { + return ResourceManager.GetString("Options_Font_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Using certain system fonts may crash your game. You have been warned.. + /// + internal static string Options_Font_Warning { + get { + return ResourceManager.GetString("Options_Font_Warning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fonts. + /// + internal static string Options_Fonts_Tab { + get { + return ResourceManager.GetString("Options_Fonts_Tab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable custom fonts. + /// + internal static string Options_FontsEnabled { + get { + return ResourceManager.GetString("Options_FontsEnabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font size. + /// + internal static string Options_FontSize_Name { + get { + return ResourceManager.GetString("Options_FontSize_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide the in-game chat window when the plugin is active.. + /// + internal static string Options_HideChat_Description { + get { + return ResourceManager.GetString("Options_HideChat_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide vanilla chat. + /// + internal static string Options_HideChat_Name { + get { + return ResourceManager.GetString("Options_HideChat_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide {0} during cutscenes.. + /// + internal static string Options_HideDuringCutscenes_Description { + get { + return ResourceManager.GetString("Options_HideDuringCutscenes_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide chat during cutscenes. + /// + internal static string Options_HideDuringCutscenes_Name { + get { + return ResourceManager.GetString("Options_HideDuringCutscenes_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide timestamps when previous messages have the same timestamp.. + /// + internal static string Options_HideSameTimestamps_Description { + get { + return ResourceManager.GetString("Options_HideSameTimestamps_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide timestamps when redundant. + /// + internal static string Options_HideSameTimestamps_Name { + get { + return ResourceManager.GetString("Options_HideSameTimestamps_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide {0} when you are not logged in to a character.. + /// + internal static string Options_HideWhenNotLoggedIn_Description { + get { + return ResourceManager.GetString("Options_HideWhenNotLoggedIn_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide when not logged in. + /// + internal static string Options_HideWhenNotLoggedIn_Name { + get { + return ResourceManager.GetString("Options_HideWhenNotLoggedIn_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide {0} when the game UI is hidden.. + /// + internal static string Options_HideWhenUiHidden_Description { + get { + return ResourceManager.GetString("Options_HideWhenUiHidden_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide when game UI is hidden. + /// + internal static string Options_HideWhenUiHidden_Name { + get { + return ResourceManager.GetString("Options_HideWhenUiHidden_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The font {0} will use to display Japanese text.. + /// + internal static string Options_JapaneseFont_Description { + get { + return ResourceManager.GetString("Options_JapaneseFont_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Japanese font. + /// + internal static string Options_JapaneseFont_Name { + get { + return ResourceManager.GetString("Options_JapaneseFont_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Japanese font size. + /// + internal static string Options_JapaneseFontSize_Name { + get { + return ResourceManager.GetString("Options_JapaneseFontSize_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The way in which {0} should handle keybinds.. + /// + internal static string Options_KeybindMode_Description { + get { + return ResourceManager.GetString("Options_KeybindMode_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keybind mode. + /// + internal static string Options_KeybindMode_Name { + get { + return ResourceManager.GetString("Options_KeybindMode_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The language to display {0} in.. + /// + internal static string Options_Language_Description { + get { + return ResourceManager.GetString("Options_Language_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Language. + /// + internal static string Options_Language_Name { + get { + return ResourceManager.GetString("Options_Language_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to After logging in, populate the chat with the messages from when you last logged off.. + /// + internal static string Options_LoadPreviousSession_Description { + get { + return ResourceManager.GetString("Options_LoadPreviousSession_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display previous chat session on login. + /// + internal static string Options_LoadPreviousSession_Name { + get { + return ResourceManager.GetString("Options_LoadPreviousSession_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Miscellaneous. + /// + internal static string Options_Miscellaneous_Tab { + get { + return ResourceManager.GetString("Options_Miscellaneous_Tab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reduce the spacing between messages.. + /// + internal static string Options_MoreCompactPretty_Description { + get { + return ResourceManager.GetString("Options_MoreCompactPretty_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to More compact modern layout. + /// + internal static string Options_MoreCompactPretty_Name { + get { + return ResourceManager.GetString("Options_MoreCompactPretty_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show in-game item tooltips when hovering over items in {0}.. + /// + internal static string Options_NativeItemTooltips_Description { + get { + return ResourceManager.GetString("Options_NativeItemTooltips_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show native item tooltips. + /// + internal static string Options_NativeItemTooltips_Name { + get { + return ResourceManager.GetString("Options_NativeItemTooltips_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display messages in a more modern style.. + /// + internal static string Options_PrettierTimestamps_Description { + get { + return ResourceManager.GetString("Options_PrettierTimestamps_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use modern layout. + /// + internal static string Options_PrettierTimestamps_Name { + get { + return ResourceManager.GetString("Options_PrettierTimestamps_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow multiple clients to run {0} at the same time, sharing the same database.. + /// + internal static string Options_SharedMode_Description { + get { + return ResourceManager.GetString("Options_SharedMode_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable multi-client mode. + /// + internal static string Options_SharedMode_Name { + get { + return ResourceManager.GetString("Options_SharedMode_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This option is not recommended. No support will be offered if you enable this option. This option will hurt the performance of {0}.. + /// + internal static string Options_SharedMode_Warning { + get { + return ResourceManager.GetString("Options_SharedMode_Warning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show the Novice Network join button next to the settings button if logged in as a mentor.. + /// + internal static string Options_ShowNoviceNetwork_Description { + get { + return ResourceManager.GetString("Options_ShowNoviceNetwork_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show Novice Network join button. + /// + internal static string Options_ShowNoviceNetwork_Name { + get { + return ResourceManager.GetString("Options_ShowNoviceNetwork_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show title bar for popped-out tabs. + /// + internal static string Options_ShowPopOutTitleBar_Name { + get { + return ResourceManager.GetString("Options_ShowPopOutTitleBar_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show title bar for chat. + /// + internal static string Options_ShowTitleBar_Name { + get { + return ResourceManager.GetString("Options_ShowTitleBar_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show tabs in {0} as a sidebar instead of a bar at the top.. + /// + internal static string Options_SidebarTabView_Description { + get { + return ResourceManager.GetString("Options_SidebarTabView_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show tabs in a sidebar. + /// + internal static string Options_SidebarTabView_Name { + get { + return ResourceManager.GetString("Options_SidebarTabView_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If this is enabled, the Auto Translate list will be sorted alphabetically.. + /// + internal static string Options_SortAutoTranslate_Description { + get { + return ResourceManager.GetString("Options_SortAutoTranslate_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort the Auto Translate list. + /// + internal static string Options_SortAutoTranslate_Name { + get { + return ResourceManager.GetString("Options_SortAutoTranslate_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The font size to use for game symbols.. + /// + internal static string Options_SymbolsFontSize_Description { + get { + return ResourceManager.GetString("Options_SymbolsFontSize_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Symbols font size. + /// + internal static string Options_SymbolsFontSize_Name { + get { + return ResourceManager.GetString("Options_SymbolsFontSize_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add. + /// + internal static string Options_Tabs_Add { + get { + return ResourceManager.GetString("Options_Tabs_Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Channels. + /// + internal static string Options_Tabs_Channels { + get { + return ResourceManager.GetString("Options_Tabs_Channels", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Announcements. + /// + internal static string Options_Tabs_ChannelTypes_Announcements { + get { + return ResourceManager.GetString("Options_Tabs_ChannelTypes_Announcements", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Battle. + /// + internal static string Options_Tabs_ChannelTypes_Battle { + get { + return ResourceManager.GetString("Options_Tabs_ChannelTypes_Battle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Chat. + /// + internal static string Options_Tabs_ChannelTypes_Chat { + get { + return ResourceManager.GetString("Options_Tabs_ChannelTypes_Chat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Special. + /// + internal static string Options_Tabs_ChannelTypes_Special { + get { + return ResourceManager.GetString("Options_Tabs_ChannelTypes_Special", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + internal static string Options_Tabs_Delete { + get { + return ResourceManager.GetString("Options_Tabs_Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + internal static string Options_Tabs_ExtraChatAll { + get { + return ResourceManager.GetString("Options_Tabs_ExtraChatAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ExtraChat channels. + /// + internal static string Options_Tabs_ExtraChatChannels { + get { + return ResourceManager.GetString("Options_Tabs_ExtraChatChannels", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use different opacity than main window. + /// + internal static string Options_Tabs_IndependentOpacity { + get { + return ResourceManager.GetString("Options_Tabs_IndependentOpacity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Input channel. + /// + internal static string Options_Tabs_InputChannel { + get { + return ResourceManager.GetString("Options_Tabs_InputChannel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move down. + /// + internal static string Options_Tabs_MoveDown { + get { + return ResourceManager.GetString("Options_Tabs_MoveDown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move up. + /// + internal static string Options_Tabs_MoveUp { + get { + return ResourceManager.GetString("Options_Tabs_MoveUp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + internal static string Options_Tabs_Name { + get { + return ResourceManager.GetString("Options_Tabs_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New tab. + /// + internal static string Options_Tabs_NewTab { + get { + return ResourceManager.GetString("Options_Tabs_NewTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <None>. + /// + internal static string Options_Tabs_NoInputChannel { + get { + return ResourceManager.GetString("Options_Tabs_NoInputChannel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opacity. + /// + internal static string Options_Tabs_Opacity { + get { + return ResourceManager.GetString("Options_Tabs_Opacity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display in separate window. + /// + internal static string Options_Tabs_PopOut { + get { + return ResourceManager.GetString("Options_Tabs_PopOut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Preset: {0}. + /// + internal static string Options_Tabs_Preset { + get { + return ResourceManager.GetString("Options_Tabs_Preset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show timestamps. + /// + internal static string Options_Tabs_ShowTimestamps { + get { + return ResourceManager.GetString("Options_Tabs_ShowTimestamps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tabs. + /// + internal static string Options_Tabs_Tab { + get { + return ResourceManager.GetString("Options_Tabs_Tab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unread mode. + /// + internal static string Options_Tabs_UnreadMode { + get { + return ResourceManager.GetString("Options_Tabs_UnreadMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Window opacity. + /// + internal static string Options_WindowOpacity_Name { + get { + return ResourceManager.GetString("Options_WindowOpacity_Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Discard. + /// + internal static string Settings_Discard { + get { + return ResourceManager.GetString("Settings_Discard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Support {0} on Ko-fi. + /// + internal static string Settings_Kofi { + get { + return ResourceManager.GetString("Settings_Kofi", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + internal static string Settings_Save { + get { + return ResourceManager.GetString("Settings_Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save and close. + /// + internal static string Settings_SaveAndClose { + get { + return ResourceManager.GetString("Settings_SaveAndClose", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} settings. + /// + internal static string Settings_Title { + get { + return ResourceManager.GetString("Settings_Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New tab. + /// + internal static string Tab_DefaultName { + get { + return ResourceManager.GetString("Tab_DefaultName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Event. + /// + internal static string Tabs_Presets_Event { + get { + return ResourceManager.GetString("Tabs_Presets_Event", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to General. + /// + internal static string Tabs_Presets_General { + get { + return ResourceManager.GetString("Tabs_Presets_General", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + internal static string UnreadMode_All { + get { + return ResourceManager.GetString("UnreadMode_All", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Always show unread indicators.. + /// + internal static string UnreadMode_All_Tooltip { + get { + return ResourceManager.GetString("UnreadMode_All_Tooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None. + /// + internal static string UnreadMode_None { + get { + return ResourceManager.GetString("UnreadMode_None", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Never show unread indicators.. + /// + internal static string UnreadMode_None_Tooltip { + get { + return ResourceManager.GetString("UnreadMode_None_Tooltip", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unseen. + /// + internal static string UnreadMode_Unseen { + get { + return ResourceManager.GetString("UnreadMode_Unseen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Only show unread indicators for messages you haven't seen.. + /// + internal static string UnreadMode_Unseen_Tooltip { + get { + return ResourceManager.GetString("UnreadMode_Unseen_Tooltip", resourceCulture); + } + } } } diff --git a/ChatTwo/Resources/Language.resx b/ChatTwo/Resources/Language.resx index 1254f02..49f5bb5 100644 --- a/ChatTwo/Resources/Language.resx +++ b/ChatTwo/Resources/Language.resx @@ -1,17 +1,17 @@ - @@ -862,4 +862,10 @@ Do not close FFXIV, unload Dalamud, or turn off your computer during this time. + + View Adventurer Plate + + + Unable to open adventurer plate at this moment + diff --git a/ChatTwo/Util/WrapperUtil.cs b/ChatTwo/Util/WrapperUtil.cs new file mode 100644 index 0000000..c65dc8d --- /dev/null +++ b/ChatTwo/Util/WrapperUtil.cs @@ -0,0 +1,12 @@ +using Dalamud.Interface.ImGuiNotification; +using Dalamud.Interface.Internal.Notifications; + +namespace ChatTwo.Util; + +public static class WrapperUtil +{ + public static void AddNotification(string content, NotificationType type, bool minimized = true) + { + Plugin.Notification.AddNotification(new Notification { Content = content, Type = type, Minimized = minimized }); + } +} \ No newline at end of file