comparison src/ops.c @ 11688:570f00932da8 v8.0.0727

patch 8.0.0727: message about what register to yank into is not translated commit https://github.com/vim/vim/commit/60d0e97497f1104b31f711072ef174af533b61fa Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 16 20:54:34 2017 +0200 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 _().
author Christian Brabandt <cb@256bit.org>
date Sun, 16 Jul 2017 21:00:03 +0200
parents b9928ef8632f
children 66b677c77467
comparison
equal deleted inserted replaced
11687:04684dddfe9a 11688:570f00932da8
3171 3171
3172 if (oap->regname == NUL) 3172 if (oap->regname == NUL)
3173 *namebuf = NUL; 3173 *namebuf = NUL;
3174 else 3174 else
3175 vim_snprintf(namebuf, sizeof(namebuf), 3175 vim_snprintf(namebuf, sizeof(namebuf),
3176 " into \"%c", oap->regname); 3176 _(" into \"%c"), oap->regname);
3177 3177
3178 /* redisplay now, so message is not deleted */ 3178 /* redisplay now, so message is not deleted */
3179 update_topline_redraw(); 3179 update_topline_redraw();
3180 if (yanklines == 1) 3180 if (yanklines == 1)
3181 { 3181 {