xref: /vim-8.2.3635/src/errors.h (revision 90df4b9d)
1 /* vi:set ts=8 sts=4 sw=4 noet:
2  *
3  * VIM - Vi IMproved	by Bram Moolenaar
4  *
5  * Do ":help uganda"  in Vim to read copying and usage conditions.
6  * Do ":help credits" in Vim to see a list of people who contributed.
7  */
8 
9 /*
10  * Definition of error messages, sorted on error number.
11  */
12 
13 EXTERN char e_backslash_should_be_followed_by[]
14 	INIT(= N_("E10: \\ should be followed by /, ? or &"));
15 #ifdef FEAT_CMDWIN
16 EXTERN char e_invalid_in_cmdline_window[]
17 	INIT(= N_("E11: Invalid in command-line window; <CR> executes, CTRL-C quits"));
18 #endif
19 EXTERN char e_command_not_allowed_from_vimrc_in_current_dir_or_tag_search[]
20 	INIT(= N_("E12: Command not allowed from exrc/vimrc in current dir or tag search"));
21 EXTERN char e_file_exists[]
22 	INIT(= N_("E13: File exists (add ! to override)"));
23 #ifdef FEAT_EVAL
24 EXTERN char e_invalid_expression_str[]
25 	INIT(= N_("E15: Invalid expression: \"%s\""));
26 #endif
27 EXTERN char e_invalid_range[]
28 	INIT(= N_("E16: Invalid range"));
29 #if defined(UNIX) || defined(FEAT_SYN_HL) || defined(FEAT_SPELL)
30 EXTERN char e_src_is_directory[]
31 	INIT(= N_("E17: \"%s\" is a directory"));
32 #endif
33 #ifdef FEAT_EVAL
34 EXTERN char e_unexpected_characters_in_let[]
35 	INIT(= N_("E18: Unexpected characters in :let"));
36 EXTERN char e_unexpected_characters_in_assignment[]
37 	INIT(= N_("E18: Unexpected characters in assignment"));
38 #endif
39 EXTERN char e_mark_has_invalid_line_number[]
40 	INIT(= N_("E19: Mark has invalid line number"));
41 EXTERN char e_mark_not_set[]
42 	INIT(= N_("E20: Mark not set"));
43 EXTERN char e_cannot_make_changes_modifiable_is_off[]
44 	INIT(= N_("E21: Cannot make changes, 'modifiable' is off"));
45 EXTERN char e_scripts_nested_too_deep[]
46 	INIT(= N_("E22: Scripts nested too deep"));
47 EXTERN char e_no_alternate_file[]
48 	INIT(= N_("E23: No alternate file"));
49 EXTERN char e_no_such_abbreviation[]
50 	INIT(= N_("E24: No such abbreviation"));
51 #ifdef FEAT_EVAL
52 EXTERN char e_undefined_variable_str[]
53 	INIT(= N_("E121: Undefined variable: %s"));
54 EXTERN char e_undefined_variable_char_str[]
55 	INIT(= N_("E121: Undefined variable: %c:%s"));
56 #endif
57 EXTERN char e_ambiguous_use_of_user_defined_command[]
58 	INIT(= N_("E464: Ambiguous use of user-defined command"));
59 EXTERN char e_invalid_command[]
60 	INIT(= N_("E476: Invalid command"));
61 #ifdef FEAT_EVAL
62 EXTERN char e_invalid_command_str[]
63 	INIT(= N_("E476: Invalid command: %s"));
64 EXTERN char e_list_value_has_more_items_than_targets[]
65 	INIT(= N_("E710: List value has more items than targets"));
66 EXTERN char e_list_value_does_not_have_enough_items[]
67 	INIT(= N_("E711: List value does not have enough items"));
68 EXTERN char e_cannot_slice_dictionary[]
69 	INIT(= N_("E719: Cannot slice a Dictionary"));
70 EXTERN char e_assert_fails_second_arg[]
71 	INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings"));
72 EXTERN char e_using_invalid_value_as_string_str[]
73 	INIT(= N_("E908: using an invalid value as a String: %s"));
74 EXTERN char e_cannot_index_special_variable[]
75 	INIT(= N_("E909: Cannot index a special variable"));
76 #endif
77 EXTERN char e_command_not_supported_in_vim9_script_missing_var_str[]
78 	INIT(= N_("E1100: Command not supported in Vim9 script (missing :var?): %s"));
79 #ifdef FEAT_EVAL
80 EXTERN char e_variable_not_found_str[]
81 	INIT(= N_("E1001: Variable not found: %s"));
82 EXTERN char e_syntax_error_at_str[]
83 	INIT(= N_("E1002: Syntax error at %s"));
84 EXTERN char e_missing_return_value[]
85 	INIT(= N_("E1003: Missing return value"));
86 EXTERN char e_white_space_required_before_and_after_str_at_str[]
87 	INIT(= N_("E1004: White space required before and after '%s' at \"%s\""));
88 EXTERN char e_too_many_argument_types[]
89 	INIT(= N_("E1005: Too many argument types"));
90 EXTERN char e_str_is_used_as_argument[]
91 	INIT(= N_("E1006: %s is used as an argument"));
92 EXTERN char e_mandatory_argument_after_optional_argument[]
93 	INIT(= N_("E1007: Mandatory argument after optional argument"));
94 EXTERN char e_missing_type[]
95 	INIT(= N_("E1008: Missing <type>"));
96 EXTERN char e_missing_gt_after_type[]
97 	INIT(= N_("E1009: Missing > after type"));
98 EXTERN char e_type_not_recognized_str[]
99 	INIT(= N_("E1010: Type not recognized: %s"));
100 EXTERN char e_name_too_long_str[]
101 	INIT(= N_("E1011: Name too long: %s"));
102 EXTERN char e_type_mismatch_expected_str_but_got_str[]
103 	INIT(= N_("E1012: Type mismatch; expected %s but got %s"));
104 EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str[]
105 	INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s"));
106 EXTERN char e_invalid_key_str[]
107 	INIT(= N_("E1014: Invalid key: %s"));
108 EXTERN char e_name_expected_str[]
109 	INIT(= N_("E1015: Name expected: %s"));
110 EXTERN char e_cannot_declare_a_scope_variable[]
111 	INIT(= N_("E1016: Cannot declare a %s variable: %s"));
112 EXTERN char e_cannot_declare_an_environment_variable[]
113 	INIT(= N_("E1016: Cannot declare an environment variable: %s"));
114 EXTERN char e_variable_already_declared[]
115 	INIT(= N_("E1017: Variable already declared: %s"));
116 EXTERN char e_cannot_assign_to_constant[]
117 	INIT(= N_("E1018: Cannot assign to a constant: %s"));
118 EXTERN char e_can_only_concatenate_to_string[]
119 	INIT(= N_("E1019: Can only concatenate to string"));
120 EXTERN char e_cannot_use_operator_on_new_variable[]
121 	INIT(= N_("E1020: Cannot use an operator on a new variable: %s"));
122 EXTERN char e_const_requires_a_value[]
123 	INIT(= N_("E1021: Const requires a value"));
124 EXTERN char e_type_or_initialization_required[]
125 	INIT(= N_("E1022: Type or initialization required"));
126 EXTERN char e_using_number_as_bool_nr[]
127 	INIT(= N_("E1023: Using a Number as a Bool: %lld"));
128 EXTERN char e_using_number_as_string[]
129 	INIT(= N_("E1024: Using a Number as a String"));
130 EXTERN char e_using_rcurly_outside_if_block_scope[]
131 	INIT(= N_("E1025: Using } outside of a block scope"));
132 EXTERN char e_missing_rcurly[]
133 	INIT(= N_("E1026: Missing }"));
134 EXTERN char e_missing_return_statement[]
135 	INIT(= N_("E1027: Missing return statement"));
136 EXTERN char e_compiling_def_function_failed[]
137 	INIT(= N_("E1028: Compiling :def function failed"));
138 EXTERN char e_expected_str_but_got_str[]
139 	INIT(= N_("E1029: Expected %s but got %s"));
140 EXTERN char e_using_string_as_number_str[]
141 	INIT(= N_("E1030: Using a String as a Number: \"%s\""));
142 EXTERN char e_cannot_use_void_value[]
143 	INIT(= N_("E1031: Cannot use void value"));
144 EXTERN char e_missing_catch_or_finally[]
145 	INIT(= N_("E1032: Missing :catch or :finally"));
146 EXTERN char e_catch_unreachable_after_catch_all[]
147 	INIT(= N_("E1033: Catch unreachable after catch-all"));
148 EXTERN char e_cannot_use_reserved_name[]
149 	INIT(= N_("E1034: Cannot use reserved name %s"));
150 EXTERN char e_percent_requires_number_arguments[]
151 	INIT(= N_("E1035: % requires number arguments"));
152 EXTERN char e_char_requires_number_or_float_arguments[]
153 	INIT(= N_("E1036: %c requires number or float arguments"));
154 EXTERN char e_cannot_use_str_with_str[]
155 	INIT(= N_("E1037: Cannot use \"%s\" with %s"));
156 EXTERN char e_vim9script_can_only_be_used_in_script[]
157 	INIT(= N_("E1038: \"vim9script\" can only be used in a script"));
158 EXTERN char e_vim9script_must_be_first_command_in_script[]
159 	INIT(= N_("E1039: \"vim9script\" must be the first command in a script"));
160 #endif
161 EXTERN char e_cannot_use_scriptversion_after_vim9script[]
162 	INIT(= N_("E1040: Cannot use :scriptversion after :vim9script"));
163 #ifdef FEAT_EVAL
164 EXTERN char e_redefining_script_item_str[]
165 	INIT(= N_("E1041: Redefining script item %s"));
166 EXTERN char e_export_can_only_be_used_in_vim9script[]
167 	INIT(= N_("E1042: Export can only be used in vim9script"));
168 EXTERN char e_invalid_command_after_export[]
169 	INIT(= N_("E1043: Invalid command after :export"));
170 EXTERN char e_export_with_invalid_argument[]
171 	INIT(= N_("E1044: Export with invalid argument"));
172 EXTERN char e_missing_as_after_star[]
173 	INIT(= N_("E1045: Missing \"as\" after *"));
174 EXTERN char e_missing_comma_in_import[]
175 	INIT(= N_("E1046: Missing comma in import"));
176 EXTERN char e_syntax_error_in_import[]
177 	INIT(= N_("E1047: Syntax error in import"));
178 EXTERN char e_item_not_found_in_script_str[]
179 	INIT(= N_("E1048: Item not found in script: %s"));
180 EXTERN char e_item_not_exported_in_script_str[]
181 	INIT(= N_("E1049: Item not exported in script: %s"));
182 EXTERN char e_colon_required_before_range_str[]
183 	INIT(= N_("E1050: Colon required before a range: %s"));
184 EXTERN char e_wrong_argument_type_for_plus[]
185 	INIT(= N_("E1051: Wrong argument type for +"));
186 EXTERN char e_cannot_declare_an_option[]
187 	INIT(= N_("E1052: Cannot declare an option: %s"));
188 EXTERN char e_could_not_import_str[]
189 	INIT(= N_("E1053: Could not import \"%s\""));
190 EXTERN char e_variable_already_declared_in_script_str[]
191 	INIT(= N_("E1054: Variable already declared in the script: %s"));
192 EXTERN char e_missing_name_after_dots[]
193 	INIT(= N_("E1055: Missing name after ..."));
194 EXTERN char e_expected_type_str[]
195 	INIT(= N_("E1056: Expected a type: %s"));
196 EXTERN char e_missing_enddef[]
197 	INIT(= N_("E1057: Missing :enddef"));
198 EXTERN char e_function_nesting_too_deep[]
199 	INIT(= N_("E1058: Function nesting too deep"));
200 EXTERN char e_no_white_space_allowed_before_colon_str[]
201 	INIT(= N_("E1059: No white space allowed before colon: %s"));
202 EXTERN char e_expected_dot_after_name_str[]
203 	INIT(= N_("E1060: Expected dot after name: %s"));
204 EXTERN char e_cannot_find_function_str[]
205 	INIT(= N_("E1061: Cannot find function %s"));
206 EXTERN char e_cannot_index_number[]
207 	INIT(= N_("E1062: Cannot index a Number"));
208 EXTERN char e_type_mismatch_for_v_variable[]
209 	INIT(= N_("E1063: Type mismatch for v: variable"));
210 // E1064 unused
211 // E1065 unused
212 EXTERN char e_cannot_declare_a_register_str[]
213 	INIT(= N_("E1066: Cannot declare a register: %s"));
214 EXTERN char e_separator_mismatch_str[]
215 	INIT(= N_("E1067: Separator mismatch: %s"));
216 EXTERN char e_no_white_space_allowed_before_str_str[]
217 	INIT(= N_("E1068: No white space allowed before '%s': %s"));
218 EXTERN char e_white_space_required_after_str_str[]
219 	INIT(= N_("E1069: White space required after '%s': %s"));
220 EXTERN char e_missing_from[]
221 	INIT(= N_("E1070: Missing \"from\""));
222 EXTERN char e_invalid_string_after_from[]
223 	INIT(= N_("E1071: Invalid string after \"from\""));
224 EXTERN char e_cannot_compare_str_with_str[]
225 	INIT(= N_("E1072: Cannot compare %s with %s"));
226 EXTERN char e_name_already_defined_str[]
227 	INIT(= N_("E1073: Name already defined: %s"));
228 EXTERN char e_no_white_space_allowed_after_dot[]
229 	INIT(= N_("E1074: No white space allowed after dot"));
230 EXTERN char e_namespace_not_supported_str[]
231 	INIT(= N_("E1075: Namespace not supported: %s"));
232 EXTERN char e_this_vim_is_not_compiled_with_float_support[]
233 	INIT(= N_("E1076: This Vim is not compiled with float support"));
234 EXTERN char e_missing_argument_type_for_str[]
235 	INIT(= N_("E1077: Missing argument type for %s"));
236 // E1078 unused
237 // E1079 unused
238 // E1080 unused
239 EXTERN char e_cannot_unlet_str[]
240 	INIT(= N_("E1081: Cannot unlet %s"));
241 EXTERN char e_cannot_use_namespaced_variable[]
242 	INIT(= N_("E1082: Cannot use a namespaced variable: %s"));
243 EXTERN char e_missing_backtick[]
244 	INIT(= N_("E1083: Missing backtick"));
245 EXTERN char e_cannot_delete_vim9_script_function_str[]
246 	INIT(= N_("E1084: Cannot delete Vim9 script function %s"));
247 EXTERN char e_not_callable_type_str[]
248 	INIT(= N_("E1085: Not a callable type: %s"));
249 EXTERN char e_cannot_use_function_inside_def[]
250 	INIT(= N_("E1086: Cannot use :function inside :def"));
251 EXTERN char e_cannot_use_index_when_declaring_variable[]
252 	INIT(= N_("E1087: Cannot use an index when declaring a variable"));
253 // E1088 unused
254 EXTERN char e_unknown_variable_str[]
255 	INIT(= N_("E1089: Unknown variable: %s"));
256 EXTERN char e_cannot_assign_to_argument[]
257 	INIT(= N_("E1090: Cannot assign to argument %s"));
258 EXTERN char e_function_is_not_compiled_str[]
259 	INIT(= N_("E1091: Function is not compiled: %s"));
260 EXTERN char e_cannot_use_list_for_declaration[]
261 	INIT(= N_("E1092: Cannot use a list for a declaration"));
262 EXTERN char e_expected_nr_items_but_got_nr[]
263 	INIT(= N_("E1093: Expected %d items but got %d"));
264 EXTERN char e_import_can_only_be_used_in_script[]
265 	INIT(= N_("E1094: Import can only be used in a script"));
266 EXTERN char e_unreachable_code_after_return[]
267 	INIT(= N_("E1095: Unreachable code after :return"));
268 EXTERN char e_returning_value_in_function_without_return_type[]
269 	INIT(= N_("E1096: Returning a value in a function without a return type"));
270 EXTERN char e_line_incomplete[]
271 	INIT(= N_("E1097: Line incomplete"));
272 // E1098 unused
273 EXTERN char e_unknown_error_while_executing_str[]
274 	INIT(= N_("E1099: Unknown error while executing %s"));
275 EXTERN char e_cannot_declare_script_variable_in_function[]
276 	INIT(= N_("E1101: Cannot declare a script variable in a function: %s"));
277 EXTERN char e_lambda_function_not_found_str[]
278 	INIT(= N_("E1102: Lambda function not found: %s"));
279 EXTERN char e_dictionary_not_set[]
280 	INIT(= N_("E1103: Dictionary not set"));
281 EXTERN char e_missing_gt[]
282 	INIT(= N_("E1104: Missing >"));
283 EXTERN char e_cannot_convert_str_to_string[]
284 	INIT(= N_("E1105: Cannot convert %s to string"));
285 EXTERN char e_one_argument_too_many[]
286 	INIT(= N_("E1106: One argument too many"));
287 EXTERN char e_nr_arguments_too_many[]
288 	INIT(= N_("E1106: %d arguments too many"));
289 EXTERN char e_string_list_dict_or_blob_required[]
290 	INIT(= N_("E1107: String, List, Dict or Blob required"));
291 EXTERN char e_item_not_found_str[]
292 	INIT(= N_("E1108: Item not found: %s"));
293 EXTERN char e_list_item_nr_is_not_list[]
294 	INIT(= N_("E1109: List item %d is not a List"));
295 EXTERN char e_list_item_nr_does_not_contain_3_numbers[]
296 	INIT(= N_("E1110: List item %d does not contain 3 numbers"));
297 EXTERN char e_list_item_nr_range_invalid[]
298 	INIT(= N_("E1111: List item %d range invalid"));
299 EXTERN char e_list_item_nr_cell_width_invalid[]
300 	INIT(= N_("E1112: List item %d cell width invalid"));
301 EXTERN char e_overlapping_ranges_for_nr[]
302 	INIT(= N_("E1113: Overlapping ranges for 0x%lx"));
303 EXTERN char e_only_values_of_0x100_and_higher_supported[]
304 	INIT(= N_("E1114: Only values of 0x100 and higher supported"));
305 EXTERN char e_assert_fails_fourth_argument[]
306 	INIT(= N_("E1115: \"assert_fails()\" fourth argument must be a number"));
307 EXTERN char e_assert_fails_fifth_argument[]
308 	INIT(= N_("E1116: \"assert_fails()\" fifth argument must be a string"));
309 EXTERN char e_cannot_use_bang_with_nested_def[]
310 	INIT(= N_("E1117: Cannot use ! with nested :def"));
311 EXTERN char e_cannot_change_list[]
312 	INIT(= N_("E1118: Cannot change list"));
313 EXTERN char e_cannot_change_list_item[]
314 	INIT(= N_("E1119: Cannot change list item"));
315 EXTERN char e_cannot_change_dict[]
316 	INIT(= N_("E1120: Cannot change dict"));
317 EXTERN char e_cannot_change_dict_item[]
318 	INIT(= N_("E1121: Cannot change dict item"));
319 EXTERN char e_variable_is_locked_str[]
320 	INIT(= N_("E1122: Variable is locked: %s"));
321 EXTERN char e_missing_comma_before_argument_str[]
322 	INIT(= N_("E1123: Missing comma before argument: %s"));
323 EXTERN char e_str_cannot_be_used_in_legacy_vim_script[]
324 	INIT(= N_("E1124: \"%s\" cannot be used in legacy Vim script"));
325 EXTERN char e_final_requires_a_value[]
326 	INIT(= N_("E1125: Final requires a value"));
327 EXTERN char e_cannot_use_let_in_vim9_script[]
328 	INIT(= N_("E1126: Cannot use :let in Vim9 script"));
329 EXTERN char e_missing_name_after_dot[]
330 	INIT(= N_("E1127: Missing name after dot"));
331 EXTERN char e_endblock_without_block[]
332 	INIT(= N_("E1128: } without {"));
333 EXTERN char e_throw_with_empty_string[]
334 	INIT(= N_("E1129: Throw with empty string"));
335 EXTERN char e_cannot_add_to_null_list[]
336 	INIT(= N_("E1130: Cannot add to null list"));
337 EXTERN char e_cannot_add_to_null_blob[]
338 	INIT(= N_("E1131: Cannot add to null blob"));
339 EXTERN char e_missing_function_argument[]
340 	INIT(= N_("E1132: Missing function argument"));
341 EXTERN char e_cannot_extend_null_dict[]
342 	INIT(= N_("E1133: Cannot extend a null dict"));
343 EXTERN char e_cannot_extend_null_list[]
344 	INIT(= N_("E1134: Cannot extend a null list"));
345 EXTERN char e_using_string_as_bool_str[]
346 	INIT(= N_("E1135: Using a String as a Bool: \"%s\""));
347 #endif
348 EXTERN char e_cmd_mapping_must_end_with_cr[]
349 	INIT(=N_("E1135: <Cmd> mapping must end with <CR>"));
350 EXTERN char e_cmd_mapping_must_end_with_cr_before_second_cmd[]
351 	INIT(=N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>"));
352 EXTERN char e_cmd_maping_must_not_include_str_key[]
353 	INIT(= N_("E1137: <Cmd> mapping must not include %s key"));
354 EXTERN char e_using_bool_as_number[]
355 	INIT(= N_("E1138: Using a Bool as a Number"));
356 EXTERN char e_missing_matching_bracket_after_dict_key[]
357 	INIT(= N_("E1139: Missing matching bracket after dict key"));
358 EXTERN char e_for_argument_must_be_sequence_of_lists[]
359 	INIT(= N_("E1140: :for argument must be a sequence of lists"));
360 EXTERN char e_indexable_type_required[]
361 	INIT(= N_("E1141: Indexable type required"));
362 EXTERN char e_non_empty_string_required[]
363 	INIT(= N_("E1142: Non-empty string required"));
364 EXTERN char e_empty_expression_str[]
365 	INIT(= N_("E1143: Empty expression: \"%s\""));
366 EXTERN char e_command_str_not_followed_by_white_space_str[]
367 	INIT(= N_("E1144: Command \"%s\" is not followed by white space: %s"));
368 EXTERN char e_missing_heredoc_end_marker_str[]
369 	INIT(= N_("E1145: Missing heredoc end marker: %s"));
370 EXTERN char e_command_not_recognized_str[]
371 	INIT(= N_("E1146: Command not recognized: %s"));
372 EXTERN char e_list_not_set[]
373 	INIT(= N_("E1147: List not set"));
374 EXTERN char e_cannot_index_str[]
375 	INIT(= N_("E1148: Cannot index a %s"));
376 EXTERN char e_script_variable_invalid_after_reload_in_function_str[]
377 	INIT(= N_("E1149: Script variable is invalid after reload in function %s"));
378 EXTERN char e_script_variable_type_changed[]
379 	INIT(= N_("E1150: Script variable type changed"));
380 EXTERN char e_mismatched_endfunction[]
381 	INIT(= N_("E1151: Mismatched endfunction"));
382 EXTERN char e_mismatched_enddef[]
383 	INIT(= N_("E1152: Mismatched enddef"));
384 EXTERN char e_invalid_operation_for_bool[]
385 	INIT(= N_("E1153: Invalid operation for bool"));
386 EXTERN char e_divide_by_zero[]
387 	INIT(= N_("E1154: Divide by zero"));
388 EXTERN char e_cannot_define_autocommands_for_all_events[]
389 	INIT(= N_("E1155: Cannot define autocommands for ALL events"));
390 EXTERN char e_cannot_change_arglist_recursively[]
391 	INIT(= N_("E1156: Cannot change the argument list recursively"));
392 EXTERN char e_missing_return_type[]
393 	INIT(= N_("E1157: Missing return type"));
394 EXTERN char e_cannot_use_flatten_in_vim9_script[]
395 	INIT(= N_("E1158: Cannot use flatten() in Vim9 script"));
396 EXTERN char e_cannot_split_window_when_closing_buffer[]
397 	INIT(= N_("E1159: Cannot split a window when closing the buffer"));
398 EXTERN char e_cannot_use_default_for_variable_arguments[]
399 	INIT(= N_("E1160: Cannot use a default for variable arguments"));
400 EXTERN char e_cannot_json_encode_str[]
401 	INIT(= N_("E1161: Cannot json encode a %s"));
402 EXTERN char e_register_name_must_be_one_char_str[]
403 	INIT(= N_("E1162: Register name must be one character: %s"));
404 EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str[]
405 	INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s"));
406 EXTERN char e_vim9cmd_must_be_followed_by_command[]
407 	INIT(= N_("E1164: vim9cmd must be followed by a command"));
408 EXTERN char e_cannot_use_range_with_assignment_str[]
409 	INIT(= N_("E1165: Cannot use a range with an assignment: %s"));
410 EXTERN char e_cannot_use_range_with_dictionary[]
411 	INIT(= N_("E1166: Cannot use a range with a dictionary"));
412 EXTERN char e_argument_name_shadows_existing_variable_str[]
413 	INIT(= N_("E1167: Argument name shadows existing variable: %s"));
414 EXTERN char e_argument_already_declared_in_script_str[]
415 	INIT(= N_("E1168: Argument already declared in the script: %s"));
416 EXTERN char e_import_as_name_not_supported_here[]
417 	INIT(= N_("E1169: 'import * as {name}' not supported here"));
418 EXTERN char e_cannot_use_hash_curly_to_start_comment[]
419 	INIT(= N_("E1170: Cannot use #{ to start a comment"));
420 EXTERN char e_missing_end_block[]
421 	INIT(= N_("E1171: Missing } after inline function"));
422 EXTERN char e_cannot_use_default_values_in_lambda[]
423 	INIT(= N_("E1172: Cannot use default values in a lambda"));
424 EXTERN char e_text_found_after_enddef_str[]
425 	INIT(= N_("E1173: Text found after enddef: %s"));
426 EXTERN char e_string_required_for_argument_nr[]
427 	INIT(= N_("E1174: String required for argument %d"));
428 EXTERN char e_non_empty_string_required_for_argument_nr[]
429 	INIT(= N_("E1175: Non-empty string required for argument %d"));
430 EXTERN char e_misplaced_command_modifier[]
431 	INIT(= N_("E1176: Misplaced command modifier"));
432 EXTERN char e_for_loop_on_str_not_supported[]
433 	INIT(= N_("E1177: For loop on %s not supported"));
434 EXTERN char e_cannot_lock_unlock_local_variable[]
435 	INIT(= N_("E1178: Cannot lock or unlock a local variable"));
436 EXTERN char e_failed_to_extract_pwd_from_str_check_your_shell_config[]
437 	INIT(= N_("E1179: Failed to extract PWD from %s, check your shell's config related to OSC 7"));
438 EXTERN char e_variable_arguments_type_must_be_list_str[]
439 	INIT(= N_("E1180: Variable arguments type must be a list: %s"));
440 EXTERN char e_cannot_use_underscore_here[]
441 	INIT(= N_("E1181: Cannot use an underscore here"));
442 EXTERN char e_blob_required[]
443 	INIT(= N_("E1182: Blob required"));
444 EXTERN char e_cannot_use_range_with_assignment_operator_str[]
445 	INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
446 EXTERN char e_blob_not_set[]
447 	INIT(= N_("E1184: Blob not set"));
448 EXTERN char e_cannot_nest_redir[]
449 	INIT(= N_("E1185: Cannot nest :redir"));
450 EXTERN char e_missing_redir_end[]
451 	INIT(= N_("E1185: Missing :redir END"));
452 EXTERN char e_expression_does_not_result_in_value_str[]
453 	INIT(= N_("E1186: Expression does not result in a value: %s"));
454 EXTERN char e_failed_to_source_defaults[]
455 	INIT(= N_("E1187: Failed to source defaults.vim"));
456 EXTERN char e_cannot_open_terminal_from_command_line_window[]
457 	INIT(= N_("E1188: Cannot open a terminal from the command line window"));
458 EXTERN char e_cannot_use_legacy_with_command_str[]
459 	INIT(= N_("E1189: Cannot use :legacy with this command: %s"));
460 EXTERN char e_one_argument_too_few[]
461 	INIT(= N_("E1190: One argument too few"));
462 EXTERN char e_nr_arguments_too_few[]
463 	INIT(= N_("E1190: %d arguments too few"));
464 EXTERN char e_call_to_function_that_failed_to_compile_str[]
465 	INIT(= N_("E1191: Call to function that failed to compile: %s"));
466 EXTERN char e_empty_function_name[]
467 	INIT(= N_("E1192: Empty function name"));
468 // libsodium
469 EXTERN char e_libsodium_not_built_in[]
470 	INIT(= N_("E1193: cryptmethod xchacha20 not built into this Vim"));
471 EXTERN char e_libsodium_cannot_encrypt_header[]
472 	INIT(= N_("E1194: Cannot encrypt header, not enough space"));
473 EXTERN char e_libsodium_cannot_encrypt_buffer[]
474 	INIT(= N_("E1195: Cannot encrypt buffer, not enough space"));
475 EXTERN char e_libsodium_cannot_decrypt_header[]
476 	INIT(= N_("E1196: Cannot decrypt header, not enough space"));
477 EXTERN char e_libsodium_cannot_allocate_buffer[]
478 	INIT(= N_("E1197: Cannot allocate_buffer for encryption"));
479 EXTERN char e_libsodium_decryption_failed_header_incomplete[]
480 	INIT(= N_("E1198: Decryption failed: Header incomplete!"));
481 EXTERN char e_libsodium_cannot_decrypt_buffer[]
482 	INIT(= N_("E1199: Cannot decrypt buffer, not enough space"));
483 EXTERN char e_libsodium_decryption_failed[]
484 	INIT(= N_("E1200: Decryption failed!"));
485 EXTERN char e_libsodium_decryption_failed_premature[]
486 	INIT(= N_("E1201: Decryption failed: pre-mature end of file!"));
487 EXTERN char e_no_white_space_allowed_after_str_str[]
488 	INIT(= N_("E1202: No white space allowed after '%s': %s"));
489 EXTERN char e_dot_can_only_be_used_on_dictionary_str[]
490 	INIT(= N_("E1203: Dot can only be used on a dictionary: %s"));
491 EXTERN char e_regexp_number_after_dot_pos_search[]
492 	INIT(= N_("E1204: No Number allowed after .: '\\%%%c'"));
493