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
16 lines
523 B
C++
16 lines
523 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 "NotificationSoundWindow.hpp"
|
|
#include "application-settings-new/ApplicationSettings.hpp"
|
|
#include <i18n/i18n.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
NotificationSoundWindow::NotificationSoundWindow(app::Application *app)
|
|
: BaseSettingsWindow(app, window::name::notification_sound)
|
|
{
|
|
setTitle(utils::translate("app_settings_notification_sound"));
|
|
}
|
|
} // namespace gui
|