# HG changeset patch # User Christian Brabandt # Date 1486921503 -3600 # Node ID ac9f60f96babbe6cbdcf054f1414ea2e41a07d5c # Parent 7f13bcb6a53c13ebeb1823df023dd4b093ac4eea patch 8.0.0327: error message in cmdline window is not translated commit https://github.com/vim/vim/commit/75c19464ed7fb6024af64747379e61abc4e4a483 Author: Bram Moolenaar Date: Sun Feb 12 18:34:05 2017 +0100 patch 8.0.0327: error message in cmdline window is not translated Problem: The E11 error message in the command line window is not translated. Solution: use _(). (Hirohito Higashi) diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -2490,7 +2490,7 @@ do_one_cmd( && !IS_USER_CMDIDX(ea.cmdidx)) { /* Command not allowed when editing the command line. */ - errormsg = get_text_locked_msg(); + errormsg = (char_u *)_(get_text_locked_msg()); goto doend; } #ifdef FEAT_AUTOCMD diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 327, +/**/ 326, /**/ 325,