summaryrefslogtreecommitdiff
path: root/apps
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 /apps
parentc72d1a656b1e411a2ccd2afee8eb2e6059164202 (diff)
downloadrockbox-a30c5a0a4de5781b9727affcd739b8c6152a5417.tar.gz
rockbox-a30c5a0a4de5781b9727affcd739b8c6152a5417.zip
Correct spelling in the lrcviewer plugin. UK English please!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27144 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-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)
2299#endif 2299#endif
2300 "Display Time", 2300 "Display Time",
2301#ifdef HAVE_LCD_COLOR 2301#ifdef HAVE_LCD_COLOR
2302 "Inactive Color", 2302 "Inactive Colour",
2303#endif 2303#endif
2304 "Backlight Force On"); 2304 "Backlight Force On");
2305 2305
@@ -2320,7 +2320,7 @@ static bool lrc_theme_menu(void)
2320 break; 2320 break;
2321#ifdef HAVE_LCD_COLOR 2321#ifdef HAVE_LCD_COLOR
2322 case LRC_MENU_INACTIVE_COLOR: 2322 case LRC_MENU_INACTIVE_COLOR:
2323 usb = rb->set_color(NULL, "Inactive Color", 2323 usb = rb->set_color(NULL, "Inactive Colour",
2324 &prefs.inactive_color, -1); 2324 &prefs.inactive_color, -1);
2325 break; 2325 break;
2326#endif 2326#endif
@@ -2353,11 +2353,11 @@ static bool lrc_display_menu(void)
2353 bool exit = false, usb = false; 2353 bool exit = false, usb = false;
2354 2354
2355 MENUITEM_STRINGLIST(menu, "Display Settings", NULL, 2355 MENUITEM_STRINGLIST(menu, "Display Settings", NULL,
2356 "Wrap", "Wipe", "Align", 2356 "Wrap", "Wipe", "Alignment",
2357 "Activate Only Current Line"); 2357 "Activate Only Current Line");
2358 2358
2359 struct opt_items align_names[] = { 2359 struct opt_items align_names[] = {
2360 {"Left", -1}, {"Center", -1}, {"Right", -1}, 2360 {"Left", -1}, {"Centre", -1}, {"Right", -1},
2361 }; 2361 };
2362 2362
2363 while (!exit && !usb) 2363 while (!exit && !usb)
@@ -2371,7 +2371,7 @@ static bool lrc_display_menu(void)
2371 usb = rb->set_bool("Wipe", &prefs.wipe); 2371 usb = rb->set_bool("Wipe", &prefs.wipe);
2372 break; 2372 break;
2373 case LRC_MENU_ALIGN: 2373 case LRC_MENU_ALIGN:
2374 usb = rb->set_option("Align", &prefs.align, INT, 2374 usb = rb->set_option("Alignment", &prefs.align, INT,
2375 align_names, 3, NULL); 2375 align_names, 3, NULL);
2376 break; 2376 break;
2377 case LRC_MENU_LINE_MODE: 2377 case LRC_MENU_LINE_MODE: