# HG changeset patch # User Christian Brabandt # Date 1500231603 -7200 # Node ID 570f00932da8e671299e126c7fce5b842084c6b3 # Parent 04684dddfe9a403877a305b996a5ae6bac4f6017 patch 8.0.0727: message about what register to yank into is not translated commit https://github.com/vim/vim/commit/60d0e97497f1104b31f711072ef174af533b61fa Author: Bram Moolenaar Date: Sun Jul 16 20:54:34 2017 +0200 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 _(). diff --git a/src/ops.c b/src/ops.c --- a/src/ops.c +++ b/src/ops.c @@ -3173,7 +3173,7 @@ op_yank(oparg_T *oap, int deleting, int *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 --- 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,