blob: 1c723acac30ec21a3e0daa152d618c867d27fefa [file] [log] [blame]
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02001/* 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
Bram Moolenaar436b5ad2021-12-31 22:49:24 +000013EXTERN char e_interrupted[]
14 INIT(= N_("Interrupted"));
15
Bram Moolenaar108010a2021-06-27 22:03:33 +020016EXTERN char e_backslash_should_be_followed_by[]
17 INIT(= N_("E10: \\ should be followed by /, ? or &"));
18#ifdef FEAT_CMDWIN
19EXTERN char e_invalid_in_cmdline_window[]
20 INIT(= N_("E11: Invalid in command-line window; <CR> executes, CTRL-C quits"));
21#endif
22EXTERN char e_command_not_allowed_from_vimrc_in_current_dir_or_tag_search[]
23 INIT(= N_("E12: Command not allowed from exrc/vimrc in current dir or tag search"));
24EXTERN char e_file_exists[]
25 INIT(= N_("E13: File exists (add ! to override)"));
Bram Moolenaarb2810f12022-01-08 21:38:52 +000026// E14 unused
Bram Moolenaar108010a2021-06-27 22:03:33 +020027#ifdef FEAT_EVAL
28EXTERN char e_invalid_expression_str[]
29 INIT(= N_("E15: Invalid expression: \"%s\""));
30#endif
31EXTERN char e_invalid_range[]
32 INIT(= N_("E16: Invalid range"));
33#if defined(UNIX) || defined(FEAT_SYN_HL) || defined(FEAT_SPELL)
34EXTERN char e_src_is_directory[]
35 INIT(= N_("E17: \"%s\" is a directory"));
36#endif
37#ifdef FEAT_EVAL
38EXTERN char e_unexpected_characters_in_let[]
39 INIT(= N_("E18: Unexpected characters in :let"));
40EXTERN char e_unexpected_characters_in_assignment[]
41 INIT(= N_("E18: Unexpected characters in assignment"));
42#endif
43EXTERN char e_mark_has_invalid_line_number[]
44 INIT(= N_("E19: Mark has invalid line number"));
45EXTERN char e_mark_not_set[]
46 INIT(= N_("E20: Mark not set"));
47EXTERN char e_cannot_make_changes_modifiable_is_off[]
48 INIT(= N_("E21: Cannot make changes, 'modifiable' is off"));
49EXTERN char e_scripts_nested_too_deep[]
50 INIT(= N_("E22: Scripts nested too deep"));
51EXTERN char e_no_alternate_file[]
52 INIT(= N_("E23: No alternate file"));
53EXTERN char e_no_such_abbreviation[]
54 INIT(= N_("E24: No such abbreviation"));
Bram Moolenaare29a27f2021-07-20 21:07:36 +020055#if !defined(FEAT_GUI) || defined(VIMDLL)
56EXTERN char e_gui_cannot_be_used_not_enabled_at_compile_time[]
57 INIT(= N_("E25: GUI cannot be used: Not enabled at compile time"));
58#endif
59#ifndef FEAT_RIGHTLEFT
60EXTERN char e_hebrew_cannot_be_used_not_enabled_at_compile_time[]
61 INIT(= N_("E26: Hebrew cannot be used: Not enabled at compile time\n"));
62#endif
63EXTERN char e_farsi_support_has_been_removed[]
64 INIT(= N_("E27: Farsi support has been removed\n"));
Bram Moolenaare29a27f2021-07-20 21:07:36 +020065#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_SYN_HL)
66EXTERN char e_no_such_highlight_group_name_str[]
67 INIT(= N_("E28: No such highlight group name: %s"));
68#endif
69EXTERN char e_no_inserted_text_yet[]
70 INIT(= N_("E29: No inserted text yet"));
71EXTERN char e_no_previous_command_line[]
72 INIT(= N_("E30: No previous command line"));
73EXTERN char e_no_such_mapping[]
74 INIT(= N_("E31: No such mapping"));
75EXTERN char e_no_file_name[]
76 INIT(= N_("E32: No file name"));
77EXTERN char e_no_previous_substitute_regular_expression[]
78 INIT(= N_("E33: No previous substitute regular expression"));
79EXTERN char e_no_previous_command[]
80 INIT(= N_("E34: No previous command"));
81EXTERN char e_no_previous_regular_expression[]
82 INIT(= N_("E35: No previous regular expression"));
83EXTERN char e_not_enough_room[]
84 INIT(= N_("E36: Not enough room"));
85EXTERN char e_no_write_since_last_change[]
86 INIT(= N_("E37: No write since last change"));
87EXTERN char e_no_write_since_last_change_add_bang_to_override[]
88 INIT(= N_("E37: No write since last change (add ! to override)"));
89EXTERN char e_null_argument[]
90 INIT(= N_("E38: Null argument"));
91#if defined(FEAT_DIGRAPHS) || defined(FEAT_TIMERS) || defined(FEAT_EVAL)
92EXTERN char e_number_expected[]
93 INIT(= N_("E39: Number expected"));
94#endif
95#ifdef FEAT_QUICKFIX
96EXTERN char e_cant_open_errorfile_str[]
97 INIT(= N_("E40: Can't open errorfile %s"));
98#endif
99EXTERN char e_out_of_memory[]
100 INIT(= N_("E41: Out of memory!"));
101#ifdef FEAT_QUICKFIX
102EXTERN char e_no_errors[]
103 INIT(= N_("E42: No Errors"));
104#endif
105EXTERN char e_damaged_match_string[]
106 INIT(= N_("E43: Damaged match string"));
107EXTERN char e_corrupted_regexp_program[]
108 INIT(= N_("E44: Corrupted regexp program"));
109EXTERN char e_readonly_option_is_set_add_bang_to_override[]
110 INIT(= N_("E45: 'readonly' option is set (add ! to override)"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200111#ifdef FEAT_EVAL
Bram Moolenaar71b76852021-12-17 20:15:38 +0000112EXTERN char e_cannot_change_readonly_variable[]
113 INIT(= N_("E46: Cannot change read-only variable"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200114EXTERN char e_cannot_change_readonly_variable_str[]
115 INIT(= N_("E46: Cannot change read-only variable \"%s\""));
116#endif
117#ifdef FEAT_QUICKFIX
118EXTERN char e_error_while_reading_errorfile[]
119 INIT(= N_("E47: Error while reading errorfile"));
120#endif
121#ifdef HAVE_SANDBOX
122EXTERN char e_not_allowed_in_sandbox[]
123 INIT(= N_("E48: Not allowed in sandbox"));
124#endif
125EXTERN char e_invalid_scroll_size[]
126 INIT(= N_("E49: Invalid scroll size"));
127EXTERN char e_too_many_z[]
128 INIT(= N_("E50: Too many \\z("));
129EXTERN char e_too_many_str_open[]
130 INIT(= N_("E51: Too many %s("));
131EXTERN char e_unmatched_z[]
132 INIT(= N_("E52: Unmatched \\z("));
133EXTERN char e_unmatched_str_percent_open[]
134 INIT(= N_("E53: Unmatched %s%%("));
135EXTERN char e_unmatched_str_open[]
136 INIT(= N_("E54: Unmatched %s("));
137EXTERN char e_unmatched_str_close[]
138 INIT(= N_("E55: Unmatched %s)"));
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000139// E56 unused
140// E57 unused
141// E58 unused
Bram Moolenaard8e44472021-07-21 22:20:33 +0200142EXTERN char e_invalid_character_after_str_at[]
143 INIT(= N_("E59: invalid character after %s@"));
144EXTERN char e_too_many_complex_str_curly[]
145 INIT(= N_("E60: Too many complex %s{...}s"));
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000146EXTERN char e_nested_str[]
147 INIT(= N_("E61: Nested %s*"));
148EXTERN char e_nested_str_chr[]
149 INIT(= N_("E62: Nested %s%c"));
150EXTERN char e_invalid_use_of_underscore[]
151 INIT(= N_("E63: invalid use of \\_"));
152EXTERN char e_str_chr_follows_nothing[]
153 INIT(= N_("E64: %s%c follows nothing"));
154EXTERN char e_illegal_back_reference[]
155 INIT(= N_("E65: Illegal back reference"));
156#ifdef FEAT_SYN_HL
157EXTERN char e_z_not_allowed_here[]
158 INIT(= N_("E66: \\z( not allowed here"));
159EXTERN char e_z1_z9_not_allowed_here[]
160 INIT(= N_("E67: \\z1 - \\z9 not allowed here"));
161#endif
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000162EXTERN char e_invalid_character_after_bsl_z[]
163 INIT(= N_("E68: Invalid character after \\z"));
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000164EXTERN char e_missing_sb_after_str[]
165 INIT(= N_("E69: Missing ] after %s%%["));
166EXTERN char e_empty_str_brackets[]
167 INIT(= N_("E70: Empty %s%%[]"));
168EXTERN char e_invalid_character_after_str[]
169 INIT(= N_("E71: Invalid character after %s%%"));
170EXTERN char e_close_error_on_swap_file[]
171 INIT(= N_("E72: Close error on swap file"));
172EXTERN char e_tag_stack_empty[]
173 INIT(= N_("E73: tag stack empty"));
174EXTERN char e_command_too_complex[]
175 INIT(= N_("E74: Command too complex"));
176EXTERN char e_name_too_long[]
177 INIT(= N_("E75: Name too long"));
178EXTERN char e_too_many_brackets[]
179 INIT(= N_("E76: Too many ["));
180EXTERN char e_too_many_file_names[]
181 INIT(= N_("E77: Too many file names"));
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000182EXTERN char e_unknown_mark[]
183 INIT(= N_("E78: Unknown mark"));
184EXTERN char e_cannot_expand_wildcards[]
185 INIT(= N_("E79: Cannot expand wildcards"));
186EXTERN char e_error_while_writing[]
187 INIT(= N_("E80: Error while writing"));
188#ifdef FEAT_EVAL
189EXTERN char e_using_sid_not_in_script_context[]
190 INIT(= N_("E81: Using <SID> not in a script context"));
191#endif
192EXTERN char e_cannot_allocate_any_buffer_exiting[]
193 INIT(= N_("E82: Cannot allocate any buffer, exiting..."));
194EXTERN char e_cannot_allocate_buffer_using_other_one[]
195 INIT(= N_("E83: Cannot allocate buffer, using other one..."));
196EXTERN char e_no_modified_buffer_found[]
197 INIT(= N_("E84: No modified buffer found"));
198EXTERN char e_there_is_no_listed_buffer[]
199 INIT(= N_("E85: There is no listed buffer"));
200EXTERN char e_buffer_nr_does_not_exist[]
201 INIT(= N_("E86: Buffer %ld does not exist"));
202EXTERN char e_cannot_go_beyond_last_buffer[]
203 INIT(= N_("E87: Cannot go beyond last buffer"));
204EXTERN char e_cannot_go_before_first_buffer[]
205 INIT(= N_("E88: Cannot go before first buffer"));
206EXTERN char e_no_write_since_last_change_for_buffer_nr_add_bang_to_override[]
207 INIT(= N_("E89: No write since last change for buffer %d (add ! to override)"));
208EXTERN char e_cannot_unload_last_buffer[]
209 INIT(= N_("E90: Cannot unload last buffer"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000210EXTERN char e_shell_option_is_empty[]
211 INIT(= N_("E91: 'shell' option is empty"));
212EXTERN char e_buffer_nr_not_found[]
213 INIT(= N_("E92: Buffer %d not found"));
214EXTERN char e_more_than_one_match_for_str[]
215 INIT(= N_("E93: More than one match for %s"));
216EXTERN char e_no_matching_buffer_for_str[]
217 INIT(= N_("E94: No matching buffer for %s"));
218EXTERN char e_buffer_with_this_name_already_exists[]
219 INIT(= N_("E95: Buffer with this name already exists"));
220#if defined(FEAT_DIFF)
221EXTERN char e_cannot_diff_more_than_nr_buffers[]
222 INIT(= N_("E96: Cannot diff more than %d buffers"));
223EXTERN char e_cannot_create_diffs[]
224 INIT(= N_("E97: Cannot create diffs"));
225EXTERN char e_cannot_read_diff_output[]
226 INIT(= N_("E98: Cannot read diff output"));
227EXTERN char e_current_buffer_is_not_in_diff_mode[]
228 INIT(= N_("E99: Current buffer is not in diff mode"));
229EXTERN char e_no_other_buffer_in_diff_mode[]
230 INIT(= N_("E100: No other buffer in diff mode"));
231EXTERN char e_more_than_two_buffers_in_diff_mode_dont_know_which_one_to_use[]
232 INIT(= N_("E101: More than two buffers in diff mode, don't know which one to use"));
233EXTERN char e_cant_find_buffer_str[]
234 INIT(= N_("E102: Can't find buffer \"%s\""));
235EXTERN char e_buffer_str_is_not_in_diff_mode[]
236 INIT(= N_("E103: Buffer \"%s\" is not in diff mode"));
237#endif
238EXTERN char e_escape_not_allowed_in_digraph[]
239 INIT(= N_("E104: Escape not allowed in digraph"));
240EXTERN char e_using_loadkeymap_not_in_sourced_file[]
241 INIT(= N_("E105: Using :loadkeymap not in a sourced file"));
242// E106 unused
243EXTERN char e_missing_parenthesis_str[]
244 INIT(= N_("E107: Missing parentheses: %s"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200245#ifdef FEAT_EVAL
Bram Moolenaare1242042021-12-16 20:56:57 +0000246EXTERN char e_no_such_variable_str[]
247 INIT(= N_("E108: No such variable: \"%s\""));
248EXTERN char e_missing_colon_after_questionmark[]
249 INIT(= N_("E109: Missing ':' after '?'"));
250EXTERN char e_missing_closing_paren[]
251 INIT(= N_("E110: Missing ')'"));
252EXTERN char e_missing_closing_square_brace[]
253 INIT(= N_("E111: Missing ']'"));
254#endif
255EXTERN char e_option_name_missing_str[]
256 INIT(= N_("E112: Option name missing: %s"));
257EXTERN char e_unknown_option_str[]
258 INIT(= N_("E113: Unknown option: %s"));
259EXTERN char e_missing_double_quote_str[]
260 INIT(= N_("E114: Missing double quote: %s"));
261EXTERN char e_missing_single_quote_str[]
262 INIT(= N_("E115: Missing single quote: %s"));
263#ifdef FEAT_EVAL
264EXTERN char e_invalid_arguments_for_function_str[]
265 INIT(= N_("E116: Invalid arguments for function %s"));
266EXTERN char e_unknown_function_str[]
267 INIT(= N_("E117: Unknown function: %s"));
268EXTERN char e_too_many_arguments_for_function_str[]
269 INIT(= N_("E118: Too many arguments for function: %s"));
270EXTERN char e_not_enough_arguments_for_function_str[]
271 INIT(= N_("E119: Not enough arguments for function: %s"));
272EXTERN char e_using_sid_not_in_script_context_str[]
273 INIT(= N_("E120: Using <SID> not in a script context: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +0200274EXTERN char e_undefined_variable_str[]
275 INIT(= N_("E121: Undefined variable: %s"));
276EXTERN char e_undefined_variable_char_str[]
277 INIT(= N_("E121: Undefined variable: %c:%s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000278EXTERN char e_function_str_already_exists_add_bang_to_replace[]
Bram Moolenaarc553a212021-12-26 20:20:34 +0000279 INIT(= N_("E122: Function %s already exists, add ! to replace it"));
280EXTERN char e_undefined_function_str[]
281 INIT(= N_("E123: Undefined function: %s"));
282EXTERN char e_missing_paren_str[]
283 INIT(= N_("E124: Missing '(': %s"));
284EXTERN char e_illegal_argument_str[]
285 INIT(= N_("E125: Illegal argument: %s"));
286EXTERN char e_missing_endfunction[]
287 INIT(= N_("E126: Missing :endfunction"));
288EXTERN char e_cannot_redefine_function_str_it_is_in_use[]
289 INIT(= N_("E127: Cannot redefine function %s: It is in use"));
290EXTERN char e_function_name_must_start_with_capital_or_s_str[]
291 INIT(= N_("E128: Function name must start with a capital or \"s:\": %s"));
292EXTERN char e_function_name_required[]
293 INIT(= N_("E129: Function name required"));
294// E130 unused
295EXTERN char e_cannot_delete_function_str_it_is_in_use[]
296 INIT(= N_("E131: Cannot delete function %s: It is in use"));
297EXTERN char e_function_call_depth_is_higher_than_macfuncdepth[]
298 INIT(= N_("E132: Function call depth is higher than 'maxfuncdepth'"));
299EXTERN char e_return_not_inside_function[]
300 INIT(= N_("E133: :return not inside a function"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200301#endif
Bram Moolenaarc553a212021-12-26 20:20:34 +0000302EXTERN char e_cannot_move_range_of_lines_into_itself[]
303 INIT(= N_("E134: Cannot move a range of lines into itself"));
304EXTERN char e_filter_autocommands_must_not_change_current_buffer[]
305 INIT(= N_("E135: *Filter* Autocommands must not change current buffer"));
306#if defined(FEAT_VIMINFO)
307EXTERN char e_viminfo_too_many_errors_skipping_rest_of_file[]
308 INIT(= N_("E136: viminfo: Too many errors, skipping rest of file"));
309EXTERN char e_viminfo_file_is_not_writable_str[]
310 INIT(= N_("E137: Viminfo file is not writable: %s"));
311EXTERN char e_cant_write_viminfo_file_str[]
312 INIT(= N_("E138: Can't write viminfo file %s!"));
313#endif
Bram Moolenaareb822a22021-12-31 15:09:27 +0000314EXTERN char e_file_is_loaded_in_another_buffer[]
315 INIT(= N_("E139: File is loaded in another buffer"));
316EXTERN char e_use_bang_to_write_partial_buffer[]
317 INIT(= N_("E140: Use ! to write partial buffer"));
318EXTERN char e_no_file_name_for_buffer_nr[]
319 INIT(= N_("E141: No file name for buffer %ld"));
320EXTERN char e_file_not_written_writing_is_disabled_by_write_option[]
321 INIT(= N_("E142: File not written: Writing is disabled by 'write' option"));
322EXTERN char e_autocommands_unexpectedly_deleted_new_buffer_str[]
323 INIT(= N_("E143: Autocommands unexpectedly deleted new buffer %s"));
324EXTERN char e_non_numeric_argument_to_z[]
325 INIT(= N_("E144: non-numeric argument to :z"));
326EXTERN char e_shell_commands_and_some_functionality_not_allowed_in_rvim[]
327 INIT(= N_("E145: Shell commands and some functionality not allowed in rvim"));
328EXTERN char e_regular_expressions_cant_be_delimited_by_letters[]
329 INIT(= N_("E146: Regular expressions can't be delimited by letters"));
330EXTERN char e_cannot_do_global_recursive_with_range[]
331 INIT(= N_("E147: Cannot do :global recursive with a range"));
332EXTERN char e_regular_expression_missing_from_global[]
333 INIT(= N_("E148: Regular expression missing from :global"));
334EXTERN char e_sorry_no_help_for_str[]
335 INIT(= N_("E149: Sorry, no help for %s"));
336EXTERN char e_not_a_directory_str[]
337 INIT(= N_("E150: Not a directory: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000338EXTERN char e_no_match_str_1[]
Bram Moolenaareb822a22021-12-31 15:09:27 +0000339 INIT(= N_("E151: No match: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000340EXTERN char e_cannot_open_str_for_writing_1[]
Bram Moolenaareb822a22021-12-31 15:09:27 +0000341 INIT(= N_("E152: Cannot open %s for writing"));
342EXTERN char e_unable_to_open_str_for_reading[]
343 INIT(= N_("E153: Unable to open %s for reading"));
344EXTERN char e_duplicate_tag_str_in_file_str_str[]
345 INIT(= N_("E154: Duplicate tag \"%s\" in file %s/%s"));
346EXTERN char e_unknown_sign_str[]
347 INIT(= N_("E155: Unknown sign: %s"));
348EXTERN char e_missing_sign_name[]
349 INIT(= N_("E156: Missing sign name"));
350EXTERN char e_invalid_sign_id_nr[]
351 INIT(= N_("E157: Invalid sign ID: %d"));
352EXTERN char e_invalid_buffer_name_str[]
353 INIT(= N_("E158: Invalid buffer name: %s"));
354EXTERN char e_missing_sign_number[]
355 INIT(= N_("E159: Missing sign number"));
356EXTERN char e_unknown_sign_command_str[]
357 INIT(= N_("E160: Unknown sign command: %s"));
358#ifdef FEAT_EVAL
359EXTERN char e_breakpoint_not_found_str[]
360 INIT(= N_("E161: Breakpoint not found: %s"));
361#endif
Bram Moolenaar1a992222021-12-31 17:25:48 +0000362EXTERN char e_no_write_since_last_change_for_buffer_str[]
363 INIT(= N_("E162: No write since last change for buffer \"%s\""));
364EXTERN char e_there_is_only_one_file_to_edit[]
365 INIT(= N_("E163: There is only one file to edit"));
366EXTERN char e_cannot_go_before_first_file[]
367 INIT(= N_("E164: Cannot go before first file"));
368EXTERN char e_cannot_go_beyond_last_file[]
369 INIT(= N_("E165: Cannot go beyond last file"));
370EXTERN char e_cant_open_linked_file_for_writing[]
371 INIT(= N_("E166: Can't open linked file for writing"));
372EXTERN char e_scriptencoding_used_outside_of_sourced_file[]
373 INIT(= N_("E167: :scriptencoding used outside of a sourced file"));
374EXTERN char e_finish_used_outside_of_sourced_file[]
375 INIT(= N_("E168: :finish used outside of a sourced file"));
376EXTERN char e_command_too_recursive[]
377 INIT(= N_("E169: Command too recursive"));
378EXTERN char e_missing_endwhile[]
379 INIT(= N_("E170: Missing :endwhile"));
380EXTERN char e_missing_endfor[]
381 INIT(= N_("E170: Missing :endfor"));
382EXTERN char e_missing_endif[]
383 INIT(= N_("E171: Missing :endif"));
384EXTERN char e_missing_marker[]
385 INIT(= N_("E172: Missing marker"));
386EXTERN char e_nr_more_file_to_edit[]
387 INIT(= N_("E173: %d more file to edit"));
388EXTERN char e_nr_more_files_to_edit[]
389 INIT(= N_("E173: %d more files to edit"));
390EXTERN char e_command_already_exists_add_bang_to_replace_it_str[]
391 INIT(= N_("E174: Command already exists: add ! to replace it: %s"));
392EXTERN char e_no_attribute_specified[]
393 INIT(= N_("E175: No attribute specified"));
394EXTERN char e_invalid_number_of_arguments[]
395 INIT(= N_("E176: Invalid number of arguments"));
396EXTERN char e_count_cannot_be_specified_twice[]
397 INIT(= N_("E177: Count cannot be specified twice"));
398EXTERN char e_invalid_default_value_for_count[]
399 INIT(= N_("E178: Invalid default value for count"));
400EXTERN char e_argument_required_for_str[]
401 INIT(= N_("E179: argument required for %s"));
402EXTERN char e_invalid_complete_value_str[]
403 INIT(= N_("E180: Invalid complete value: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +0000404EXTERN char e_invalid_address_type_value_str[]
405 INIT(= N_("E180: Invalid address type value: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000406EXTERN char e_invalid_attribute_str[]
407 INIT(= N_("E181: Invalid attribute: %s"));
408EXTERN char e_invalid_command_name[]
409 INIT(= N_("E182: Invalid command name"));
410EXTERN char e_user_defined_commands_must_start_with_an_uppercase_letter[]
411 INIT(= N_("E183: User defined commands must start with an uppercase letter"));
Bram Moolenaarbdcba242021-09-12 20:58:02 +0200412EXTERN char e_no_such_user_defined_command_str[]
413 INIT(= N_("E184: No such user-defined command: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000414EXTERN char e_cannot_find_color_scheme_str[]
415 INIT(= N_("E185: Cannot find color scheme '%s'"));
416EXTERN char e_no_previous_directory[]
417 INIT(= N_("E186: No previous directory"));
418EXTERN char e_directory_unknown[]
419 INIT(= N_("E187: Directory unknown"));
420EXTERN char e_obtaining_window_position_not_implemented_for_this_platform[]
421 INIT(= N_("E188: Obtaining window position not implemented for this platform"));
422EXTERN char e_str_exists_add_bang_to_override[]
423 INIT(= N_("E189: \"%s\" exists (add ! to override)"));
424EXTERN char e_cannot_open_str_for_writing_2[]
425 INIT(= N_("E190: Cannot open \"%s\" for writing"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000426EXTERN char e_argument_must_be_letter_or_forward_backward_quote[]
427 INIT(= N_("E191: Argument must be a letter or forward/backward quote"));
428EXTERN char e_recursive_use_of_normal_too_deep[]
429 INIT(= N_("E192: Recursive use of :normal too deep"));
430EXTERN char e_str_not_inside_function[]
431 INIT(= N_("E193: %s not inside a function"));
432EXTERN char e_no_alternate_file_name_to_substitute_for_hash[]
433 INIT(= N_("E194: No alternate file name to substitute for '#'"));
434EXTERN char e_cannot_open_viminfo_file_for_reading[]
435 INIT(= N_("E195: Cannot open viminfo file for reading"));
mityu61065042021-07-19 20:07:21 +0200436#ifndef FEAT_DIGRAPHS
437EXTERN char e_no_digraphs_version[]
438 INIT(= N_("E196: No digraphs in this version"));
439#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000440EXTERN char e_cannot_set_language_to_str[]
441 INIT(= N_("E197: Cannot set language to \"%s\""));
442// E198 unused
443EXTERN char e_active_window_or_buffer_deleted[]
444 INIT(= N_("E199: Active window or buffer deleted"));
445EXTERN char e_readpre_autocommands_made_file_unreadable[]
446 INIT(= N_("E200: *ReadPre autocommands made the file unreadable"));
447EXTERN char e_readpre_autocommands_must_not_change_current_buffer[]
448 INIT(= N_("E201: *ReadPre autocommands must not change current buffer"));
449EXTERN char e_conversion_mad_file_unreadable[]
450 INIT(= N_("E202: Conversion made file unreadable!"));
451EXTERN char e_autocommands_deleted_or_unloaded_buffer_to_be_written[]
452 INIT(= N_("E203: Autocommands deleted or unloaded buffer to be written"));
453EXTERN char e_autocommands_changed_number_of_lines_in_unexpected_way[]
454 INIT(= N_("E204: Autocommand changed number of lines in unexpected way"));
455EXTERN char e_patchmode_cant_save_original_file[]
456 INIT(= N_("E205: Patchmode: can't save original file"));
457EXTERN char e_patchmode_cant_touch_empty_original_file[]
458 INIT(= N_("E206: patchmode: can't touch empty original file"));
459EXTERN char e_cant_delete_backup_file[]
460 INIT(= N_("E207: Can't delete backup file"));
461EXTERN char e_error_writing_to_str[]
462 INIT(= N_("E208: Error writing to \"%s\""));
463EXTERN char e_error_closing_str[]
464 INIT(= N_("E209: Error closing \"%s\""));
465EXTERN char e_error_reading_str[]
466 INIT(= N_("E210: Error reading \"%s\""));
467EXTERN char e_file_str_no_longer_available[]
468 INIT(= N_("E211: File \"%s\" no longer available"));
469EXTERN char e_cant_open_file_for_writing[]
470 INIT(= N_("E212: Can't open file for writing"));
471EXTERN char e_cannot_convert_add_bang_to_write_without_conversion[]
472 INIT(= N_("E213: Cannot convert (add ! to write without conversion)"));
473EXTERN char e_cant_find_temp_file_for_writing[]
474 INIT(= N_("E214: Can't find temp file for writing"));
475EXTERN char e_illegal_character_after_star_str[]
476 INIT(= N_("E215: Illegal character after *: %s"));
477EXTERN char e_no_such_event_str[]
478 INIT(= N_("E216: No such event: %s"));
479EXTERN char e_no_such_group_or_event_str[]
480 INIT(= N_("E216: No such group or event: %s"));
481EXTERN char e_cant_execute_autocommands_for_all_events[]
482 INIT(= N_("E217: Can't execute autocommands for ALL events"));
483EXTERN char e_autocommand_nesting_too_deep[]
484 INIT(= N_("E218: autocommand nesting too deep"));
485EXTERN char e_missing_open_curly[]
486 INIT(= N_("E219: Missing {."));
487EXTERN char e_missing_close_curly[]
488 INIT(= N_("E220: Missing }."));
489EXTERN char e_marker_cannot_start_with_lower_case_letter[]
490 INIT(= N_("E221: Marker cannot start with lower case letter"));
491EXTERN char e_add_to_internal_buffer_that_was_already_read_from[]
492 INIT(= N_("E222: Add to internal buffer that was already read from"));
493EXTERN char e_recursive_mapping[]
494 INIT(= N_("E223: recursive mapping"));
495EXTERN char e_global_abbreviation_already_exists_for_str[]
496 INIT(= N_("E224: global abbreviation already exists for %s"));
497EXTERN char e_global_mapping_already_exists_for_str[]
498 INIT(= N_("E225: global mapping already exists for %s"));
499EXTERN char e_abbreviation_already_exists_for_str[]
500 INIT(= N_("E226: abbreviation already exists for %s"));
501EXTERN char e_mapping_already_exists_for_str[]
502 INIT(= N_("E227: mapping already exists for %s"));
503EXTERN char e_makemap_illegal_mode[]
504 INIT(= N_("E228: makemap: Illegal mode"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000505#ifdef FEAT_GUI
Bram Moolenaar6d057012021-12-31 18:49:43 +0000506EXTERN char e_cannot_start_the_GUI[]
507 INIT(= N_("E229: Cannot start the GUI"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000508EXTERN char e_cannot_read_from_str[]
509 INIT(= N_("E230: Cannot read from \"%s\""));
510EXTERN char e_guifontwide_invalid[]
511 INIT(= N_("E231: 'guifontwide' invalid"));
512EXTERN char e_cannot_create_ballooneval_with_both_message_and_callback[]
513 INIT(= N_("E232: Cannot create BalloonEval with both message and callback"));
514# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000515EXTERN char e_cannot_open_display[]
516 INIT(= N_("E233: cannot open display"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000517# endif
518# if defined(FEAT_XFONTSET)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000519EXTERN char e_unknown_fontset_str[]
520 INIT(= N_("E234: Unknown fontset: %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000521# endif
522# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000523 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
524EXTERN char e_unknown_font_str[]
525 INIT(= N_("E235: Unknown font: %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000526# endif
527# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000528EXTERN char e_font_str_is_not_fixed_width[]
529 INIT(= N_("E236: Font \"%s\" is not fixed-width"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000530# endif
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000531#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000532#ifdef MSWIN
533EXTERN char e_printer_selection_failed[]
534 INIT(= N_("E237: Printer selection failed"));
535EXTERN char e_print_error_str[]
536 INIT(= N_("E238: Print error: %s"));
537#endif
538EXTERN char e_invalid_sign_text_str[]
539 INIT(= N_("E239: Invalid sign text: %s"));
540#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
541EXTERN char e_no_connection_to_x_server[]
542 INIT(= N_("E240: No connection to the X server"));
543#endif
544#ifdef FEAT_CLIENTSERVER
545EXTERN char e_unable_to_send_to_str[]
546 INIT(= N_("E241: Unable to send to %s"));
547#endif
548EXTERN char e_cant_split_window_while_closing_another[]
549 INIT(= N_("E242: Can't split a window while closing another"));
550#if defined(FEAT_GUI_MSWIN) && !defined(FEAT_OLE)
551EXTERN char e_argument_not_supported_str_use_ole_version[]
552 INIT(= N_("E243: Argument not supported: \"-%s\"; Use the OLE version."));
553#endif
554#ifdef MSWIN
555EXTERN char e_illegal_str_name_str_in_font_name_str[]
556 INIT(= N_("E244: Illegal %s name \"%s\" in font name \"%s\""));
557EXTERN char e_illegal_char_nr_in_font_name_str[]
558 INIT(= N_("E245: Illegal char '%c' in font name \"%s\""));
559#endif
560EXTERN char e_filechangedshell_autocommand_deleted_buffer[]
561 INIT(= N_("E246: FileChangedShell autocommand deleted buffer"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000562#ifdef FEAT_CLIENTSERVER
563EXTERN char e_no_registered_server_named_str[]
564 INIT(= N_("E247: no registered server named \"%s\""));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000565EXTERN char e_failed_to_send_command_to_destination_program[]
566 INIT(= N_("E248: Failed to send command to the destination program"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000567#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000568EXTERN char e_window_layout_changed_unexpectedly[]
569 INIT(= N_("E249: window layout changed unexpectedly"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000570#ifdef FEAT_XFONTSET
571EXTERN char e_fonts_for_the_following_charsets_are_missing_in_fontset[]
572 INIT(= N_("E250: Fonts for the following charsets are missing in fontset %s:"));
573#endif
574#ifdef FEAT_CLIENTSERVER
575EXTERN char e_vim_instance_registry_property_is_badly_formed_deleted[]
576 INIT(= N_("E251: VIM instance registry property is badly formed. Deleted!"));
577#endif
578#ifdef FEAT_GUI_X11
579EXTERN char e_fontsent_name_str_font_str_is_not_fixed_width[]
580 INIT(= N_("E252: Fontset name: %s - Font '%s' is not fixed-width"));
581EXTERN char e_fontset_name_str[]
582 INIT(= N_("E253: Fontset name: %s"));
583#endif
Drew Vogele30d1022021-10-24 20:35:07 +0100584#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
585EXTERN char e_cannot_allocate_color_str[]
586 INIT(= N_("E254: Cannot allocate color %s"));
587#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +0000588#if defined(FEAT_SIGN_ICONS) && !defined(FEAT_GUI_GTK)
589EXTERN char e_couldnt_read_in_sign_data[]
590 INIT(= N_("E255: Couldn't read in sign data"));
591#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000592// E256 unused
593EXTERN char e_cstag_tag_not_founc[]
594 INIT(= N_("E257: cstag: tag not found"));
595#ifdef FEAT_CLIENTSERVER
596EXTERN char e_unable_to_send_to_client[]
597 INIT(= N_("E258: Unable to send to client"));
598#endif
599#ifdef FEAT_CSCOPE
600EXTERN char e_no_matches_found_for_cscope_query_str_of_str[]
601 INIT(= N_("E259: no matches found for cscope query %s of %s"));
602#endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000603#ifdef FEAT_EVAL
604EXTERN char e_missing_name_after_method[]
605 INIT(= N_("E260: Missing name after ->"));
606#endif
607#ifdef FEAT_CSCOPE
608EXTERN char e_cscope_connection_str_not_founc[]
609 INIT(= N_("E261: cscope connection %s not found"));
610EXTERN char e_error_reading_cscope_connection_nr[]
611 INIT(= N_("E262: error reading cscope connection %d"));
612#endif
Bram Moolenaar6b1a99d2022-01-02 01:04:09 +0000613#if defined(DYNAMIC_PYTHON) || defined(DYNAMIC_PYTHON3)
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000614EXTERN char e_sorry_this_command_is_disabled_python_library_could_not_be_found[]
615 INIT(= N_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
616#endif
617#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
618EXTERN char e_python_error_initialising_io_object[]
619 INIT(= N_("E264: Python: Error initialising I/O objects"));
620#endif
621#ifdef FEAT_RUBY
622EXTERN char e_dollar_must_be_an_instance_of_string[]
623 INIT(= N_("E265: $_ must be an instance of String"));
624#endif
625#ifdef DYNAMIC_RUBY
626EXTERN char e_sorry_this_command_is_disabled_the_ruby_library_could_not_be_loaded[]
627 INIT(= N_("E266: Sorry, this command is disabled, the Ruby library could not be loaded."));
628#endif
629#ifdef FEAT_RUBY
630EXTERN char e_unexpected_return[]
631 INIT(= N_("E267: unexpected return"));
632EXTERN char e_unexpected_next[]
633 INIT(= N_("E268: unexpected next"));
634EXTERN char e_unexpected_break[]
635 INIT(= N_("E269: unexpected break"));
636EXTERN char e_unexpected_redo[]
637 INIT(= N_("E270: unexpected redo"));
638EXTERN char e_retry_outside_of_rescue_clause[]
639 INIT(= N_("E271: retry outside of rescue clause"));
640EXTERN char e_unhandled_exception[]
641 INIT(= N_("E272: unhandled exception"));
642EXTERN char e_unknown_longjmp_status_nr[]
643 INIT(= N_("E273: unknown longjmp status %d"));
644#endif
Bram Moolenaar3a846e62022-01-01 16:21:00 +0000645#ifdef FEAT_EVAL
646EXTERN char e_no_white_space_allowed_before_parenthesis[]
647 INIT(= N_("E274: No white space allowed before parenthesis"));
648#endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000649#ifdef FEAT_PROP_POPUP
650EXTERN char e_cannot_add_text_property_to_unloaded_buffer[]
651 INIT(= N_("E275: Cannot add text property to unloaded buffer"));
652#endif
653#ifdef FEAT_EVAL
654EXTERN char e_cannot_use_function_as_method_str[]
655 INIT(= N_("E276: Cannot use function as a method: %s"));
656#endif
657#ifdef FEAT_CLIENTSERVER
658EXTERN char e_unable_to_read_server_reply[]
659 INIT(= N_("E277: Unable to read a server reply"));
660#endif
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000661// E278 unused
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000662#ifdef FEAT_TERMINAL
663EXTERN char e_sorry_plusplusshell_not_supported_on_this_system[]
664 INIT(= N_("E279: Sorry, ++shell is not supported on this system"));
665#endif
666#ifdef FEAT_TCL
667EXTERN char e_tcl_fatal_error_reflist_corrupt_please_report_this[]
668 INIT(= N_("E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim.org"));
669#endif
670// E281 unused
671EXTERN char e_cannot_read_from_str_2[]
672 INIT(= N_("E282: Cannot read from \"%s\""));
673EXTERN char e_no_marks_matching_str[]
674 INIT(= N_("E283: No marks matching \"%s\""));
675#ifdef FEAT_XIM
676EXTERN char e_cannot_set_ic_values[]
677 INIT(= N_("E284: Cannot set IC values"));
678# if defined(FEAT_GUI_X11)
679EXTERN char e_failed_to_create_input_context[]
680 INIT(= N_("E285: Failed to create input context"));
681# endif
682EXTERN char e_failed_to_open_input_method[]
683 INIT(= N_("E286: Failed to open input method"));
684EXTERN char e_warning_could_not_set_destroy_callback_to_im[]
685 INIT(= N_("E287: Warning: Could not set destroy callback to IM"));
686EXTERN char e_input_method_doesnt_support_any_style[]
687 INIT(= N_("E288: input method doesn't support any style"));
688EXTERN char e_input_method_doesnt_support_my_preedit_type[]
689 INIT(= N_("E289: input method doesn't support my preedit type"));
690#endif
691#ifdef FEAT_SEARCH_EXTRA
692EXTERN char e_list_or_number_required[]
693 INIT(= N_("E290: List or number required"));
694#endif
695// E291 unused
696EXTERN char e_invalid_count_for_del_bytes_nr[]
697 INIT(= N_("E292: Invalid count for del_bytes(): %ld"));
698EXTERN char e_block_was_not_locked[]
699 INIT(= N_("E293: block was not locked"));
700EXTERN char e_seek_error_in_swap_file_read[]
701 INIT(= N_("E294: Seek error in swap file read"));
702EXTERN char e_read_error_in_swap_file[]
703 INIT(= N_("E295: Read error in swap file"));
704EXTERN char e_seek_error_in_swap_file_write[]
705 INIT(= N_("E296: Seek error in swap file write"));
706EXTERN char e_write_error_in_swap_file[]
707 INIT(= N_("E297: Write error in swap file"));
708EXTERN char e_didnt_get_block_nr_zero[]
709 INIT(= N_("E298: Didn't get block nr 0?"));
710EXTERN char e_didnt_get_block_nr_one[]
711 INIT(= N_("E298: Didn't get block nr 1?"));
712EXTERN char e_didnt_get_block_nr_two[]
713 INIT(= N_("E298: Didn't get block nr 2?"));
714// E299 unused
Bram Moolenaareaaac012022-01-02 17:00:40 +0000715EXTERN char e_swap_file_already_exists_symlink_attack[]
716 INIT(= N_("E300: Swap file already exists (symlink attack?)"));
717EXTERN char e_oops_lost_the_swap_file[]
718 INIT(= N_("E301: Oops, lost the swap file!!!"));
719EXTERN char e_could_not_rename_swap_file[]
720 INIT(= N_("E302: Could not rename swap file"));
721EXTERN char e_unable_to_open_swap_file_for_str_recovery_impossible[]
722 INIT(= N_("E303: Unable to open swap file for \"%s\", recovery impossible"));
723EXTERN char e_ml_upd_block0_didnt_get_block_zero[]
724 INIT(= N_("E304: ml_upd_block0(): Didn't get block 0??"));
725EXTERN char e_no_swap_file_found_for_str[]
726 INIT(= N_("E305: No swap file found for %s"));
727EXTERN char e_cannot_open_str[]
728 INIT(= N_("E306: Cannot open %s"));
729EXTERN char e_str_does_not_look_like_vim_swap_file[]
730 INIT(= N_("E307: %s does not look like a Vim swap file"));
731EXTERN char e_warning_original_file_may_have_been_changed[]
732 INIT(= N_("E308: Warning: Original file may have been changed"));
733EXTERN char e_unable_to_read_block_one_from_str[]
734 INIT(= N_("E309: Unable to read block 1 from %s"));
735EXTERN char e_block_one_id_wrong_str_not_swp_file[]
736 INIT(= N_("E310: Block 1 ID wrong (%s not a .swp file?)"));
737EXTERN char e_recovery_interrupted[]
738 INIT(= N_("E311: Recovery Interrupted"));
739EXTERN char e_errors_detected_while_recovering_look_for_lines_starting_with_questions[]
740 INIT(= N_("E312: Errors detected while recovering; look for lines starting with ???"));
741EXTERN char e_cannot_preserve_there_is_no_swap_file[]
742 INIT(= N_("E313: Cannot preserve, there is no swap file"));
743EXTERN char e_preserve_failed[]
744 INIT(= N_("E314: Preserve failed"));
745EXTERN char e_ml_get_invalid_lnum_nr[]
746 INIT(= N_("E315: ml_get: invalid lnum: %ld"));
747EXTERN char e_ml_get_cannot_find_line_nr_in_buffer_nr_str[]
748 INIT(= N_("E316: ml_get: cannot find line %ld in buffer %d %s"));
749EXTERN char e_pointer_block_id_wrong[]
750 INIT(= N_("E317: pointer block id wrong"));
751EXTERN char e_pointer_block_id_wrong_two[]
752 INIT(= N_("E317: pointer block id wrong 2"));
753EXTERN char e_pointer_block_id_wrong_three[]
754 INIT(= N_("E317: pointer block id wrong 3"));
755EXTERN char e_pointer_block_id_wrong_four[]
756 INIT(= N_("E317: pointer block id wrong 4"));
757EXTERN char e_updated_too_many_blocks[]
758 INIT(= N_("E318: Updated too many blocks?"));
759EXTERN char e_sorry_command_is_not_available_in_this_version[]
760 INIT(= N_("E319: Sorry, the command is not available in this version"));
761EXTERN char e_cannot_find_line_nr[]
762 INIT(= N_("E320: Cannot find line %ld"));
763EXTERN char e_could_not_reload_str[]
764 INIT(= N_("E321: Could not reload \"%s\""));
765EXTERN char e_line_number_out_of_range_nr_past_the_end[]
766 INIT(= N_("E322: line number out of range: %ld past the end"));
767EXTERN char e_line_count_wrong_in_block_nr[]
768 INIT(= N_("E323: line count wrong in block %ld"));
769#ifdef FEAT_POSTSCRIPT
770EXTERN char e_cant_open_postscript_output_file[]
771 INIT(= N_("E324: Can't open PostScript output file"));
772#endif
773EXTERN char e_attention[]
774 INIT(= N_("E325: ATTENTION"));
775EXTERN char e_too_many_swap_files_found[]
776 INIT(= N_("E326: Too many swap files found"));
777EXTERN char_u e_part_of_menu_item_path_is_not_sub_menu[]
778 INIT(= N_("E327: Part of menu-item path is not sub-menu"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +0000779#ifdef FEAT_MENU
780EXTERN char e_menu_only_exists_in_another_mode[]
781 INIT(= N_("E328: Menu only exists in another mode"));
782#endif
Bram Moolenaareaaac012022-01-02 17:00:40 +0000783EXTERN char_u e_no_menu_str[]
784 INIT(= N_("E329: No menu \"%s\""));
Bram Moolenaard88be5b2022-01-04 19:57:55 +0000785EXTERN char e_menu_path_must_not_lead_to_sub_menu[]
Bram Moolenaareaaac012022-01-02 17:00:40 +0000786 INIT(= N_("E330: Menu path must not lead to a sub-menu"));
787EXTERN char e_must_not_add_menu_items_directly_to_menu_bar[]
788 INIT(= N_("E331: Must not add menu items directly to menu bar"));
789EXTERN char e_separator_cannot_be_part_of_menu_path[]
790 INIT(= N_("E332: Separator cannot be part of a menu path"));
791EXTERN char e_menu_path_must_lead_to_menu_item[]
792 INIT(= N_("E333: Menu path must lead to a menu item"));
793EXTERN char e_menu_not_found_str[]
794 INIT(= N_("E334: Menu not found: %s"));
795EXTERN char e_menu_not_defined_for_str_mode[]
796 INIT(= N_("E335: Menu not defined for %s mode"));
797EXTERN char e_menu_path_must_lead_to_sub_menu[]
798 INIT(= N_("E336: Menu path must lead to a sub-menu"));
799EXTERN char e_menu_not_found_check_menu_names[]
800 INIT(= N_("E337: Menu not found - check menu names"));
801EXTERN char e_sorry_no_file_browser_in_console_mode[]
802 INIT(= N_("E338: Sorry, no file browser in console mode"));
803EXTERN char e_pattern_too_long[]
804 INIT(= N_("E339: Pattern too long"));
805// E340 unused
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000806EXTERN char e_internal_error_lalloc_zero[]
807 INIT(= N_("E341: Internal error: lalloc(0, )"));
808EXTERN char e_out_of_memory_allocating_nr_bytes[]
809 INIT(= N_("E342: Out of memory! (allocating %lu bytes)"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000810EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[]
811 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."));
812EXTERN char e_cant_find_directory_str_in_cdpath[]
813 INIT(= N_("E344: Can't find directory \"%s\" in cdpath"));
814EXTERN char e_cant_find_file_str_in_path[]
815 INIT(= N_("E345: Can't find file \"%s\" in path"));
816EXTERN char e_no_more_directory_str_found_in_cdpath[]
817 INIT(= N_("E346: No more directory \"%s\" found in cdpath"));
818EXTERN char e_no_more_file_str_found_in_path[]
819 INIT(= N_("E347: No more file \"%s\" found in path"));
820EXTERN char e_no_string_under_cursor[]
821 INIT(= N_("E348: No string under cursor"));
822EXTERN char e_no_identifier_under_cursor[]
823 INIT(= N_("E349: No identifier under cursor"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000824EXTERN char e_cannot_create_fold_with_current_foldmethod[]
825 INIT(= N_("E350: Cannot create fold with current 'foldmethod'"));
826EXTERN char e_cannot_delete_fold_with_current_foldmethod[]
827 INIT(= N_("E351: Cannot delete fold with current 'foldmethod'"));
828EXTERN char e_cannot_erase_folds_with_current_foldmethod[]
829 INIT(= N_("E352: Cannot erase folds with current 'foldmethod'"));
830EXTERN char e_nothing_in_register_str[]
831 INIT(= N_("E353: Nothing in register %s"));
832EXTERN char e_invalid_register_name_str[]
833 INIT(= N_("E354: Invalid register name: '%s'"));
834EXTERN char e_unknown_option_str_2[]
835 INIT(= N_("E355: Unknown option: %s"));
836EXTERN char e_get_varp_error[]
837 INIT(= N_("E356: get_varp ERROR"));
838EXTERN char e_langmap_matching_character_missing_for_str[]
839 INIT(= N_("E357: 'langmap': Matching character missing for %s"));
840EXTERN char e_langmap_extra_characters_after_semicolon_str[]
841 INIT(= N_("E358: 'langmap': Extra characters after semicolon: %s"));
Bram Moolenaar74409f62022-01-01 15:58:22 +0000842#if defined(AMIGA) || defined(MACOS_X) || defined(MSWIN) \
843 || defined(UNIX) || defined(VMS)
844EXTERN char e_screen_mode_setting_not_supported[]
845 INIT(= N_("E359: Screen mode setting not supported"));
846#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000847EXTERN char e_cannot_execute_shell_with_f_option[]
848 INIT(= N_("E360: Cannot execute shell with -f option"));
849// E361 unused
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000850EXTERN char e_using_boolean_value_as_float[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000851 INIT(= N_("E362: Using a boolean value as a Float"));
Bram Moolenaar74409f62022-01-01 15:58:22 +0000852EXTERN char e_pattern_uses_more_memory_than_maxmempattern[]
853 INIT(= N_("E363: pattern uses more memory than 'maxmempattern'"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000854#ifdef FEAT_LIBCALL
855EXTERN char e_library_call_failed_for_str[]
856 INIT(= N_("E364: Library call failed for \"%s()\""));
857#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000858#ifdef FEAT_POSTSCRIPT
859EXTERN char e_failed_to_print_postscript_file[]
860 INIT(= N_("E365: Failed to print PostScript file"));
861#endif
862EXTERN char e_not_allowed_to_enter_popup_window[]
863 INIT(= N_("E366: Not allowed to enter a popup window"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000864EXTERN char e_no_such_group_str[]
865 INIT(= N_("E367: No such group: \"%s\""));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000866#ifdef FEAT_LIBCALL
867EXTERN char e_got_sig_str_in_libcall[]
868 INIT(= N_("E368: got SIG%s in libcall()"));
869#endif
870EXTERN char e_invalid_item_in_str_brackets[]
871 INIT(= N_("E369: invalid item in %s%%[]"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000872#ifdef USING_LOAD_LIBRARY
873EXTERN char e_could_not_load_library_str_str[]
874 INIT(= N_("E370: Could not load library %s: %s"));
875#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000876#ifdef FEAT_GUI_MSWIN
877EXTERN char e_command_not_found[]
878 INIT(= N_("E371: Command not found"));
879#endif
880EXTERN char e_too_many_chr_in_format_string[]
881 INIT(= N_("E372: Too many %%%c in format string"));
882EXTERN char e_unexpected_chr_in_format_str[]
883 INIT(= N_("E373: Unexpected %%%c in format string"));
884EXTERN char e_missing_rsb_in_format_string[]
885 INIT(= N_("E374: Missing ] in format string"));
886EXTERN char e_unsupported_chr_in_format_string[]
887 INIT(= N_("E375: Unsupported %%%c in format string"));
888EXTERN char e_invalid_chr_in_format_string_prefix[]
889 INIT(= N_("E376: Invalid %%%c in format string prefix"));
890EXTERN char e_invalid_chr_in_format_string[]
891 INIT(= N_("E377: Invalid %%%c in format string"));
892EXTERN char e_errorformat_contains_no_pattern[]
893 INIT(= N_("E378: 'errorformat' contains no pattern"));
894EXTERN char e_missing_or_empty_directory_name[]
895 INIT(= N_("E379: Missing or empty directory name"));
896EXTERN char e_at_bottom_of_quickfix_stack[]
897 INIT(= N_("E380: At bottom of quickfix stack"));
898EXTERN char e_at_top_of_quickfix_stack[]
899 INIT(= N_("E381: At top of quickfix stack"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000900EXTERN char e_cannot_write_buftype_option_is_set[]
901 INIT(= N_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000902EXTERN char e_invalid_search_string_str[]
903 INIT(= N_("E383: Invalid search string: %s"));
904EXTERN char e_search_hit_top_without_match_for_str[]
905 INIT(= N_("E384: search hit TOP without match for: %s"));
906EXTERN char e_search_hit_bottom_without_match_for_str[]
907 INIT(= N_("E385: search hit BOTTOM without match for: %s"));
908EXTERN char e_expected_question_or_slash_after_semicolon[]
909 INIT(= N_("E386: Expected '?' or '/' after ';'"));
910EXTERN char e_match_is_on_current_line[]
911 INIT(= N_("E387: Match is on current line"));
912EXTERN char e_couldnt_find_definition[]
913 INIT(= N_("E388: Couldn't find definition"));
914EXTERN char e_couldnt_find_pattern[]
915 INIT(= N_("E389: Couldn't find pattern"));
916EXTERN char e_illegal_argument_str_2[]
917 INIT(= N_("E390: Illegal argument: %s"));
918EXTERN char e_no_such_syntax_cluster_1[]
919 INIT(= N_("E391: No such syntax cluster: %s"));
920EXTERN char e_no_such_syntax_cluster_2[]
921 INIT(= N_("E392: No such syntax cluster: %s"));
922EXTERN char e_groupthere_not_accepted_here[]
923 INIT(= N_("E393: group[t]here not accepted here"));
924EXTERN char e_didnt_find_region_item_for_str[]
925 INIT(= N_("E394: Didn't find region item for %s"));
926EXTERN char e_contains_argument_not_accepted_here[]
927 INIT(= N_("E395: contains argument not accepted here"));
928// E396 unused
929EXTERN char e_filename_required[]
930 INIT(= N_("E397: Filename required"));
931EXTERN char e_missing_equal_str[]
932 INIT(= N_("E398: Missing '=': %s"));
933EXTERN char e_not_enough_arguments_syntax_region_str[]
934 INIT(= N_("E399: Not enough arguments: syntax region %s"));
935EXTERN char e_no_cluster_specified[]
936 INIT(= N_("E400: No cluster specified"));
937EXTERN char e_pattern_delimiter_not_found_str[]
938 INIT(= N_("E401: Pattern delimiter not found: %s"));
939EXTERN char e_garbage_after_pattern_str[]
940 INIT(= N_("E402: Garbage after pattern: %s"));
941EXTERN char e_syntax_sync_line_continuations_pattern_specified_twice[]
942 INIT(= N_("E403: syntax sync: line continuations pattern specified twice"));
943EXTERN char e_illegal_arguments_str[]
944 INIT(= N_("E404: Illegal arguments: %s"));
945EXTERN char e_missing_equal_sign_str[]
946 INIT(= N_("E405: Missing equal sign: %s"));
947EXTERN char e_empty_argument_str[]
948 INIT(= N_("E406: Empty argument: %s"));
949EXTERN char e_str_not_allowed_here[]
950 INIT(= N_("E407: %s not allowed here"));
951EXTERN char e_str_must_be_first_in_contains_list[]
952 INIT(= N_("E408: %s must be first in contains list"));
953EXTERN char e_unknown_group_name_str[]
954 INIT(= N_("E409: Unknown group name: %s"));
955EXTERN char e_invalid_syntax_subcommand_str[]
956 INIT(= N_("E410: Invalid :syntax subcommand: %s"));
957EXTERN char e_highlight_group_name_not_found_str[]
958 INIT(= N_("E411: highlight group not found: %s"));
959EXTERN char e_not_enough_arguments_highlight_link_str[]
960 INIT(= N_("E412: Not enough arguments: \":highlight link %s\""));
961EXTERN char e_too_many_arguments_highlight_link_str[]
962 INIT(= N_("E413: Too many arguments: \":highlight link %s\""));
963EXTERN char e_group_has_settings_highlight_link_ignored[]
964 INIT(= N_("E414: group has settings, highlight link ignored"));
965EXTERN char e_unexpected_equal_sign_str[]
966 INIT(= N_("E415: unexpected equal sign: %s"));
967EXTERN char e_missing_equal_sign_str_2[]
968 INIT(= N_("E416: missing equal sign: %s"));
969EXTERN char e_missing_argument_str[]
970 INIT(= N_("E417: missing argument: %s"));
971EXTERN char e_illegal_value_str[]
972 INIT(= N_("E418: Illegal value: %s"));
973EXTERN char e_fg_color_unknown[]
974 INIT(= N_("E419: FG color unknown"));
975EXTERN char e_bg_color_unknown[]
976 INIT(= N_("E420: BG color unknown"));
977EXTERN char e_color_name_or_number_not_recognized[]
978 INIT(= N_("E421: Color name or number not recognized: %s"));
979EXTERN char e_terminal_code_too_long_str[]
980 INIT(= N_("E422: terminal code too long: %s"));
981EXTERN char e_illegal_argument_str_3[]
982 INIT(= N_("E423: Illegal argument: %s"));
983EXTERN char e_too_many_different_highlighting_attributes_in_use[]
984 INIT(= N_("E424: Too many different highlighting attributes in use"));
985EXTERN char e_cannot_go_before_first_matching_tag[]
986 INIT(= N_("E425: Cannot go before first matching tag"));
987EXTERN char e_tag_not_found_str[]
988 INIT(= N_("E426: tag not found: %s"));
989EXTERN char e_there_is_only_one_matching_tag[]
990 INIT(= N_("E427: There is only one matching tag"));
991EXTERN char e_cannot_go_beyond_last_matching_tag[]
992 INIT(= N_("E428: Cannot go beyond last matching tag"));
993EXTERN char e_file_str_does_not_exist[]
994 INIT(= N_("E429: File \"%s\" does not exist"));
995EXTERN char e_tag_file_path_truncated_for_str[]
996 INIT(= N_("E430: Tag file path truncated for %s\n"));
997EXTERN char e_format_error_in_tags_file_str[]
998 INIT(= N_("E431: Format error in tags file \"%s\""));
999EXTERN char e_tags_file_not_sorted_str[]
1000 INIT(= N_("E432: Tags file not sorted: %s"));
1001EXTERN char e_no_tags_file[]
1002 INIT(= N_("E433: No tags file"));
1003EXTERN char e_canot_find_tag_pattern[]
1004 INIT(= N_("E434: Can't find tag pattern"));
1005EXTERN char e_couldnt_find_tag_just_guessing[]
1006 INIT(= N_("E435: Couldn't find tag, just guessing!"));
1007EXTERN char e_no_str_entry_in_termcap[]
1008 INIT(= N_("E436: No \"%s\" entry in termcap"));
1009EXTERN char e_terminal_capability_cm_required[]
1010 INIT(= N_("E437: terminal capability \"cm\" required"));
1011EXTERN char e_u_undo_line_numbers_wrong[]
1012 INIT(= N_("E438: u_undo: line numbers wrong"));
1013EXTERN char e_undo_list_corrupt[]
1014 INIT(= N_("E439: undo list corrupt"));
1015EXTERN char e_undo_line_missing[]
1016 INIT(= N_("E440: undo line missing"));
1017EXTERN char e_there_is_no_preview_window[]
1018 INIT(= N_("E441: There is no preview window"));
1019EXTERN char e_cant_split_topleft_and_botright_at_the_same_time[]
1020 INIT(= N_("E442: Can't split topleft and botright at the same time"));
1021EXTERN char e_cannot_rotate_when_another_window_is_split[]
1022 INIT(= N_("E443: Cannot rotate when another window is split"));
1023EXTERN char e_cannot_close_last_window[]
1024 INIT(= N_("E444: Cannot close last window"));
1025EXTERN char e_other_window_contains_changes[]
1026 INIT(= N_("E445: Other window contains changes"));
1027EXTERN char e_no_file_name_under_cursor[]
1028 INIT(= N_("E446: No file name under cursor"));
1029EXTERN char e_cant_find_file_str_in_path_2[]
1030 INIT(= N_("E447: Can't find file \"%s\" in path"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001031#ifdef USING_LOAD_LIBRARY
1032EXTERN char e_could_not_load_library_function_str[]
1033 INIT(= N_("E448: Could not load library function %s"));
1034#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001035#ifdef FEAT_CLIENTSERVER
1036EXTERN char e_invalid_expression_received[]
1037 INIT(= N_("E449: Invalid expression received"));
1038#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001039EXTERN char e_buffer_number_text_or_list_required[]
1040 INIT(= N_("E450: buffer number, text or a list required"));
1041EXTERN char e_expected_right_curly_str[]
1042 INIT(= N_("E451: Expected }: %s"));
1043#ifdef FEAT_EVAL
1044EXTERN char e_double_semicolon_in_list_of_variables[]
1045 INIT(= N_("E452: Double ; in list of variables"));
1046#endif
1047EXTERN char e_ul_color_unknown[]
1048 INIT(= N_("E453: UL color unknown"));
1049EXTERN char e_function_list_was_modified[]
1050 INIT(= N_("E454: function list was modified"));
1051#ifdef FEAT_POSTSCRIPT
1052EXTERN char e_error_writing_to_postscript_output_file[]
1053 INIT(= N_("E455: Error writing to PostScript output file"));
1054EXTERN char e_cant_open_file_str_2[]
1055 INIT(= N_("E456: Can't open file \"%s\""));
1056EXTERN char e_cant_find_postscript_resource_file_str_ps[]
1057 INIT(= N_("E456: Can't find PostScript resource file \"%s.ps\""));
1058EXTERN char e_cant_read_postscript_resource_file_str[]
1059 INIT(= N_("E457: Can't read PostScript resource file \"%s\""));
1060#endif
1061EXTERN char e_cannot_allocate_colormap_entry_some_colors_may_be_incorrect[]
1062 INIT(= N_("E458: Cannot allocate colormap entry, some colors may be incorrect"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001063#if defined(UNIX) || defined(FEAT_SESSION)
1064EXTERN char e_cannot_go_back_to_previous_directory[]
1065 INIT(= N_("E459: Cannot go back to previous directory"));
1066#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001067EXTERN char e_entries_missing_in_mapset_dict_argument[]
1068 INIT(= N_("E460: entries missing in mapset() dict argument"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001069#ifdef FEAT_EVAL
1070EXTERN char e_illegal_variable_name_str[]
1071 INIT(= N_("E461: Illegal variable name: %s"));
1072#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001073EXTERN char e_could_not_prepare_for_reloading_str[]
1074 INIT(= N_("E462: Could not prepare for reloading \"%s\""));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001075#ifdef FEAT_NETBEANS_INTG
1076EXTERN char e_region_is_guarded_cannot_modify[]
1077 INIT(= N_("E463: Region is guarded, cannot modify"));
1078#endif
Bram Moolenaard1510ee2021-01-04 16:15:58 +01001079EXTERN char e_ambiguous_use_of_user_defined_command[]
1080 INIT(= N_("E464: Ambiguous use of user-defined command"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001081EXTERN char e_winsize_requires_two_number_arguments[]
1082 INIT(= N_("E465: :winsize requires two number arguments"));
1083EXTERN char e_winpos_requires_two_number_arguments[]
1084 INIT(= N_("E466: :winpos requires two number arguments"));
1085EXTERN char e_custom_completion_requires_function_argument[]
1086 INIT(= N_("E467: Custom completion requires a function argument"));
1087EXTERN char e_completion_argument_only_allowed_for_custom_completion[]
1088 INIT(= N_("E468: Completion argument only allowed for custom completion"));
1089EXTERN char e_invalid_cscopequickfix_flag_chr_for_chr[]
1090 INIT(= N_("E469: invalid cscopequickfix flag %c for %c"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001091EXTERN char e_command_aborted[]
1092 INIT(= N_("E470: Command aborted"));
1093EXTERN char e_argument_required[]
1094 INIT(= N_("E471: Argument required"));
1095EXTERN char e_command_failed[]
1096 INIT(= N_("E472: Command failed"));
1097EXTERN char e_internal_error_in_regexp[]
1098 INIT(= N_("E473: Internal error in regexp"));
1099EXTERN char e_invalid_argument[]
1100 INIT(= N_("E474: Invalid argument"));
1101EXTERN char e_invalid_argument_str[]
1102 INIT(= N_("E475: Invalid argument: %s"));
1103EXTERN char e_invalid_value_for_argument_str[]
1104 INIT(= N_("E475: Invalid value for argument %s"));
1105EXTERN char e_invalid_value_for_argument_str_str[]
1106 INIT(= N_("E475: Invalid value for argument %s: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02001107EXTERN char e_invalid_command[]
1108 INIT(= N_("E476: Invalid command"));
1109#ifdef FEAT_EVAL
1110EXTERN char e_invalid_command_str[]
1111 INIT(= N_("E476: Invalid command: %s"));
Bram Moolenaar096ca732022-01-01 00:55:28 +00001112#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001113EXTERN char e_no_bang_allowed[]
1114 INIT(= N_("E477: No ! allowed"));
1115EXTERN char e_dont_panic[]
1116 INIT(= N_("E478: Don't panic!"));
1117EXTERN char e_no_match[]
1118 INIT(= N_("E479: No match"));
1119EXTERN char e_no_match_str_2[]
1120 INIT(= N_("E480: No match: %s"));
1121EXTERN char e_no_range_allowed[]
1122 INIT(= N_("E481: No range allowed"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001123EXTERN char e_cant_create_file_str[]
1124 INIT(= N_("E482: Can't create file %s"));
1125EXTERN char e_cant_get_temp_file_name[]
1126 INIT(= N_("E483: Can't get temp file name"));
1127EXTERN char e_cant_open_file_str[]
1128 INIT(= N_("E484: Can't open file %s"));
1129EXTERN char e_cant_read_file_str[]
1130 INIT(= N_("E485: Can't read file %s"));
1131EXTERN char e_pattern_not_found[]
1132 INIT(= N_("E486: Pattern not found"));
1133EXTERN char e_pattern_not_found_str[]
1134 INIT(= N_("E486: Pattern not found: %s"));
1135EXTERN char e_argument_must_be_positive[]
1136 INIT(= N_("E487: Argument must be positive"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001137EXTERN char e_trailing_characters[]
1138 INIT(= N_("E488: Trailing characters"));
1139EXTERN char e_trailing_characters_str[]
1140 INIT(= N_("E488: Trailing characters: %s"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001141EXTERN char e_no_call_stack_to_substitute_for_stack[]
1142 INIT(= N_("E489: no call stack to substitute for \"<stack>\""));
1143#ifdef FEAT_FOLDING
1144EXTERN char e_no_fold_found[]
1145 INIT(= N_("E490: No fold found"));
1146#endif
1147#ifdef FEAT_EVAL
1148EXTERN char e_json_decode_error_at_str[]
1149 INIT(= N_("E491: json decode error at '%s'"));
1150#endif
1151EXTERN char e_not_an_editor_command[]
1152 INIT(= N_("E492: Not an editor command"));
1153EXTERN char e_backwards_range_given[]
1154 INIT(= N_("E493: Backwards range given"));
1155EXTERN char e_use_w_or_w_gt_gt[]
1156 INIT(= N_("E494: Use w or w>>"));
1157EXTERN char e_no_autocommand_file_name_to_substitute_for_afile[]
1158 INIT(= N_("E495: no autocommand file name to substitute for \"<afile>\""));
1159EXTERN char e_no_autocommand_buffer_name_to_substitute_for_abuf[]
1160 INIT(= N_("E496: no autocommand buffer number to substitute for \"<abuf>\""));
1161EXTERN char e_no_autocommand_match_name_to_substitute_for_amatch[]
1162 INIT(= N_("E497: no autocommand match name to substitute for \"<amatch>\""));
1163EXTERN char e_no_source_file_name_to_substitute_for_sfile[]
1164 INIT(= N_("E498: no :source file name to substitute for \"<sfile>\""));
1165EXTERN char e_empty_file_name_for_percent_or_hash_only_works_with_ph[]
1166 INIT(= N_("E499: Empty file name for '%' or '#', only works with \":p:h\""));
1167EXTERN char e_evaluates_to_an_empty_string[]
1168 INIT(= N_("E500: Evaluates to an empty string"));
1169EXTERN char e_at_end_of_file[]
1170 INIT(= N_("E501: At end-of-file"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001171 // E502
1172EXTERN char e_is_a_directory[]
1173 INIT(= N_("is a directory"));
1174 // E503
1175EXTERN char e_is_not_file_or_writable_device[]
1176 INIT(= N_("is not a file or writable device"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001177EXTERN char e_str_is_not_file_or_writable_device[]
1178 INIT(= N_("E503: \"%s\" is not a file or writable device"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001179 // E504
1180EXTERN char e_is_read_only_cannot_override_W_in_cpoptions[]
1181 INIT(= N_("is read-only (cannot override: \"W\" in 'cpoptions')"));
1182 // E505
1183EXTERN char e_is_read_only_add_bang_to_override[]
1184 INIT(= N_("is read-only (add ! to override)"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001185EXTERN char e_str_is_read_only_add_bang_to_override[]
1186 INIT(= N_("E505: \"%s\" is read-only (add ! to override)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001187EXTERN char e_canot_write_to_backup_file_add_bang_to_override[]
1188 INIT(= N_("E506: Can't write to backup file (add ! to override)"));
1189EXTERN char e_close_error_for_backup_file_add_bang_to_write_anyway[]
1190 INIT(= N_("E507: Close error for backup file (add ! to write anyway)"));
1191EXTERN char e_cant_read_file_for_backup_add_bang_to_write_anyway[]
1192 INIT(= N_("E508: Can't read file for backup (add ! to write anyway)"));
1193EXTERN char e_cannot_create_backup_file_add_bang_to_write_anyway[]
1194 INIT(= N_("E509: Cannot create backup file (add ! to override)"));
1195EXTERN char e_cant_make_backup_file_add_bang_to_write_anyway[]
1196 INIT(= N_("E510: Can't make backup file (add ! to write anyway)"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001197#ifdef FEAT_NETBEANS_INTG
1198EXTERN char e_netbeans_already_connected[]
1199 INIT(= N_("E511: netbeans already connected"));
1200#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001201EXTERN char e_close_failed[]
1202 INIT(= N_("E512: Close failed"));
1203EXTERN char e_write_error_conversion_failed_make_fenc_empty_to_override[]
1204 INIT(= N_("E513: write error, conversion failed (make 'fenc' empty to override)"));
1205EXTERN char e_write_error_conversion_failed_in_line_nr_make_fenc_empty_to_override[]
1206 INIT(= N_("E513: write error, conversion failed in line %ld (make 'fenc' empty to override)"));
1207EXTERN char e_write_error_file_system_full[]
1208 INIT(= N_("E514: write error (file system full?)"));
1209EXTERN char e_no_buffers_were_unloaded[]
1210 INIT(= N_("E515: No buffers were unloaded"));
1211EXTERN char e_no_buffers_were_deleted[]
1212 INIT(= N_("E516: No buffers were deleted"));
1213EXTERN char e_no_buffers_were_wiped_out[]
1214 INIT(= N_("E517: No buffers were wiped out"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001215EXTERN char e_unknown_option[]
1216 INIT(= N_("E518: Unknown option"));
1217EXTERN char e_option_not_supported[]
1218 INIT(= N_("E519: Option not supported"));
1219EXTERN char e_not_allowed_in_modeline[]
1220 INIT(= N_("E520: Not allowed in a modeline"));
1221EXTERN char e_number_required_after_equal[]
1222 INIT(= N_("E521: Number required after ="));
1223EXTERN char e_number_required_after_str_equal_str[]
1224 INIT(= N_("E521: Number required: &%s = '%s'"));
1225EXTERN char e_not_found_in_termcap[]
1226 INIT(= N_("E522: Not found in termcap"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001227EXTERN char e_not_allowed_here[]
1228 INIT(= N_("E523: Not allowed here"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001229EXTERN char e_missing_colon[]
1230 INIT(= N_("E524: Missing colon"));
1231EXTERN char e_zero_length_string[]
1232 INIT(= N_("E525: Zero length string"));
1233EXTERN char e_missing_number_after_angle_str_angle[]
1234 INIT(= N_("E526: Missing number after <%s>"));
1235EXTERN char e_missing_comma[]
1236 INIT(= N_("E527: Missing comma"));
1237EXTERN char e_must_specify_a_value[]
1238 INIT(= N_("E528: Must specify a ' value"));
1239EXTERN char e_cannot_set_term_to_empty_string[]
1240 INIT(= N_("E529: Cannot set 'term' to empty string"));
1241EXTERN char e_cannot_change_term_in_GUI[]
1242 INIT(= N_("E530: Cannot change 'term' in the GUI"));
1243EXTERN char e_use_gui_to_start_GUI[]
1244 INIT(= N_("E531: Use \":gui\" to start the GUI"));
1245#ifdef FEAT_NETBEANS_INTG
1246EXTERN char e_highlighting_color_name_too_long_in_defineAnnoType[]
1247 INIT(= N_("E532: highlighting color name too long in defineAnnoType"));
1248#endif
1249EXTERN char e_cant_select_wide_font[]
1250 INIT(= N_("E533: can't select wide font"));
1251EXTERN char e_invalid_wide_font[]
1252 INIT(= N_("E534: Invalid wide font"));
1253EXTERN char e_illegal_character_after_chr[]
1254 INIT(= N_("E535: Illegal character after <%c>"));
1255EXTERN char e_comma_required[]
1256 INIT(= N_("E536: comma required"));
1257EXTERN char e_commentstring_must_be_empty_or_contain_str[]
1258 INIT(= N_("E537: 'commentstring' must be empty or contain %s"));
Bram Moolenaarb2810f12022-01-08 21:38:52 +00001259// E538 unused
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001260EXTERN char e_illegal_character_str[]
1261 INIT(= N_("E539: Illegal character <%s>"));
1262EXTERN char e_unclosed_expression_sequence[]
1263 INIT(= N_("E540: Unclosed expression sequence"));
1264// E541 unused
1265EXTERN char e_unbalanced_groups[]
1266 INIT(= N_("E542: unbalanced groups"));
1267#ifdef MSWIN
1268EXTERN char e_not_valid_codepage[]
1269 INIT(= N_("E543: Not a valid codepage"));
1270#endif
1271EXTERN char e_keymap_file_not_found[]
1272 INIT(= N_("E544: Keymap file not found"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001273#ifdef CURSOR_SHAPE
Bram Moolenaar475d9522022-01-02 21:46:29 +00001274EXTERN char e_missing_colon_2[]
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001275 INIT(= N_("E545: Missing colon"));
1276EXTERN char e_illegal_mode[]
1277 INIT(= N_("E546: Illegal mode"));
1278#endif
1279#ifdef FEAT_MOUSESHAPE
1280EXTERN char e_illegal_mouseshape[]
1281 INIT(= N_("E547: Illegal mouseshape"));
1282#endif
1283EXTERN char e_digit_expected[]
1284 INIT(= N_("E548: digit expected"));
1285EXTERN char e_illegal_percentage[]
1286 INIT(= N_("E549: Illegal percentage"));
1287EXTERN char e_missing_colon_3[]
1288 INIT(= N_("E550: Missing colon"));
1289EXTERN char e_illegal_component[]
1290 INIT(= N_("E551: Illegal component"));
1291EXTERN char e_digit_expected_2[]
1292 INIT(= N_("E552: digit expected"));
1293EXTERN char e_no_more_items[]
1294 INIT(= N_("E553: No more items"));
1295EXTERN char e_syntax_error_in_str_curlies[]
1296 INIT(= N_("E554: Syntax error in %s{...}"));
1297EXTERN char e_at_bottom_of_tag_stack[]
1298 INIT(= N_("E555: at bottom of tag stack"));
1299EXTERN char e_at_top_of_tag_stack[]
1300 INIT(= N_("E556: at top of tag stack"));
1301EXTERN char e_cannot_open_termcap_file[]
1302 INIT(= N_("E557: Cannot open termcap file"));
1303EXTERN char e_terminal_entry_not_found_in_terminfo[]
1304 INIT(= N_("E558: Terminal entry not found in terminfo"));
1305EXTERN char e_terminal_entry_not_found_in_termcap[]
1306 INIT(= N_("E559: Terminal entry not found in termcap"));
1307EXTERN char e_usage_cscope_str[]
1308 INIT(= N_("E560: Usage: cs[cope] %s"));
1309EXTERN char e_unknown_cscope_search_type[]
1310 INIT(= N_("E561: unknown cscope search type"));
1311EXTERN char e_usage_cstag_ident[]
1312 INIT(= N_("E562: Usage: cstag <ident>"));
1313EXTERN char e_stat_str_error_nr[]
1314 INIT(= N_("E563: stat(%s) error: %d"));
1315EXTERN char e_str_is_not_directory_or_valid_cscope_database[]
1316 INIT(= N_("E564: %s is not a directory or a valid cscope database"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001317EXTERN char e_not_allowed_to_change_text_or_change_window[]
1318 INIT(= N_("E565: Not allowed to change text or change window"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001319EXTERN char e_could_not_create_cscope_pipes[]
1320 INIT(= N_("E566: Could not create cscope pipes"));
1321EXTERN char e_no_cscope_connections[]
1322 INIT(= N_("E567: no cscope connections"));
1323EXTERN char e_duplicate_cscope_database_not_added[]
1324 INIT(= N_("E568: duplicate cscope database not added"));
1325// E569 unused
1326EXTERN char e_fatal_error_in_cs_manage_matches[]
1327 INIT(= N_("E570: fatal error in cs_manage_matches"));
1328#ifdef DYNAMIC_TCL
1329EXTERN char e_sorry_this_command_is_disabled_tcl_library_could_not_be_loaded[]
1330 INIT(= N_("E571: Sorry, this command is disabled: the Tcl library could not be loaded."));
1331#endif
1332EXTERN char e_exit_code_nr[]
1333 INIT(= N_("E572: exit code %d"));
1334EXTERN char e_invalid_server_id_used_str[]
1335 INIT(= N_("E573: Invalid server id used: %s"));
1336EXTERN char e_unknown_register_type_nr[]
1337 INIT(= N_("E574: Unknown register type %d"));
1338 // E575
1339EXTERN char e_illegal_starting_char[]
1340 INIT(= N_("Illegal starting char"));
1341 // E576
1342EXTERN char e_nonr_missing_gt[]
1343 INIT(= N_("Missing '>'"));
1344 // E577
1345EXTERN char e_illegal_register_name[]
1346 INIT(= N_("Illegal register name"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001347EXTERN char e_not_allowed_to_change_text_here[]
1348 INIT(= N_("E578: Not allowed to change text here"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001349#ifdef FEAT_EVAL
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001350EXTERN char e_if_nesting_too_deep[]
1351 INIT(= N_("E579: :if nesting too deep"));
1352EXTERN char e_block_nesting_too_deep[]
1353 INIT(= N_("E579: block nesting too deep"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001354EXTERN char e_endif_without_if[]
1355 INIT(= N_("E580: :endif without :if"));
1356EXTERN char e_else_without_if[]
1357 INIT(= N_("E581: :else without :if"));
1358EXTERN char e_elseif_without_if[]
1359 INIT(= N_("E582: :elseif without :if"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001360EXTERN char e_multiple_else[]
1361 INIT(= N_("E583: multiple :else"));
1362EXTERN char e_elseif_after_else[]
1363 INIT(= N_("E584: :elseif after :else"));
1364EXTERN char e_while_for_nesting_too_deep[]
1365 INIT(= N_("E585: :while/:for nesting too deep"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001366EXTERN char e_continue_without_while_or_for[]
1367 INIT(= N_("E586: :continue without :while or :for"));
1368EXTERN char e_break_without_while_or_for[]
1369 INIT(= N_("E587: :break without :while or :for"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001370EXTERN char e_endwhile_without_while[]
1371 INIT(= N_("E588: :endwhile without :while"));
1372EXTERN char e_endfor_without_for[]
1373 INIT(= N_("E588: :endfor without :for"));
Bram Moolenaar0f7a5e72022-01-01 16:31:48 +00001374#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001375EXTERN char e_backupext_and_patchmode_are_equal[]
1376 INIT(= N_("E589: 'backupext' and 'patchmode' are equal"));
1377EXTERN char e_preview_window_already_exists[]
1378 INIT(= N_("E590: A preview window already exists"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001379EXTERN char e_winheight_cannot_be_smaller_than_winminheight[]
1380 INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'"));
1381EXTERN char e_winwidth_cannot_be_smaller_than_winminwidth[]
1382 INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001383EXTERN char e_need_at_least_nr_lines[]
1384 INIT(= N_("E593: Need at least %d lines"));
1385EXTERN char e_need_at_least_nr_columns[]
1386 INIT(= N_("E594: Need at least %d columns"));
1387EXTERN char e_showbreak_contains_unprintable_or_wide_character[]
1388 INIT(= N_("E595: 'showbreak' contains unprintable or wide character"));
1389EXTERN char e_invalid_fonts[]
1390 INIT(= N_("E596: Invalid font(s)"));
1391EXTERN char e_cant_select_fontset[]
1392 INIT(= N_("E597: can't select fontset"));
1393EXTERN char e_invalid_fontset[]
1394 INIT(= N_("E598: Invalid fontset"));
1395EXTERN char e_value_of_imactivatekey_is_invalid[]
1396 INIT(= N_("E599: Value of 'imactivatekey' is invalid"));
Bram Moolenaar0f7a5e72022-01-01 16:31:48 +00001397#ifdef FEAT_EVAL
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001398EXTERN char e_missing_endtry[]
1399 INIT(= N_("E600: Missing :endtry"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001400EXTERN char e_try_nesting_too_deep[]
1401 INIT(= N_("E601: :try nesting too deep"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001402EXTERN char e_endtry_without_try[]
1403 INIT(= N_("E602: :endtry without :try"));
1404EXTERN char e_catch_without_try[]
1405 INIT(= N_("E603: :catch without :try"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001406EXTERN char e_catch_after_finally[]
1407 INIT(= N_("E604: :catch after :finally"));
1408EXTERN char e_exception_not_caught_str[]
1409 INIT(= N_("E605: Exception not caught: %s"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001410EXTERN char e_finally_without_try[]
1411 INIT(= N_("E606: :finally without :try"));
1412EXTERN char e_multiple_finally[]
1413 INIT(= N_("E607: multiple :finally"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001414EXTERN char e_cannot_throw_exceptions_with_vim_prefix[]
1415 INIT(= N_("E608: Cannot :throw exceptions with 'Vim' prefix"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001416#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001417#ifdef FEAT_CSCOPE
1418EXTERN char e_cscope_error_str[]
1419 INIT(= N_("E609: Cscope error: %s"));
1420#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001421EXTERN char e_no_argument_to_delete[]
1422 INIT(= N_("E610: No argument to delete"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001423#ifdef FEAT_EVAL
1424EXTERN char e_using_special_as_number[]
1425 INIT(= N_("E611: Using a Special as a Number"));
1426#endif
1427#ifdef FEAT_SIGNS
1428EXTERN char e_too_many_signs_defined[]
1429 INIT(= N_("E612: Too many signs defined"));
1430#endif
1431#ifdef FEAT_PRINTER
1432EXTERN char e_unknown_printer_font_str[]
1433 INIT(= N_("E613: Unknown printer font: %s"));
1434#endif
1435#ifdef FEAT_BROWSE
1436EXTERN char e_vim_selfile_cant_return_to_current_directory[]
1437 INIT(= N_("E614: vim_SelFile: can't return to current directory"));
1438EXTERN char e_vim_selfile_cant_get_current_directory[]
1439 INIT(= N_("E615: vim_SelFile: can't get current directory"));
1440EXTERN char e_vim_selfile_cant_get_font_str[]
1441 INIT(= N_("E616: vim_SelFile: can't get font %s"));
1442#endif
1443#ifdef FEAT_GUI_GTK
1444EXTERN char e_cannot_be_changed_in_gtk_GUI[]
1445 INIT(= N_("E617: Cannot be changed in the GTK GUI"));
1446#endif
1447#ifdef FEAT_POSTSCRIPT
1448EXTERN char e_file_str_is_not_postscript_resource_file[]
1449 INIT(= N_("E618: file \"%s\" is not a PostScript resource file"));
1450EXTERN char e_file_str_is_not_supported_postscript_resource_file[]
1451 INIT(= N_("E619: file \"%s\" is not a supported PostScript resource file"));
1452EXTERN char e_unable_to_convert_to_print_encoding_str[]
1453 INIT(= N_("E620: Unable to convert to print encoding \"%s\""));
1454EXTERN char e_str_resource_file_has_wrong_version[]
1455 INIT(= N_("E621: \"%s\" resource file has wrong version"));
1456#endif
1457#ifdef FEAT_CSCOPE
1458EXTERN char e_could_not_fork_for_cscope[]
1459 INIT(= N_("E622: Could not fork for cscope"));
1460EXTERN char e_could_not_spawn_cscope_process[]
1461 INIT(= N_("E623: Could not spawn cscope process"));
1462#endif
1463EXTERN char e_cant_open_file_str_3[]
1464 INIT(= N_("E624: Can't open file \"%s\""));
1465#ifdef FEAT_CSCOPE
1466EXTERN char e_cannot_open_cscope_database_str[]
1467 INIT(= N_("E625: cannot open cscope database: %s"));
1468EXTERN char e_cannot_get_cscope_database_information[]
1469 INIT(= N_("E626: cannot get cscope database information"));
1470#endif
1471#ifdef FEAT_NETBEANS_INTG
1472EXTERN char e_missing_colon_str[]
1473 INIT(= "E627: missing colon: %s");
1474EXTERN char e_missing_bang_or_slash_in_str[]
1475 INIT(= "E628: missing ! or / in: %s");
1476EXTERN char e_bad_return_from_nb_do_cmd[]
1477 INIT(= "E629: bad return from nb_do_cmd");
1478#endif
1479#ifdef FEAT_JOB_CHANNEL
1480EXTERN char e_str_write_while_not_connected[]
1481 INIT(= N_("E630: %s(): write while not connected"));
1482EXTERN char e_str_write_failed[]
1483 INIT(= N_("E631: %s(): write failed"));
1484#endif
1485#ifdef FEAT_NETBEANS_INTG
1486EXTERN char e_invalid_buffer_identifier_in_getlength[]
1487 INIT(= "E632: invalid buffer identifier in getLength");
1488EXTERN char e_invalid_buffer_identifier_in_gettext[]
1489 INIT(= "E633: invalid buffer identifier in getText");
1490EXTERN char e_invalid_buffer_identifier_in_remove[]
1491 INIT(= "E634: invalid buffer identifier in remove");
1492EXTERN char e_invalid_buffer_identifier_in_insert[]
1493 INIT(= "E635: invalid buffer identifier in insert");
1494EXTERN char e_invalid_buffer_identifier_in_create[]
1495 INIT(= "E636: invalid buffer identifier in create");
1496EXTERN char e_invalid_buffer_identifier_in_startdocumentlisten[]
1497 INIT(= "E637: invalid buffer identifier in startDocumentListen");
1498EXTERN char e_invalid_buffer_identifier_in_stopdocumentlisten[]
1499 INIT(= "E638: invalid buffer identifier in stopDocumentListen");
1500EXTERN char e_invalid_buffer_identifier_in_settitle[]
1501 INIT(= "E639: invalid buffer identifier in setTitle");
1502EXTERN char e_invalid_buffer_identifier_in_initdone[]
1503 INIT(= "E640: invalid buffer identifier in initDone");
1504EXTERN char e_invalid_buffer_identifier_in_setbuffernumber[]
1505 INIT(= "E641: invalid buffer identifier in setBufferNumber");
1506EXTERN char e_file_str_not_found_in_setbuffernumber[]
1507 INIT(= "E642: File %s not found in setBufferNumber");
1508EXTERN char e_invalid_buffer_identifier_in_setfullname[]
1509 INIT(= "E643: invalid buffer identifier in setFullName");
1510EXTERN char e_invalid_buffer_identifier_in_editfile[]
1511 INIT(= "E644: invalid buffer identifier in editFile");
1512EXTERN char e_invalid_buffer_identifier_in_setvisible[]
1513 INIT(= "E645: invalid buffer identifier in setVisible");
1514EXTERN char e_invalid_buffer_identifier_in_setmodified[]
1515 INIT(= "E646: invalid buffer identifier in setModified");
1516EXTERN char e_invalid_buffer_identifier_in_setdot[]
1517 INIT(= "E647: invalid buffer identifier in setDot");
1518EXTERN char e_invalid_buffer_identifier_in_close[]
1519 INIT(= "E648: invalid buffer identifier in close");
1520EXTERN char e_invalid_buffer_identifier_in_close_2[]
1521 INIT(= "E649: invalid buffer identifier in close");
1522EXTERN char e_invalid_buffer_identifier_in_defineannotype[]
1523 INIT(= "E650: invalid buffer identifier in defineAnnoType");
1524EXTERN char e_invalid_buffer_identifier_in_addanno[]
1525 INIT(= "E651: invalid buffer identifier in addAnno");
1526EXTERN char e_invalid_buffer_identifier_in_getanno[]
1527 INIT(= "E652: Invalid buffer identifier in getAnno");
1528#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001529// E653 unused
1530EXTERN char e_missing_delimiter_after_search_pattern_str[]
1531 INIT(= N_("E654: missing delimiter after search pattern: %s"));
1532EXTERN char e_too_many_symbolic_links_cycle[]
1533 INIT(= N_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001534#ifdef FEAT_NETBEANS_INTG
1535 // E656
1536EXTERN char e_netbeans_disallows_writes_of_unmodified_buffers[]
1537 INIT(= N_("NetBeans disallows writes of unmodified buffers"));
1538 // E657
1539EXTERN char e_partial_writes_disallowed_for_netbeans_buffers[]
1540 INIT(= N_("Partial writes disallowed for NetBeans buffers"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001541EXTERN char e_netbeans_connection_lost_for_buffer_nr[]
1542 INIT(= N_("E658: NetBeans connection lost for buffer %d"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001543#endif
1544#ifdef FEAT_PYTHON
1545EXTERN char e_cannot_invoke_python_recursively[]
1546 INIT(= N_("E659: Cannot invoke Python recursively"));
1547#endif
1548#ifdef FEAT_NETBEANS_INTG
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001549EXTERN char e_cannot_open_netbeans_connection_info_file[]
1550 INIT(= "E660: Cannot open NetBeans connection info file");
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001551#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001552#ifdef FEAT_MULTI_LANG
1553EXTERN char e_sorry_no_str_help_for_str[]
1554 INIT(= N_("E661: Sorry, no '%s' help for %s"));
1555#endif
1556EXTERN char e_at_start_of_changelist[]
1557 INIT(= N_("E662: At start of changelist"));
1558EXTERN char e_at_end_of_changelist[]
1559 INIT(= N_("E663: At end of changelist"));
1560EXTERN char e_changelist_is_empty[]
1561 INIT(= N_("E664: changelist is empty"));
1562#ifdef FEAT_GUI
1563EXTERN char e_cannot_start_gui_no_valid_font_found[]
1564 INIT(= N_("E665: Cannot start GUI, no valid font found"));
1565#endif
1566EXTERN char e_compiler_not_supported_str[]
1567 INIT(= N_("E666: compiler not supported: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001568#ifdef HAVE_FSYNC
1569EXTERN char e_fsync_failed[]
1570 INIT(= N_("E667: Fsync failed"));
1571#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001572#ifdef FEAT_NETBEANS_INTG
1573EXTERN char e_wrong_access_mode_for_netbeans_connection_info_file_str[]
1574 INIT(= N_("E668: Wrong access mode for NetBeans connection info file: \"%s\""));
1575#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001576EXTERN char e_unprintable_character_in_group_name[]
1577 INIT(= N_("E669: Unprintable character in group name"));
1578EXTERN char e_mix_of_help_file_encodings_within_language_str[]
1579 INIT(= N_("E670: Mix of help file encodings within a language: %s"));
1580#ifdef FEAT_GUI_MSWIN
1581EXTERN char e_cannot_find_window_title_str[]
1582 INIT(= N_("E671: Cannot find window title \"%s\""));
1583EXTERN char e_unable_to_open_window_inside_mdi_application[]
1584 INIT(= N_("E672: Unable to open window inside MDI application"));
1585#endif
1586EXTERN char e_incompatible_multi_byte_encoding_and_character_set[]
1587 INIT(= N_("E673: Incompatible multi-byte encoding and character set"));
1588EXTERN char e_printmbcharset_cannot_be_empty_with_multi_byte_encoding[]
1589 INIT(= N_("E674: printmbcharset cannot be empty with multi-byte encoding."));
1590EXTERN char e_no_default_font_specified_for_multi_byte_printing[]
1591 INIT(= N_("E675: No default font specified for multi-byte printing."));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001592EXTERN char e_no_matching_autocommands_for_acwrite_buffer[]
1593 INIT(= N_("E676: No matching autocommands for acwrite buffer"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001594EXTERN char e_error_writing_temp_file[]
1595 INIT(= N_("E677: Error writing temp file"));
1596EXTERN char e_invalid_character_after_str_2[]
1597 INIT(= N_("E678: Invalid character after %s%%[dxouU]"));
1598EXTERN char e_recursive_loop_loading_syncolor_vim[]
1599 INIT(= N_("E679: recursive loop loading syncolor.vim"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001600EXTERN char e_buffer_nr_invalid_buffer_number[]
1601 INIT(= N_("E680: <buffer=%d>: invalid buffer number"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001602EXTERN char e_buffer_is_not_loaded[]
1603 INIT(= N_("E681: Buffer is not loaded"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001604EXTERN char e_invalid_search_pattern_or_delimiter[]
1605 INIT(= N_("E682: Invalid search pattern or delimiter"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001606EXTERN char e_file_name_missing_or_invalid_pattern[]
1607 INIT(= N_("E683: File name missing or invalid pattern"));
Bram Moolenaar096ca732022-01-01 00:55:28 +00001608#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001609EXTERN char e_list_index_out_of_range_nr[]
1610 INIT(= N_("E684: list index out of range: %ld"));
1611#endif
1612EXTERN char e_internal_error_str[]
1613 INIT(= N_("E685: Internal error: %s"));
1614#ifdef FEAT_EVAL
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001615EXTERN char e_argument_of_str_must_be_list[]
1616 INIT(= N_("E686: Argument of %s must be a List"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001617EXTERN char e_less_targets_than_list_items[]
1618 INIT(= N_("E687: Less targets than List items"));
1619EXTERN char e_more_targets_than_list_items[]
1620 INIT(= N_("E688: More targets than List items"));
1621EXTERN char e_can_only_index_list_dictionary_or_blob[]
1622 INIT(= N_("E689: Can only index a List, Dictionary or Blob"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001623EXTERN char e_missing_in_after_for[]
1624 INIT(= N_("E690: Missing \"in\" after :for"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001625EXTERN char e_can_only_compare_list_with_list[]
1626 INIT(= N_("E691: Can only compare List with List"));
1627EXTERN char e_invalid_operation_for_list[]
1628 INIT(= N_("E692: Invalid operation for List"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001629// E693 unused
Bram Moolenaara6f79292022-01-04 21:30:47 +00001630EXTERN char e_invalid_operation_for_funcrefs[]
1631 INIT(= N_("E694: Invalid operation for Funcrefs"));
Bram Moolenaarf47c5a82021-12-19 15:17:21 +00001632EXTERN char e_cannot_index_a_funcref[]
1633 INIT(= N_("E695: Cannot index a Funcref"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001634EXTERN char e_missing_comma_in_list_str[]
1635 INIT(= N_("E696: Missing comma in List: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001636EXTERN char e_missing_end_of_list_rsb_str[]
1637 INIT(= N_("E697: Missing end of List ']': %s"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001638EXTERN char e_variable_nested_too_deep_for_making_copy[]
1639 INIT(= N_("E698: variable nested too deep for making a copy"));
1640EXTERN char e_too_many_arguments[]
1641 INIT(= N_("E699: Too many arguments"));
1642EXTERN char e_unknown_function_str_2[]
1643 INIT(= N_("E700: Unknown function: %s"));
1644EXTERN char e_invalid_type_for_len[]
1645 INIT(= N_("E701: Invalid type for len()"));
1646EXTERN char e_sort_compare_function_failed[]
1647 INIT(= N_("E702: Sort compare function failed"));
1648EXTERN char e_using_funcref_as_number[]
1649 INIT(= N_("E703: Using a Funcref as a Number"));
1650EXTERN char e_funcref_variable_name_must_start_with_capital_str[]
1651 INIT(= N_("E704: Funcref variable name must start with a capital: %s"));
1652EXTERN char e_variable_name_conflicts_with_existing_function_str[]
1653 INIT(= N_("E705: Variable name conflicts with existing function: %s"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001654// E706 unused
Bram Moolenaara6f79292022-01-04 21:30:47 +00001655EXTERN char e_function_name_conflicts_with_variable_str[]
1656 INIT(= N_("E707: Function name conflicts with variable: %s"));
1657EXTERN char e_slice_must_come_last[]
1658 INIT(= N_("E708: [:] must come last"));
1659EXTERN char e_slice_requires_list_or_blob_value[]
1660 INIT(= N_("E709: [:] requires a List or Blob value"));
Bram Moolenaar792f7862020-11-23 08:31:18 +01001661EXTERN char e_list_value_has_more_items_than_targets[]
1662 INIT(= N_("E710: List value has more items than targets"));
1663EXTERN char e_list_value_does_not_have_enough_items[]
1664 INIT(= N_("E711: List value does not have enough items"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001665EXTERN char e_argument_of_str_must_be_list_or_dictionary[]
1666 INIT(= N_("E712: Argument of %s must be a List or Dictionary"));
1667EXTERN char e_cannot_use_empty_key_for_dictionary[]
1668 INIT(= N_("E713: Cannot use empty key for Dictionary"));
1669EXTERN char e_list_required[]
1670 INIT(= N_("E714: List required"));
1671EXTERN char e_dictionary_required[]
1672 INIT(= N_("E715: Dictionary required"));
1673EXTERN char e_key_not_present_in_dictionary[]
1674 INIT(= N_("E716: Key not present in Dictionary: \"%s\""));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001675EXTERN char e_dictionary_entry_already_exists[]
1676 INIT(= N_("E717: Dictionary entry already exists"));
1677EXTERN char e_funcref_required[]
1678 INIT(= N_("E718: Funcref required"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02001679EXTERN char e_cannot_slice_dictionary[]
Bram Moolenaar77072282020-09-16 17:55:40 +02001680 INIT(= N_("E719: Cannot slice a Dictionary"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001681EXTERN char e_missing_colon_in_dictionary[]
1682 INIT(= N_("E720: Missing colon in Dictionary: %s"));
1683EXTERN char e_duplicate_key_in_dicitonary[]
1684 INIT(= N_("E721: Duplicate key in Dictionary: \"%s\""));
1685EXTERN char e_missing_comma_in_dictionary[]
1686 INIT(= N_("E722: Missing comma in Dictionary: %s"));
1687EXTERN char e_missing_dict_end[]
1688 INIT(= N_("E723: Missing end of Dictionary '}': %s"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001689EXTERN char e_variable_nested_too_deep_for_displaying[]
1690 INIT(= N_("E724: variable nested too deep for displaying"));
1691EXTERN char e_calling_dict_function_without_dictionary_str[]
1692 INIT(= N_("E725: Calling dict function without Dictionary: %s"));
1693EXTERN char e_stride_is_zero[]
1694 INIT(= N_("E726: Stride is zero"));
1695EXTERN char e_start_past_end[]
1696 INIT(= N_("E727: Start past end"));
1697EXTERN char e_using_dictionary_as_number[]
1698 INIT(= N_("E728: Using a Dictionary as a Number"));
1699EXTERN char e_using_funcref_as_string[]
1700 INIT(= N_("E729: Using a Funcref as a String"));
1701EXTERN char e_using_list_as_string[]
1702 INIT(= N_("E730: Using a List as a String"));
1703EXTERN char e_using_dictionary_as_string[]
1704 INIT(= N_("E731: Using a Dictionary as a String"));
1705EXTERN char e_using_endfor_with_while[]
1706 INIT(= N_("E732: Using :endfor with :while"));
1707EXTERN char e_using_endwhile_with_for[]
1708 INIT(= N_("E733: Using :endwhile with :for"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001709EXTERN char e_wrong_variable_type_for_str_equal[]
1710 INIT(= N_("E734: Wrong variable type for %s="));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001711EXTERN char e_can_only_compare_dictionary_with_dictionary[]
1712 INIT(= N_("E735: Can only compare Dictionary with Dictionary"));
1713EXTERN char e_invalid_operation_for_dictionary[]
1714 INIT(= N_("E736: Invalid operation for Dictionary"));
1715EXTERN char e_key_already_exists_str[]
1716 INIT(= N_("E737: Key already exists: %s"));
1717EXTERN char e_cant_list_variables_for_str[]
1718 INIT(= N_("E738: Can't list variables for %s"));
1719EXTERN char e_cannot_create_directory_str[]
1720 INIT(= N_("E739: Cannot create directory: %s"));
1721EXTERN char e_too_many_arguments_for_function_str_2[]
1722 INIT(= N_("E740: Too many arguments for function %s"));
Bram Moolenaar71b76852021-12-17 20:15:38 +00001723EXTERN char e_value_is_locked[]
1724 INIT(= N_("E741: Value is locked"));
1725EXTERN char e_value_is_locked_str[]
1726 INIT(= N_("E741: Value is locked: %s"));
1727EXTERN char e_cannot_change_value[]
1728 INIT(= N_("E742: Cannot change value"));
1729EXTERN char e_cannot_change_value_of_str[]
1730 INIT(= N_("E742: Cannot change value of %s"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001731EXTERN char e_variable_nested_too_deep_for_unlock[]
1732 INIT(= N_("E743: variable nested too deep for (un)lock"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001733#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001734#ifdef FEAT_NETBEANS_INTG
1735EXTERN char e_netbeans_does_not_allow_changes_in_read_only_files[]
1736 INIT(= N_("E744: NetBeans does not allow changes in read-only files"));
1737#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001738#ifdef FEAT_EVAL
1739EXTERN char e_using_list_as_number[]
1740 INIT(= N_("E745: Using a List as a Number"));
1741EXTERN char e_function_name_does_not_match_script_file_name_str[]
1742 INIT(= N_("E746: Function name does not match script file name: %s"));
1743#endif
1744EXTERN char e_cannot_change_directory_buffer_is_modified_add_bang_to_override[]
1745 INIT(= N_("E747: Cannot change directory, buffer is modified (add ! to override)"));
1746EXTERN char e_no_previously_used_register[]
1747 INIT(= N_("E748: No previously used register"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001748EXTERN char e_empty_buffer[]
1749 INIT(= N_("E749: empty buffer"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001750#ifdef FEAT_PROFILE
1751EXTERN char e_first_use_profile_start_fname[]
1752 INIT(= N_("E750: First use \":profile start {fname}\""));
1753#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001754#ifdef FEAT_SPELL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001755EXTERN char e_output_file_name_must_not_have_region_name[]
1756 INIT(= N_("E751: Output file name must not have region name"));
1757EXTERN char e_no_previous_spell_replacement[]
1758 INIT(= N_("E752: No previous spell replacement"));
1759EXTERN char e_not_found_str[]
1760 INIT(= N_("E753: Not found: %s"));
1761EXTERN char e_only_up_to_nr_regions_supported[]
1762 INIT(= N_("E754: Only up to %d regions supported"));
1763EXTERN char e_invalid_region_in_str[]
1764 INIT(= N_("E755: Invalid region in %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001765EXTERN char e_spell_checking_is_not_possible[]
1766 INIT(= N_("E756: Spell checking is not possible"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001767EXTERN char e_this_does_not_look_like_spell_file[]
1768 INIT(= N_("E757: This does not look like a spell file"));
1769EXTERN char e_truncated_spell_file[]
1770 INIT(= N_("E758: Truncated spell file"));
1771EXTERN char e_format_error_in_spell_file[]
1772 INIT(= N_("E759: Format error in spell file"));
1773EXTERN char e_no_word_count_in_str[]
1774 INIT(= N_("E760: No word count in %s"));
1775EXTERN char e_format_error_in_affix_file_fol_low_or_upp[]
1776 INIT(= N_("E761: Format error in affix file FOL, LOW or UPP"));
1777EXTERN char e_character_in_fol_low_or_upp_is_out_of_range[]
1778 INIT(= N_("E762: Character in FOL, LOW or UPP is out of range"));
1779EXTERN char e_word_characters_differ_between_spell_files[]
1780 INIT(= N_("E763: Word characters differ between spell files"));
Bram Moolenaare60b3c42022-01-05 20:40:34 +00001781#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001782#if defined(FEAT_SYN_HL) || defined(FEAT_COMPL_FUNC)
1783EXTERN char e_option_str_is_not_set[]
1784 INIT(= N_("E764: Option '%s' is not set"));
1785#endif
Bram Moolenaare60b3c42022-01-05 20:40:34 +00001786#ifdef FEAT_SPELL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001787EXTERN char e_spellfile_does_not_have_nr_entries[]
1788 INIT(= N_("E765: 'spellfile' does not have %d entries"));
1789#endif
1790EXTERN char e_insufficient_arguments_for_printf[]
1791 INIT(= N_("E766: Insufficient arguments for printf()"));
1792EXTERN char e_too_many_arguments_to_printf[]
1793 INIT(= N_("E767: Too many arguments for printf()"));
1794EXTERN char e_swap_file_exists_str_silent_overrides[]
1795 INIT(= N_("E768: Swap file exists: %s (:silent! overrides)"));
1796EXTERN char e_missing_rsb_after_str_lsb[]
1797 INIT(= N_("E769: Missing ] after %s["));
1798#ifdef FEAT_SPELL
1799EXTERN char e_unsupported_section_in_spell_file[]
1800 INIT(= N_("E770: Unsupported section in spell file"));
1801EXTERN char e_old_spell_file_needs_to_be_updated[]
1802 INIT(= N_("E771: Old spell file, needs to be updated"));
1803EXTERN char e_spell_file_is_for_newer_version_of_vim[]
1804 INIT(= N_("E772: Spell file is for newer version of Vim"));
1805#endif
1806EXTERN char e_symlink_loop_for_str[]
1807 INIT(= N_("E773: Symlink loop for \"%s\""));
1808EXTERN char e_operatorfunc_is_empty[]
1809 INIT(= N_("E774: 'operatorfunc' is empty"));
1810#ifndef FEAT_EVAL
1811EXTERN char e_eval_feature_not_available[]
1812 INIT(= N_("E775: Eval feature not available"));
1813#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001814#ifdef FEAT_QUICKFIX
1815EXTERN char e_no_location_list[]
1816 INIT(= N_("E776: No location list"));
1817#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001818EXTERN char e_string_or_list_expected[]
1819 INIT(= N_("E777: String or List expected"));
1820#ifdef FEAT_SPELL
1821EXTERN char e_this_does_not_look_like_sug_file_str[]
1822 INIT(= N_("E778: This does not look like a .sug file: %s"));
1823EXTERN char e_old_sug_file_needs_to_be_updated_str[]
1824 INIT(= N_("E779: Old .sug file, needs to be updated: %s"));
1825EXTERN char e_sug_file_is_for_newer_version_of_vim_str[]
1826 INIT(= N_("E780: .sug file is for newer version of Vim: %s"));
1827EXTERN char e_sug_file_doesnt_match_spl_file_str[]
1828 INIT(= N_("E781: .sug file doesn't match .spl file: %s"));
1829EXTERN char e_error_while_reading_sug_file_str[]
1830 INIT(= N_("E782: error while reading .sug file: %s"));
1831EXTERN char e_duplicate_char_in_map_entry[]
1832 INIT(= N_("E783: duplicate char in MAP entry"));
1833#endif
1834EXTERN char e_cannot_close_last_tab_page[]
1835 INIT(= N_("E784: Cannot close last tab page"));
1836EXTERN char e_complete_can_only_be_used_in_insert_mode[]
1837 INIT(= N_("E785: complete() can only be used in Insert mode"));
1838EXTERN char e_range_not_allowed[]
1839 INIT(= N_("E786: Range not allowed"));
1840EXTERN char e_buffer_changed_unexpectedly[]
1841 INIT(= N_("E787: Buffer changed unexpectedly"));
1842EXTERN char e_not_allowed_to_edit_another_buffer_now[]
1843 INIT(= N_("E788: Not allowed to edit another buffer now"));
1844EXTERN char e_error_missing_rsb_str[]
1845 INIT(= N_("E789: Missing ']': %s"));
1846EXTERN char e_undojoin_is_not_allowed_after_undo[]
1847 INIT(= N_("E790: undojoin is not allowed after undo"));
1848EXTERN char e_empty_keymap_entry[]
1849 INIT(= N_("E791: Empty keymap entry"));
1850EXTERN char e_empty_menu_name[]
1851 INIT(= N_("E792: Empty menu name"));
1852#ifdef FEAT_DIFF
1853EXTERN char e_no_other_buffer_in_diff_mode_is_modifiable[]
1854 INIT(= N_("E793: No other buffer in diff mode is modifiable"));
1855#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001856#ifdef FEAT_EVAL
Bram Moolenaar71b76852021-12-17 20:15:38 +00001857EXTERN char e_cannot_set_variable_in_sandbox[]
1858 INIT(= N_("E794: Cannot set variable in the sandbox"));
1859EXTERN char e_cannot_set_variable_in_sandbox_str[]
1860 INIT(= N_("E794: Cannot set variable in the sandbox: \"%s\""));
1861EXTERN char e_cannot_delete_variable[]
1862 INIT(= N_("E795: Cannot delete variable"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001863EXTERN char e_cannot_delete_variable_str[]
1864 INIT(= N_("E795: Cannot delete variable %s"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001865 // E796
1866EXTERN char e_writing_to_device_disabled_with_opendevice_option[]
1867 INIT(= N_("writing to device disabled with 'opendevice' option"));
zeertzjq09f77232021-10-20 17:21:24 +01001868#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001869#ifdef FEAT_SPELL
1870EXTERN char e_spellfilemising_autocommand_deleted_buffer[]
1871 INIT(= N_("E797: SpellFileMissing autocommand deleted buffer"));
1872#endif
1873EXTERN char e_id_is_reserved_for_match_nr[]
1874 INIT(= N_("E798: ID is reserved for \":match\": %d"));
Bram Moolenaarbb8cac52022-01-05 18:16:53 +00001875EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_1[]
1876 INIT(= N_("E799: Invalid ID: %d (must be greater than or equal to 1)"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001877#ifndef FEAT_ARABIC
1878EXTERN char e_arabic_cannot_be_used_not_enabled_at_compile_time[]
1879 INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n"));
1880#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001881EXTERN char e_id_already_taken_nr[]
1882 INIT(= N_("E801: ID already taken: %d"));
Bram Moolenaarbb8cac52022-01-05 18:16:53 +00001883EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_2[]
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001884 INIT(= N_("E802: Invalid ID: %d (must be greater than or equal to 1)"));
1885EXTERN char e_id_not_found_nr[]
1886 INIT(= N_("E803: ID not found: %d"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001887#ifdef FEAT_EVAL
1888EXTERN char e_cannot_use_percent_with_float[]
1889 INIT(= N_("E804: Cannot use '%' with Float"));
1890#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001891#ifdef FEAT_FLOAT
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001892EXTERN char e_using_float_as_number[]
1893 INIT(= N_("E805: Using a Float as a Number"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001894EXTERN char e_using_float_as_string[]
1895 INIT(= N_("E806: using Float as a String"));
1896#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001897#ifdef FEAT_FLOAT
1898EXTERN char e_expected_float_argument_for_printf[]
1899 INIT(= N_("E807: Expected Float argument for printf()"));
1900#endif
1901#if defined(FEAT_EVAL) && defined(FEAT_FLOAT)
1902EXTERN char e_number_or_float_required[]
1903 INIT(= N_("E808: Number or Float required"));
1904#endif
1905#ifndef FEAT_EVAL
1906EXTERN char e_hashsmall_is_not_available_without_the_eval_feature[]
1907 INIT(= N_("E809: #< is not available without the +eval feature"));
1908#endif
1909EXTERN char e_cannot_read_or_write_temp_files[]
1910 INIT(= N_("E810: Cannot read or write temp files"));
1911EXTERN char e_not_allowed_to_change_buffer_information_now[]
1912 INIT(= N_("E811: Not allowed to change buffer information now"));
1913EXTERN char e_autocommands_changed_buffer_or_buffer_name[]
1914 INIT(= N_("E812: Autocommands changed buffer or buffer name"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001915EXTERN char e_cannot_close_autocmd_or_popup_window[]
1916 INIT(= N_("E813: Cannot close autocmd or popup window"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001917EXTERN char e_cannot_close_window_only_autocmd_window_would_remain[]
1918 INIT(= N_("E814: Cannot close window, only autocmd window would remain"));
1919#ifdef FEAT_MZSCHEME
1920EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_libraries_could_not_be_loaded[]
1921 INIT(= N_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded."));
1922#endif
1923EXTERN char e_cannot_read_patch_output[]
1924 INIT(= N_("E816: Cannot read patch output"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001925EXTERN char e_blowfish_big_little_endian_use_wrong[]
1926 INIT(= N_("E817: Blowfish big/little endian use wrong"));
1927EXTERN char e_sha256_test_failed[]
1928 INIT(= N_("E818: sha256 test failed"));
1929EXTERN char e_blowfish_test_failed[]
1930 INIT(= N_("E819: Blowfish test failed"));
1931EXTERN char e_sizeof_uint32_isnot_four[]
1932 INIT(= N_("E820: sizeof(uint32_t) != 4"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001933EXTERN char e_file_is_encrypted_with_unknown_method[]
1934 INIT(= N_("E821: File is encrypted with unknown method"));
1935EXTERN char e_cannot_open_undo_file_for_reading_str[]
1936 INIT(= N_("E822: Cannot open undo file for reading: %s"));
1937EXTERN char e_not_an_undo_file_str[]
1938 INIT(= N_("E823: Not an undo file: %s"));
1939EXTERN char e_incompatible_undo_file_str[]
1940 INIT(= N_("E824: Incompatible undo file: %s"));
1941EXTERN char e_corrupted_undo_file_str_str[]
1942 INIT(= N_("E825: Corrupted undo file (%s): %s"));
1943EXTERN char e_undo_file_decryption_failed[]
1944 INIT(= N_("E826: Undo file decryption failed: %s"));
1945EXTERN char e_undo_file_is_encrypted_str[]
1946 INIT(= N_("E827: Undo file is encrypted: %s"));
1947EXTERN char e_cannot_open_undo_file_for_writing_str[]
1948 INIT(= N_("E828: Cannot open undo file for writing: %s"));
1949EXTERN char e_write_error_in_undo_file_str[]
1950 INIT(= N_("E829: write error in undo file: %s"));
1951EXTERN char e_undo_number_nr_not_found[]
1952 INIT(= N_("E830: Undo number %ld not found"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001953EXTERN char e_bf_key_init_called_with_empty_password[]
1954 INIT(= N_("E831: bf_key_init() called with empty password"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001955EXTERN char e_non_encrypted_file_has_encrypted_undo_file[]
1956 INIT(= N_("E832: Non-encrypted file has encrypted undo file: %s"));
1957EXTERN char e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption[]
1958 INIT(= N_("E833: %s is encrypted and this version of Vim does not support encryption"));
zeertzjq94358a12021-10-20 11:01:15 +01001959EXTERN char e_conflicts_with_value_of_listchars[]
1960 INIT(= N_("E834: Conflicts with value of 'listchars'"));
1961EXTERN char e_conflicts_with_value_of_fillchars[]
1962 INIT(= N_("E835: Conflicts with value of 'fillchars'"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001963EXTERN char e_this_vim_cannot_execute_python_after_using_py3[]
1964 INIT(= N_("E836: This Vim cannot execute :python after using :py3"));
1965EXTERN char e_this_vim_cannot_execute_py3_after_using_python[]
1966 INIT(= N_("E837: This Vim cannot execute :py3 after using :python"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001967#ifdef FEAT_NETBEANS_INTG
1968EXTERN char e_netbeans_is_not_supported_with_this_GUI[]
1969 INIT(= N_("E838: netbeans is not supported with this GUI"));
1970#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001971// E839 unused
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001972# ifdef FEAT_COMPL_FUNC
1973EXTERN char e_complete_function_deleted_text[]
1974 INIT(= N_("E840: Completion function deleted text"));
1975# endif
1976EXTERN char e_reserved_name_cannot_be_used_for_user_defined_command[]
1977 INIT(= N_("E841: Reserved name, cannot be used for user defined command"));
1978EXTERN char e_no_line_number_to_use_for_slnum[]
1979 INIT(= N_("E842: no line number to use for \"<slnum>\""));
1980EXTERN char e_error_while_updating_swap_file_crypt[]
1981 INIT(= N_("E843: Error while updating swap file crypt"));
1982EXTERN char e_invalid_cchar_value[]
1983 INIT(= N_("E844: invalid cchar value"));
1984#ifdef FEAT_SPELL
1985EXTERN char e_insufficient_memory_word_list_will_be_incomplete[]
1986 INIT(= N_("E845: Insufficient memory, word list will be incomplete"));
1987#endif
1988EXTERN char e_key_code_not_set[]
1989 INIT(= N_("E846: Key code not set"));
1990EXTERN char e_too_many_syntax_includes[]
1991 INIT(= N_("E847: Too many syntax includes"));
1992EXTERN char e_too_many_syntax_clusters[]
1993 INIT(= N_("E848: Too many syntax clusters"));
1994EXTERN char e_too_many_highlight_and_syntax_groups[]
1995 INIT(= N_("E849: Too many highlight and syntax groups"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001996#ifndef FEAT_CLIPBOARD
1997EXTERN char e_invalid_register_name[]
1998 INIT(= N_("E850: Invalid register name"));
1999#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002000#ifdef FEAT_GUI
2001EXTERN char e_failed_to_create_new_process_for_GUI[]
2002 INIT(= N_("E851: Failed to create a new process for the GUI"));
2003EXTERN char e_the_child_process_failed_to_start_GUI[]
2004 INIT(= N_("E852: The child process failed to start the GUI"));
2005#endif
2006EXTERN char e_duplicate_argument_name_str[]
2007 INIT(= N_("E853: Duplicate argument name: %s"));
2008EXTERN char e_path_too_long_for_completion[]
2009 INIT(= N_("E854: path too long for completion"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002010EXTERN char e_autocommands_caused_command_to_abort[]
2011 INIT(= N_("E855: Autocommands caused command to abort"));
zeertzjq09f77232021-10-20 17:21:24 +01002012#ifdef FEAT_EVAL
Bram Moolenaar44d66522020-09-06 22:26:57 +02002013EXTERN char e_assert_fails_second_arg[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002014 INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002015EXTERN char e_dictionary_key_str_required[]
2016 INIT(= N_("E857: Dictionary key \"%s\" required"));
2017#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002018#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2019EXTERN char e_eval_did_not_return_valid_python_object[]
2020 INIT(= N_("E858: Eval did not return a valid python object"));
2021EXTERN char e_failed_to_convert_returned_python_object_to_vim_value[]
2022 INIT(= N_("E859: Failed to convert returned python object to a Vim value"));
2023#endif
2024EXTERN char e_need_id_and_type_with_both[]
2025 INIT(= N_("E860: Need 'id' and 'type' with 'both'"));
2026EXTERN char e_cannot_open_second_popup_with_terminal[]
2027 INIT(= N_("E861: Cannot open a second popup with a terminal"));
2028EXTERN char e_cannot_use_g_here[]
2029 INIT(= N_("E862: Cannot use g: here"));
2030EXTERN char e_not_allowed_for_terminal_in_popup_window[]
2031 INIT(= N_("E863: Not allowed for a terminal in a popup window"));
2032EXTERN char e_percent_hash_can_only_be_followed_by_zero_one_two_automatic_engine_will_be_used[]
2033 INIT(= N_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used"));
2034EXTERN char e_nfa_regexp_end_encountered_prematurely[]
2035 INIT(= N_("E865: (NFA) Regexp end encountered prematurely"));
2036EXTERN char e_nfa_regexp_misplaced_chr[]
2037 INIT(= N_("E866: (NFA regexp) Misplaced %c"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002038EXTERN char e_nfa_regexp_unknown_operator_z_chr[]
2039 INIT(= N_("E867: (NFA regexp) Unknown operator '\\z%c'"));
2040EXTERN char e_nfa_regexp_unknown_operator_percent_chr[]
2041 INIT(= N_("E867: (NFA regexp) Unknown operator '\\%%%c'"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002042EXTERN char e_error_building_nfa_with_equivalence_class[]
2043 INIT(= N_("E868: Error building NFA with equivalence class!"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002044EXTERN char e_nfa_regexp_unknown_operator_at_chr[]
2045 INIT(= N_("E869: (NFA regexp) Unknown operator '\\@%c'"));
2046EXTERN char e_nfa_regexp_error_reading_repetition_limits[]
2047 INIT(= N_("E870: (NFA regexp) Error reading repetition limits"));
2048EXTERN char e_nfa_regexp_cant_have_multi_follow_multi[]
2049 INIT(= N_("E871: (NFA regexp) Can't have a multi follow a multi"));
2050EXTERN char e_nfa_regexp_too_many_parens[]
2051 INIT(= N_("E872: (NFA regexp) Too many '('"));
2052EXTERN char e_nfa_regexp_proper_termination_error[]
2053 INIT(= N_("E873: (NFA regexp) proper termination error"));
2054EXTERN char e_nfa_regexp_could_not_pop_stack[]
2055 INIT(= N_("E874: (NFA regexp) Could not pop the stack!"));
2056EXTERN char e_nfa_regexp_while_converting_from_postfix_to_nfa_too_many_stats_left_on_stack[]
2057 INIT(= N_("E875: (NFA regexp) (While converting from postfix to NFA), too many states left on stack"));
2058EXTERN char e_nfa_regexp_not_enough_space_to_store_whole_nfa[]
2059 INIT(= N_("E876: (NFA regexp) Not enough space to store the whole NFA"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002060EXTERN char e_nfa_regexp_invalid_character_class_nr[]
2061 INIT(= N_("E877: (NFA regexp) Invalid character class: %d"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002062EXTERN char e_nfa_regexp_could_not_allocate_memory_for_branch_traversal[]
2063 INIT(= N_("E878: (NFA regexp) Could not allocate memory for branch traversal!"));
2064EXTERN char e_nfa_regexp_too_many_z[]
2065 INIT(= N_("E879: (NFA regexp) Too many \\z("));
2066#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2067EXTERN char e_cant_handle_systemexit_of_python_exception_in_vim[]
2068 INIT(= N_("E880: Can't handle SystemExit of python exception in vim"));
2069#endif
2070EXTERN char e_line_count_changed_unexpectedly[]
2071 INIT(= N_("E881: Line count changed unexpectedly"));
2072EXTERN char e_uniq_compare_function_failed[]
2073 INIT(= N_("E882: Uniq compare function failed"));
2074EXTERN char e_search_pattern_and_expression_register_may_not_contain_two_or_more_lines[]
2075 INIT(= N_("E883: search pattern and expression register may not contain two or more lines"));
2076EXTERN char e_function_name_cannot_contain_colon_str[]
2077 INIT(= N_("E884: Function name cannot contain a colon: %s"));
2078EXTERN char e_not_possible_to_change_sign_str[]
2079 INIT(= N_("E885: Not possible to change sign %s"));
2080EXTERN char e_cant_rename_viminfo_file_to_str[]
2081 INIT(= N_("E886: Can't rename viminfo file to %s!"));
2082EXTERN char e_sorry_this_command_is_disabled_python_side_module_could_not_be_loaded[]
2083 INIT(= N_("E887: Sorry, this command is disabled, the Python's site module could not be loaded."));
2084EXTERN char e_nfa_regexp_cannot_repeat_str[]
2085 INIT(= N_("E888: (NFA regexp) cannot repeat %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002086#ifdef FEAT_PROP_POPUP
2087EXTERN char e_number_required[]
2088 INIT(= N_("E889: Number required"));
2089#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002090EXTERN char e_trailing_char_after_rsb_str_str[]
2091 INIT(= N_("E890: trailing char after ']': %s]%s"));
2092#ifdef FEAT_FLOAT
2093EXTERN char e_using_funcref_as_float[]
2094 INIT(= N_("E891: Using a Funcref as a Float"));
2095EXTERN char e_using_string_as_float[]
2096 INIT(= N_("E892: Using a String as a Float"));
2097EXTERN char e_using_list_as_float[]
2098 INIT(= N_("E893: Using a List as a Float"));
2099EXTERN char e_using_dictionary_as_float[]
2100 INIT(= N_("E894: Using a Dictionary as a Float"));
2101#endif
2102#ifdef FEAT_MZSCHEME
2103EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_racket_base_module_could_not_be_loaded[]
2104 INIT(= N_("E895: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded."));
2105#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002106#ifdef FEAT_EVAL
2107EXTERN char e_argument_of_str_must_be_list_dictionary_or_blob[]
2108 INIT(= N_("E896: Argument of %s must be a List, Dictionary or Blob"));
2109EXTERN char e_list_or_blob_required[]
2110 INIT(= N_("E897: List or Blob required"));
2111#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002112EXTERN char e_socket_in_channel_connect[]
2113 INIT(= N_("E898: socket() in channel_connect()"));
2114EXTERN char e_argument_of_str_must_be_list_or_blob[]
2115 INIT(= N_("E899: Argument of %s must be a List or Blob"));
2116EXTERN char e_maxdepth_must_be_non_negative_number[]
2117 INIT(= N_("E900: maxdepth must be non-negative number"));
2118#ifdef FEAT_JOB_CHANNEL
2119EXTERN char e_getaddrinfo_in_channel_open_str[]
2120 INIT(= N_("E901: getaddrinfo() in channel_open(): %s"));
2121EXTERN char e_gethostbyname_in_channel_open[]
2122 INIT(= N_("E901: gethostbyname() in channel_open()"));
2123EXTERN char e_cannot_connect_to_port[]
2124 INIT(= N_("E902: Cannot connect to port"));
2125EXTERN char e_received_command_with_non_string_argument[]
2126 INIT(= N_("E903: received command with non-string argument"));
2127EXTERN char e_last_argument_for_expr_call_must_be_number[]
2128 INIT(= N_("E904: last argument for expr/call must be a number"));
2129EXTERN char e_third_argument_for_call_must_be_list[]
2130 INIT(= N_("E904: third argument for call must be a list"));
2131EXTERN char e_received_unknown_command_str[]
2132 INIT(= N_("E905: received unknown command: %s"));
2133EXTERN char e_not_an_open_channel[]
2134 INIT(= N_("E906: not an open channel"));
2135#endif
2136#ifdef FEAT_FLOAT
2137EXTERN char e_using_special_value_as_float[]
2138 INIT(= N_("E907: Using a special value as a Float"));
2139#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002140#ifdef FEAT_EVAL
Bram Moolenaar68db9962021-05-09 23:19:22 +02002141EXTERN char e_using_invalid_value_as_string_str[]
2142 INIT(= N_("E908: using an invalid value as a String: %s"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002143EXTERN char e_cannot_index_special_variable[]
2144 INIT(= N_("E909: Cannot index a special variable"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002145#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002146#ifdef FEAT_JOB_CHANNEL
2147EXTERN char e_using_job_as_number[]
2148 INIT(= N_("E910: Using a Job as a Number"));
2149EXTERN char e_using_job_as_float[]
2150 INIT(= N_("E911: Using a Job as a Float"));
2151EXTERN char e_cannot_use_evalexpr_sendexpr_with_raw_or_nl_channel[]
2152 INIT(= N_("E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"));
2153EXTERN char e_using_channel_as_number[]
2154 INIT(= N_("E913: Using a Channel as a Number"));
2155EXTERN char e_using_channel_as_float[]
2156 INIT(= N_("E914: Using a Channel as a Float"));
2157#endif
2158EXTERN char e_in_io_buffer_requires_in_buf_or_in_name_to_be_set[]
2159 INIT(= N_("E915: in_io buffer requires in_buf or in_name to be set"));
2160
2161EXTERN char e_not_valid_job[]
2162 INIT(= N_("E916: not a valid job"));
2163EXTERN char e_cannot_use_callback_with_str[]
2164 INIT(= N_("E917: Cannot use a callback with %s()"));
2165EXTERN char e_buffer_must_be_loaded_str[]
2166 INIT(= N_("E918: buffer must be loaded: %s"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002167EXTERN char e_directory_not_found_in_str_str[]
2168 INIT(= N_("E919: Directory not found in '%s': \"%s\""));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002169EXTERN char e_io_file_requires_name_to_be_set[]
2170 INIT(= N_("E920: _io file requires _name to be set"));
2171EXTERN char e_invalid_callback_argument[]
2172 INIT(= N_("E921: Invalid callback argument"));
2173EXTERN char e_expected_dict[]
2174 INIT(= N_("E922: expected a dict"));
2175EXTERN char e_second_argument_of_function_must_be_list_or_dict[]
2176 INIT(= N_("E923: Second argument of function() must be a list or a dict"));
2177EXTERN char e_current_window_was_closed[]
2178 INIT(= N_("E924: Current window was closed"));
2179EXTERN char e_current_quickfix_list_was_changed[]
2180 INIT(= N_("E925: Current quickfix list was changed"));
2181EXTERN char e_current_location_list_was_changed[]
2182 INIT(= N_("E926: Current location list was changed"));
2183EXTERN char e_invalid_action_str_1[]
2184 INIT(= N_("E927: Invalid action: '%s'"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002185#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002186EXTERN char e_string_required[]
2187 INIT(= N_("E928: String required"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002188#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002189EXTERN char e_too_many_viminfo_temp_files_like_str[]
2190 INIT(= N_("E929: Too many viminfo temp files, like %s!"));
2191EXTERN char e_cannot_use_redir_inside_execute[]
2192 INIT(= N_("E930: Cannot use :redir inside execute()"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002193EXTERN char e_buffer_cannot_be_registered[]
2194 INIT(= N_("E931: Buffer cannot be registered"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002195#ifdef FEAT_EVAL
Bram Moolenaara6f79292022-01-04 21:30:47 +00002196EXTERN char e_closure_function_should_not_be_at_top_level[]
2197 INIT(= N_("E932: Closure function should not be at top level: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002198EXTERN char e_function_was_deleted_str[]
2199 INIT(= N_("E933: Function was deleted: %s"));
2200#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002201EXTERN char e_cannot_jump_to_buffer_that_does_not_have_name[]
2202 INIT(= N_("E934: Cannot jump to a buffer that does not have a name"));
2203EXTERN char e_invalid_submatch_number_nr[]
2204 INIT(= N_("E935: invalid submatch number: %d"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002205EXTERN char e_cannot_delete_current_group[]
2206 INIT(= N_("E936: Cannot delete the current group"));
2207EXTERN char e_attempt_to_delete_buffer_that_is_in_use_str[]
2208 INIT(= N_("E937: Attempt to delete a buffer that is in use: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002209EXTERN char e_duplicate_key_in_json_str[]
2210 INIT(= N_("E938: Duplicate key in JSON: \"%s\""));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002211EXTERN char e_positive_count_required[]
2212 INIT(= N_("E939: Positive count required"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00002213#ifdef FEAT_EVAL
2214EXTERN char e_cannot_lock_or_unlock_variable_str[]
2215 INIT(= N_("E940: Cannot lock or unlock variable %s"));
2216#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002217EXTERN char e_already_started_server[]
2218 INIT(= N_("E941: already started a server"));
2219EXTERN char e_clientserver_feature_not_available[]
2220 INIT(= N_("E942: +clientserver feature not available"));
2221EXTERN char e_command_table_needs_to_be_updated_run_make_cmdidxs[]
2222 INIT(= N_("E943: Command table needs to be updated, run 'make cmdidxs'"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00002223EXTERN char e_reverse_range_in_character_class[]
2224 INIT(= N_("E944: Reverse range in character class"));
2225EXTERN char e_range_too_large_in_character_class[]
2226 INIT(= N_("E945: Range too large in character class"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002227EXTERN char e_cannot_make_terminal_with_running_job_modifiable[]
2228 INIT(= N_("E946: Cannot make a terminal with running job modifiable"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002229#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002230EXTERN char e_job_still_running_in_buffer_str[]
2231 INIT(= N_("E947: Job still running in buffer \"%s\""));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002232EXTERN char e_job_still_running[]
2233 INIT(= N_("E948: Job still running"));
2234EXTERN char e_job_still_running_add_bang_to_end_the_job[]
2235 INIT(= N_("E948: Job still running (add ! to end the job)"));
Bram Moolenaar096ca732022-01-01 00:55:28 +00002236#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002237EXTERN char e_file_changed_while_writing[]
2238 INIT(= N_("E949: File changed while writing"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002239EXTERN char e_cannot_convert_between_str_and_str[]
2240 INIT(= N_("E950: Cannot convert between %s and %s"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002241EXTERN char e_percent_value_too_large[]
2242 INIT(= N_("E951: \\% value too large"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002243EXTERN char e_autocommand_caused_recursive_behavior[]
2244 INIT(= N_("E952: Autocommand caused recursive behavior"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002245EXTERN char e_file_exists_str[]
2246 INIT(= N_("E953: File exists: %s"));
2247EXTERN char e_24_bit_colors_are_not_supported_on_this_environment[]
2248 INIT(= N_("E954: 24-bit colors are not supported on this environment"));
2249EXTERN char e_not_terminal_buffer[]
2250 INIT(= N_("E955: Not a terminal buffer"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00002251EXTERN char e_cannot_use_pattern_recursively[]
2252 INIT(= N_("E956: Cannot use pattern recursively"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00002253EXTERN char e_invalid_window_number[]
2254 INIT(= N_("E957: Invalid window number"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002255EXTERN char e_job_already_finished[]
2256 INIT(= N_("E958: Job already finished"));
2257EXTERN char e_invalid_diff_format[]
2258 INIT(= N_("E959: Invalid diff format."));
2259EXTERN char e_problem_creating_internal_diff[]
2260 INIT(= N_("E960: Problem creating the internal diff"));
2261EXTERN char e_no_line_number_to_use_for_sflnum[]
2262 INIT(= N_("E961: no line number to use for \"<sflnum>\""));
2263EXTERN char e_invalid_action_str_2[]
2264 INIT(= N_("E962: Invalid action: '%s'"));
2265EXTERN char e_setting_str_to_value_with_wrong_type[]
2266 INIT(= N_("E963: setting %s to value with wrong type"));
Bram Moolenaar8dac2ac2021-12-27 20:57:06 +00002267EXTERN char_u e_invalid_column_number_nr[]
2268 INIT(= N_("E964: Invalid column number: %ld"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002269EXTERN char e_missing_property_type_name[]
2270 INIT(= N_("E965: missing property type name"));
Bram Moolenaar8dac2ac2021-12-27 20:57:06 +00002271EXTERN char_u e_invalid_line_number_nr[]
2272 INIT(= N_("E966: Invalid line number: %ld"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002273EXTERN char e_text_property_info_corrupted[]
2274 INIT(= N_("E967: text property info corrupted"));
2275EXTERN char e_need_at_least_one_of_id_or_type[]
2276 INIT(= N_("E968: Need at least one of 'id' or 'type'"));
2277EXTERN char e_property_type_str_already_defined[]
2278 INIT(= N_("E969: Property type %s already defined"));
2279EXTERN char e_unknown_highlight_group_name_str[]
2280 INIT(= N_("E970: Unknown highlight group name: '%s'"));
2281EXTERN char e_type_not_exist[]
2282 INIT(= N_("E971: Property type %s does not exist"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002283EXTERN char e_blob_value_does_not_have_right_number_of_bytes[]
2284 INIT(= N_("E972: Blob value does not have the right number of bytes"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002285EXTERN char e_blob_literal_should_have_an_even_number_of_hex_characters[]
2286 INIT(= N_("E973: Blob literal should have an even number of hex characters"));
2287EXTERN char e_using_blob_as_number[]
2288 INIT(= N_("E974: Using a Blob as a Number"));
2289EXTERN char e_using_blob_as_float[]
2290 INIT(= N_("E975: Using a Blob as a Float"));
2291EXTERN char e_using_blob_as_string[]
2292 INIT(= N_("E976: Using a Blob as a String"));
2293EXTERN char e_can_only_compare_blob_with_blob[]
2294 INIT(= N_("E977: Can only compare Blob with Blob"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002295#ifdef FEAT_EVAL
2296EXTERN char e_invalid_operation_for_blob[]
2297 INIT(= N_("E978: Invalid operation for Blob"));
2298EXTERN char e_blob_index_out_of_range_nr[]
2299 INIT(= N_("E979: Blob index out of range: %ld"));
2300#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002301EXTERN char e_lowlevel_input_not_supported[]
2302 INIT(= N_("E980: lowlevel input not supported"));
2303EXTERN char e_command_not_allowed_in_rvim[]
2304 INIT(= N_("E981: Command not allowed in rvim"));
2305EXTERN char e_conpty_is_not_available[]
2306 INIT(= N_("E982: ConPTY is not available"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002307EXTERN char e_duplicate_argument_str[]
2308 INIT(= N_("E983: Duplicate argument: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002309EXTERN char e_scriptversion_used_outside_of_sourced_file[]
2310 INIT(= N_("E984: :scriptversion used outside of a sourced file"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002311#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002312EXTERN char e_dot_equal_not_supported_with_script_version_two[]
2313 INIT(= N_("E985: .= is not supported with script version >= 2"));
2314EXTERN char e_cannot_modify_tag_stack_within_tagfunc[]
2315 INIT(= N_("E986: cannot modify the tag stack within tagfunc"));
2316EXTERN char e_invalid_return_value_from_tagfunc[]
2317 INIT(= N_("E987: invalid return value from tagfunc"));
2318#endif
2319EXTERN char e_gui_cannot_be_used_cannot_execute_gvim_exe[]
2320 INIT(= N_("E988: GUI cannot be used. Cannot execute gvim.exe."));
2321EXTERN char e_non_default_argument_follows_default_argument[]
2322 INIT(= N_("E989: Non-default argument follows default argument"));
2323#ifdef FEAT_EVAL
2324EXTERN char e_missing_end_marker_str[]
2325 INIT(= N_("E990: Missing end marker '%s'"));
2326EXTERN char e_cannot_use_heredoc_here[]
2327 INIT(= N_("E991: cannot use =<< here"));
Bram Moolenaar269dc632022-01-06 11:43:21 +00002328#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002329EXTERN char e_not_allowed_in_modeline_when_modelineexpr_is_off[]
2330 INIT(= N_("E992: Not allowed in a modeline when 'modelineexpr' is off"));
Bram Moolenaar269dc632022-01-06 11:43:21 +00002331#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002332EXTERN char e_window_nr_is_not_popup_window[]
2333 INIT(= N_("E993: window %d is not a popup window"));
2334EXTERN char e_not_allowed_in_popup_window[]
2335 INIT(= N_("E994: Not allowed in a popup window"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002336EXTERN char e_cannot_modify_existing_variable[]
2337 INIT(= N_("E995: Cannot modify existing variable"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002338EXTERN char e_cannot_lock_range[]
2339 INIT(= N_("E996: Cannot lock a range"));
2340EXTERN char e_cannot_lock_option[]
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002341 INIT(= N_("E996: Cannot lock an option"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002342EXTERN char e_cannot_lock_list_or_dict[]
2343 INIT(= N_("E996: Cannot lock a list or dict"));
2344EXTERN char e_cannot_lock_environment_variable[]
2345 INIT(= N_("E996: Cannot lock an environment variable"));
2346EXTERN char e_cannot_lock_register[]
2347 INIT(= N_("E996: Cannot lock a register"));
2348#endif
2349EXTERN char e_tabpage_not_found_nr[]
2350 INIT(= N_("E997: Tabpage not found: %d"));
2351#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002352EXTERN char e_reduce_of_an_empty_str_with_no_initial_value[]
2353 INIT(= N_("E998: Reduce of an empty %s with no initial value"));
2354#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002355EXTERN char e_scriptversion_not_supported_nr[]
2356 INIT(= N_("E999: scriptversion not supported: %d"));
2357// E1000 unused
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002358#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002359EXTERN char e_variable_not_found_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002360 INIT(= N_("E1001: Variable not found: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002361EXTERN char e_syntax_error_at_str[]
2362 INIT(= N_("E1002: Syntax error at %s"));
2363EXTERN char e_missing_return_value[]
2364 INIT(= N_("E1003: Missing return value"));
Bram Moolenaare7a73e02021-01-01 19:17:55 +01002365EXTERN char e_white_space_required_before_and_after_str_at_str[]
2366 INIT(= N_("E1004: White space required before and after '%s' at \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002367EXTERN char e_too_many_argument_types[]
2368 INIT(= N_("E1005: Too many argument types"));
2369EXTERN char e_str_is_used_as_argument[]
2370 INIT(= N_("E1006: %s is used as an argument"));
2371EXTERN char e_mandatory_argument_after_optional_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002372 INIT(= N_("E1007: Mandatory argument after optional argument"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002373EXTERN char e_missing_type[]
2374 INIT(= N_("E1008: Missing <type>"));
2375EXTERN char e_missing_gt_after_type[]
2376 INIT(= N_("E1009: Missing > after type"));
2377EXTERN char e_type_not_recognized_str[]
2378 INIT(= N_("E1010: Type not recognized: %s"));
2379EXTERN char e_name_too_long_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002380 INIT(= N_("E1011: Name too long: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002381EXTERN char e_type_mismatch_expected_str_but_got_str[]
Bram Moolenaar5e654232020-09-16 15:22:00 +02002382 INIT(= N_("E1012: Type mismatch; expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002383EXTERN char e_type_mismatch_expected_str_but_got_str_in_str[]
2384 INIT(= N_("E1012: Type mismatch; expected %s but got %s in %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002385EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002386 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002387EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str_in_str[]
2388 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s in %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002389EXTERN char e_invalid_key_str[]
2390 INIT(= N_("E1014: Invalid key: %s"));
Bram Moolenaare4984292020-12-13 14:19:25 +01002391EXTERN char e_name_expected_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002392 INIT(= N_("E1015: Name expected: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002393EXTERN char e_cannot_declare_a_scope_variable[]
2394 INIT(= N_("E1016: Cannot declare a %s variable: %s"));
2395EXTERN char e_cannot_declare_an_environment_variable[]
2396 INIT(= N_("E1016: Cannot declare an environment variable: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002397EXTERN char e_variable_already_declared[]
2398 INIT(= N_("E1017: Variable already declared: %s"));
2399EXTERN char e_cannot_assign_to_constant[]
2400 INIT(= N_("E1018: Cannot assign to a constant: %s"));
2401EXTERN char e_can_only_concatenate_to_string[]
2402 INIT(= N_("E1019: Can only concatenate to string"));
2403EXTERN char e_cannot_use_operator_on_new_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002404 INIT(= N_("E1020: Cannot use an operator on a new variable: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002405EXTERN char e_const_requires_a_value[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002406 INIT(= N_("E1021: Const requires a value"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002407EXTERN char e_type_or_initialization_required[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002408 INIT(= N_("E1022: Type or initialization required"));
Bram Moolenaard70840e2020-08-22 15:06:35 +02002409EXTERN char e_using_number_as_bool_nr[]
Bram Moolenaar239f8d92021-01-17 13:21:20 +01002410 INIT(= N_("E1023: Using a Number as a Bool: %lld"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002411EXTERN char e_using_number_as_string[]
2412 INIT(= N_("E1024: Using a Number as a String"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002413EXTERN char e_using_rcurly_outside_if_block_scope[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002414 INIT(= N_("E1025: Using } outside of a block scope"));
Bram Moolenaar90887842021-07-27 22:35:42 +02002415#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002416EXTERN char e_missing_rcurly[]
2417 INIT(= N_("E1026: Missing }"));
Bram Moolenaar90887842021-07-27 22:35:42 +02002418#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002419EXTERN char e_missing_return_statement[]
2420 INIT(= N_("E1027: Missing return statement"));
Bram Moolenaare13bdec2020-10-16 23:16:47 +02002421EXTERN char e_compiling_def_function_failed[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002422 INIT(= N_("E1028: Compiling :def function failed"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002423EXTERN char e_expected_str_but_got_str[]
2424 INIT(= N_("E1029: Expected %s but got %s"));
Bram Moolenaarea2d4072020-11-12 12:08:51 +01002425EXTERN char e_using_string_as_number_str[]
2426 INIT(= N_("E1030: Using a String as a Number: \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002427EXTERN char e_cannot_use_void_value[]
2428 INIT(= N_("E1031: Cannot use void value"));
2429EXTERN char e_missing_catch_or_finally[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002430 INIT(= N_("E1032: Missing :catch or :finally"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002431EXTERN char e_catch_unreachable_after_catch_all[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002432 INIT(= N_("E1033: Catch unreachable after catch-all"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002433EXTERN char e_cannot_use_reserved_name[]
2434 INIT(= N_("E1034: Cannot use reserved name %s"));
2435EXTERN char e_percent_requires_number_arguments[]
2436 INIT(= N_("E1035: % requires number arguments"));
2437EXTERN char e_char_requires_number_or_float_arguments[]
2438 INIT(= N_("E1036: %c requires number or float arguments"));
2439EXTERN char e_cannot_use_str_with_str[]
2440 INIT(= N_("E1037: Cannot use \"%s\" with %s"));
2441EXTERN char e_vim9script_can_only_be_used_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002442 INIT(= N_("E1038: \"vim9script\" can only be used in a script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002443EXTERN char e_vim9script_must_be_first_command_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002444 INIT(= N_("E1039: \"vim9script\" must be the first command in a script"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002445#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002446EXTERN char e_cannot_use_scriptversion_after_vim9script[]
2447 INIT(= N_("E1040: Cannot use :scriptversion after :vim9script"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002448#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002449EXTERN char e_redefining_script_item_str[]
2450 INIT(= N_("E1041: Redefining script item %s"));
2451EXTERN char e_export_can_only_be_used_in_vim9script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002452 INIT(= N_("E1042: Export can only be used in vim9script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002453EXTERN char e_invalid_command_after_export[]
2454 INIT(= N_("E1043: Invalid command after :export"));
2455EXTERN char e_export_with_invalid_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002456 INIT(= N_("E1044: Export with invalid argument"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002457EXTERN char e_missing_as_after_star[]
2458 INIT(= N_("E1045: Missing \"as\" after *"));
2459EXTERN char e_missing_comma_in_import[]
2460 INIT(= N_("E1046: Missing comma in import"));
Bram Moolenaara9e3d562021-09-08 12:31:35 +02002461EXTERN char e_syntax_error_in_import_str[]
2462 INIT(= N_("E1047: Syntax error in import: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002463EXTERN char e_item_not_found_in_script_str[]
2464 INIT(= N_("E1048: Item not found in script: %s"));
2465EXTERN char e_item_not_exported_in_script_str[]
2466 INIT(= N_("E1049: Item not exported in script: %s"));
Bram Moolenaar6e2c2c52020-12-25 19:25:45 +01002467EXTERN char e_colon_required_before_range_str[]
2468 INIT(= N_("E1050: Colon required before a range: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002469EXTERN char e_wrong_argument_type_for_plus[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002470 INIT(= N_("E1051: Wrong argument type for +"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002471EXTERN char e_cannot_declare_an_option[]
2472 INIT(= N_("E1052: Cannot declare an option: %s"));
2473EXTERN char e_could_not_import_str[]
2474 INIT(= N_("E1053: Could not import \"%s\""));
Bram Moolenaar057e84a2021-02-28 16:55:11 +01002475EXTERN char e_variable_already_declared_in_script_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002476 INIT(= N_("E1054: Variable already declared in the script: %s"));
2477EXTERN char e_missing_name_after_dots[]
2478 INIT(= N_("E1055: Missing name after ..."));
2479EXTERN char e_expected_type_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002480 INIT(= N_("E1056: Expected a type: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002481EXTERN char e_missing_enddef[]
2482 INIT(= N_("E1057: Missing :enddef"));
2483EXTERN char e_function_nesting_too_deep[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002484 INIT(= N_("E1058: Function nesting too deep"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002485EXTERN char e_no_white_space_allowed_before_colon_str[]
2486 INIT(= N_("E1059: No white space allowed before colon: %s"));
2487EXTERN char e_expected_dot_after_name_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002488 INIT(= N_("E1060: Expected dot after name: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002489EXTERN char e_cannot_find_function_str[]
2490 INIT(= N_("E1061: Cannot find function %s"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002491EXTERN char e_cannot_index_number[]
2492 INIT(= N_("E1062: Cannot index a Number"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002493EXTERN char e_type_mismatch_for_v_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002494 INIT(= N_("E1063: Type mismatch for v: variable"));
Bram Moolenaar021ef352021-12-02 20:44:42 +00002495#endif
Bram Moolenaar9ac38122021-12-02 18:42:33 +00002496EXTERN char e_yank_register_changed_while_using_it[]
2497 INIT(= N_("E1064: Yank register changed while using it"));
Bram Moolenaar021ef352021-12-02 20:44:42 +00002498#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002499// E1065 unused
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002500EXTERN char e_cannot_declare_a_register_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002501 INIT(= N_("E1066: Cannot declare a register: %s"));
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002502EXTERN char e_separator_mismatch_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002503 INIT(= N_("E1067: Separator mismatch: %s"));
Bram Moolenaarba98fb52021-02-07 18:06:29 +01002504EXTERN char e_no_white_space_allowed_before_str_str[]
2505 INIT(= N_("E1068: No white space allowed before '%s': %s"));
Bram Moolenaarc3fc75d2021-02-07 15:28:09 +01002506EXTERN char e_white_space_required_after_str_str[]
2507 INIT(= N_("E1069: White space required after '%s': %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002508EXTERN char e_missing_from[]
2509 INIT(= N_("E1070: Missing \"from\""));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00002510EXTERN char e_invalid_string_for_import_str[]
2511 INIT(= N_("E1071: Invalid string for :import: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002512EXTERN char e_cannot_compare_str_with_str[]
2513 INIT(= N_("E1072: Cannot compare %s with %s"));
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002514EXTERN char e_name_already_defined_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002515 INIT(= N_("E1073: Name already defined: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002516EXTERN char e_no_white_space_allowed_after_dot[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002517 INIT(= N_("E1074: No white space allowed after dot"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002518EXTERN char e_namespace_not_supported_str[]
2519 INIT(= N_("E1075: Namespace not supported: %s"));
2520EXTERN char e_this_vim_is_not_compiled_with_float_support[]
2521 INIT(= N_("E1076: This Vim is not compiled with float support"));
2522EXTERN char e_missing_argument_type_for_str[]
2523 INIT(= N_("E1077: Missing argument type for %s"));
2524// E1078 unused
2525// E1079 unused
2526// E1080 unused
2527EXTERN char e_cannot_unlet_str[]
2528 INIT(= N_("E1081: Cannot unlet %s"));
2529EXTERN char e_cannot_use_namespaced_variable[]
2530 INIT(= N_("E1082: Cannot use a namespaced variable: %s"));
2531EXTERN char e_missing_backtick[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002532 INIT(= N_("E1083: Missing backtick"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002533EXTERN char e_cannot_delete_vim9_script_function_str[]
2534 INIT(= N_("E1084: Cannot delete Vim9 script function %s"));
2535EXTERN char e_not_callable_type_str[]
2536 INIT(= N_("E1085: Not a callable type: %s"));
Bram Moolenaar293eb9b2021-11-29 10:36:19 +00002537EXTERN char e_function_reference_invalid[]
2538 INIT(= N_("E1086: Function reference invalid"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002539EXTERN char e_cannot_use_index_when_declaring_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002540 INIT(= N_("E1087: Cannot use an index when declaring a variable"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002541// E1088 unused
2542EXTERN char e_unknown_variable_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002543 INIT(= N_("E1089: Unknown variable: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002544EXTERN char e_cannot_assign_to_argument[]
2545 INIT(= N_("E1090: Cannot assign to argument %s"));
2546EXTERN char e_function_is_not_compiled_str[]
2547 INIT(= N_("E1091: Function is not compiled: %s"));
Bram Moolenaarab36e6a2021-11-30 16:14:49 +00002548// E1092 unused
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002549EXTERN char e_expected_nr_items_but_got_nr[]
2550 INIT(= N_("E1093: Expected %d items but got %d"));
2551EXTERN char e_import_can_only_be_used_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002552 INIT(= N_("E1094: Import can only be used in a script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002553EXTERN char e_unreachable_code_after_return[]
2554 INIT(= N_("E1095: Unreachable code after :return"));
2555EXTERN char e_returning_value_in_function_without_return_type[]
2556 INIT(= N_("E1096: Returning a value in a function without a return type"));
2557EXTERN char e_line_incomplete[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002558 INIT(= N_("E1097: Line incomplete"));
Sean Dewar80d73952021-08-04 19:25:54 +02002559EXTERN char e_string_list_or_blob_required[]
2560 INIT(= N_("E1098: String, List or Blob required"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002561EXTERN char e_unknown_error_while_executing_str[]
2562 INIT(= N_("E1099: Unknown error while executing %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002563#endif
2564EXTERN char e_command_not_supported_in_vim9_script_missing_var_str[]
2565 INIT(= N_("E1100: Command not supported in Vim9 script (missing :var?): %s"));
2566#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002567EXTERN char e_cannot_declare_script_variable_in_function[]
2568 INIT(= N_("E1101: Cannot declare a script variable in a function: %s"));
2569EXTERN char e_lambda_function_not_found_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002570 INIT(= N_("E1102: Lambda function not found: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002571EXTERN char e_dictionary_not_set[]
2572 INIT(= N_("E1103: Dictionary not set"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002573EXTERN char e_missing_gt[]
2574 INIT(= N_("E1104: Missing >"));
2575EXTERN char e_cannot_convert_str_to_string[]
2576 INIT(= N_("E1105: Cannot convert %s to string"));
2577EXTERN char e_one_argument_too_many[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002578 INIT(= N_("E1106: One argument too many"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002579EXTERN char e_nr_arguments_too_many[]
2580 INIT(= N_("E1106: %d arguments too many"));
Bram Moolenaar56acb092020-08-16 14:48:19 +02002581EXTERN char e_string_list_dict_or_blob_required[]
2582 INIT(= N_("E1107: String, List, Dict or Blob required"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002583EXTERN char e_item_not_found_str[]
2584 INIT(= N_("E1108: Item not found: %s"));
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02002585EXTERN char e_list_item_nr_is_not_list[]
2586 INIT(= N_("E1109: List item %d is not a List"));
2587EXTERN char e_list_item_nr_does_not_contain_3_numbers[]
2588 INIT(= N_("E1110: List item %d does not contain 3 numbers"));
2589EXTERN char e_list_item_nr_range_invalid[]
2590 INIT(= N_("E1111: List item %d range invalid"));
2591EXTERN char e_list_item_nr_cell_width_invalid[]
2592 INIT(= N_("E1112: List item %d cell width invalid"));
2593EXTERN char e_overlapping_ranges_for_nr[]
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02002594 INIT(= N_("E1113: Overlapping ranges for 0x%lx"));
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02002595EXTERN char e_only_values_of_0x100_and_higher_supported[]
2596 INIT(= N_("E1114: Only values of 0x100 and higher supported"));
Bram Moolenaar44d66522020-09-06 22:26:57 +02002597EXTERN char e_assert_fails_fourth_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002598 INIT(= N_("E1115: \"assert_fails()\" fourth argument must be a number"));
Bram Moolenaar44d66522020-09-06 22:26:57 +02002599EXTERN char e_assert_fails_fifth_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002600 INIT(= N_("E1116: \"assert_fails()\" fifth argument must be a string"));
Bram Moolenaar8b848ca2020-09-10 22:28:01 +02002601EXTERN char e_cannot_use_bang_with_nested_def[]
2602 INIT(= N_("E1117: Cannot use ! with nested :def"));
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02002603EXTERN char e_cannot_change_list[]
2604 INIT(= N_("E1118: Cannot change list"));
2605EXTERN char e_cannot_change_list_item[]
2606 INIT(= N_("E1119: Cannot change list item"));
2607EXTERN char e_cannot_change_dict[]
2608 INIT(= N_("E1120: Cannot change dict"));
2609EXTERN char e_cannot_change_dict_item[]
2610 INIT(= N_("E1121: Cannot change dict item"));
Bram Moolenaar916911f2020-09-16 21:41:53 +02002611EXTERN char e_variable_is_locked_str[]
2612 INIT(= N_("E1122: Variable is locked: %s"));
Bram Moolenaar10e4f122020-09-20 22:43:52 +02002613EXTERN char e_missing_comma_before_argument_str[]
2614 INIT(= N_("E1123: Missing comma before argument: %s"));
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002615EXTERN char e_str_cannot_be_used_in_legacy_vim_script[]
2616 INIT(= N_("E1124: \"%s\" cannot be used in legacy Vim script"));
2617EXTERN char e_final_requires_a_value[]
2618 INIT(= N_("E1125: Final requires a value"));
Bram Moolenaarcfcd0112020-09-27 15:19:27 +02002619EXTERN char e_cannot_use_let_in_vim9_script[]
2620 INIT(= N_("E1126: Cannot use :let in Vim9 script"));
Bram Moolenaarc1f00662020-10-03 13:41:53 +02002621EXTERN char e_missing_name_after_dot[]
2622 INIT(= N_("E1127: Missing name after dot"));
Bram Moolenaar9becdf22020-10-10 21:33:48 +02002623EXTERN char e_endblock_without_block[]
2624 INIT(= N_("E1128: } without {"));
Bram Moolenaar1e021e62020-10-16 20:25:23 +02002625EXTERN char e_throw_with_empty_string[]
2626 INIT(= N_("E1129: Throw with empty string"));
Bram Moolenaar1dcae592020-10-19 19:02:42 +02002627EXTERN char e_cannot_add_to_null_list[]
2628 INIT(= N_("E1130: Cannot add to null list"));
Bram Moolenaar80b0e5e2020-10-19 20:45:36 +02002629EXTERN char e_cannot_add_to_null_blob[]
2630 INIT(= N_("E1131: Cannot add to null blob"));
Bram Moolenaar0d90e722020-11-03 18:20:19 +01002631EXTERN char e_missing_function_argument[]
2632 INIT(= N_("E1132: Missing function argument"));
Bram Moolenaar348be7e2020-11-04 11:36:35 +01002633EXTERN char e_cannot_extend_null_dict[]
2634 INIT(= N_("E1133: Cannot extend a null dict"));
2635EXTERN char e_cannot_extend_null_list[]
2636 INIT(= N_("E1134: Cannot extend a null list"));
Bram Moolenaarea2d4072020-11-12 12:08:51 +01002637EXTERN char e_using_string_as_bool_str[]
2638 INIT(= N_("E1135: Using a String as a Bool: \"%s\""));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002639#endif
Bram Moolenaar957cf672020-11-12 14:21:06 +01002640EXTERN char e_cmd_mapping_must_end_with_cr_before_second_cmd[]
Bram Moolenaar806da512021-12-24 19:54:52 +00002641 INIT(= N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>"));
Bram Moolenaar957cf672020-11-12 14:21:06 +01002642EXTERN char e_cmd_maping_must_not_include_str_key[]
2643 INIT(= N_("E1137: <Cmd> mapping must not include %s key"));
Bram Moolenaard92cc132020-11-18 17:17:15 +01002644EXTERN char e_using_bool_as_number[]
2645 INIT(= N_("E1138: Using a Bool as a Number"));
Bram Moolenaar2bede172020-11-19 18:53:18 +01002646EXTERN char e_missing_matching_bracket_after_dict_key[]
2647 INIT(= N_("E1139: Missing matching bracket after dict key"));
Bram Moolenaar792f7862020-11-23 08:31:18 +01002648EXTERN char e_for_argument_must_be_sequence_of_lists[]
Bram Moolenaar4d5dfe22021-06-26 13:59:29 +02002649 INIT(= N_("E1140: :for argument must be a sequence of lists"));
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002650EXTERN char e_indexable_type_required[]
2651 INIT(= N_("E1141: Indexable type required"));
Bram Moolenaar2a9d5d32020-12-12 18:58:40 +01002652EXTERN char e_non_empty_string_required[]
2653 INIT(= N_("E1142: Non-empty string required"));
Bram Moolenaare4984292020-12-13 14:19:25 +01002654EXTERN char e_empty_expression_str[]
Bram Moolenaarb5b94802020-12-13 17:50:20 +01002655 INIT(= N_("E1143: Empty expression: \"%s\""));
Bram Moolenaarb98cec22021-04-25 16:35:55 +02002656EXTERN char e_command_str_not_followed_by_white_space_str[]
2657 INIT(= N_("E1144: Command \"%s\" is not followed by white space: %s"));
Bram Moolenaarb5b94802020-12-13 17:50:20 +01002658EXTERN char e_missing_heredoc_end_marker_str[]
2659 INIT(= N_("E1145: Missing heredoc end marker: %s"));
Bram Moolenaar52c124d2020-12-20 21:43:35 +01002660EXTERN char e_command_not_recognized_str[]
2661 INIT(= N_("E1146: Command not recognized: %s"));
Bram Moolenaar4f5e3972020-12-21 17:30:50 +01002662EXTERN char e_list_not_set[]
2663 INIT(= N_("E1147: List not set"));
2664EXTERN char e_cannot_index_str[]
2665 INIT(= N_("E1148: Cannot index a %s"));
Bram Moolenaar4aab88d2020-12-24 21:56:41 +01002666EXTERN char e_script_variable_invalid_after_reload_in_function_str[]
2667 INIT(= N_("E1149: Script variable is invalid after reload in function %s"));
Bram Moolenaar07a65d22020-12-26 20:09:15 +01002668EXTERN char e_script_variable_type_changed[]
2669 INIT(= N_("E1150: Script variable type changed"));
Bram Moolenaar5178b1b2021-01-01 18:43:51 +01002670EXTERN char e_mismatched_endfunction[]
2671 INIT(= N_("E1151: Mismatched endfunction"));
2672EXTERN char e_mismatched_enddef[]
2673 INIT(= N_("E1152: Mismatched enddef"));
Bram Moolenaar0c357522021-07-18 14:43:43 +02002674EXTERN char e_invalid_operation_for_str[]
2675 INIT(= N_("E1153: Invalid operation for %s"));
Bram Moolenaar99880f92021-01-20 21:23:14 +01002676EXTERN char e_divide_by_zero[]
2677 INIT(= N_("E1154: Divide by zero"));
Bram Moolenaar9a046fd2021-01-28 13:47:59 +01002678EXTERN char e_cannot_define_autocommands_for_all_events[]
2679 INIT(= N_("E1155: Cannot define autocommands for ALL events"));
Bram Moolenaar61015162021-01-28 17:56:09 +01002680EXTERN char e_cannot_change_arglist_recursively[]
2681 INIT(= N_("E1156: Cannot change the argument list recursively"));
Bram Moolenaar0346b792021-01-31 22:18:29 +01002682EXTERN char e_missing_return_type[]
2683 INIT(= N_("E1157: Missing return type"));
Bram Moolenaar3b690062021-02-01 20:14:51 +01002684EXTERN char e_cannot_use_flatten_in_vim9_script[]
2685 INIT(= N_("E1158: Cannot use flatten() in Vim9 script"));
Bram Moolenaar983d83f2021-02-07 12:12:43 +01002686EXTERN char e_cannot_split_window_when_closing_buffer[]
2687 INIT(= N_("E1159: Cannot split a window when closing the buffer"));
Bram Moolenaara5a1ec12021-02-07 16:05:47 +01002688EXTERN char e_cannot_use_default_for_variable_arguments[]
2689 INIT(= N_("E1160: Cannot use a default for variable arguments"));
Bram Moolenaara8530892021-02-08 21:53:09 +01002690EXTERN char e_cannot_json_encode_str[]
2691 INIT(= N_("E1161: Cannot json encode a %s"));
Bram Moolenaar418a29f2021-02-10 22:23:41 +01002692EXTERN char e_register_name_must_be_one_char_str[]
2693 INIT(= N_("E1162: Register name must be one character: %s"));
Bram Moolenaarf785aa12021-02-11 21:19:34 +01002694EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str[]
2695 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002696EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str_in_str[]
2697 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s in %s"));
Bram Moolenaar39f3b142021-02-14 12:57:36 +01002698EXTERN char e_vim9cmd_must_be_followed_by_command[]
2699 INIT(= N_("E1164: vim9cmd must be followed by a command"));
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002700EXTERN char e_cannot_use_range_with_assignment_str[]
2701 INIT(= N_("E1165: Cannot use a range with an assignment: %s"));
2702EXTERN char e_cannot_use_range_with_dictionary[]
2703 INIT(= N_("E1166: Cannot use a range with a dictionary"));
Bram Moolenaar057e84a2021-02-28 16:55:11 +01002704EXTERN char e_argument_name_shadows_existing_variable_str[]
2705 INIT(= N_("E1167: Argument name shadows existing variable: %s"));
2706EXTERN char e_argument_already_declared_in_script_str[]
2707 INIT(= N_("E1168: Argument already declared in the script: %s"));
Bram Moolenaarcb4e80f2021-03-13 20:57:19 +01002708EXTERN char e_import_as_name_not_supported_here[]
2709 INIT(= N_("E1169: 'import * as {name}' not supported here"));
Bram Moolenaar4b3e1962021-03-18 21:37:55 +01002710EXTERN char e_cannot_use_hash_curly_to_start_comment[]
Bram Moolenaara0399ef2021-03-20 15:00:01 +01002711 INIT(= N_("E1170: Cannot use #{ to start a comment"));
Bram Moolenaar7a6eaa02021-03-21 20:53:29 +01002712EXTERN char e_missing_end_block[]
2713 INIT(= N_("E1171: Missing } after inline function"));
2714EXTERN char e_cannot_use_default_values_in_lambda[]
2715 INIT(= N_("E1172: Cannot use default values in a lambda"));
Bram Moolenaar7473a842021-12-28 17:55:26 +00002716EXTERN char e_text_found_after_str_str[]
2717 INIT(= N_("E1173: Text found after %s: %s"));
Bram Moolenaarf28f2ac2021-03-22 22:21:26 +01002718EXTERN char e_string_required_for_argument_nr[]
2719 INIT(= N_("E1174: String required for argument %d"));
2720EXTERN char e_non_empty_string_required_for_argument_nr[]
Bram Moolenaar3a0f0922021-03-25 22:22:30 +01002721 INIT(= N_("E1175: Non-empty string required for argument %d"));
2722EXTERN char e_misplaced_command_modifier[]
2723 INIT(= N_("E1176: Misplaced command modifier"));
Bram Moolenaar74e54fc2021-03-26 20:41:29 +01002724EXTERN char e_for_loop_on_str_not_supported[]
2725 INIT(= N_("E1177: For loop on %s not supported"));
Bram Moolenaarb2cb6c82021-03-28 20:38:34 +02002726EXTERN char e_cannot_lock_unlock_local_variable[]
2727 INIT(= N_("E1178: Cannot lock or unlock a local variable"));
Bram Moolenaar9ea7e552021-03-29 21:06:04 +02002728EXTERN char e_failed_to_extract_pwd_from_str_check_your_shell_config[]
2729 INIT(= N_("E1179: Failed to extract PWD from %s, check your shell's config related to OSC 7"));
Bram Moolenaar2a389082021-04-09 20:24:31 +02002730EXTERN char e_variable_arguments_type_must_be_list_str[]
2731 INIT(= N_("E1180: Variable arguments type must be a list: %s"));
Bram Moolenaar962c43b2021-04-10 17:18:09 +02002732EXTERN char e_cannot_use_underscore_here[]
2733 INIT(= N_("E1181: Cannot use an underscore here"));
Bram Moolenaar68452172021-04-12 21:21:02 +02002734EXTERN char e_blob_required[]
2735 INIT(= N_("E1182: Blob required"));
Bram Moolenaar0e3ff192021-04-14 20:35:23 +02002736EXTERN char e_cannot_use_range_with_assignment_operator_str[]
2737 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
Bram Moolenaar51e93322021-04-17 20:44:56 +02002738EXTERN char e_blob_not_set[]
2739 INIT(= N_("E1184: Blob not set"));
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02002740EXTERN char e_cannot_nest_redir[]
2741 INIT(= N_("E1185: Cannot nest :redir"));
2742EXTERN char e_missing_redir_end[]
2743 INIT(= N_("E1185: Missing :redir END"));
Bram Moolenaar68db9962021-05-09 23:19:22 +02002744EXTERN char e_expression_does_not_result_in_value_str[]
2745 INIT(= N_("E1186: Expression does not result in a value: %s"));
Christian Brabandt1d3a14e2021-05-29 19:53:50 +02002746EXTERN char e_failed_to_source_defaults[]
2747 INIT(= N_("E1187: Failed to source defaults.vim"));
Bram Moolenaare5b44862021-05-30 13:54:03 +02002748EXTERN char e_cannot_open_terminal_from_command_line_window[]
2749 INIT(= N_("E1188: Cannot open a terminal from the command line window"));
Bram Moolenaarc3cb1c92021-06-02 16:47:53 +02002750EXTERN char e_cannot_use_legacy_with_command_str[]
2751 INIT(= N_("E1189: Cannot use :legacy with this command: %s"));
Bram Moolenaar8da6d6d2021-06-05 18:15:09 +02002752EXTERN char e_one_argument_too_few[]
2753 INIT(= N_("E1190: One argument too few"));
2754EXTERN char e_nr_arguments_too_few[]
2755 INIT(= N_("E1190: %d arguments too few"));
Bram Moolenaarb55d6182021-06-08 22:01:53 +02002756EXTERN char e_call_to_function_that_failed_to_compile_str[]
2757 INIT(= N_("E1191: Call to function that failed to compile: %s"));
Bram Moolenaar22db0d52021-06-12 12:16:55 +02002758EXTERN char e_empty_function_name[]
2759 INIT(= N_("E1192: Empty function name"));
Christian Brabandtf573c6e2021-06-20 14:02:16 +02002760// libsodium
2761EXTERN char e_libsodium_not_built_in[]
2762 INIT(= N_("E1193: cryptmethod xchacha20 not built into this Vim"));
2763EXTERN char e_libsodium_cannot_encrypt_header[]
2764 INIT(= N_("E1194: Cannot encrypt header, not enough space"));
2765EXTERN char e_libsodium_cannot_encrypt_buffer[]
2766 INIT(= N_("E1195: Cannot encrypt buffer, not enough space"));
2767EXTERN char e_libsodium_cannot_decrypt_header[]
2768 INIT(= N_("E1196: Cannot decrypt header, not enough space"));
2769EXTERN char e_libsodium_cannot_allocate_buffer[]
2770 INIT(= N_("E1197: Cannot allocate_buffer for encryption"));
2771EXTERN char e_libsodium_decryption_failed_header_incomplete[]
2772 INIT(= N_("E1198: Decryption failed: Header incomplete!"));
2773EXTERN char e_libsodium_cannot_decrypt_buffer[]
2774 INIT(= N_("E1199: Cannot decrypt buffer, not enough space"));
Dominique Pellecb54bc62021-06-21 20:15:37 +02002775EXTERN char e_libsodium_decryption_failed[]
Christian Brabandt226b28b2021-06-21 21:08:08 +02002776 INIT(= N_("E1200: Decryption failed!"));
Dominique Pellecb54bc62021-06-21 20:15:37 +02002777EXTERN char e_libsodium_decryption_failed_premature[]
Christian Brabandtf573c6e2021-06-20 14:02:16 +02002778 INIT(= N_("E1201: Decryption failed: pre-mature end of file!"));
Bram Moolenaar22480d12021-06-25 21:31:09 +02002779EXTERN char e_no_white_space_allowed_after_str_str[]
2780 INIT(= N_("E1202: No white space allowed after '%s': %s"));
Bram Moolenaar3a3b10e2021-06-26 15:00:59 +02002781EXTERN char e_dot_can_only_be_used_on_dictionary_str[]
2782 INIT(= N_("E1203: Dot can only be used on a dictionary: %s"));
Bram Moolenaar04db26b2021-07-05 20:15:23 +02002783EXTERN char e_regexp_number_after_dot_pos_search[]
2784 INIT(= N_("E1204: No Number allowed after .: '\\%%%c'"));
Bram Moolenaar1594f312021-07-08 16:40:13 +02002785EXTERN char e_no_white_space_allowed_between_option_and[]
2786 INIT(= N_("E1205: No white space allowed between option and"));
Yegappan Lakshmanan5b739922021-07-10 13:15:41 +02002787EXTERN char e_dict_required_for_argument_nr[]
2788 INIT(= N_("E1206: Dictionary required for argument %d"));
Bram Moolenaarc3235272021-07-10 19:42:03 +02002789EXTERN char e_expression_without_effect_str[]
2790 INIT(= N_("E1207: Expression without an effect: %s"));
Bram Moolenaar41a34852021-08-04 16:09:24 +02002791EXTERN char e_complete_used_without_allowing_arguments[]
2792 INIT(= N_("E1208: -complete used without allowing arguments"));
Bram Moolenaar0f1227f2021-07-11 16:01:58 +02002793EXTERN char e_invalid_value_for_line_number_str[]
2794 INIT(= N_("E1209: Invalid value for a line number: \"%s\""));
Yegappan Lakshmanan1a71d312021-07-15 12:49:58 +02002795EXTERN char e_number_required_for_argument_nr[]
2796 INIT(= N_("E1210: Number required for argument %d"));
Yegappan Lakshmanana9a7c0c2021-07-17 19:11:07 +02002797EXTERN char e_list_required_for_argument_nr[]
2798 INIT(= N_("E1211: List required for argument %d"));
2799EXTERN char e_bool_required_for_argument_nr[]
Bram Moolenaar98c2eae2021-07-19 10:38:49 +02002800 INIT(= N_("E1212: Bool required for argument %d"));
Bram Moolenaar24e93162021-07-18 20:40:33 +02002801EXTERN char e_redefining_imported_item_str[]
Bram Moolenaar60579352021-07-19 21:45:07 +02002802 INIT(= N_("E1213: Redefining imported item \"%s\""));
mityu61065042021-07-19 20:07:21 +02002803#if defined(FEAT_DIGRAPHS) && defined(FEAT_EVAL)
2804EXTERN char e_digraph_must_be_just_two_characters_str[]
2805 INIT(= N_("E1214: Digraph must be just two characters: %s"));
2806EXTERN char e_digraph_argument_must_be_one_character_str[]
2807 INIT(= N_("E1215: Digraph must be one character: %s"));
h-east29b85712021-07-26 21:54:04 +02002808EXTERN char e_digraph_setlist_argument_must_be_list_of_lists_with_two_items[]
2809 INIT(= N_("E1216: digraph_setlist() argument must be a list of lists with two items"));
mityu61065042021-07-19 20:07:21 +02002810#endif
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02002811EXTERN char e_chan_or_job_required_for_argument_nr[]
Yegappan Lakshmanan0ad871d2021-07-23 20:37:56 +02002812 INIT(= N_("E1217: Channel or Job required for argument %d"));
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02002813EXTERN char e_job_required_for_argument_nr[]
Yegappan Lakshmanan0ad871d2021-07-23 20:37:56 +02002814 INIT(= N_("E1218: Job required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02002815EXTERN char e_float_or_number_required_for_argument_nr[]
2816 INIT(= N_("E1219: Float or Number required for argument %d"));
2817EXTERN char e_string_or_number_required_for_argument_nr[]
2818 INIT(= N_("E1220: String or Number required for argument %d"));
2819EXTERN char e_string_or_blob_required_for_argument_nr[]
2820 INIT(= N_("E1221: String or Blob required for argument %d"));
2821EXTERN char e_string_or_list_required_for_argument_nr[]
2822 INIT(= N_("E1222: String or List required for argument %d"));
2823EXTERN char e_string_or_dict_required_for_argument_nr[]
Bram Moolenaar78db17c2021-07-31 19:12:58 +02002824 INIT(= N_("E1223: String or Dictionary required for argument %d"));
2825EXTERN char e_string_number_or_list_required_for_argument_nr[]
2826 INIT(= N_("E1224: String, Number or List required for argument %d"));
2827EXTERN char e_string_list_or_dict_required_for_argument_nr[]
2828 INIT(= N_("E1225: String, List or Dictionary required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02002829EXTERN char e_list_or_blob_required_for_argument_nr[]
Bram Moolenaar78db17c2021-07-31 19:12:58 +02002830 INIT(= N_("E1226: List or Blob required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02002831EXTERN char e_list_or_dict_required_for_argument_nr[]
2832 INIT(= N_("E1227: List or Dictionary required for argument %d"));
Bram Moolenaar78db17c2021-07-31 19:12:58 +02002833EXTERN char e_list_dict_or_blob_required_for_argument_nr[]
2834 INIT(= N_("E1228: List, Dictionary or Blob required for argument %d"));
Bram Moolenaard47c3972021-07-28 20:52:13 +02002835EXTERN char e_expected_dictionary_for_using_key_str_but_got_str[]
2836 INIT(= N_("E1229: Expected dictionary for using key \"%s\", but got %s"));
Bram Moolenaar131530a2021-07-29 20:37:49 +02002837EXTERN char e_encryption_sodium_mlock_failed[]
Bram Moolenaar63b91732021-08-05 20:40:03 +02002838 INIT(= N_("E1230: Encryption: sodium_mlock() failed"));
2839EXTERN char e_cannot_use_bar_to_separate_commands_here_str[]
2840 INIT(= N_("E1231: Cannot use a bar to separate commands here: %s"));
Bram Moolenaar26735992021-08-08 14:43:22 +02002841EXTERN char e_argument_of_exists_compiled_must_be_literal_string[]
2842 INIT(= N_("E1232: Argument of exists_compiled() must be a literal string"));
2843EXTERN char e_exists_compiled_can_only_be_used_in_def_function[]
2844 INIT(= N_("E1233: exists_compiled() can only be used in a :def function"));
Bram Moolenaardd9de502021-08-15 13:49:42 +02002845EXTERN char e_legacy_must_be_followed_by_command[]
2846 INIT(= N_("E1234: legacy must be followed by a command"));
Bram Moolenaarc66f6452021-08-19 21:08:30 +02002847EXTERN char e_function_reference_is_not_set[]
2848 INIT(= N_("E1235: Function reference is not set"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00002849EXTERN char e_cannot_use_str_itself_it_is_imported[]
2850 INIT(= N_("E1236: Cannot use %s itself, it is imported"));
Bram Moolenaarbdcba242021-09-12 20:58:02 +02002851EXTERN char e_no_such_user_defined_command_in_current_buffer_str[]
2852 INIT(= N_("E1237: No such user-defined command in current buffer: %s"));
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +02002853EXTERN char e_blob_required_for_argument_nr[]
2854 INIT(= N_("E1238: Blob required for argument %d"));
2855EXTERN char e_invalid_value_for_blob_nr[]
2856 INIT(= N_("E1239: Invalid value for blob: %d"));
Bram Moolenaareeed1c72021-10-10 12:35:17 +01002857EXTERN char e_resulting_text_too_long[]
2858 INIT(= N_("E1240: Resulting text too long"));
Bram Moolenaar7b829262021-10-13 15:04:34 +01002859EXTERN char e_separator_not_supported_str[]
2860 INIT(= N_("E1241: Separator not supported: %s"));
2861EXTERN char e_no_white_space_allowed_before_separator_str[]
2862 INIT(= N_("E1242: No white space allowed before separator: %s"));
Dusan Popovic4eeedc02021-10-16 20:52:05 +01002863EXTERN char e_ascii_code_not_in_range[]
2864 INIT(= N_("E1243: ASCII code not in 32-127 range"));
Drew Vogele30d1022021-10-24 20:35:07 +01002865EXTERN char e_bad_color_string_str[]
2866 INIT(= N_("E1244: Bad color string: %s"));
Bram Moolenaarc4492712021-11-22 15:37:15 +00002867EXTERN char e_cannot_expand_sfile_in_vim9_function[]
2868 INIT(= N_("E1245: Cannot expand <sfile> in a Vim9 function"));
Bram Moolenaar04b568b2021-11-22 21:58:41 +00002869EXTERN char e_cannot_find_variable_to_unlock_str[]
2870 INIT(= N_("E1246: Cannot find variable to (un)lock: %s"));
Bram Moolenaar03725c52021-11-24 12:17:53 +00002871EXTERN char e_line_number_out_of_range[]
2872 INIT(= N_("E1247: Line number out of range"));
Bram Moolenaar69c76172021-12-02 16:38:52 +00002873EXTERN char e_closure_called_from_invalid_context[]
2874 INIT(= N_("E1248: Closure called from invalid context"));
erw7f7f7aaf2021-12-07 21:29:20 +00002875EXTERN char e_highlight_group_name_too_long[]
2876 INIT(= N_("E1249: Highlight group name too long"));
rbtnnc479ce02021-12-15 19:14:54 +00002877EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[]
2878 INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob"));
Bram Moolenaar2d877592021-12-16 08:21:09 +00002879EXTERN char e_list_dict_blob_or_string_required_for_argument_nr[]
rbtnn0ccb5842021-12-18 18:33:46 +00002880 INIT(= N_("E1251: List, Dictionary, Blob or String required for argument %d"));
2881EXTERN char e_string_list_or_blob_required_for_argument_nr[]
2882 INIT(= N_("E1252: String, List or Blob required for argument %d"));
2883EXTERN char e_string_expected_for_argument_nr[]
2884 INIT(= N_("E1253: String expected for argument %d"));
Bram Moolenaara99fb232021-12-20 12:25:03 +00002885EXTERN char e_cannot_use_script_variable_in_for_loop[]
2886 INIT(= N_("E1254: Cannot use script variable in for loop"));
Bram Moolenaar806da512021-12-24 19:54:52 +00002887EXTERN char e_cmd_mapping_must_end_with_cr[]
2888 INIT(= N_("E1255: <Cmd> mapping must end with <CR>"));
Bram Moolenaar223d0a62021-12-25 19:29:21 +00002889EXTERN char e_string_or_function_required_for_argument_nr[]
2890 INIT(= N_("E1256: String or function required for argument %d"));
Bram Moolenaar834d4182022-01-07 13:38:24 +00002891EXTERN char e_imported_script_must_use_as_or_end_in_dot_vim_str[]
2892 INIT(= N_("E1257: Imported script must use \"as\" or end in .vim: %s"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00002893EXTERN char e_no_dot_after_imported_name_str[]
2894 INIT(= N_("E1258: No '.' after imported name: %s"));
2895EXTERN char e_missing_name_after_imported_name_str[]
2896 INIT(= N_("E1259: Missing name after imported name: %s"));
2897EXTERN char e_cannot_unlet_imported_item_str[]
2898 INIT(= N_("E1260: Cannot unlet an imported item: %s"));
Bram Moolenaar834d4182022-01-07 13:38:24 +00002899EXTERN char e_cannot_import_dot_vim_without_using_as[]
2900 INIT(= N_("E1261: Cannot import .vim without using \"as\""));
Bram Moolenaar7c24dfd2022-01-08 17:03:55 +00002901EXTERN char e_cannot_import_same_script_twice_str[]
2902 INIT(= N_("E1262: Cannot import the same script twice: %s"));