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);