change "yes, no" for boolean options to "on, off", to match N's sidebar.

This commit is contained in:
ITotalJustice
2025-05-02 00:57:11 +01:00
parent 456cb02d2a
commit 2244e73c53
2 changed files with 5 additions and 5 deletions

View File

@@ -203,7 +203,7 @@ Menu::Menu() : MenuBase{"Games"_i18n} {
options->Add(std::make_shared<SidebarEntryBool>("Hide forwarders"_i18n, m_hide_forwarders.Get(), [this](bool& v_out){
m_hide_forwarders.Set(v_out);
m_dirty = true;
}, "Yes"_i18n, "No"_i18n));
}));
}
}})
);