Rename lang strings to something more appropriate

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25535 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jeffrey Goode 2010-04-08 11:21:55 +00:00
parent 554be5cf87
commit 936fe29a5a
2 changed files with 4 additions and 4 deletions

View file

@ -13480,7 +13480,7 @@
</voice>
</phrase>
<phrase>
id: LANG_WPS
id: LANG_HOTKEY_VIEW_WPS
desc: hotkey info menu
user: core
<source>
@ -13496,7 +13496,7 @@
</voice>
</phrase>
<phrase>
id: LANG_FILE_BROWSER
id: LANG_HOTKEY_VIEW_FILE_BROWSER
desc: hotkey info menu
user: core
<source>

View file

@ -414,9 +414,9 @@ static void view_hotkey_info(void)
info.hide_selection = true;
info.scroll_all = true;
simplelist_set_line_count(2);
simplelist_addline(0, str(LANG_WPS),
simplelist_addline(0, str(LANG_HOTKEY_VIEW_WPS),
str(get_hotkey_desc_id(global_settings.hotkey_wps)));
simplelist_addline(1, str(LANG_FILE_BROWSER),
simplelist_addline(1, str(LANG_HOTKEY_VIEW_FILE_BROWSER),
str(get_hotkey_desc_id(global_settings.hotkey_tree)));
simplelist_show_list(&info);
}