mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Correct spelling in the lrcviewer plugin. UK English please!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27144 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c72d1a656b
commit
a30c5a0a4d
1 changed files with 5 additions and 5 deletions
|
@ -2299,7 +2299,7 @@ static bool lrc_theme_menu(void)
|
||||||
#endif
|
#endif
|
||||||
"Display Time",
|
"Display Time",
|
||||||
#ifdef HAVE_LCD_COLOR
|
#ifdef HAVE_LCD_COLOR
|
||||||
"Inactive Color",
|
"Inactive Colour",
|
||||||
#endif
|
#endif
|
||||||
"Backlight Force On");
|
"Backlight Force On");
|
||||||
|
|
||||||
|
@ -2320,7 +2320,7 @@ static bool lrc_theme_menu(void)
|
||||||
break;
|
break;
|
||||||
#ifdef HAVE_LCD_COLOR
|
#ifdef HAVE_LCD_COLOR
|
||||||
case LRC_MENU_INACTIVE_COLOR:
|
case LRC_MENU_INACTIVE_COLOR:
|
||||||
usb = rb->set_color(NULL, "Inactive Color",
|
usb = rb->set_color(NULL, "Inactive Colour",
|
||||||
&prefs.inactive_color, -1);
|
&prefs.inactive_color, -1);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
@ -2353,11 +2353,11 @@ static bool lrc_display_menu(void)
|
||||||
bool exit = false, usb = false;
|
bool exit = false, usb = false;
|
||||||
|
|
||||||
MENUITEM_STRINGLIST(menu, "Display Settings", NULL,
|
MENUITEM_STRINGLIST(menu, "Display Settings", NULL,
|
||||||
"Wrap", "Wipe", "Align",
|
"Wrap", "Wipe", "Alignment",
|
||||||
"Activate Only Current Line");
|
"Activate Only Current Line");
|
||||||
|
|
||||||
struct opt_items align_names[] = {
|
struct opt_items align_names[] = {
|
||||||
{"Left", -1}, {"Center", -1}, {"Right", -1},
|
{"Left", -1}, {"Centre", -1}, {"Right", -1},
|
||||||
};
|
};
|
||||||
|
|
||||||
while (!exit && !usb)
|
while (!exit && !usb)
|
||||||
|
@ -2371,7 +2371,7 @@ static bool lrc_display_menu(void)
|
||||||
usb = rb->set_bool("Wipe", &prefs.wipe);
|
usb = rb->set_bool("Wipe", &prefs.wipe);
|
||||||
break;
|
break;
|
||||||
case LRC_MENU_ALIGN:
|
case LRC_MENU_ALIGN:
|
||||||
usb = rb->set_option("Align", &prefs.align, INT,
|
usb = rb->set_option("Alignment", &prefs.align, INT,
|
||||||
align_names, 3, NULL);
|
align_names, 3, NULL);
|
||||||
break;
|
break;
|
||||||
case LRC_MENU_LINE_MODE:
|
case LRC_MENU_LINE_MODE:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue