Re: [PATCH] i18n: fix mistakes in translated strings

2018-09-04 Thread Junio C Hamano
Jiang Xin writes: > Jean-Noël Avila 于2018年8月24日周五 上午5:02写道: >> diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c >> index 2bcc70fdfe..b56028ba9d 100644 >> --- a/builtin/submodule--helper.c >> +++ b/builtin/submodule--helper.c >> @@ -542,7 +542,7 @@ static void runcommand_in_

Re: [PATCH] i18n: fix mistakes in translated strings

2018-09-03 Thread Jiang Xin
Jean-Noël Avila 于2018年8月24日周五 上午5:02写道: > diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c > index 2bcc70fdfe..b56028ba9d 100644 > --- a/builtin/submodule--helper.c > +++ b/builtin/submodule--helper.c > @@ -542,7 +542,7 @@ static void runcommand_in_submodule_cb(const struct

Re: [PATCH] i18n: fix mistakes in translated strings

2018-09-03 Thread Jean-Noël AVILA
Le jeudi 23 août 2018, 23:28:55 CEST Junio C Hamano a écrit : > Jean-Noël Avila writes: > > > - die(_("run_command returned non-zero status while" > > + die(_("run_command returned non-zero status while " > > "recursing in the nested

Re: [PATCH] i18n: fix mistakes in translated strings

2018-08-23 Thread Junio C Hamano
Jean-Noël Avila writes: > - die(_("run_command returned non-zero status while" > + die(_("run_command returned non-zero status while " > "recursing in the nested submodules of %s\n."), Obviously good. > diff --git a/config.c

[PATCH] i18n: fix mistakes in translated strings

2018-08-23 Thread Jean-Noël Avila
Fix typos and convert a question which does not expect to be replied to a simple advice. Signed-off-by: Jean-Noël Avila --- builtin/submodule--helper.c | 2 +- config.c| 2 +- sequencer.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/b