summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominique Pelle <dominique.pelle@gmail.com>2022-02-05 18:53:06 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-05 18:53:06 +0000
commitcd53eed2c55f2256008962965b1de1d1df76d535 (patch)
tree101a1395492b4d2d7823b5cd766b953686928df0
parent82e46e5d31ba1ca8d4e322acdacdd90ab80705d9 (diff)
patch 8.2.4303: a few messages should not be translatedv8.2.4303
Problem: A few messages should not be translated. Solution: Remove _(). (Dominique Pellé, closes #9702)
-rw-r--r--src/syntax.c10
-rw-r--r--src/version.c2
2 files changed, 7 insertions, 5 deletions
diff --git a/src/syntax.c b/src/syntax.c
index d2e15a36c7..f1c844f9d3 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -3388,8 +3388,8 @@ syn_cmd_foldlevel(exarg_T *eap, int syncing UNUSED)
{
switch (curwin->w_s->b_syn_foldlevel)
{
- case SYNFLD_START: msg(_("syntax foldlevel start")); break;
- case SYNFLD_MINIMUM: msg(_("syntax foldlevel minimum")); break;
+ case SYNFLD_START: msg("syntax foldlevel start"); break;
+ case SYNFLD_MINIMUM: msg("syntax foldlevel minimum"); break;
default: break;
}
return;
@@ -3430,11 +3430,11 @@ syn_cmd_spell(exarg_T *eap, int syncing UNUSED)
if (*arg == NUL)
{
if (curwin->w_s->b_syn_spell == SYNSPL_TOP)
- msg(_("syntax spell toplevel"));
+ msg("syntax spell toplevel");
else if (curwin->w_s->b_syn_spell == SYNSPL_NOTOP)
- msg(_("syntax spell notoplevel"));
+ msg("syntax spell notoplevel");
else
- msg(_("syntax spell default"));
+ msg("syntax spell default");
}
else if (STRNICMP(arg, "toplevel", 8) == 0 && next - arg == 8)
curwin->w_s->b_syn_spell = SYNSPL_TOP;
diff --git a/src/version.c b/src/version.c
index 89a22a04f7..f86aa8926f 100644
--- 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 */
/**/
+ 4303,
+/**/
4302,
/**/
4301,