Skip to content

Commit

Permalink
kconfig/[mn]conf: shorten title in search-box
Browse files Browse the repository at this point in the history
No need to repeat the 'CONFIG_' string in the title,
once is explicit enough.

Reported-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Jean Delvare <jdelvare@suse.de>
  • Loading branch information
Yann E. MORIN committed Jul 16, 2013
1 parent 26e933e commit f6eb6e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/kconfig/mconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,8 @@ static void search_conf(void)
struct subtitle_part stpart;

title = str_new();
str_printf( &title, _("Enter %s (sub)string or regexp to search for "
"(with or without \"%s\")"), CONFIG_, CONFIG_);
str_printf( &title, _("Enter (sub)string or regexp to search for "
"(with or without \"%s\")"), CONFIG_);

again:
dialog_clear();
Expand Down
4 changes: 2 additions & 2 deletions scripts/kconfig/nconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -695,8 +695,8 @@ static void search_conf(void)
int dres;

title = str_new();
str_printf( &title, _("Enter %s (sub)string or regexp to search for "
"(with or without \"%s\")"), CONFIG_, CONFIG_);
str_printf( &title, _("Enter (sub)string or regexp to search for "
"(with or without \"%s\")"), CONFIG_);

again:
dres = dialog_inputbox(main_window,
Expand Down

0 comments on commit f6eb6e4

Please sign in to comment.