summaryrefslogtreecommitdiff
path: root/src/memline.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-02 12:38:02 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-02 12:38:02 +0100
commitd9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818 (patch)
treec94840d3027eb1d9e1d602835d126314a11abfd4 /src/memline.c
parent885f24fbcae2a39ae496ffb3a1e139379be8fae1 (diff)
downloadvim-git-d9ea9069f5ef5b8b9f9e0d0daecdd124e2dcd818.tar.gz
patch 7.4.1237v7.4.1237
Problem: Can't translate message without adding a line break. Solution: Join the two parts of the message.
Diffstat (limited to 'src/memline.c')
-rw-r--r--src/memline.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/memline.c b/src/memline.c
index 15810fdad..969e1e292 100644
--- a/src/memline.c
+++ b/src/memline.c
@@ -4075,8 +4075,7 @@ attention_message(
}
/* Some of these messages are long to allow translation to
* other languages. */
- MSG_PUTS(_("\n(1) Another program may be editing the same file. If this is the case,\n be careful not to end up with two different instances of the same\n file when making changes."));
- MSG_PUTS(_(" Quit, or continue with caution.\n"));
+ MSG_PUTS(_("\n(1) Another program may be editing the same file. If this is the case,\n be careful not to end up with two different instances of the same\n file when making changes. Quit, or continue with caution.\n"));
MSG_PUTS(_("(2) An edit session for this file crashed.\n"));
MSG_PUTS(_(" If this is the case, use \":recover\" or \"vim -r "));
msg_outtrans(buf->b_fname);