]> granicus.if.org Git - vim/commitdiff
patch 8.2.4307: a few more messages should not be translated v8.2.4307
authorBram Moolenaar <Bram@vim.org>
Sun, 6 Feb 2022 11:41:57 +0000 (11:41 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 6 Feb 2022 11:41:57 +0000 (11:41 +0000)
Problem:    A few more messages should not be translated.
Solution:   Remove _().

src/syntax.c
src/version.c

index f1c844f9d37318dac5cd00dac3ee3c2784b25e48..11f5587e5c2581fa919b2d7ce0a330283aaa66c1 100644 (file)
@@ -3329,9 +3329,9 @@ syn_cmd_conceal(exarg_T *eap UNUSED, int syncing UNUSED)
     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 UNUSED)
     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 syncing UNUSED)
        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
index 3ea8fe24c8bdb8ce6999e485ff23e1de6a28ad2d..85d016eec5b8eef50f26fc167d275f80f7474e34 100644 (file)
@@ -746,6 +746,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    4307,
 /**/
     4306,
 /**/