summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/lang/english.lang16
-rw-r--r--apps/onplay.c6
-rw-r--r--apps/tree.c4
3 files changed, 22 insertions, 4 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index c44b4aaa7f..12249ee048 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -443,14 +443,16 @@ desc: possible answers to resume question
443eng: "(PLAY/STOP)" 443eng: "(PLAY/STOP)"
444new: 444new:
445 445
446# depreciated
446id: LANG_RESUME_CONFIRM_RECORDER 447id: LANG_RESUME_CONFIRM_RECORDER
447desc: possible answer to resume question 448desc: possible answer to resume question
448eng: "PLAY = Yes" 449eng: ""
449new: 450new:
450 451
452# depreciated
451id: LANG_RESUME_CANCEL_RECORDER 453id: LANG_RESUME_CANCEL_RECORDER
452desc: possible answer to resume question 454desc: possible answer to resume question
453eng: "Any Other = No" 455eng: ""
454new: 456new:
455 457
456id: LANG_KEYLOCK_ON_PLAYER 458id: LANG_KEYLOCK_ON_PLAYER
@@ -1557,3 +1559,13 @@ id: LANG_DISK_FULL
1557desc: in recording screen 1559desc: in recording screen
1558eng: "The disk is full. Press OFF to continue." 1560eng: "The disk is full. Press OFF to continue."
1559new: 1561new:
1562
1563id: LANG_CONFIRM_WITH_PLAY_RECORDER
1564desc: Generic recorder string to use to confirm
1565eng: "PLAY = Yes"
1566new:
1567
1568id: LANG_CANCEL_WITH_ANY_RECORDER
1569desc: Generic recorder string to use to cancel
1570eng: "Any Other = No"
1571new:
diff --git a/apps/onplay.c b/apps/onplay.c
index 557c457bbf..3e0f5a365e 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -55,6 +55,12 @@ static bool delete_file(void)
55 lcd_clear_display(); 55 lcd_clear_display();
56 lcd_puts(0,0,str(LANG_REALLY_DELETE)); 56 lcd_puts(0,0,str(LANG_REALLY_DELETE));
57 lcd_puts_scroll(0,1,selected_file); 57 lcd_puts_scroll(0,1,selected_file);
58
59#ifdef HAVE_LCD_BITMAP
60 lcd_puts(0,3,str(LANG_CONFIRM_WITH_PLAY_RECORDER));
61 lcd_puts(0,4,str(LANG_CANCEL_WITH_ANY_RECORDER));
62#endif
63
58 lcd_update(); 64 lcd_update();
59 65
60 while (!exit) { 66 while (!exit) {
diff --git a/apps/tree.c b/apps/tree.c
index bc9ae7b883..9935d8263d 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -524,8 +524,8 @@ bool ask_resume(void)
524 status_draw(false); 524 status_draw(false);
525 lcd_puts(0,1,str(LANG_RESUME_CONFIRM_PLAYER)); 525 lcd_puts(0,1,str(LANG_RESUME_CONFIRM_PLAYER));
526#else 526#else
527 lcd_puts(0,1,str(LANG_RESUME_CONFIRM_RECORDER)); 527 lcd_puts(0,1,str(LANG_CONFIRM_WITH_PLAY_RECORDER));
528 lcd_puts(0,2,str(LANG_RESUME_CANCEL_RECORDER)); 528 lcd_puts(0,2,str(LANG_CANCEL_WITH_ANY_RECORDER));
529#endif 529#endif
530 lcd_update(); 530 lcd_update();
531 531