summaryrefslogtreecommitdiff
path: root/lockfile.c
diff options
context:
space:
mode:
authorMatthieu Moy <Matthieu.Moy@imag.fr>2016-03-01 17:04:09 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-03-01 18:16:45 (GMT)
commit3030c295baee355d0b454a2d54f295153f8ea6a8 (patch)
tree09f63466974b9ba456f544364b8b07893aafcbc6 /lockfile.c
parentf02fbc4f9433937ee0463d0342d6d7d97e1f6f1e (diff)
downloadgit-3030c295baee355d0b454a2d54f295153f8ea6a8.zip
git-3030c295baee355d0b454a2d54f295153f8ea6a8.tar.gz
git-3030c295baee355d0b454a2d54f295153f8ea6a8.tar.bz2
lockfile: mark strings for translation
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'lockfile.c')
-rw-r--r--lockfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lockfile.c b/lockfile.c
index 80d056d..62583d1 100644
--- a/lockfile.c
+++ b/lockfile.c
@@ -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));
}