|
@@ -394,9 +394,9 @@ bool menu_is_visible(struct menu *menu)
|
|
const char *menu_get_prompt(struct menu *menu)
|
|
const char *menu_get_prompt(struct menu *menu)
|
|
{
|
|
{
|
|
if (menu->prompt)
|
|
if (menu->prompt)
|
|
- return _(menu->prompt->text);
|
|
|
|
|
|
+ return menu->prompt->text;
|
|
else if (menu->sym)
|
|
else if (menu->sym)
|
|
- return _(menu->sym->name);
|
|
|
|
|
|
+ return menu->sym->name;
|
|
return NULL;
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
|