Skip to content

Commit

Permalink
fix: Make all the loc keys consistent
Browse files Browse the repository at this point in the history
- Should all now be `DalamudSetting*PluginAnalytics*`
  • Loading branch information
KazWolfe committed Jun 8, 2024
1 parent 96befdf commit 31ec849
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ public class SettingsTabGeneral : SettingsTab
(v, c) => { c.PluginAnalyticsConsent = v; }),

new ButtonSettingsEntry(
Loc.Localize("DalamudSettingResetAnalyticsId", "Reset Analytics ID"),
Loc.Localize("DalamudSettingResetAnalyticsIdHint", "Resets your Analytics ID to a new randomized value."),
Loc.Localize("DalamudSettingResetPluginAnalyticsId", "Reset Analytics ID"),
Loc.Localize("DalamudSettingResetPluginAnalyticsIdHint", "Resets your Analytics ID to a new randomized value."),
() =>
{
var cfg = Service<DalamudConfiguration>.Get();
Expand All @@ -117,7 +117,7 @@ public class SettingsTabGeneral : SettingsTab
analyticsId);

ImGuiHelpers.SafeTextColoredWrapped(ImGuiColors.DalamudGrey, rendered);
ImGuiComponents.HelpMarker(Loc.Localize("DalamudSettingAnalyticsIdDetails", "This analytics ID is never directly shared with plugins. Every installed plugin receives a unique analytics ID based on this value."));
ImGuiComponents.HelpMarker(Loc.Localize("DalamudSettingPluginAnalyticsIdDetails", "This analytics ID is never directly shared with plugins. Every installed plugin receives a unique analytics ID based on this value."));
}),
};

Expand Down

0 comments on commit 31ec849

Please sign in to comment.