i18n: clean.c: match string with git-add--interactive.perl
Change strings for help to match the ones in git-add--interactive.perl. The strings now represent one entry to translate each rather then two entries each different only by an ending newline character. Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
13c58c1754
commit
901707babc
|
@ -287,11 +287,11 @@ static void pretty_print_menus(struct string_list *menu_list)
|
||||||
static void prompt_help_cmd(int singleton)
|
static void prompt_help_cmd(int singleton)
|
||||||
{
|
{
|
||||||
clean_print_color(CLEAN_COLOR_HELP);
|
clean_print_color(CLEAN_COLOR_HELP);
|
||||||
printf_ln(singleton ?
|
printf(singleton ?
|
||||||
_("Prompt help:\n"
|
_("Prompt help:\n"
|
||||||
"1 - select a numbered item\n"
|
"1 - select a numbered item\n"
|
||||||
"foo - select item based on unique prefix\n"
|
"foo - select item based on unique prefix\n"
|
||||||
" - (empty) select nothing") :
|
" - (empty) select nothing\n") :
|
||||||
_("Prompt help:\n"
|
_("Prompt help:\n"
|
||||||
"1 - select a single item\n"
|
"1 - select a single item\n"
|
||||||
"3-5 - select a range of items\n"
|
"3-5 - select a range of items\n"
|
||||||
|
@ -299,7 +299,7 @@ static void prompt_help_cmd(int singleton)
|
||||||
"foo - select item based on unique prefix\n"
|
"foo - select item based on unique prefix\n"
|
||||||
"-... - unselect specified items\n"
|
"-... - unselect specified items\n"
|
||||||
"* - choose all items\n"
|
"* - choose all items\n"
|
||||||
" - (empty) finish selecting"));
|
" - (empty) finish selecting\n"));
|
||||||
clean_print_color(CLEAN_COLOR_RESET);
|
clean_print_color(CLEAN_COLOR_RESET);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -508,7 +508,7 @@ static int parse_choice(struct menu_stuff *menu_stuff,
|
||||||
if (top <= 0 || bottom <= 0 || top > menu_stuff->nr || bottom > top ||
|
if (top <= 0 || bottom <= 0 || top > menu_stuff->nr || bottom > top ||
|
||||||
(is_single && bottom != top)) {
|
(is_single && bottom != top)) {
|
||||||
clean_print_color(CLEAN_COLOR_ERROR);
|
clean_print_color(CLEAN_COLOR_ERROR);
|
||||||
printf_ln(_("Huh (%s)?"), (*ptr)->buf);
|
printf(_("Huh (%s)?\n"), (*ptr)->buf);
|
||||||
clean_print_color(CLEAN_COLOR_RESET);
|
clean_print_color(CLEAN_COLOR_RESET);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -774,7 +774,7 @@ static int ask_each_cmd(void)
|
||||||
static int quit_cmd(void)
|
static int quit_cmd(void)
|
||||||
{
|
{
|
||||||
string_list_clear(&del_list, 0);
|
string_list_clear(&del_list, 0);
|
||||||
printf_ln(_("Bye."));
|
printf(_("Bye.\n"));
|
||||||
return MENU_RETURN_NO_LOOP;
|
return MENU_RETURN_NO_LOOP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue