Add lang strings to hotkey setting macros
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25530 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
accc046cbd
commit
42973f3175
1 changed files with 16 additions and 2 deletions
|
@ -1664,10 +1664,24 @@ const struct settings_list settings[] = {
|
|||
#ifdef HAVE_HOTKEY
|
||||
CHOICE_SETTING(0, hotkey_wps, -1, 1, "hotkey wps",
|
||||
"off,view playlist,show track info,pitchscreen,open with,delete,insert",
|
||||
NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
|
||||
NULL, 7, ID2P(LANG_OFF),
|
||||
ID2P(LANG_VIEW_DYNAMIC_PLAYLIST), ID2P(LANG_MENU_SHOW_ID3_INFO),
|
||||
#ifdef HAVE_PITCHSCREEN
|
||||
ID2P(LANG_PITCH),
|
||||
#else
|
||||
NULL,
|
||||
#endif
|
||||
ID2P(LANG_ONPLAY_OPEN_WITH), ID2P(LANG_DELETE), ID2P(LANG_INSERT)),
|
||||
CHOICE_SETTING(0, hotkey_tree, -1, 0, "hotkey tree",
|
||||
"off,view playlist,show track info,pitchscreen,open with,delete,insert",
|
||||
NULL, 7, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
|
||||
NULL, 7, ID2P(LANG_OFF),
|
||||
ID2P(LANG_VIEW_DYNAMIC_PLAYLIST), ID2P(LANG_MENU_SHOW_ID3_INFO),
|
||||
#ifdef HAVE_PITCHSCREEN
|
||||
ID2P(LANG_PITCH),
|
||||
#else
|
||||
NULL,
|
||||
#endif
|
||||
ID2P(LANG_ONPLAY_OPEN_WITH), ID2P(LANG_DELETE), ID2P(LANG_INSERT)),
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue