mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-01-22 01:30:35 -05:00
plugins & debug menu: apply consistent titles
Purge "Menu" or "Rockbox" from plugin menu titles and match application names from manual. Exception: "Main Menu" is left unchanged as the title for the Main Menu Configuration plugin, since it appears in Rockbox's Settings menu and therefore should match the name of the setting. E.g.: "Rockbox Goban" => "Goban" "Image Viewer Menu" => "Image Viewer" "Viewer Menu" => "Text Viewer" "Menu" => "Chess Clock" "Do What?" => "Text Editor" "Mpegplayer Menu" => "MPEG Player" "Multiboot Settings" => "Multiboot" "Disktidy" => "Disk Tidy" ... Change-Id: Ie6d3be7557f31a36309489037ad8b2b27b06706e
This commit is contained in:
parent
fe690dfa20
commit
5aa2b339d5
56 changed files with 262 additions and 304 deletions
|
|
@ -2937,7 +2937,7 @@ static int menu_action_callback(int btn, struct gui_synclist *lists)
|
|||
}
|
||||
else if (btn == ACTION_STD_CONTEXT)
|
||||
{
|
||||
MENUITEM_STRINGLIST(menu_items, "Debug Menu", NULL, ID2P(LANG_ADD_TO_FAVES));
|
||||
MENUITEM_STRINGLIST(menu_items, "Debug", NULL, ID2P(LANG_ADD_TO_FAVES));
|
||||
if (do_menu(&menu_items, NULL, NULL, false) == 0)
|
||||
shortcuts_add(SHORTCUT_DEBUGITEM, menuitems[selection].desc);
|
||||
return ACTION_STD_CANCEL;
|
||||
|
|
@ -2974,7 +2974,7 @@ int debug_menu(void)
|
|||
{
|
||||
struct simplelist_info info;
|
||||
|
||||
simplelist_info_init(&info, "Debug Menu", ARRAYLEN(menuitems), NULL);
|
||||
simplelist_info_init(&info, "Debug", ARRAYLEN(menuitems), NULL);
|
||||
info.action_callback = menu_action_callback;
|
||||
info.get_name = menu_get_name;
|
||||
info.get_talk = menu_get_talk;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue