mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-17 18:37:53 -05:00
Create window that will be shown when the device turns off first time after factory reset request made from PureOS.
72 lines
3.5 KiB
C++
72 lines
3.5 KiB
C++
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
namespace gui::window::name
|
|
{
|
|
inline constexpr auto advanced = "Advanced";
|
|
inline constexpr auto information = "Information";
|
|
inline constexpr auto ui_test = "UI Test";
|
|
inline constexpr auto color_test_window = "Color Test";
|
|
inline constexpr auto cpu_test_window = "CPUModeTest";
|
|
inline constexpr auto status_bar_img_type = "StatusBarImgType";
|
|
inline constexpr auto text_image_color = "TextImageColor";
|
|
|
|
inline constexpr auto bluetooth = "Bluetooth";
|
|
inline constexpr auto all_devices = "AllDevices";
|
|
inline constexpr auto phone_name = "PhoneName";
|
|
inline constexpr auto add_device = "AddDevice";
|
|
|
|
inline constexpr auto network = "Network";
|
|
inline constexpr auto sim_cards = "SimCards";
|
|
inline constexpr auto sim_pin_settings = "SimPINSettings";
|
|
inline constexpr auto import_contacts = "ImportContacts";
|
|
inline constexpr auto all_operators = "AllOperators";
|
|
inline constexpr auto apn_settings = "APNSettings";
|
|
inline constexpr auto apn_options = "APNOptions";
|
|
inline constexpr auto new_apn = "NewApn";
|
|
|
|
inline constexpr auto display_and_keypad = "DisplayAndKeypad";
|
|
inline constexpr auto display_light = "DisplayLight";
|
|
inline constexpr auto font_size = "FontSize";
|
|
inline constexpr auto wallpaper = "Wallpaper";
|
|
inline constexpr auto quotes = "Quotes";
|
|
inline constexpr auto new_quote = "NewQuote";
|
|
inline constexpr auto edit_quotes = "EditQuotes";
|
|
inline constexpr auto options_quote = "OptionsQuote";
|
|
inline constexpr auto delete_quote = "DeleteQuote";
|
|
inline constexpr auto quotes_dialog_yes_no = "DialogYesNo";
|
|
inline constexpr auto quote_categories = "QuoteCategories";
|
|
inline constexpr auto keypad_light = "KeypadLight";
|
|
inline constexpr auto input_language = "InputLanguage";
|
|
|
|
inline constexpr auto phone_modes = "PhoneModes";
|
|
inline constexpr auto do_not_disturb = "DoNotDisturb";
|
|
inline constexpr auto offline = "Offline";
|
|
inline constexpr auto connection_frequency = "ConnectionFrequency";
|
|
|
|
inline constexpr auto apps = "Apps";
|
|
inline constexpr auto phone = "Phone";
|
|
inline constexpr auto messages = "Messages";
|
|
inline constexpr auto message_templates = "MessageTemplates";
|
|
inline constexpr auto alarm_clock = "AlarmClock";
|
|
inline constexpr auto sound_select = "SoundSelect";
|
|
|
|
inline constexpr auto security = "Security";
|
|
inline constexpr auto autolock = "Autolock";
|
|
|
|
inline constexpr auto system = "System";
|
|
inline constexpr auto languages = "Languages";
|
|
inline constexpr auto date_and_time = "DateAndTime";
|
|
inline constexpr auto change_date_and_time = "ChangeDateAndTime";
|
|
inline constexpr auto change_time_zone = "ChangeTimeZone";
|
|
inline constexpr auto technical_information = "TechnicalInformation";
|
|
inline constexpr auto certification = "Certification";
|
|
inline constexpr auto sar = "Sar";
|
|
inline constexpr auto factory_reset = "FactoryReset";
|
|
inline constexpr auto factory_reset_in_progress = "FactoryResetInProgress";
|
|
|
|
inline constexpr auto dialog_settings = "DialogSettings";
|
|
} // namespace gui::window::name
|