summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Goode <jeffg7@gmail.com>2010-04-08 11:21:55 +0000
committerJeffrey Goode <jeffg7@gmail.com>2010-04-08 11:21:55 +0000
commit936fe29a5a6f83d19a3f3feada68dd1525936447 (patch)
treedad4c0111e3db7b7f91933135bc2184d1f342968
parent554be5cf87943d14a44b3dc9774e5038863d8c94 (diff)
downloadrockbox-936fe29a5a6f83d19a3f3feada68dd1525936447.tar.gz
rockbox-936fe29a5a6f83d19a3f3feada68dd1525936447.zip
Rename lang strings to something more appropriate
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25535 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/lang/english.lang4
-rw-r--r--apps/menus/settings_menu.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index 3a7f071bfd..1cd137ae3c 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -13480,7 +13480,7 @@
13480 </voice> 13480 </voice>
13481</phrase> 13481</phrase>
13482<phrase> 13482<phrase>
13483 id: LANG_WPS 13483 id: LANG_HOTKEY_VIEW_WPS
13484 desc: hotkey info menu 13484 desc: hotkey info menu
13485 user: core 13485 user: core
13486 <source> 13486 <source>
@@ -13496,7 +13496,7 @@
13496 </voice> 13496 </voice>
13497</phrase> 13497</phrase>
13498<phrase> 13498<phrase>
13499 id: LANG_FILE_BROWSER 13499 id: LANG_HOTKEY_VIEW_FILE_BROWSER
13500 desc: hotkey info menu 13500 desc: hotkey info menu
13501 user: core 13501 user: core
13502 <source> 13502 <source>
diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c
index 4a8a04f609..499a5a124b 100644
--- a/apps/menus/settings_menu.c
+++ b/apps/menus/settings_menu.c
@@ -414,9 +414,9 @@ static void view_hotkey_info(void)
414 info.hide_selection = true; 414 info.hide_selection = true;
415 info.scroll_all = true; 415 info.scroll_all = true;
416 simplelist_set_line_count(2); 416 simplelist_set_line_count(2);
417 simplelist_addline(0, str(LANG_WPS), 417 simplelist_addline(0, str(LANG_HOTKEY_VIEW_WPS),
418 str(get_hotkey_desc_id(global_settings.hotkey_wps))); 418 str(get_hotkey_desc_id(global_settings.hotkey_wps)));
419 simplelist_addline(1, str(LANG_FILE_BROWSER), 419 simplelist_addline(1, str(LANG_HOTKEY_VIEW_FILE_BROWSER),
420 str(get_hotkey_desc_id(global_settings.hotkey_tree))); 420 str(get_hotkey_desc_id(global_settings.hotkey_tree)));
421 simplelist_show_list(&info); 421 simplelist_show_list(&info);
422} 422}