diff options
-rw-r--r-- | apps/plugins/clock/clock_menu.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/clock/clock_menu.c b/apps/plugins/clock/clock_menu.c index 3310dbf929..4cbf46af28 100644 --- a/apps/plugins/clock/clock_menu.c +++ b/apps/plugins/clock/clock_menu.c | |||
@@ -29,7 +29,7 @@ static const struct opt_items noyes_text[] = { | |||
29 | 29 | ||
30 | static const struct opt_items backlight_settings_text[] = { | 30 | static const struct opt_items backlight_settings_text[] = { |
31 | { "Always Off", -1 }, | 31 | { "Always Off", -1 }, |
32 | { "Rockbox setting", -1 }, | 32 | { "Use Rockbox Setting", -1 }, |
33 | { "Always On", -1 } | 33 | { "Always On", -1 } |
34 | }; | 34 | }; |
35 | 35 | ||
@@ -40,14 +40,14 @@ static const struct opt_items idle_poweroff_text[] = { | |||
40 | 40 | ||
41 | static const struct opt_items date_format_text[] = { | 41 | static const struct opt_items date_format_text[] = { |
42 | { "No date", -1 }, | 42 | { "No date", -1 }, |
43 | { "English format", -1 }, | 43 | { "US (M-D-Y)", -1 }, |
44 | { "European format", -1 }, | 44 | { "European (D-M-Y)", -1 }, |
45 | { "Japanese format", -1 }, | 45 | { "Japanese (Y-M-D)", -1 }, |
46 | }; | 46 | }; |
47 | 47 | ||
48 | static const struct opt_items hour_format_text[] = { | 48 | static const struct opt_items hour_format_text[] = { |
49 | { "24-hour Format", -1 }, | 49 | { "24-Hour", -1 }, |
50 | { "12-hour Format", -1 } | 50 | { "12-Hour", -1 } |
51 | }; | 51 | }; |
52 | 52 | ||
53 | /*************** | 53 | /*************** |