# HG changeset patch # User Bram Moolenaar # Date 1644147903 -3600 # Node ID c796016c6204fc4a55a72e76e79415175a5ab04a # Parent aae73e44b04fe545b78f9bafe1ec9b8a1b68062a patch 8.2.4307: a few more messages should not be translated Commit: https://github.com/vim/vim/commit/0c1550d9e94046d3fc9a8ad70b895eaa1e53fca5 Author: Bram Moolenaar Date: Sun Feb 6 11:41:57 2022 +0000 patch 8.2.4307: a few more messages should not be translated Problem: A few more messages should not be translated. Solution: Remove _(). diff --git a/src/syntax.c b/src/syntax.c --- a/src/syntax.c +++ b/src/syntax.c @@ -3329,9 +3329,9 @@ syn_cmd_conceal(exarg_T *eap UNUSED, int if (*arg == NUL) { if (curwin->w_s->b_syn_conceal) - msg(_("syntax conceal on")); + msg("syntax conceal on"); else - msg(_("syntax conceal off")); + msg("syntax conceal off"); } else if (STRNICMP(arg, "on", 2) == 0 && next - arg == 2) curwin->w_s->b_syn_conceal = TRUE; @@ -3359,9 +3359,9 @@ syn_cmd_case(exarg_T *eap, int syncing U if (*arg == NUL) { if (curwin->w_s->b_syn_ic) - msg(_("syntax case ignore")); + msg("syntax case ignore"); else - msg(_("syntax case match")); + msg("syntax case match"); } else if (STRNICMP(arg, "match", 5) == 0 && next - arg == 5) curwin->w_s->b_syn_ic = FALSE; @@ -3471,7 +3471,7 @@ syn_cmd_iskeyword(exarg_T *eap, int sync msg_puts("\n"); if (curwin->w_s->b_syn_isk != empty_option) { - msg_puts(_("syntax iskeyword ")); + msg_puts("syntax iskeyword "); msg_outtrans(curwin->w_s->b_syn_isk); } else diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4307, +/**/ 4306, /**/ 4305,