diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-16 20:54:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-16 20:54:34 +0200 |
commit | 60d0e97497f1104b31f711072ef174af533b61fa (patch) | |
tree | c8e9ef3ea49d0cb71a43772d14a619f7ba1d2781 | |
parent | 4d2ba822fd80f5b5ff6d9195a5f0fd802aabf304 (diff) | |
download | vim-60d0e97497f1104b31f711072ef174af533b61fa.zip |
patch 8.0.0727: message about what register to yank into is not translated
Problem: Message about what register to yank into is not translated.
(LemonBoy)
Solution: Add _().
-rw-r--r-- | src/ops.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -3173,7 +3173,7 @@ op_yank(oparg_T *oap, int deleting, int mess) *namebuf = NUL; else vim_snprintf(namebuf, sizeof(namebuf), - " into \"%c", oap->regname); + _(" into \"%c"), oap->regname); /* redisplay now, so message is not deleted */ update_topline_redraw(); diff --git a/src/version.c b/src/version.c index 85814a433..77ff8c773 100644 --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 727, +/**/ 726, /**/ 725, |