i18n: remote: allow translations to reorder message
[gitweb.git] / lockfile.c
index 62583d128156099eb49267af839bed1589ca5375..9268cdf325f3881104d6d12ef31639536b15dcb2 100644 (file)
@@ -150,9 +150,11 @@ 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"
-                   "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."),
+                   "Another git process seems to be running in this repository, e.g.\n"
+                   "an editor opened by 'git commit'. Please make sure all processes\n"
+                   "are terminated then try again. If it still fails, a git process\n"
+                   "may have crashed in this repository earlier:\n"
+                   "remove the file manually to continue."),
                            absolute_path(path), strerror(err));
        } else
                strbuf_addf(buf, _("Unable to create '%s.lock': %s"),