From: Bram Moolenaar Date: Sun, 16 Jul 2017 18:54:34 +0000 (+0200) Subject: patch 8.0.0727: message about what register to yank into is not translated X-Git-Tag: v8.0.0727 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=60d0e97497f1104b31f711072ef174af533b61fa;p=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 _(). --- diff --git a/src/ops.c b/src/ops.c index 05ccc8114..0f42dea00 100644 --- a/src/ops.c +++ b/src/ops.c @@ -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 @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 727, /**/ 726, /**/