summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Bavin <pondlife@pondlife.me>2008-01-14 13:21:05 +0000
committerSteve Bavin <pondlife@pondlife.me>2008-01-14 13:21:05 +0000
commitfeefc90a2ac63fb5272515f76a5b0231688224f0 (patch)
tree55afffe28f050e1f954448040b40f534e5331d61
parentd1e4bb23343988bb7879c30cff2e7b4f44619f6c (diff)
downloadrockbox-feefc90a2ac63fb5272515f76a5b0231688224f0.tar.gz
rockbox-feefc90a2ac63fb5272515f76a5b0231688224f0.zip
Change wording of date options to clarify; previously English format was not the format used in England.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16088 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/clock/clock_menu.c12
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
30static const struct opt_items backlight_settings_text[] = { 30static 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
41static const struct opt_items date_format_text[] = { 41static 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
48static const struct opt_items hour_format_text[] = { 48static 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/***************