mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Fix loc export (#1752)
This commit is contained in:
parent
70e0eef5ce
commit
34ce948bc6
3 changed files with 3 additions and 3 deletions
|
|
@ -943,7 +943,7 @@ internal class DalamudInterface : IInternalDisposableService
|
|||
|
||||
if (ImGui.MenuItem("Export localizable"))
|
||||
{
|
||||
localization.ExportLocalizable();
|
||||
localization.ExportLocalizable(true);
|
||||
}
|
||||
|
||||
if (ImGui.BeginMenu("Load language..."))
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@ internal class SettingsWindow : Window
|
|||
{
|
||||
ImGui.SetTooltip(!ImGui.IsKeyDown(ImGuiKey.ModShift)
|
||||
? Loc.Localize("DalamudSettingsSaveAndExit", "Save changes and close")
|
||||
: Loc.Localize("DalamudSettingsSaveAndExit", "Save changes"));
|
||||
: Loc.Localize("DalamudSettingsSave", "Save changes"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -133,7 +133,7 @@ public class SettingsTabLook : SettingsTab
|
|||
|
||||
new SettingsEntry<bool>(
|
||||
Loc.Localize("DalamudSettingReducedMotion", "Reduce motions"),
|
||||
Loc.Localize("DalamudSettingReducedMotion", "This will suppress certain animations from Dalamud, such as the notification popup."),
|
||||
Loc.Localize("DalamudSettingReducedMotionHint", "This will suppress certain animations from Dalamud, such as the notification popup."),
|
||||
c => c.ReduceMotions ?? false,
|
||||
(v, c) => c.ReduceMotions = v),
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue