replace all "enabled" and "disabled" options with the default "On" and "Off".

This commit is contained in:
ITotalJustice
2025-05-01 22:10:47 +01:00
parent ac152454f0
commit 1c93e18822
6 changed files with 35 additions and 28 deletions

View File

@@ -415,7 +415,7 @@ Menu::Menu() : MenuBase{"Themezer"_i18n} {
options->Add(std::make_shared<SidebarEntryBool>("Nsfw"_i18n, m_nsfw.Get(), [this](bool& v_out){
m_nsfw.Set(v_out);
InvalidateAllPages();
}, "Enabled"_i18n, "Disabled"_i18n));
}));
options->Add(std::make_shared<SidebarEntryArray>("Sort"_i18n, sort_items, [this, sort_items](s64& index_out){
if (m_sort.Get() != index_out) {