From b99bbc680e14bb18c54c08786f39a32bc0139695 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Tue, 17 Jul 2018 09:01:42 -0400 Subject: 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 _(). https://github.com/vim/vim/commit/60d0e97497f1104b31f711072ef174af533b61fa --- src/nvim/ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/ops.c b/src/nvim/ops.c index b30be0bada..67171cb27e 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -2514,7 +2514,7 @@ static void op_yank_reg(oparg_T *oap, bool message, yankreg_T *reg, bool append) if (oap->regname == NUL) { *namebuf = NUL; } else { - vim_snprintf(namebuf, sizeof(namebuf), " into \"%c", oap->regname); + vim_snprintf(namebuf, sizeof(namebuf), _(" into \"%c"), oap->regname); } // redisplay now, so message is not deleted -- cgit