summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Goode <jeffg7@gmail.com>2010-04-08 02:56:32 +0000
committerJeffrey Goode <jeffg7@gmail.com>2010-04-08 02:56:32 +0000
commit42973f31757b7d7ea7991d5d56e19a9f1c217813 (patch)
tree827a868ea570c9ee900f555740de72e0fb54fd70
parentaccc046cbd76d55a60b18b39dcf82fe1032034d8 (diff)
downloadrockbox-42973f31757b7d7ea7991d5d56e19a9f1c217813.zip
rockbox-42973f31757b7d7ea7991d5d56e19a9f1c217813.tar.gz
rockbox-42973f31757b7d7ea7991d5d56e19a9f1c217813.tar.bz2
rockbox-42973f31757b7d7ea7991d5d56e19a9f1c217813.tar.xz
Add lang strings to hotkey setting macros
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25530 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/settings_list.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 86ad12f..d52a82f 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -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
};