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 _().
60d0e97497
This commit is contained in:
Jan Edmund Lazo
2018-07-17 09:01:42 -04:00
parent eab17e5093
commit b99bbc680e

View File

@@ -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