Commit bb7ef390 authored by EGRY Gabor's avatar EGRY Gabor Committed by Sam Ravnborg

kconfig: missing macros in gconfig

This patch adds missing gettext macros.
Signed-off-by: default avatarEgry Gabor <gaboregry1@t-online.hu>
Reviewed-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
parent f7a4b4cd
...@@ -455,11 +455,15 @@ static void text_insert_help(struct menu *menu) ...@@ -455,11 +455,15 @@ static void text_insert_help(struct menu *menu)
{ {
GtkTextBuffer *buffer; GtkTextBuffer *buffer;
GtkTextIter start, end; GtkTextIter start, end;
const char *prompt = menu_get_prompt(menu); const char *prompt = _(menu_get_prompt(menu));
gchar *name; gchar *name;
const char *help; const char *help;
help = _(menu_get_help(menu)); help = menu_get_help(menu);
/* Gettextize if the help text not empty */
if ((help != 0) && (help[0] != 0))
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));
...@@ -1169,7 +1173,7 @@ static gchar **fill_row(struct menu *menu) ...@@ -1169,7 +1173,7 @@ static gchar **fill_row(struct menu *menu)
bzero(row, sizeof(row)); bzero(row, sizeof(row));
row[COL_OPTION] = row[COL_OPTION] =
g_strdup_printf("%s %s", menu_get_prompt(menu), g_strdup_printf("%s %s", _(menu_get_prompt(menu)),
sym && sym_has_value(sym) ? "(NEW)" : ""); sym && sym_has_value(sym) ? "(NEW)" : "");
if (show_all && !menu_is_visible(menu)) if (show_all && !menu_is_visible(menu))
...@@ -1219,7 +1223,7 @@ static gchar **fill_row(struct menu *menu) ...@@ -1219,7 +1223,7 @@ static gchar **fill_row(struct menu *menu)
if (def_menu) if (def_menu)
row[COL_VALUE] = row[COL_VALUE] =
g_strdup(menu_get_prompt(def_menu)); g_strdup(_(menu_get_prompt(def_menu)));
} }
if (sym->flags & SYMBOL_CHOICEVAL) if (sym->flags & SYMBOL_CHOICEVAL)
row[COL_BTNRAD] = GINT_TO_POINTER(TRUE); row[COL_BTNRAD] = GINT_TO_POINTER(TRUE);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment