Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index 627fda8..cbc4213 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -6617,16 +6617,13 @@
   desc: in main menu
   user: core
   <source>
-    *: none
-    soft_shutdown: "Shut down"
+    : "Shut down"
   </source>
   <dest>
-    *: none
-    soft_shutdown: "Shut down"
+    : "Shut down"
   </dest>
   <voice>
-    *: none
-    soft_shutdown: "Shut down"
+    : "Shut down"
   </voice>
 </phrase>
 <phrase>
diff --git a/apps/root_menu.c b/apps/root_menu.c
index 6e3164c..3cf527b 100644
--- a/apps/root_menu.c
+++ b/apps/root_menu.c
@@ -463,7 +463,6 @@ MENUITEM_RETURNVALUE(playlists, ID2P(LANG_CATALOG), GO_TO_PLAYLISTS_SCREEN,
 MENUITEM_RETURNVALUE(system_menu_, ID2P(LANG_SYSTEM), GO_TO_SYSTEM_SCREEN,
                      NULL, Icon_System_menu);
 
-#if CONFIG_KEYPAD == PLAYER_PAD
 static int do_shutdown(void)
 {
 #if CONFIG_CHARGING
@@ -476,7 +475,6 @@ static int do_shutdown(void)
 }
 MENUITEM_FUNCTION(do_shutdown_item, 0, ID2P(LANG_SHUTDOWN),
                   do_shutdown, NULL, NULL, Icon_NOICON);
-#endif
 
 struct menu_item_ex root_menu_;
 static struct menu_callback_with_desc root_menu_desc = {
@@ -503,10 +501,8 @@ static struct menu_table menu_table[] = {
     { "playlists", &playlists },
     { "plugins", &rocks_browser },
     { "system_menu", &system_menu_ },
-#if CONFIG_KEYPAD == PLAYER_PAD
-    { "shutdown", &do_shutdown_item },
-#endif
     { "shortcuts", &shortcut_menu },
+    { "shutdown", &do_shutdown_item },
 };
 #define MAX_MENU_ITEMS (sizeof(menu_table) / sizeof(struct menu_table))
 static struct menu_item_ex *root_menu__[MAX_MENU_ITEMS];