i18n: add v0.6.0 strings for presets, pop-out input and hint banner
This commit is contained in:
@@ -144,10 +144,9 @@ internal class Popout : Window
|
||||
if (Plugin.Config.SeenPopOutInputHint)
|
||||
return 0f;
|
||||
|
||||
// Inline strings — i18n keys follow in Task 29 (Phase E).
|
||||
const string hintText = "Neu in v0.6.0: Du kannst jetzt direkt im Pop-Out tippen. Master-Switch in den Fenster-Settings aktivieren.";
|
||||
const string ackLabel = "Verstanden";
|
||||
const string openLabel = "Tab-Settings öffnen";
|
||||
var hintText = Resources.HellionStrings.Popout_v060_HintText;
|
||||
var ackLabel = Resources.HellionStrings.Popout_v060_HintAck;
|
||||
var openLabel = Resources.HellionStrings.Popout_v060_HintOpenSettings;
|
||||
|
||||
var startY = ImGui.GetCursorPosY();
|
||||
|
||||
|
||||
@@ -231,9 +231,7 @@ internal sealed class Appearance : ISettingsTab
|
||||
using (ImRaii.PushIndent(ImGui.GetStyle().IndentSpacing, false))
|
||||
{
|
||||
DrawColourPresetButtons();
|
||||
// i18n key follows in Task 29 (Phase E); inline for now so the
|
||||
// build stays green while we ship the colour preset feature.
|
||||
ImGui.TextDisabled("Tipp: Presets überschreiben deine aktuellen Channel-Farben sofort.");
|
||||
ImGui.TextDisabled(HellionStrings.Settings_Appearance_Colours_PresetsHint);
|
||||
ImGui.Spacing();
|
||||
ImGui.Separator();
|
||||
ImGui.Spacing();
|
||||
|
||||
@@ -134,9 +134,8 @@ internal sealed class Window : ISettingsTab
|
||||
ImGui.Checkbox(Language.Options_ShowPopOutTitleBar_Name, ref Mutable.ShowPopOutTitleBar);
|
||||
|
||||
// v0.6.0 — global master switch for the pop-out input bar.
|
||||
// Inline strings; i18n keys follow in Task 29 (Phase E).
|
||||
ImGui.Checkbox("Eingabe in Pop-Outs aktivieren", ref Mutable.PopOutInputEnabled);
|
||||
ImGuiUtil.HelpMarker("Master-Switch: erlaubt direktes Tippen und Absenden in jedem Pop-Out-Fenster (inkl. Auto-Tell-Tabs). Channel-Wechsel im Pop-Out wirkt global wie im Hauptfenster; Text-Buffer und History-Cursor sind pro Pop-Out unabhängig.");
|
||||
ImGui.Checkbox(HellionStrings.Settings_Window_PopOutInputEnabled_Name, ref Mutable.PopOutInputEnabled);
|
||||
ImGuiUtil.HelpMarker(HellionStrings.Settings_Window_PopOutInputEnabled_Description);
|
||||
|
||||
ImGui.Checkbox(Language.Options_ShowHideButton_Name, ref Mutable.ShowHideButton);
|
||||
ImGuiUtil.HelpMarker(Language.Options_ShowHideButton_Description);
|
||||
|
||||
Reference in New Issue
Block a user