1
0
forked from aniani/vim

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 _().
This commit is contained in:
Bram Moolenaar
2017-07-16 20:54:34 +02:00
parent 4d2ba822fd
commit 60d0e97497
2 changed files with 3 additions and 1 deletions

View File

@@ -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();