From da2b80156a957f704c2390f9ab174e9a3e56c7dd Mon Sep 17 00:00:00 2001 From: goat Date: Sat, 20 Dec 2025 21:45:47 +0100 Subject: [PATCH] Fix some wording on badge tab --- .../Internal/Windows/Settings/Tabs/SettingsTabBadge.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dalamud/Interface/Internal/Windows/Settings/Tabs/SettingsTabBadge.cs b/Dalamud/Interface/Internal/Windows/Settings/Tabs/SettingsTabBadge.cs index 8e44ef7ea..e39c1952c 100644 --- a/Dalamud/Interface/Internal/Windows/Settings/Tabs/SettingsTabBadge.cs +++ b/Dalamud/Interface/Internal/Windows/Settings/Tabs/SettingsTabBadge.cs @@ -20,7 +20,7 @@ internal sealed class SettingsTabBadge : SettingsTab public override string Title => Loc.Localize("DalamudSettingsBadge", "Badges"); - public override SettingsOpenKind Kind => SettingsOpenKind.ServerInfoBar; + public override SettingsOpenKind Kind => SettingsOpenKind.Badge; public override SettingsEntry[] Entries { get; } = [ @@ -36,12 +36,12 @@ internal sealed class SettingsTabBadge : SettingsTab var badgeManager = Service.Get(); var dalamudInterface = Service.Get(); - ImGui.TextColoredWrapped(ImGuiColors.DalamudGrey, Loc.Localize("DalamudSettingServerInfoBarHint", "Plugins can put additional information into your server information bar(where world & time can be seen).\nYou can reorder and disable these here.")); + ImGui.TextColoredWrapped(ImGuiColors.DalamudGrey, Loc.Localize("DalamudSettingBadgesHint", "On this tab, you can unlock small badges that show on your title screen.\nBadge codes are usually given out during community events or contests.")); ImGuiHelpers.ScaledDummy(5); ImGui.Text(Loc.Localize("DalamudSettingsBadgesUnlock", "Unlock a badge")); - ImGui.TextColoredWrapped(ImGuiColors.DalamudGrey, Loc.Localize("DalamudSettingsBadgesUnlockHint", "If you have received a code for a badge, enter it here to unlock the badge.\nCodes are usually given out during community events or contests.")); + ImGui.TextColoredWrapped(ImGuiColors.DalamudGrey, Loc.Localize("DalamudSettingsBadgesUnlockHint", "If you have received a code for a badge, enter it here to unlock the badge.")); ImGui.InputTextWithHint( "##BadgePassword", Loc.Localize("DalamudSettingsBadgesUnlockHintInput", "Enter badge code here"), @@ -79,7 +79,7 @@ internal sealed class SettingsTabBadge : SettingsTab if (haveBadges.Length == 0) { - ImGui.TextColoredWrapped(ImGuiColors.DalamudGrey, Loc.Localize("DalamudSettingServerInfoBarDidNone", "You did not unlock any badges yet.\nBadges can be unlocked by participating in community events or contests.")); + ImGui.TextColoredWrapped(ImGuiColors.DalamudGrey, Loc.Localize("DalamudSettingsBadgesDidNone", "You did not unlock any badges yet.")); } var badgeTexture = Service.Get().GetDalamudTextureWrap(DalamudAsset.BadgeAtlas);