mirror of
https://github.com/neovim/neovim.git
synced 2025-09-25 04:28:33 +00:00
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:
@@ -2514,7 +2514,7 @@ static void op_yank_reg(oparg_T *oap, bool message, yankreg_T *reg, bool append)
|
|||||||
if (oap->regname == NUL) {
|
if (oap->regname == NUL) {
|
||||||
*namebuf = NUL;
|
*namebuf = NUL;
|
||||||
} else {
|
} 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
|
// redisplay now, so message is not deleted
|
||||||
|
Reference in New Issue
Block a user