i18n: fix mistakes in translated strings
Fix typos and convert a question which does not expect to be replied to a simple advice. Signed-off-by: Jean-Noël Avila <jn.avila@free.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jean-Noël Avila committed
Aug 23, 2018 at 23:00 UTC
27c929edd6cccfbbedf2fbb8a3175bc7e01bf6c7
3 files changed
+3
-3
builtin/submodule--helper.c
+1
-1
@@ -542,7 +542,7 @@ static void runcommand_in_submodule_cb(const struct cache_entry *list_item,
542
argv_array_pushv(&cpr.args, info->argv);
543
544
if (run_command(&cpr))
545
- die(_("run_command returned non-zero status while"
545
+ die(_("run_command returned non-zero status while "
546
"recursing in the nested submodules of %s\n."),
547
displaypath);
548
}
config.c
+1
-1
@@ -124,7 +124,7 @@ static const char include_depth_advice[] = N_(
124
" %s\n"
125
"from\n"
126
" %s\n"
127
-"Do you have circular includes?");
127
+"This might be due to circular includes.");
128
static int handle_path_include(const char *path, struct config_include_data *inc)
129
{
130
int ret = 0;
sequencer.c
+1
-1
@@ -720,7 +720,7 @@ static const char *read_author_ident(struct strbuf *buf)
720
/* dequote values and construct ident line in-place */
721
for (in = buf->buf; i < 3 && in - buf->buf < buf->len; i++) {
722
if (!skip_prefix(in, keys[i], (const char **)&in)) {
723
- warning(_("could not parse '%s' (looking for '%s'"),
723
+ warning(_("could not parse '%s' (looking for '%s')"),
724
rebase_path_author_script(), keys[i]);
725
return NULL;
726
}