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:
Robert Hak 2003-06-25 08:25:29 +00:00
parent c8fb78fd44
commit b88f2bc9b1
3 changed files with 22 additions and 4 deletions

View file

@ -443,14 +443,16 @@ desc: possible answers to resume question
eng: "(PLAY/STOP)"
new:
# depreciated
id: LANG_RESUME_CONFIRM_RECORDER
desc: possible answer to resume question
eng: "PLAY = Yes"
eng: ""
new:
# depreciated
id: LANG_RESUME_CANCEL_RECORDER
desc: possible answer to resume question
eng: "Any Other = No"
eng: ""
new:
id: LANG_KEYLOCK_ON_PLAYER
@ -1557,3 +1559,13 @@ id: LANG_DISK_FULL
desc: in recording screen
eng: "The disk is full. Press OFF to continue."
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:

View file

@ -55,6 +55,12 @@ static bool delete_file(void)
lcd_clear_display();
lcd_puts(0,0,str(LANG_REALLY_DELETE));
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();
while (!exit) {

View file

@ -524,8 +524,8 @@ bool ask_resume(void)
status_draw(false);
lcd_puts(0,1,str(LANG_RESUME_CONFIRM_PLAYER));
#else
lcd_puts(0,1,str(LANG_RESUME_CONFIRM_RECORDER));
lcd_puts(0,2,str(LANG_RESUME_CANCEL_RECORDER));
lcd_puts(0,1,str(LANG_CONFIRM_WITH_PLAY_RECORDER));
lcd_puts(0,2,str(LANG_CANCEL_WITH_ANY_RECORDER));
#endif
lcd_update();