summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/eq_menu.c2
-rw-r--r--apps/settings.c2
-rw-r--r--apps/sound_menu.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/eq_menu.c b/apps/eq_menu.c
index 96935ca669..32a22e08e8 100644
--- a/apps/eq_menu.c
+++ b/apps/eq_menu.c
@@ -687,7 +687,7 @@ static bool eq_save_preset(void)
687 break; 687 break;
688 } 688 }
689 else { 689 else {
690 gui_syncsplash(HZ, true, str(LANG_RESET_DONE_CANCEL)); 690 gui_syncsplash(HZ, true, str(LANG_MENU_SETTING_CANCEL));
691 return false; 691 return false;
692 } 692 }
693 } 693 }
diff --git a/apps/settings.c b/apps/settings.c
index 1f29e4d04d..72939e5aac 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -1452,7 +1452,7 @@ bool settings_save_config(void)
1452 break; 1452 break;
1453 } 1453 }
1454 else { 1454 else {
1455 gui_syncsplash(HZ, true, str(LANG_RESET_DONE_CANCEL)); 1455 gui_syncsplash(HZ, true, str(LANG_MENU_SETTING_CANCEL));
1456 return false; 1456 return false;
1457 } 1457 }
1458 } 1458 }
diff --git a/apps/sound_menu.c b/apps/sound_menu.c
index b248ca99a5..52a8d4e6e1 100644
--- a/apps/sound_menu.c
+++ b/apps/sound_menu.c
@@ -659,7 +659,7 @@ bool rectrigger(void)
659 659
660 switch (button) { 660 switch (button) {
661 case TRIG_CANCEL: 661 case TRIG_CANCEL:
662 gui_syncsplash(50, true, str(LANG_RESET_DONE_CANCEL)); 662 gui_syncsplash(50, true, str(LANG_MENU_SETTING_CANCEL));
663 global_settings.rec_start_thres = old_start_thres; 663 global_settings.rec_start_thres = old_start_thres;
664 global_settings.rec_start_duration = old_start_duration; 664 global_settings.rec_start_duration = old_start_duration;
665 global_settings.rec_prerecord_time = old_prerecord_time; 665 global_settings.rec_prerecord_time = old_prerecord_time;