summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMagnus Holmgren <magnushol@gmail.com>2006-02-19 12:45:32 +0000
committerMagnus Holmgren <magnushol@gmail.com>2006-02-19 12:45:32 +0000
commit1b45b130dcee36b1f9f7965fd0b062789bb99bc0 (patch)
tree84113951aadc62da4b8774fea4ffd3b8a96e8957 /apps
parent2ea75fdbec5a5df403e8fd18a7cb0b16b7cf69c5 (diff)
downloadrockbox-1b45b130dcee36b1f9f7965fd0b062789bb99bc0.tar.gz
rockbox-1b45b130dcee36b1f9f7965fd0b062789bb99bc0.zip
Use a better string for 'Canceled' splashes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8737 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-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;