Browse Source

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>
EGRY Gabor 17 năm trước cách đây
mục cha
commit
0ffce8d944
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      scripts/kconfig/gconf.c

+ 1 - 1
scripts/kconfig/gconf.c

@@ -466,7 +466,7 @@ static void text_insert_help(struct menu *menu)
 		help = _(help);
 
 	if (menu->sym && menu->sym->name)
-		name = g_strdup_printf(_(menu->sym->name));
+		name = g_strdup_printf(menu->sym->name);
 	else
 		name = g_strdup("");