Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> writes: > I took a pass through git.pot and added comments to various messages > that could use one, comments still need to be added to a lot of other > things, but you have to start somewhere. > > Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> > --- > advice.c | 3 +++ > bundle.c | 5 +++++ > commit.c | 4 ++++ > connected.c | 3 +++ > diff.c | 1 + > remote.c | 10 ++++++++++ > sequencer.c | 10 ++++++++++ > 7 files changed, 36 insertions(+) > > diff --git a/advice.c b/advice.c > index a492eea..5944abb 100644 > --- a/advice.c > +++ b/advice.c > @@ -37,6 +37,9 @@ void advise(const char *advice, ...) > > for (cp = buf.buf; *cp; cp = np) { > np = strchrnul(cp, '\n'); > + /* TRANSLATORS: This will be used to prefix each line of an > + * advice message, with the format string being the line > + */ /* * Our multi-line comments are formatted like * this (many other places in the patch). */ Also end the sentence with a full-stop, please (many other places in the patch). It is unclear what "with the format string being the line" means here, at least to me, even though I think I wrote this code. > fprintf(stderr, _("hint: %.*s\n"), (int)(np - cp), cp); > if (*np) > np++; > diff --git a/bundle.c b/bundle.c > index 8d31b98..f24999e 100644 > --- a/bundle.c > +++ b/bundle.c > @@ -86,6 +86,7 @@ int read_bundle_header(const char *path, struct bundle_header *header) > int fd = open(path, O_RDONLY); > > if (fd < 0) > + /* TRANSLATORS: The argument is a path that can't be opened */ > return error(_("could not open '%s'"), path); That does not add much information. "path to the file we tried to read the bundle data from but failed"? > @@ -137,6 +138,9 @@ int verify_bundle(struct bundle_header *header, int verbose) > struct object_array refs; > struct commit *commit; > int i, ret = 0, req_nr; > + /* TRANSLATORS: This is a heading that'll precede a list of commit > + * hashes and reference names > + */ Please say "commit object names" (many other places in the patch). > const char *message = _("Repository lacks these prerequisite commits:"); > > init_revisions(&revs, NULL); > @@ -412,6 +416,7 @@ int create_bundle(struct bundle_header *header, const char *path, > return error(_("pack-objects died")); > if (!bundle_to_stdout) { > if (commit_lock_file(&lock)) > + /* TRANSLATORS: The argument is a path we can't create */ > die_errno(_("cannot create '%s'"), path); That does not add much information. "path to the file we tried to write the bundle data to but failed"? > @@ -365,6 +374,7 @@ static int do_pick_commit(struct commit *commit, struct replay_opts *opts) > struct commit_list *p; > > if (!opts->mainline) > + /* TRANSLATORS: The argument is a commit digest */ Please consistently say "commit object name". > return error(_("Commit %s is a merge but no -m option was given."), > sha1_to_hex(commit->object.sha1)); -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html