mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 10:37:38 -04:00
english language updated to be a bit more general, we now offer button descriptions on delete for recorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3759 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c8fb78fd44
commit
b88f2bc9b1
3 changed files with 22 additions and 4 deletions
|
@ -443,14 +443,16 @@ desc: possible answers to resume question
|
||||||
eng: "(PLAY/STOP)"
|
eng: "(PLAY/STOP)"
|
||||||
new:
|
new:
|
||||||
|
|
||||||
|
# depreciated
|
||||||
id: LANG_RESUME_CONFIRM_RECORDER
|
id: LANG_RESUME_CONFIRM_RECORDER
|
||||||
desc: possible answer to resume question
|
desc: possible answer to resume question
|
||||||
eng: "PLAY = Yes"
|
eng: ""
|
||||||
new:
|
new:
|
||||||
|
|
||||||
|
# depreciated
|
||||||
id: LANG_RESUME_CANCEL_RECORDER
|
id: LANG_RESUME_CANCEL_RECORDER
|
||||||
desc: possible answer to resume question
|
desc: possible answer to resume question
|
||||||
eng: "Any Other = No"
|
eng: ""
|
||||||
new:
|
new:
|
||||||
|
|
||||||
id: LANG_KEYLOCK_ON_PLAYER
|
id: LANG_KEYLOCK_ON_PLAYER
|
||||||
|
@ -1557,3 +1559,13 @@ id: LANG_DISK_FULL
|
||||||
desc: in recording screen
|
desc: in recording screen
|
||||||
eng: "The disk is full. Press OFF to continue."
|
eng: "The disk is full. Press OFF to continue."
|
||||||
new:
|
new:
|
||||||
|
|
||||||
|
id: LANG_CONFIRM_WITH_PLAY_RECORDER
|
||||||
|
desc: Generic recorder string to use to confirm
|
||||||
|
eng: "PLAY = Yes"
|
||||||
|
new:
|
||||||
|
|
||||||
|
id: LANG_CANCEL_WITH_ANY_RECORDER
|
||||||
|
desc: Generic recorder string to use to cancel
|
||||||
|
eng: "Any Other = No"
|
||||||
|
new:
|
||||||
|
|
|
@ -55,6 +55,12 @@ static bool delete_file(void)
|
||||||
lcd_clear_display();
|
lcd_clear_display();
|
||||||
lcd_puts(0,0,str(LANG_REALLY_DELETE));
|
lcd_puts(0,0,str(LANG_REALLY_DELETE));
|
||||||
lcd_puts_scroll(0,1,selected_file);
|
lcd_puts_scroll(0,1,selected_file);
|
||||||
|
|
||||||
|
#ifdef HAVE_LCD_BITMAP
|
||||||
|
lcd_puts(0,3,str(LANG_CONFIRM_WITH_PLAY_RECORDER));
|
||||||
|
lcd_puts(0,4,str(LANG_CANCEL_WITH_ANY_RECORDER));
|
||||||
|
#endif
|
||||||
|
|
||||||
lcd_update();
|
lcd_update();
|
||||||
|
|
||||||
while (!exit) {
|
while (!exit) {
|
||||||
|
|
|
@ -524,8 +524,8 @@ bool ask_resume(void)
|
||||||
status_draw(false);
|
status_draw(false);
|
||||||
lcd_puts(0,1,str(LANG_RESUME_CONFIRM_PLAYER));
|
lcd_puts(0,1,str(LANG_RESUME_CONFIRM_PLAYER));
|
||||||
#else
|
#else
|
||||||
lcd_puts(0,1,str(LANG_RESUME_CONFIRM_RECORDER));
|
lcd_puts(0,1,str(LANG_CONFIRM_WITH_PLAY_RECORDER));
|
||||||
lcd_puts(0,2,str(LANG_RESUME_CANCEL_RECORDER));
|
lcd_puts(0,2,str(LANG_CANCEL_WITH_ANY_RECORDER));
|
||||||
#endif
|
#endif
|
||||||
lcd_update();
|
lcd_update();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue