0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

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

View File

@@ -769,6 +769,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
727,
/**/
726,
/**/