summaryrefslogtreecommitdiff
path: root/sequencer.c
diff options
context:
space:
mode:
authorJean-Noël Avila <jn.avila@free.fr>2018-08-23 21:00:56 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-08-23 21:29:12 (GMT)
commit27c929edd6cccfbbedf2fbb8a3175bc7e01bf6c7 (patch)
tree24d0d60243c9bc4e152c4fdda6a7c5011f06a7b2 /sequencer.c
parent29d9e3e2c47dd4b5053b0a98c891878d398463e3 (diff)
downloadgit-27c929edd6cccfbbedf2fbb8a3175bc7e01bf6c7.zip
git-27c929edd6cccfbbedf2fbb8a3175bc7e01bf6c7.tar.gz
git-27c929edd6cccfbbedf2fbb8a3175bc7e01bf6c7.tar.bz2
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>
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c
index 65d371c..84bf598 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -720,7 +720,7 @@ static const char *read_author_ident(struct strbuf *buf)
/* dequote values and construct ident line in-place */
for (in = buf->buf; i < 3 && in - buf->buf < buf->len; i++) {
if (!skip_prefix(in, keys[i], (const char **)&in)) {
- warning(_("could not parse '%s' (looking for '%s'"),
+ warning(_("could not parse '%s' (looking for '%s')"),
rebase_path_author_script(), keys[i]);
return NULL;
}