summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/onplay.c')
-rw-r--r--apps/onplay.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index fb3ed24cfb..573511d44d 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -107,7 +107,7 @@ static bool bookmark_menu(void)
107 } 107 }
108 } 108 }
109 109
110 m=menu_init( items, i, NULL, NULL, NULL, NULL ); 110 m=menu_init( items, i, NULL, str(LANG_BOOKMARK_MENU), NULL, NULL );
111 111
112#ifdef HAVE_LCD_CHARCELLS 112#ifdef HAVE_LCD_CHARCELLS
113 status_set_param(true); 113 status_set_param(true);
@@ -256,7 +256,7 @@ static bool cat_playlist_options(void)
256 i++; 256 i++;
257 } 257 }
258 258
259 m = menu_init( items, i, NULL, NULL, NULL, NULL ); 259 m = menu_init( items, i, NULL, str(LANG_CATALOG), NULL, NULL );
260 result = menu_show(m); 260 result = menu_show(m);
261 if(result >= 0) 261 if(result >= 0)
262 ret = items[result].function(); 262 ret = items[result].function();
@@ -373,7 +373,7 @@ static bool playlist_options(void)
373 } 373 }
374 } 374 }
375 375
376 m = menu_init( items, i, NULL, NULL, NULL, NULL ); 376 m = menu_init( items, i, NULL, str(LANG_PLAYLIST_MENU), NULL, NULL );
377 result = menu_show(m); 377 result = menu_show(m);
378 if (result >= 0 && result < pstart) 378 if (result >= 0 && result < pstart)
379 ret = items[result].function(); 379 ret = items[result].function();
@@ -1048,7 +1048,8 @@ int onplay(char* file, int attr, int from)
1048 /* DIY menu handling, since we want to exit after selection */ 1048 /* DIY menu handling, since we want to exit after selection */
1049 if (i) 1049 if (i)
1050 { 1050 {
1051 m = menu_init( items, i, onplay_callback, NULL, NULL, NULL ); 1051 m = menu_init( items, i, onplay_callback,
1052 str(LANG_ONPLAY_MENU_TITLE), NULL, NULL );
1052#ifdef HAVE_TAGCACHE 1053#ifdef HAVE_TAGCACHE
1053 do 1054 do
1054 { 1055 {