Merge pull request #994 from SkeletonMan03/dev

UI wording changes to be more clear
This commit is contained in:
MMX
2026-04-27 00:42:16 +03:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
@@ -65,9 +65,9 @@ void desktop_lock_menu_draw_callback(Canvas* canvas, void* model) {
//if(i == DesktopLockMenuIndexLock) {
if(i == DesktopLockMenuIndexBt) {
if(m->bt_mode) {
str = "Bluetooth Off";
str = "Turn Bluetooth Off";
} else {
str = "Bluetooth On";
str = "Turn Bluetooth On";
}
} else if(i == DesktopLockMenuIndexStealth) {
if(m->stealth_mode) {
@@ -27,7 +27,7 @@ void power_settings_scene_power_off_on_enter(void* context) {
dialog, " I will be\nwaiting for\n you here...", 78, 14, AlignLeft, AlignTop);
dialog_ex_set_icon(dialog, 24, 10, &I_dolph_cry_49x54);
}
dialog_ex_set_left_button_text(dialog, "Settings");
dialog_ex_set_left_button_text(dialog, "Battery");
dialog_ex_set_right_button_text(dialog, "Power Off");
dialog_ex_set_result_callback(dialog, power_settings_scene_power_off_dialog_callback);
dialog_ex_set_context(dialog, app);