The user does the editing, not the editor. So rephrasing.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5118 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
Benno Schulenberg
2015-02-15 16:28:08 +00:00
parent 35cd49ec50
commit 1b65b19abd
2 changed files with 4 additions and 2 deletions

View File

@@ -293,8 +293,9 @@ int do_lockfile(const char *filename)
fprintf(stderr, "user which created this lock file should be %s\n",
lockuser);
#endif
sprintf(promptstr, _("File %s is being edited (by %s, PID %d, user %s); continue?"),
filename, lockprog, lockpid, lockuser);
/* TRANSLATORS: The second %s is the name of the user, the third that of the editor. */
sprintf(promptstr, _("File %s is being edited (by %s with %s, PID %d); continue?"),
filename, lockuser, lockprog, lockpid);
ans = do_yesno_prompt(FALSE, promptstr);
if (ans < 1) {
blank_statusbar();