summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/tree.c b/apps/tree.c
index e795cb9b0f..d59d84fc1f 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -325,7 +325,7 @@ static int update_dir(void)
325 (tc.dirfull || 325 (tc.dirfull ||
326 tc.filesindir == global_settings.max_files_in_dir) ) 326 tc.filesindir == global_settings.max_files_in_dir) )
327 { 327 {
328 gui_syncsplash(HZ, str(LANG_SHOWDIR_BUFFER_FULL)); 328 gui_syncsplash(HZ, ID2P(LANG_SHOWDIR_BUFFER_FULL));
329 } 329 }
330 } 330 }
331#ifdef HAVE_TAGCACHE 331#ifdef HAVE_TAGCACHE
@@ -556,7 +556,7 @@ static int dirbrowse()
556 556
557 if (*tc.dirfilter > NUM_FILTER_MODES && numentries==0) 557 if (*tc.dirfilter > NUM_FILTER_MODES && numentries==0)
558 { 558 {
559 gui_syncsplash(HZ*2, str(LANG_NO_FILES)); 559 gui_syncsplash(HZ*2, ID2P(LANG_NO_FILES));
560 return false; /* No files found for rockbox_browser() */ 560 return false; /* No files found for rockbox_browser() */
561 } 561 }
562 562
@@ -567,7 +567,7 @@ static int dirbrowse()
567 tc.dirlevel = 0; /* shouldnt be needed.. this code needs work! */ 567 tc.dirlevel = 0; /* shouldnt be needed.. this code needs work! */
568#ifdef BOOTFILE 568#ifdef BOOTFILE
569 if (boot_changed) { 569 if (boot_changed) {
570 char *lines[]={str(LANG_BOOT_CHANGED), str(LANG_REBOOT_NOW)}; 570 char *lines[]={ID2P(LANG_BOOT_CHANGED), ID2P(LANG_REBOOT_NOW)};
571 struct text_message message={lines, 2}; 571 struct text_message message={lines, 2};
572 if(gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES) 572 if(gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES)
573 rolo_load("/" BOOTFILE); 573 rolo_load("/" BOOTFILE);
@@ -1336,6 +1336,7 @@ void tree_restore(void)
1336 str(LANG_SCANNING_DISK)); 1336 str(LANG_SCANNING_DISK));
1337 gui_textarea_update(&screens[i]); 1337 gui_textarea_update(&screens[i]);
1338 } 1338 }
1339 cond_talk_ids_fq(LANG_SCANNING_DISK);
1339 1340
1340 dircache_build(global_status.dircache_size); 1341 dircache_build(global_status.dircache_size);
1341 1342