summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Parker <rockbox@aeparker.com>2010-06-26 15:26:33 +0000
committerAlex Parker <rockbox@aeparker.com>2010-06-26 15:26:33 +0000
commita30c5a0a4de5781b9727affcd739b8c6152a5417 (patch)
tree4ddfa8d36ea78eeb1273aecabe4cb1aa1991b695
parentc72d1a656b1e411a2ccd2afee8eb2e6059164202 (diff)
Correct spelling in the lrcviewer plugin. UK English please!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27144 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/lrcplayer.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/lrcplayer.c b/apps/plugins/lrcplayer.c
index fdd54b6366..10af855d6c 100644
--- a/apps/plugins/lrcplayer.c
+++ b/apps/plugins/lrcplayer.c
@@ -2299,7 +2299,7 @@ static bool lrc_theme_menu(void)
#endif
"Display Time",
#ifdef HAVE_LCD_COLOR
- "Inactive Color",
+ "Inactive Colour",
#endif
"Backlight Force On");
@@ -2320,7 +2320,7 @@ static bool lrc_theme_menu(void)
break;
#ifdef HAVE_LCD_COLOR
case LRC_MENU_INACTIVE_COLOR:
- usb = rb->set_color(NULL, "Inactive Color",
+ usb = rb->set_color(NULL, "Inactive Colour",
&prefs.inactive_color, -1);
break;
#endif
@@ -2353,11 +2353,11 @@ static bool lrc_display_menu(void)
bool exit = false, usb = false;
MENUITEM_STRINGLIST(menu, "Display Settings", NULL,
- "Wrap", "Wipe", "Align",
+ "Wrap", "Wipe", "Alignment",
"Activate Only Current Line");
struct opt_items align_names[] = {
- {"Left", -1}, {"Center", -1}, {"Right", -1},
+ {"Left", -1}, {"Centre", -1}, {"Right", -1},
};
while (!exit && !usb)
@@ -2371,7 +2371,7 @@ static bool lrc_display_menu(void)
usb = rb->set_bool("Wipe", &prefs.wipe);
break;
case LRC_MENU_ALIGN:
- usb = rb->set_option("Align", &prefs.align, INT,
+ usb = rb->set_option("Alignment", &prefs.align, INT,
align_names, 3, NULL);
break;
case LRC_MENU_LINE_MODE: