summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-01-16 11:25:26 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-16 11:25:26 +0000
commitb5988e365646746029e13473251e5844440d819c (patch)
treee49cae756ca9e3f694c6d6d9bb2695ffca28c769
parentbfac409d0b24d212a6d846edb651c49dac03745f (diff)
patch 8.2.4105: translation related comment in the wrong placev8.2.4105
Problem: Translation related comment in the wrong place. Solution: Move it back with the text. (Ken Takata, closes #9537)
-rw-r--r--src/errors.h5
-rw-r--r--src/ex_docmd.c1
-rw-r--r--src/version.c2
3 files changed, 7 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h
index 7059b28da3..5e9b6af5d3 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -1239,6 +1239,7 @@ EXTERN char e_no_autocommand_match_name_to_substitute_for_amatch[]
EXTERN char e_no_source_file_name_to_substitute_for_sfile[]
INIT(= N_("E498: no :source file name to substitute for \"<sfile>\""));
EXTERN char e_empty_file_name_for_percent_or_hash_only_works_with_ph[]
+ // xgettext:no-c-format
INIT(= N_("E499: Empty file name for '%' or '#', only works with \":p:h\""));
EXTERN char e_evaluates_to_an_empty_string[]
INIT(= N_("E500: Evaluates to an empty string"));
@@ -2041,6 +2042,7 @@ EXTERN char e_id_not_found_nr[]
#endif
#ifdef FEAT_EVAL
EXTERN char e_cannot_use_percent_with_float[]
+ // xgettext:no-c-format
INIT(= N_("E804: Cannot use '%' with Float"));
#endif
#ifdef FEAT_FLOAT
@@ -2219,6 +2221,7 @@ EXTERN char e_not_allowed_for_terminal_in_popup_window[]
INIT(= N_("E863: Not allowed for a terminal in a popup window"));
#endif
EXTERN char e_percent_hash_can_only_be_followed_by_zero_one_two_automatic_engine_will_be_used[]
+ // xgettext:no-c-format
INIT(= N_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used"));
EXTERN char e_nfa_regexp_end_encountered_prematurely[]
INIT(= N_("E865: (NFA) Regexp end encountered prematurely"));
@@ -2464,6 +2467,7 @@ EXTERN char e_file_changed_while_writing[]
EXTERN char e_cannot_convert_between_str_and_str[]
INIT(= N_("E950: Cannot convert between %s and %s"));
EXTERN char e_percent_value_too_large[]
+ // xgettext:no-c-format
INIT(= N_("E951: \\% value too large"));
#if defined(FEAT_EVAL) && defined(FEAT_QUICKFIX)
EXTERN char e_autocommand_caused_recursive_behavior[]
@@ -2690,6 +2694,7 @@ EXTERN char e_catch_unreachable_after_catch_all[]
EXTERN char e_cannot_use_reserved_name[]
INIT(= N_("E1034: Cannot use reserved name %s"));
EXTERN char e_percent_requires_number_arguments[]
+ // xgettext:no-c-format
INIT(= N_("E1035: % requires number arguments"));
EXTERN char e_char_requires_number_or_float_arguments[]
INIT(= N_("E1036: %c requires number or float arguments"));
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index f16f6009fd..d8d77ce4d2 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -9219,7 +9219,6 @@ eval_vars(
if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
{
if (valid != VALID_HEAD + VALID_PATH)
- // xgettext:no-c-format
*errormsg = _(e_empty_file_name_for_percent_or_hash_only_works_with_ph);
else
*errormsg = _(e_evaluates_to_an_empty_string);
diff --git a/src/version.c b/src/version.c
index 52b75a67d8..8ddd419db1 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4105,
+/**/
4104,
/**/
4103,