From 721d54df325e6a68c3e1ed909c9c038551d2d0e2 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Mon, 6 Dec 2021 18:13:16 +0100 Subject: [PATCH] loc: In-Game addon => Dalamud --- Dalamud/Game/ChatHandlers.cs | 2 +- Dalamud/Interface/Internal/DalamudCommands.cs | 2 +- Dalamud/Interface/Internal/Windows/ChangelogWindow.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dalamud/Game/ChatHandlers.cs b/Dalamud/Game/ChatHandlers.cs index 5465fef97..931ff8949 100644 --- a/Dalamud/Game/ChatHandlers.cs +++ b/Dalamud/Game/ChatHandlers.cs @@ -257,7 +257,7 @@ namespace Dalamud.Game { chatGui.PrintChat(new XivChatEntry { - Message = Loc.Localize("DalamudUpdated", "The In-Game addon has been updated or was reinstalled successfully! Please check the discord for a full changelog."), + Message = Loc.Localize("DalamudUpdated", "Dalamud has been updated successfully! Please check the discord for a full changelog."), Type = XivChatType.Notice, }); diff --git a/Dalamud/Interface/Internal/DalamudCommands.cs b/Dalamud/Interface/Internal/DalamudCommands.cs index 0300885bb..1c930ac9e 100644 --- a/Dalamud/Interface/Internal/DalamudCommands.cs +++ b/Dalamud/Interface/Internal/DalamudCommands.cs @@ -113,7 +113,7 @@ namespace Dalamud.Interface.Internal HelpMessage = Loc.Localize( "DalamudLanguageHelp", - "Set the language for the in-game addon and plugins that support it. Available languages: ") + + "Set the language for Dalamud and plugins that support it. Available languages: ") + Localization.ApplicableLangCodes.Aggregate("en", (current, code) => current + ", " + code), }); diff --git a/Dalamud/Interface/Internal/Windows/ChangelogWindow.cs b/Dalamud/Interface/Internal/Windows/ChangelogWindow.cs index 58c531062..55a37bf78 100644 --- a/Dalamud/Interface/Internal/Windows/ChangelogWindow.cs +++ b/Dalamud/Interface/Internal/Windows/ChangelogWindow.cs @@ -47,7 +47,7 @@ Thanks and have fun with the new expansion!"; /// public override void Draw() { - ImGui.Text($"The in-game addon has been updated to version D{this.assemblyVersion}."); + ImGui.Text($"Dalamud has been updated to version D{this.assemblyVersion}."); ImGuiHelpers.ScaledDummy(10);