Skip to content

Commit

Permalink
lockfile: mark strings for translation
Browse files Browse the repository at this point in the history
Signed-off-by: Matthieu Moy <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
moy authored and gitster committed Mar 1, 2016
1 parent f02fbc4 commit 3030c29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lockfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,13 @@ static int lock_file_timeout(struct lock_file *lk, const char *path,
void unable_to_lock_message(const char *path, int err, struct strbuf *buf)
{
if (err == EEXIST) {
strbuf_addf(buf, "Unable to create '%s.lock': %s.\n\n"
strbuf_addf(buf, _("Unable to create '%s.lock': %s.\n\n"
"If no other git process is currently running, this probably means a\n"
"git process crashed in this repository earlier. Make sure no other git\n"
"process is running and remove the file manually to continue.",
"process is running and remove the file manually to continue."),
absolute_path(path), strerror(err));
} else
strbuf_addf(buf, "Unable to create '%s.lock': %s",
strbuf_addf(buf, _("Unable to create '%s.lock': %s"),
absolute_path(path), strerror(err));
}

Expand Down

0 comments on commit 3030c29

Please sign in to comment.