summaryrefslogtreecommitdiff
path: root/apps/settings.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.c')
-rw-r--r--apps/settings.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/apps/settings.c b/apps/settings.c
index 76b0cc5088..3bc39ed6d2 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -43,6 +43,8 @@
43#include "font.h" 43#include "font.h"
44#endif 44#endif
45 45
46#include "lang.h"
47
46struct user_settings global_settings; 48struct user_settings global_settings;
47char rockboxdir[] = ROCKBOX_DIR; /* config/font/data file directory */ 49char rockboxdir[] = ROCKBOX_DIR; /* config/font/data file directory */
48 50
@@ -304,11 +306,11 @@ int settings_save( void )
304 { 306 {
305 lcd_clear_display(); 307 lcd_clear_display();
306#ifdef HAVE_LCD_CHARCELLS 308#ifdef HAVE_LCD_CHARCELLS
307 lcd_puts(0, 0, "Save failed"); 309 lcd_puts(0, 0, str(LANG_SETTINGS_SAVE_PLAYER));
308 lcd_puts(0, 1, "Batt. low?"); 310 lcd_puts(0, 1, str(LANG_SETTINGS_BATTERY_PLAYER));
309#else 311#else
310 lcd_puts(4, 2, "Save failed"); 312 lcd_puts(4, 2, str(LANG_SETTINGS_SAVE_RECORDER));
311 lcd_puts(2, 4, "Is battery low?"); 313 lcd_puts(2, 4, str(LANG_SETTINGS_BATTERY_RECORDER));
312 lcd_update(); 314 lcd_update();
313#endif 315#endif
314 sleep(HZ*2); 316 sleep(HZ*2);
@@ -944,8 +946,8 @@ void set_time(char* string, int timedate[])
944 cursor[cursorpos][INDEX_WIDTH], 946 cursor[cursorpos][INDEX_WIDTH],
945 line_height); 947 line_height);
946 948
947 lcd_puts(0, 4, "ON to set"); 949 lcd_puts(0, 4, str(LANG_TIME_SET));
948 lcd_puts(0, 5, "OFF to revert"); 950 lcd_puts(0, 5, str(LANG_TIME_REVERT));
949#ifdef HAVE_LCD_BITMAP 951#ifdef HAVE_LCD_BITMAP
950 status_draw(); 952 status_draw();
951#endif 953#endif