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
22 lines
562 B
C++
22 lines
562 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 "ChangeTimeZone.hpp"
|
|
|
|
#include <application-settings-new/ApplicationSettings.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
|
|
ChangeTimeZone::ChangeTimeZone(app::Application *app) : BaseSettingsWindow(app, window::name::change_date_and_time)
|
|
{
|
|
setTitle(utils::translate("app_settings_date_and_time_time_zone"));
|
|
}
|
|
|
|
std::list<Option> ChangeTimeZone::buildOptionsList()
|
|
{
|
|
return {};
|
|
}
|
|
|
|
} // namespace gui
|