mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-20 21:14:12 -04:00
Single api to rule i18n all calls to localistaion in cpp files unified cut off ass many dependencies in i18n header as possible
24 lines
611 B
C++
24 lines
611 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "FontSizeWindow.hpp"
|
|
|
|
#include "application-settings-new/ApplicationSettings.hpp"
|
|
|
|
#include <i18n/i18n.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
|
|
FontSizeWindow::FontSizeWindow(app::Application *app) : BaseSettingsWindow(app, gui::window::name::font_size)
|
|
{
|
|
setTitle(utils::translate("app_settings_display_font_size"));
|
|
}
|
|
|
|
auto FontSizeWindow::buildOptionsList() -> std::list<gui::Option>
|
|
{
|
|
return std::list<gui::Option>();
|
|
}
|
|
|
|
} // namespace gui
|