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:
@@ -3173,7 +3173,7 @@ op_yank(oparg_T *oap, int deleting, int mess)
|
|||||||
*namebuf = NUL;
|
*namebuf = NUL;
|
||||||
else
|
else
|
||||||
vim_snprintf(namebuf, sizeof(namebuf),
|
vim_snprintf(namebuf, sizeof(namebuf),
|
||||||
" into \"%c", oap->regname);
|
_(" into \"%c"), oap->regname);
|
||||||
|
|
||||||
/* redisplay now, so message is not deleted */
|
/* redisplay now, so message is not deleted */
|
||||||
update_topline_redraw();
|
update_topline_redraw();
|
||||||
|
@@ -769,6 +769,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
727,
|
||||||
/**/
|
/**/
|
||||||
726,
|
726,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user