commit | 60d0e97497f1104b31f711072ef174af533b61fa | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Jul 16 20:54:34 2017 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Jul 16 20:54:34 2017 +0200 |
tree | c8e9ef3ea49d0cb71a43772d14a619f7ba1d2781 | |
parent | 4d2ba822fd80f5b5ff6d9195a5f0fd802aabf304 [diff] [blame] |
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 05ccc81..0f42dea 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -3173,7 +3173,7 @@ *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();