summaryrefslogtreecommitdiff
path: root/apps/wps-display.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/wps-display.c')
-rw-r--r--apps/wps-display.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c
index 8d33c723a4..72905e441b 100644
--- a/apps/wps-display.c
+++ b/apps/wps-display.c
@@ -37,7 +37,7 @@
37#include "status.h" 37#include "status.h"
38#include "wps-display.h" 38#include "wps-display.h"
39#include "debug.h" 39#include "debug.h"
40 40#include "lang.h"
41#ifdef HAVE_LCD_BITMAP 41#ifdef HAVE_LCD_BITMAP
42#include "icons.h" 42#include "icons.h"
43#include "widgets.h" 43#include "widgets.h"
@@ -579,11 +579,11 @@ void wps_display(struct mp3entry* id3)
579 if (!id3 && !mpeg_is_playing()) 579 if (!id3 && !mpeg_is_playing())
580 { 580 {
581#ifdef HAVE_LCD_CHARCELLS 581#ifdef HAVE_LCD_CHARCELLS
582 lcd_puts(0, 0, "End of list"); 582 lcd_puts(0, 0, str(LANG_END_PLAYLIST_PLAYER));
583 lcd_puts(0, 1, "<Press ON>"); 583 lcd_puts(0, 1, str(LANG_END_CONFIRM_PLAYER));
584#else 584#else
585 lcd_puts(0, 2, "<End of song list>"); 585 lcd_puts(0, 2, str(LANG_END_PLAYLIST_RECORDER));
586 lcd_puts(5, 4, "Press ON"); 586 lcd_puts(5, 4, str(LANG_END_CONFIRM_RECORDER));
587#endif 587#endif
588 } 588 }
589 else 589 else