mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-30 11:04:25 +00:00
kconfig: gconfig: symbol fix
Gettext support for symbol names are unnecessary. Signed-off-by: Egry Gabor <gaboregry1@t-online.hu> Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Cc: Roman Zippel <zippel@linux-m68k.org>
This commit is contained in:
parent
534a450c38
commit
0ffce8d944
1 changed files with 1 additions and 1 deletions
|
@ -466,7 +466,7 @@ static void text_insert_help(struct menu *menu)
|
||||||
help = _(help);
|
help = _(help);
|
||||||
|
|
||||||
if (menu->sym && menu->sym->name)
|
if (menu->sym && menu->sym->name)
|
||||||
name = g_strdup_printf(_(menu->sym->name));
|
name = g_strdup_printf(menu->sym->name);
|
||||||
else
|
else
|
||||||
name = g_strdup("");
|
name = g_strdup("");
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue