summaryrefslogtreecommitdiff
path: root/apps/main_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main_menu.c')
-rw-r--r--apps/main_menu.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index 43a9654c39..7430671fc0 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -158,15 +158,16 @@ Menu show_info(void)
158 while(!done) 158 while(!done)
159 { 159 {
160 lcd_clear_display(); 160 lcd_clear_display();
161 lcd_puts(0, 0, "Rockbox info:"); 161 lcd_puts(0, 0, str(LANG_ROCKBOX_INFO));
162 162
163 integer = buflen / 100; 163 integer = buflen / 100;
164 decimal = buflen % 100; 164 decimal = buflen % 100;
165#ifdef HAVE_LCD_CHARCELLS 165#ifdef HAVE_LCD_CHARCELLS
166 snprintf(s, sizeof(s), "Buf: %d.%02dMb", integer, decimal); 166 snprintf(s, sizeof(s), str(LANG_BUFFER_STAT_PLAYER), integer, decimal);
167 lcd_puts(0, 0, s); 167 lcd_puts(0, 0, s);
168#else 168#else
169 snprintf(s, sizeof(s), "Buffer: %d.%02d Mb", integer, decimal); 169 snprintf(s, sizeof(s), str(LANG_BUFFER_STAT_RECORDER), integer,
170 decimal);
170 lcd_puts(0, 2, s); 171 lcd_puts(0, 2, s);
171#endif 172#endif
172 173
@@ -215,13 +216,13 @@ Menu main_menu(void)
215 { str(LANG_GAMES), games_menu }, 216 { str(LANG_GAMES), games_menu },
216#endif 217#endif
217#ifdef USE_DEMOS 218#ifdef USE_DEMOS
218 { "Demos", demo_menu }, 219 { str(LANG_DEMOS), demo_menu },
219#endif /* end USE_DEMOS */ 220#endif /* end USE_DEMOS */
220#endif 221#endif
221 { "Info", show_info }, 222 { str(LANG_INFO), show_info },
222 { "Version", show_credits }, 223 { str(LANG_VERSION), show_credits },
223#ifndef SIMULATOR 224#ifndef SIMULATOR
224 { "Debug (keep out!)", debug_menu }, 225 { str(LANG_DEBUG), debug_menu },
225#else 226#else
226 { "USB (sim)", simulate_usb }, 227 { "USB (sim)", simulate_usb },
227#endif 228#endif