[EGD-7795] Unify options window title

Options window title in Meditation app was
incorrect. Now all options windows have
unified titles. Additionally few minor fixes
added.
This commit is contained in:
Pawel Olejniczak
2021-10-14 11:02:57 +02:00
committed by Paweł Olejniczak
parent 3bd82762f2
commit dae736cd3c
20 changed files with 32 additions and 48 deletions

View File

@@ -122,7 +122,7 @@ namespace app
[](ApplicationCommon *app, const std::string &name) {
return std::make_unique<gui::DialogYesNo>(app, name);
});
windowsFactory.attach(utils::translate("app_phonebook_options_title"),
windowsFactory.attach(utils::translate("common_options_title"),
[](ApplicationCommon *app, const std::string &name) {
return std::make_unique<gui::OptionWindow>(app, name);
});