blob: 868ed572143fa0f8f173c7859a2a67373583be56 [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[]
Bram Moolenaarb2f0ca82022-09-18 15:08:19 +010020 INIT(= N_("E11: Invalid in command-line window; :q<CR> closes the window"));
Bram Moolenaar108010a2021-06-27 22:03:33 +020021#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"));
Bram Moolenaar4dea2d92022-03-31 11:37:57 +010033#if defined(UNIX) || defined(FEAT_SYN_HL) \
34 || defined(FEAT_SPELL) || defined(FEAT_EVAL)
35EXTERN char e_str_is_directory[]
Bram Moolenaar108010a2021-06-27 22:03:33 +020036 INIT(= N_("E17: \"%s\" is a directory"));
37#endif
38#ifdef FEAT_EVAL
39EXTERN char e_unexpected_characters_in_let[]
40 INIT(= N_("E18: Unexpected characters in :let"));
41EXTERN char e_unexpected_characters_in_assignment[]
42 INIT(= N_("E18: Unexpected characters in assignment"));
43#endif
44EXTERN char e_mark_has_invalid_line_number[]
45 INIT(= N_("E19: Mark has invalid line number"));
46EXTERN char e_mark_not_set[]
47 INIT(= N_("E20: Mark not set"));
48EXTERN char e_cannot_make_changes_modifiable_is_off[]
49 INIT(= N_("E21: Cannot make changes, 'modifiable' is off"));
50EXTERN char e_scripts_nested_too_deep[]
51 INIT(= N_("E22: Scripts nested too deep"));
52EXTERN char e_no_alternate_file[]
53 INIT(= N_("E23: No alternate file"));
54EXTERN char e_no_such_abbreviation[]
55 INIT(= N_("E24: No such abbreviation"));
Bram Moolenaare29a27f2021-07-20 21:07:36 +020056#if !defined(FEAT_GUI) || defined(VIMDLL)
57EXTERN char e_gui_cannot_be_used_not_enabled_at_compile_time[]
58 INIT(= N_("E25: GUI cannot be used: Not enabled at compile time"));
59#endif
60#ifndef FEAT_RIGHTLEFT
61EXTERN char e_hebrew_cannot_be_used_not_enabled_at_compile_time[]
62 INIT(= N_("E26: Hebrew cannot be used: Not enabled at compile time\n"));
63#endif
64EXTERN char e_farsi_support_has_been_removed[]
65 INIT(= N_("E27: Farsi support has been removed\n"));
Bram Moolenaare29a27f2021-07-20 21:07:36 +020066#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_SYN_HL)
67EXTERN char e_no_such_highlight_group_name_str[]
68 INIT(= N_("E28: No such highlight group name: %s"));
69#endif
70EXTERN char e_no_inserted_text_yet[]
71 INIT(= N_("E29: No inserted text yet"));
72EXTERN char e_no_previous_command_line[]
73 INIT(= N_("E30: No previous command line"));
74EXTERN char e_no_such_mapping[]
75 INIT(= N_("E31: No such mapping"));
76EXTERN char e_no_file_name[]
77 INIT(= N_("E32: No file name"));
78EXTERN char e_no_previous_substitute_regular_expression[]
79 INIT(= N_("E33: No previous substitute regular expression"));
80EXTERN char e_no_previous_command[]
81 INIT(= N_("E34: No previous command"));
82EXTERN char e_no_previous_regular_expression[]
83 INIT(= N_("E35: No previous regular expression"));
84EXTERN char e_not_enough_room[]
85 INIT(= N_("E36: Not enough room"));
86EXTERN char e_no_write_since_last_change[]
87 INIT(= N_("E37: No write since last change"));
88EXTERN char e_no_write_since_last_change_add_bang_to_override[]
89 INIT(= N_("E37: No write since last change (add ! to override)"));
90EXTERN char e_null_argument[]
91 INIT(= N_("E38: Null argument"));
92#if defined(FEAT_DIGRAPHS) || defined(FEAT_TIMERS) || defined(FEAT_EVAL)
93EXTERN char e_number_expected[]
94 INIT(= N_("E39: Number expected"));
95#endif
96#ifdef FEAT_QUICKFIX
97EXTERN char e_cant_open_errorfile_str[]
98 INIT(= N_("E40: Can't open errorfile %s"));
99#endif
100EXTERN char e_out_of_memory[]
101 INIT(= N_("E41: Out of memory!"));
102#ifdef FEAT_QUICKFIX
103EXTERN char e_no_errors[]
104 INIT(= N_("E42: No Errors"));
105#endif
106EXTERN char e_damaged_match_string[]
107 INIT(= N_("E43: Damaged match string"));
108EXTERN char e_corrupted_regexp_program[]
109 INIT(= N_("E44: Corrupted regexp program"));
110EXTERN char e_readonly_option_is_set_add_bang_to_override[]
111 INIT(= N_("E45: 'readonly' option is set (add ! to override)"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200112#ifdef FEAT_EVAL
Bram Moolenaar71b76852021-12-17 20:15:38 +0000113EXTERN char e_cannot_change_readonly_variable[]
114 INIT(= N_("E46: Cannot change read-only variable"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200115EXTERN char e_cannot_change_readonly_variable_str[]
116 INIT(= N_("E46: Cannot change read-only variable \"%s\""));
117#endif
118#ifdef FEAT_QUICKFIX
119EXTERN char e_error_while_reading_errorfile[]
120 INIT(= N_("E47: Error while reading errorfile"));
121#endif
122#ifdef HAVE_SANDBOX
123EXTERN char e_not_allowed_in_sandbox[]
124 INIT(= N_("E48: Not allowed in sandbox"));
125#endif
126EXTERN char e_invalid_scroll_size[]
127 INIT(= N_("E49: Invalid scroll size"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000128#ifdef FEAT_SYN_HL
Bram Moolenaard8e44472021-07-21 22:20:33 +0200129EXTERN char e_too_many_z[]
130 INIT(= N_("E50: Too many \\z("));
Dominique Pellef85a4242022-01-09 12:49:31 +0000131#endif
Bram Moolenaard8e44472021-07-21 22:20:33 +0200132EXTERN char e_too_many_str_open[]
133 INIT(= N_("E51: Too many %s("));
Dominique Pellef85a4242022-01-09 12:49:31 +0000134#ifdef FEAT_SYN_HL
Bram Moolenaard8e44472021-07-21 22:20:33 +0200135EXTERN char e_unmatched_z[]
136 INIT(= N_("E52: Unmatched \\z("));
Dominique Pellef85a4242022-01-09 12:49:31 +0000137#endif
Bram Moolenaard8e44472021-07-21 22:20:33 +0200138EXTERN char e_unmatched_str_percent_open[]
139 INIT(= N_("E53: Unmatched %s%%("));
140EXTERN char e_unmatched_str_open[]
141 INIT(= N_("E54: Unmatched %s("));
142EXTERN char e_unmatched_str_close[]
143 INIT(= N_("E55: Unmatched %s)"));
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000144// E56 unused
145// E57 unused
146// E58 unused
Bram Moolenaard8e44472021-07-21 22:20:33 +0200147EXTERN char e_invalid_character_after_str_at[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100148 INIT(= N_("E59: Invalid character after %s@"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200149EXTERN char e_too_many_complex_str_curly[]
150 INIT(= N_("E60: Too many complex %s{...}s"));
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000151EXTERN char e_nested_str[]
152 INIT(= N_("E61: Nested %s*"));
153EXTERN char e_nested_str_chr[]
154 INIT(= N_("E62: Nested %s%c"));
155EXTERN char e_invalid_use_of_underscore[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100156 INIT(= N_("E63: Invalid use of \\_"));
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000157EXTERN char e_str_chr_follows_nothing[]
158 INIT(= N_("E64: %s%c follows nothing"));
159EXTERN char e_illegal_back_reference[]
160 INIT(= N_("E65: Illegal back reference"));
161#ifdef FEAT_SYN_HL
162EXTERN char e_z_not_allowed_here[]
163 INIT(= N_("E66: \\z( not allowed here"));
164EXTERN char e_z1_z9_not_allowed_here[]
165 INIT(= N_("E67: \\z1 - \\z9 not allowed here"));
166#endif
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000167EXTERN char e_invalid_character_after_bsl_z[]
168 INIT(= N_("E68: Invalid character after \\z"));
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000169EXTERN char e_missing_sb_after_str[]
170 INIT(= N_("E69: Missing ] after %s%%["));
171EXTERN char e_empty_str_brackets[]
172 INIT(= N_("E70: Empty %s%%[]"));
173EXTERN char e_invalid_character_after_str[]
174 INIT(= N_("E71: Invalid character after %s%%"));
175EXTERN char e_close_error_on_swap_file[]
176 INIT(= N_("E72: Close error on swap file"));
177EXTERN char e_tag_stack_empty[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100178 INIT(= N_("E73: Tag stack empty"));
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000179EXTERN char e_command_too_complex[]
180 INIT(= N_("E74: Command too complex"));
181EXTERN char e_name_too_long[]
182 INIT(= N_("E75: Name too long"));
183EXTERN char e_too_many_brackets[]
184 INIT(= N_("E76: Too many ["));
185EXTERN char e_too_many_file_names[]
186 INIT(= N_("E77: Too many file names"));
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000187EXTERN char e_unknown_mark[]
188 INIT(= N_("E78: Unknown mark"));
189EXTERN char e_cannot_expand_wildcards[]
190 INIT(= N_("E79: Cannot expand wildcards"));
191EXTERN char e_error_while_writing[]
192 INIT(= N_("E80: Error while writing"));
193#ifdef FEAT_EVAL
194EXTERN char e_using_sid_not_in_script_context[]
195 INIT(= N_("E81: Using <SID> not in a script context"));
196#endif
197EXTERN char e_cannot_allocate_any_buffer_exiting[]
198 INIT(= N_("E82: Cannot allocate any buffer, exiting..."));
199EXTERN char e_cannot_allocate_buffer_using_other_one[]
200 INIT(= N_("E83: Cannot allocate buffer, using other one..."));
201EXTERN char e_no_modified_buffer_found[]
202 INIT(= N_("E84: No modified buffer found"));
203EXTERN char e_there_is_no_listed_buffer[]
204 INIT(= N_("E85: There is no listed buffer"));
205EXTERN char e_buffer_nr_does_not_exist[]
206 INIT(= N_("E86: Buffer %ld does not exist"));
207EXTERN char e_cannot_go_beyond_last_buffer[]
208 INIT(= N_("E87: Cannot go beyond last buffer"));
209EXTERN char e_cannot_go_before_first_buffer[]
210 INIT(= N_("E88: Cannot go before first buffer"));
211EXTERN char e_no_write_since_last_change_for_buffer_nr_add_bang_to_override[]
212 INIT(= N_("E89: No write since last change for buffer %d (add ! to override)"));
213EXTERN char e_cannot_unload_last_buffer[]
214 INIT(= N_("E90: Cannot unload last buffer"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000215EXTERN char e_shell_option_is_empty[]
216 INIT(= N_("E91: 'shell' option is empty"));
217EXTERN char e_buffer_nr_not_found[]
218 INIT(= N_("E92: Buffer %d not found"));
219EXTERN char e_more_than_one_match_for_str[]
220 INIT(= N_("E93: More than one match for %s"));
221EXTERN char e_no_matching_buffer_for_str[]
222 INIT(= N_("E94: No matching buffer for %s"));
223EXTERN char e_buffer_with_this_name_already_exists[]
224 INIT(= N_("E95: Buffer with this name already exists"));
225#if defined(FEAT_DIFF)
226EXTERN char e_cannot_diff_more_than_nr_buffers[]
227 INIT(= N_("E96: Cannot diff more than %d buffers"));
228EXTERN char e_cannot_create_diffs[]
229 INIT(= N_("E97: Cannot create diffs"));
230EXTERN char e_cannot_read_diff_output[]
231 INIT(= N_("E98: Cannot read diff output"));
232EXTERN char e_current_buffer_is_not_in_diff_mode[]
233 INIT(= N_("E99: Current buffer is not in diff mode"));
234EXTERN char e_no_other_buffer_in_diff_mode[]
235 INIT(= N_("E100: No other buffer in diff mode"));
236EXTERN char e_more_than_two_buffers_in_diff_mode_dont_know_which_one_to_use[]
237 INIT(= N_("E101: More than two buffers in diff mode, don't know which one to use"));
238EXTERN char e_cant_find_buffer_str[]
239 INIT(= N_("E102: Can't find buffer \"%s\""));
240EXTERN char e_buffer_str_is_not_in_diff_mode[]
241 INIT(= N_("E103: Buffer \"%s\" is not in diff mode"));
242#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000243#ifdef FEAT_DIGRAPHS
Bram Moolenaare1242042021-12-16 20:56:57 +0000244EXTERN char e_escape_not_allowed_in_digraph[]
245 INIT(= N_("E104: Escape not allowed in digraph"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000246#endif
247#ifdef FEAT_KEYMAP
Bram Moolenaare1242042021-12-16 20:56:57 +0000248EXTERN char e_using_loadkeymap_not_in_sourced_file[]
249 INIT(= N_("E105: Using :loadkeymap not in a sourced file"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000250#endif
Bram Moolenaare1242042021-12-16 20:56:57 +0000251// E106 unused
Dominique Pellef85a4242022-01-09 12:49:31 +0000252#ifdef FEAT_EVAL
Bram Moolenaare1242042021-12-16 20:56:57 +0000253EXTERN char e_missing_parenthesis_str[]
254 INIT(= N_("E107: Missing parentheses: %s"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000255EXTERN char e_no_such_variable_str[]
256 INIT(= N_("E108: No such variable: \"%s\""));
257EXTERN char e_missing_colon_after_questionmark[]
258 INIT(= N_("E109: Missing ':' after '?'"));
259EXTERN char e_missing_closing_paren[]
260 INIT(= N_("E110: Missing ')'"));
261EXTERN char e_missing_closing_square_brace[]
262 INIT(= N_("E111: Missing ']'"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000263EXTERN char e_option_name_missing_str[]
264 INIT(= N_("E112: Option name missing: %s"));
265EXTERN char e_unknown_option_str[]
266 INIT(= N_("E113: Unknown option: %s"));
267EXTERN char e_missing_double_quote_str[]
268 INIT(= N_("E114: Missing double quote: %s"));
269EXTERN char e_missing_single_quote_str[]
270 INIT(= N_("E115: Missing single quote: %s"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000271EXTERN char e_invalid_arguments_for_function_str[]
272 INIT(= N_("E116: Invalid arguments for function %s"));
273EXTERN char e_unknown_function_str[]
274 INIT(= N_("E117: Unknown function: %s"));
275EXTERN char e_too_many_arguments_for_function_str[]
276 INIT(= N_("E118: Too many arguments for function: %s"));
277EXTERN char e_not_enough_arguments_for_function_str[]
278 INIT(= N_("E119: Not enough arguments for function: %s"));
279EXTERN char e_using_sid_not_in_script_context_str[]
280 INIT(= N_("E120: Using <SID> not in a script context: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +0200281EXTERN char e_undefined_variable_str[]
282 INIT(= N_("E121: Undefined variable: %s"));
283EXTERN char e_undefined_variable_char_str[]
284 INIT(= N_("E121: Undefined variable: %c:%s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000285EXTERN char e_function_str_already_exists_add_bang_to_replace[]
Bram Moolenaarc553a212021-12-26 20:20:34 +0000286 INIT(= N_("E122: Function %s already exists, add ! to replace it"));
287EXTERN char e_undefined_function_str[]
288 INIT(= N_("E123: Undefined function: %s"));
289EXTERN char e_missing_paren_str[]
290 INIT(= N_("E124: Missing '(': %s"));
291EXTERN char e_illegal_argument_str[]
292 INIT(= N_("E125: Illegal argument: %s"));
293EXTERN char e_missing_endfunction[]
294 INIT(= N_("E126: Missing :endfunction"));
295EXTERN char e_cannot_redefine_function_str_it_is_in_use[]
296 INIT(= N_("E127: Cannot redefine function %s: It is in use"));
297EXTERN char e_function_name_must_start_with_capital_or_s_str[]
298 INIT(= N_("E128: Function name must start with a capital or \"s:\": %s"));
299EXTERN char e_function_name_required[]
300 INIT(= N_("E129: Function name required"));
301// E130 unused
302EXTERN char e_cannot_delete_function_str_it_is_in_use[]
303 INIT(= N_("E131: Cannot delete function %s: It is in use"));
304EXTERN char e_function_call_depth_is_higher_than_macfuncdepth[]
305 INIT(= N_("E132: Function call depth is higher than 'maxfuncdepth'"));
306EXTERN char e_return_not_inside_function[]
307 INIT(= N_("E133: :return not inside a function"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200308#endif
Bram Moolenaarc553a212021-12-26 20:20:34 +0000309EXTERN char e_cannot_move_range_of_lines_into_itself[]
310 INIT(= N_("E134: Cannot move a range of lines into itself"));
311EXTERN char e_filter_autocommands_must_not_change_current_buffer[]
312 INIT(= N_("E135: *Filter* Autocommands must not change current buffer"));
313#if defined(FEAT_VIMINFO)
314EXTERN char e_viminfo_too_many_errors_skipping_rest_of_file[]
315 INIT(= N_("E136: viminfo: Too many errors, skipping rest of file"));
316EXTERN char e_viminfo_file_is_not_writable_str[]
317 INIT(= N_("E137: Viminfo file is not writable: %s"));
318EXTERN char e_cant_write_viminfo_file_str[]
319 INIT(= N_("E138: Can't write viminfo file %s!"));
320#endif
Bram Moolenaareb822a22021-12-31 15:09:27 +0000321EXTERN char e_file_is_loaded_in_another_buffer[]
322 INIT(= N_("E139: File is loaded in another buffer"));
323EXTERN char e_use_bang_to_write_partial_buffer[]
324 INIT(= N_("E140: Use ! to write partial buffer"));
325EXTERN char e_no_file_name_for_buffer_nr[]
326 INIT(= N_("E141: No file name for buffer %ld"));
327EXTERN char e_file_not_written_writing_is_disabled_by_write_option[]
328 INIT(= N_("E142: File not written: Writing is disabled by 'write' option"));
329EXTERN char e_autocommands_unexpectedly_deleted_new_buffer_str[]
330 INIT(= N_("E143: Autocommands unexpectedly deleted new buffer %s"));
331EXTERN char e_non_numeric_argument_to_z[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100332 INIT(= N_("E144: Non-numeric argument to :z"));
Bram Moolenaareb822a22021-12-31 15:09:27 +0000333EXTERN char e_shell_commands_and_some_functionality_not_allowed_in_rvim[]
334 INIT(= N_("E145: Shell commands and some functionality not allowed in rvim"));
335EXTERN char e_regular_expressions_cant_be_delimited_by_letters[]
336 INIT(= N_("E146: Regular expressions can't be delimited by letters"));
337EXTERN char e_cannot_do_global_recursive_with_range[]
338 INIT(= N_("E147: Cannot do :global recursive with a range"));
339EXTERN char e_regular_expression_missing_from_global[]
340 INIT(= N_("E148: Regular expression missing from :global"));
341EXTERN char e_sorry_no_help_for_str[]
342 INIT(= N_("E149: Sorry, no help for %s"));
343EXTERN char e_not_a_directory_str[]
344 INIT(= N_("E150: Not a directory: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000345EXTERN char e_no_match_str_1[]
Bram Moolenaareb822a22021-12-31 15:09:27 +0000346 INIT(= N_("E151: No match: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000347EXTERN char e_cannot_open_str_for_writing_1[]
Bram Moolenaareb822a22021-12-31 15:09:27 +0000348 INIT(= N_("E152: Cannot open %s for writing"));
349EXTERN char e_unable_to_open_str_for_reading[]
350 INIT(= N_("E153: Unable to open %s for reading"));
351EXTERN char e_duplicate_tag_str_in_file_str_str[]
352 INIT(= N_("E154: Duplicate tag \"%s\" in file %s/%s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000353#ifdef FEAT_SIGNS
Bram Moolenaareb822a22021-12-31 15:09:27 +0000354EXTERN char e_unknown_sign_str[]
355 INIT(= N_("E155: Unknown sign: %s"));
356EXTERN char e_missing_sign_name[]
357 INIT(= N_("E156: Missing sign name"));
358EXTERN char e_invalid_sign_id_nr[]
359 INIT(= N_("E157: Invalid sign ID: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000360#endif
361#if defined(FEAT_SIGNS) || defined(FEAT_EVAL)
Bram Moolenaareb822a22021-12-31 15:09:27 +0000362EXTERN char e_invalid_buffer_name_str[]
363 INIT(= N_("E158: Invalid buffer name: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000364#endif
365#ifdef FEAT_SIGNS
Bram Moolenaareb822a22021-12-31 15:09:27 +0000366EXTERN char e_missing_sign_number[]
367 INIT(= N_("E159: Missing sign number"));
368EXTERN char e_unknown_sign_command_str[]
369 INIT(= N_("E160: Unknown sign command: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000370#endif
Bram Moolenaareb822a22021-12-31 15:09:27 +0000371#ifdef FEAT_EVAL
372EXTERN char e_breakpoint_not_found_str[]
373 INIT(= N_("E161: Breakpoint not found: %s"));
374#endif
Bram Moolenaar1a992222021-12-31 17:25:48 +0000375EXTERN char e_no_write_since_last_change_for_buffer_str[]
376 INIT(= N_("E162: No write since last change for buffer \"%s\""));
377EXTERN char e_there_is_only_one_file_to_edit[]
378 INIT(= N_("E163: There is only one file to edit"));
379EXTERN char e_cannot_go_before_first_file[]
380 INIT(= N_("E164: Cannot go before first file"));
381EXTERN char e_cannot_go_beyond_last_file[]
382 INIT(= N_("E165: Cannot go beyond last file"));
383EXTERN char e_cant_open_linked_file_for_writing[]
384 INIT(= N_("E166: Can't open linked file for writing"));
385EXTERN char e_scriptencoding_used_outside_of_sourced_file[]
386 INIT(= N_("E167: :scriptencoding used outside of a sourced file"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000387#ifdef FEAT_EVAL
Bram Moolenaar1a992222021-12-31 17:25:48 +0000388EXTERN char e_finish_used_outside_of_sourced_file[]
389 INIT(= N_("E168: :finish used outside of a sourced file"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000390#endif
Bram Moolenaar1a992222021-12-31 17:25:48 +0000391EXTERN char e_command_too_recursive[]
392 INIT(= N_("E169: Command too recursive"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000393#ifdef FEAT_EVAL
Bram Moolenaar1a992222021-12-31 17:25:48 +0000394EXTERN char e_missing_endwhile[]
395 INIT(= N_("E170: Missing :endwhile"));
396EXTERN char e_missing_endfor[]
397 INIT(= N_("E170: Missing :endfor"));
398EXTERN char e_missing_endif[]
399 INIT(= N_("E171: Missing :endif"));
400EXTERN char e_missing_marker[]
401 INIT(= N_("E172: Missing marker"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000402#endif
Bram Moolenaar1a992222021-12-31 17:25:48 +0000403EXTERN char e_nr_more_file_to_edit[]
404 INIT(= N_("E173: %d more file to edit"));
405EXTERN char e_nr_more_files_to_edit[]
406 INIT(= N_("E173: %d more files to edit"));
407EXTERN char e_command_already_exists_add_bang_to_replace_it_str[]
408 INIT(= N_("E174: Command already exists: add ! to replace it: %s"));
409EXTERN char e_no_attribute_specified[]
410 INIT(= N_("E175: No attribute specified"));
411EXTERN char e_invalid_number_of_arguments[]
412 INIT(= N_("E176: Invalid number of arguments"));
413EXTERN char e_count_cannot_be_specified_twice[]
414 INIT(= N_("E177: Count cannot be specified twice"));
415EXTERN char e_invalid_default_value_for_count[]
416 INIT(= N_("E178: Invalid default value for count"));
417EXTERN char e_argument_required_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100418 INIT(= N_("E179: Argument required for %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000419EXTERN char e_invalid_complete_value_str[]
420 INIT(= N_("E180: Invalid complete value: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +0000421EXTERN char e_invalid_address_type_value_str[]
422 INIT(= N_("E180: Invalid address type value: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000423EXTERN char e_invalid_attribute_str[]
424 INIT(= N_("E181: Invalid attribute: %s"));
425EXTERN char e_invalid_command_name[]
426 INIT(= N_("E182: Invalid command name"));
427EXTERN char e_user_defined_commands_must_start_with_an_uppercase_letter[]
428 INIT(= N_("E183: User defined commands must start with an uppercase letter"));
Bram Moolenaarbdcba242021-09-12 20:58:02 +0200429EXTERN char e_no_such_user_defined_command_str[]
430 INIT(= N_("E184: No such user-defined command: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000431EXTERN char e_cannot_find_color_scheme_str[]
432 INIT(= N_("E185: Cannot find color scheme '%s'"));
433EXTERN char e_no_previous_directory[]
434 INIT(= N_("E186: No previous directory"));
435EXTERN char e_directory_unknown[]
436 INIT(= N_("E187: Directory unknown"));
437EXTERN char e_obtaining_window_position_not_implemented_for_this_platform[]
438 INIT(= N_("E188: Obtaining window position not implemented for this platform"));
439EXTERN char e_str_exists_add_bang_to_override[]
440 INIT(= N_("E189: \"%s\" exists (add ! to override)"));
441EXTERN char e_cannot_open_str_for_writing_2[]
442 INIT(= N_("E190: Cannot open \"%s\" for writing"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000443EXTERN char e_argument_must_be_letter_or_forward_backward_quote[]
444 INIT(= N_("E191: Argument must be a letter or forward/backward quote"));
445EXTERN char e_recursive_use_of_normal_too_deep[]
446 INIT(= N_("E192: Recursive use of :normal too deep"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000447#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000448EXTERN char e_str_not_inside_function[]
449 INIT(= N_("E193: %s not inside a function"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000450#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000451EXTERN char e_no_alternate_file_name_to_substitute_for_hash[]
452 INIT(= N_("E194: No alternate file name to substitute for '#'"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000453#ifdef FEAT_VIMINFO
Bram Moolenaar6d057012021-12-31 18:49:43 +0000454EXTERN char e_cannot_open_viminfo_file_for_reading[]
455 INIT(= N_("E195: Cannot open viminfo file for reading"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000456#endif
mityu61065042021-07-19 20:07:21 +0200457#ifndef FEAT_DIGRAPHS
458EXTERN char e_no_digraphs_version[]
459 INIT(= N_("E196: No digraphs in this version"));
460#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000461EXTERN char e_cannot_set_language_to_str[]
462 INIT(= N_("E197: Cannot set language to \"%s\""));
463// E198 unused
Dominique Pellef85a4242022-01-09 12:49:31 +0000464#ifdef FEAT_CMDWIN
Bram Moolenaar6d057012021-12-31 18:49:43 +0000465EXTERN char e_active_window_or_buffer_deleted[]
466 INIT(= N_("E199: Active window or buffer deleted"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000467#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000468EXTERN char e_readpre_autocommands_made_file_unreadable[]
469 INIT(= N_("E200: *ReadPre autocommands made the file unreadable"));
470EXTERN char e_readpre_autocommands_must_not_change_current_buffer[]
471 INIT(= N_("E201: *ReadPre autocommands must not change current buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000472#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000473EXTERN char e_conversion_mad_file_unreadable[]
474 INIT(= N_("E202: Conversion made file unreadable!"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000475#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000476EXTERN char e_autocommands_deleted_or_unloaded_buffer_to_be_written[]
477 INIT(= N_("E203: Autocommands deleted or unloaded buffer to be written"));
478EXTERN char e_autocommands_changed_number_of_lines_in_unexpected_way[]
479 INIT(= N_("E204: Autocommand changed number of lines in unexpected way"));
480EXTERN char e_patchmode_cant_save_original_file[]
481 INIT(= N_("E205: Patchmode: can't save original file"));
482EXTERN char e_patchmode_cant_touch_empty_original_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100483 INIT(= N_("E206: Patchmode: can't touch empty original file"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000484EXTERN char e_cant_delete_backup_file[]
485 INIT(= N_("E207: Can't delete backup file"));
486EXTERN char e_error_writing_to_str[]
487 INIT(= N_("E208: Error writing to \"%s\""));
488EXTERN char e_error_closing_str[]
489 INIT(= N_("E209: Error closing \"%s\""));
490EXTERN char e_error_reading_str[]
491 INIT(= N_("E210: Error reading \"%s\""));
492EXTERN char e_file_str_no_longer_available[]
493 INIT(= N_("E211: File \"%s\" no longer available"));
494EXTERN char e_cant_open_file_for_writing[]
495 INIT(= N_("E212: Can't open file for writing"));
496EXTERN char e_cannot_convert_add_bang_to_write_without_conversion[]
497 INIT(= N_("E213: Cannot convert (add ! to write without conversion)"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000498#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000499EXTERN char e_cant_find_temp_file_for_writing[]
500 INIT(= N_("E214: Can't find temp file for writing"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000501#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000502EXTERN char e_illegal_character_after_star_str[]
503 INIT(= N_("E215: Illegal character after *: %s"));
504EXTERN char e_no_such_event_str[]
505 INIT(= N_("E216: No such event: %s"));
506EXTERN char e_no_such_group_or_event_str[]
507 INIT(= N_("E216: No such group or event: %s"));
508EXTERN char e_cant_execute_autocommands_for_all_events[]
509 INIT(= N_("E217: Can't execute autocommands for ALL events"));
510EXTERN char e_autocommand_nesting_too_deep[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100511 INIT(= N_("E218: Autocommand nesting too deep"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000512EXTERN char e_missing_open_curly[]
513 INIT(= N_("E219: Missing {."));
514EXTERN char e_missing_close_curly[]
515 INIT(= N_("E220: Missing }."));
Dominique Pellef85a4242022-01-09 12:49:31 +0000516#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000517EXTERN char e_marker_cannot_start_with_lower_case_letter[]
518 INIT(= N_("E221: Marker cannot start with lower case letter"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000519#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000520EXTERN char e_add_to_internal_buffer_that_was_already_read_from[]
521 INIT(= N_("E222: Add to internal buffer that was already read from"));
522EXTERN char e_recursive_mapping[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100523 INIT(= N_("E223: Recursive mapping"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000524EXTERN char e_global_abbreviation_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100525 INIT(= N_("E224: Global abbreviation already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000526EXTERN char e_global_mapping_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100527 INIT(= N_("E225: Global mapping already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000528EXTERN char e_abbreviation_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100529 INIT(= N_("E226: Abbreviation already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000530EXTERN char e_mapping_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100531 INIT(= N_("E227: Mapping already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000532EXTERN char e_makemap_illegal_mode[]
533 INIT(= N_("E228: makemap: Illegal mode"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000534#ifdef FEAT_GUI
Bram Moolenaar6d057012021-12-31 18:49:43 +0000535EXTERN char e_cannot_start_the_GUI[]
536 INIT(= N_("E229: Cannot start the GUI"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000537EXTERN char e_cannot_read_from_str[]
538 INIT(= N_("E230: Cannot read from \"%s\""));
539EXTERN char e_guifontwide_invalid[]
540 INIT(= N_("E231: 'guifontwide' invalid"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000541#ifdef FEAT_BEVAL_GUI
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000542EXTERN char e_cannot_create_ballooneval_with_both_message_and_callback[]
543 INIT(= N_("E232: Cannot create BalloonEval with both message and callback"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000544#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000545# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000546EXTERN char e_cannot_open_display[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100547 INIT(= N_("E233: Cannot open display"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000548# endif
549# if defined(FEAT_XFONTSET)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000550EXTERN char e_unknown_fontset_str[]
551 INIT(= N_("E234: Unknown fontset: %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000552# endif
553# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000554 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
555EXTERN char e_unknown_font_str[]
556 INIT(= N_("E235: Unknown font: %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000557# endif
558# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000559EXTERN char e_font_str_is_not_fixed_width[]
560 INIT(= N_("E236: Font \"%s\" is not fixed-width"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000561# endif
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000562#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000563#ifdef MSWIN
564EXTERN char e_printer_selection_failed[]
565 INIT(= N_("E237: Printer selection failed"));
566EXTERN char e_print_error_str[]
567 INIT(= N_("E238: Print error: %s"));
568#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000569#ifdef FEAT_SIGNS
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000570EXTERN char e_invalid_sign_text_str[]
571 INIT(= N_("E239: Invalid sign text: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000572#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000573#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
574EXTERN char e_no_connection_to_x_server[]
575 INIT(= N_("E240: No connection to the X server"));
576#endif
577#ifdef FEAT_CLIENTSERVER
578EXTERN char e_unable_to_send_to_str[]
579 INIT(= N_("E241: Unable to send to %s"));
580#endif
581EXTERN char e_cant_split_window_while_closing_another[]
582 INIT(= N_("E242: Can't split a window while closing another"));
583#if defined(FEAT_GUI_MSWIN) && !defined(FEAT_OLE)
584EXTERN char e_argument_not_supported_str_use_ole_version[]
585 INIT(= N_("E243: Argument not supported: \"-%s\"; Use the OLE version."));
586#endif
587#ifdef MSWIN
588EXTERN char e_illegal_str_name_str_in_font_name_str[]
589 INIT(= N_("E244: Illegal %s name \"%s\" in font name \"%s\""));
590EXTERN char e_illegal_char_nr_in_font_name_str[]
591 INIT(= N_("E245: Illegal char '%c' in font name \"%s\""));
592#endif
593EXTERN char e_filechangedshell_autocommand_deleted_buffer[]
594 INIT(= N_("E246: FileChangedShell autocommand deleted buffer"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000595#ifdef FEAT_CLIENTSERVER
596EXTERN char e_no_registered_server_named_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100597 INIT(= N_("E247: No registered server named \"%s\""));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000598EXTERN char e_failed_to_send_command_to_destination_program[]
599 INIT(= N_("E248: Failed to send command to the destination program"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000600#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000601EXTERN char e_window_layout_changed_unexpectedly[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100602 INIT(= N_("E249: Window layout changed unexpectedly"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000603#ifdef FEAT_XFONTSET
604EXTERN char e_fonts_for_the_following_charsets_are_missing_in_fontset[]
605 INIT(= N_("E250: Fonts for the following charsets are missing in fontset %s:"));
606#endif
607#ifdef FEAT_CLIENTSERVER
608EXTERN char e_vim_instance_registry_property_is_badly_formed_deleted[]
609 INIT(= N_("E251: VIM instance registry property is badly formed. Deleted!"));
610#endif
611#ifdef FEAT_GUI_X11
612EXTERN char e_fontsent_name_str_font_str_is_not_fixed_width[]
613 INIT(= N_("E252: Fontset name: %s - Font '%s' is not fixed-width"));
614EXTERN char e_fontset_name_str[]
615 INIT(= N_("E253: Fontset name: %s"));
616#endif
Drew Vogele30d1022021-10-24 20:35:07 +0100617#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
618EXTERN char e_cannot_allocate_color_str[]
619 INIT(= N_("E254: Cannot allocate color %s"));
620#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +0000621#if defined(FEAT_SIGN_ICONS) && !defined(FEAT_GUI_GTK)
622EXTERN char e_couldnt_read_in_sign_data[]
623 INIT(= N_("E255: Couldn't read in sign data"));
624#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000625// E256 unused
Dominique Pellef85a4242022-01-09 12:49:31 +0000626#ifdef FEAT_CSCOPE
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000627EXTERN char e_cstag_tag_not_founc[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +0100628 INIT(= N_("E257: cstag: Tag not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000629#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000630#ifdef FEAT_CLIENTSERVER
631EXTERN char e_unable_to_send_to_client[]
632 INIT(= N_("E258: Unable to send to client"));
633#endif
634#ifdef FEAT_CSCOPE
635EXTERN char e_no_matches_found_for_cscope_query_str_of_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100636 INIT(= N_("E259: No matches found for cscope query %s of %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000637#endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000638#ifdef FEAT_EVAL
639EXTERN char e_missing_name_after_method[]
640 INIT(= N_("E260: Missing name after ->"));
641#endif
642#ifdef FEAT_CSCOPE
643EXTERN char e_cscope_connection_str_not_founc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100644 INIT(= N_("E261: Cscope connection %s not found"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000645EXTERN char e_error_reading_cscope_connection_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100646 INIT(= N_("E262: Error reading cscope connection %d"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000647#endif
Bram Moolenaar6b1a99d2022-01-02 01:04:09 +0000648#if defined(DYNAMIC_PYTHON) || defined(DYNAMIC_PYTHON3)
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000649EXTERN char e_sorry_this_command_is_disabled_python_library_could_not_be_found[]
650 INIT(= N_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
651#endif
652#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
653EXTERN char e_python_error_initialising_io_object[]
654 INIT(= N_("E264: Python: Error initialising I/O objects"));
655#endif
656#ifdef FEAT_RUBY
657EXTERN char e_dollar_must_be_an_instance_of_string[]
658 INIT(= N_("E265: $_ must be an instance of String"));
659#endif
660#ifdef DYNAMIC_RUBY
661EXTERN char e_sorry_this_command_is_disabled_the_ruby_library_could_not_be_loaded[]
662 INIT(= N_("E266: Sorry, this command is disabled, the Ruby library could not be loaded."));
663#endif
664#ifdef FEAT_RUBY
665EXTERN char e_unexpected_return[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100666 INIT(= N_("E267: Unexpected return"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000667EXTERN char e_unexpected_next[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100668 INIT(= N_("E268: Unexpected next"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000669EXTERN char e_unexpected_break[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100670 INIT(= N_("E269: Unexpected break"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000671EXTERN char e_unexpected_redo[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100672 INIT(= N_("E270: Unexpected redo"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000673EXTERN char e_retry_outside_of_rescue_clause[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100674 INIT(= N_("E271: Retry outside of rescue clause"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000675EXTERN char e_unhandled_exception[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100676 INIT(= N_("E272: Unhandled exception"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000677EXTERN char e_unknown_longjmp_status_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100678 INIT(= N_("E273: Unknown longjmp status %d"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000679#endif
Bram Moolenaar3a846e62022-01-01 16:21:00 +0000680#ifdef FEAT_EVAL
681EXTERN char e_no_white_space_allowed_before_parenthesis[]
682 INIT(= N_("E274: No white space allowed before parenthesis"));
683#endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000684#ifdef FEAT_PROP_POPUP
685EXTERN char e_cannot_add_text_property_to_unloaded_buffer[]
686 INIT(= N_("E275: Cannot add text property to unloaded buffer"));
687#endif
688#ifdef FEAT_EVAL
689EXTERN char e_cannot_use_function_as_method_str[]
690 INIT(= N_("E276: Cannot use function as a method: %s"));
691#endif
692#ifdef FEAT_CLIENTSERVER
693EXTERN char e_unable_to_read_server_reply[]
694 INIT(= N_("E277: Unable to read a server reply"));
695#endif
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000696// E278 unused
Dominique Pellef85a4242022-01-09 12:49:31 +0000697#if defined(FEAT_TERMINAL) && !defined(UNIX) && !defined(MSWIN)
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000698EXTERN char e_sorry_plusplusshell_not_supported_on_this_system[]
699 INIT(= N_("E279: Sorry, ++shell is not supported on this system"));
700#endif
701#ifdef FEAT_TCL
702EXTERN char e_tcl_fatal_error_reflist_corrupt_please_report_this[]
703 INIT(= N_("E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim.org"));
704#endif
705// E281 unused
706EXTERN char e_cannot_read_from_str_2[]
707 INIT(= N_("E282: Cannot read from \"%s\""));
708EXTERN char e_no_marks_matching_str[]
709 INIT(= N_("E283: No marks matching \"%s\""));
710#ifdef FEAT_XIM
Dominique Pellef85a4242022-01-09 12:49:31 +0000711# ifndef FEAT_GUI_GTK
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000712EXTERN char e_cannot_set_ic_values[]
713 INIT(= N_("E284: Cannot set IC values"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000714# endif
715# ifdef FEAT_GUI_X11
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000716EXTERN char e_failed_to_create_input_context[]
717 INIT(= N_("E285: Failed to create input context"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000718EXTERN char e_failed_to_open_input_method[]
719 INIT(= N_("E286: Failed to open input method"));
720EXTERN char e_warning_could_not_set_destroy_callback_to_im[]
721 INIT(= N_("E287: Warning: Could not set destroy callback to IM"));
722EXTERN char e_input_method_doesnt_support_any_style[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100723 INIT(= N_("E288: Input method doesn't support any style"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000724EXTERN char e_input_method_doesnt_support_my_preedit_type[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100725 INIT(= N_("E289: Input method doesn't support my preedit type"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000726# endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000727#endif
728#ifdef FEAT_SEARCH_EXTRA
729EXTERN char e_list_or_number_required[]
730 INIT(= N_("E290: List or number required"));
731#endif
732// E291 unused
733EXTERN char e_invalid_count_for_del_bytes_nr[]
734 INIT(= N_("E292: Invalid count for del_bytes(): %ld"));
735EXTERN char e_block_was_not_locked[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100736 INIT(= N_("E293: Block was not locked"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000737EXTERN char e_seek_error_in_swap_file_read[]
738 INIT(= N_("E294: Seek error in swap file read"));
739EXTERN char e_read_error_in_swap_file[]
740 INIT(= N_("E295: Read error in swap file"));
741EXTERN char e_seek_error_in_swap_file_write[]
742 INIT(= N_("E296: Seek error in swap file write"));
743EXTERN char e_write_error_in_swap_file[]
744 INIT(= N_("E297: Write error in swap file"));
745EXTERN char e_didnt_get_block_nr_zero[]
746 INIT(= N_("E298: Didn't get block nr 0?"));
747EXTERN char e_didnt_get_block_nr_one[]
748 INIT(= N_("E298: Didn't get block nr 1?"));
749EXTERN char e_didnt_get_block_nr_two[]
750 INIT(= N_("E298: Didn't get block nr 2?"));
Bram Moolenaare96eea72022-01-28 21:00:51 +0000751#ifdef FEAT_PERL
752EXTERN char e_perl_evaluation_forbidden_in_sandbox_without_safe_module[]
753 INIT(= N_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
754#endif
Bram Moolenaareaaac012022-01-02 17:00:40 +0000755EXTERN char e_swap_file_already_exists_symlink_attack[]
756 INIT(= N_("E300: Swap file already exists (symlink attack?)"));
757EXTERN char e_oops_lost_the_swap_file[]
758 INIT(= N_("E301: Oops, lost the swap file!!!"));
759EXTERN char e_could_not_rename_swap_file[]
760 INIT(= N_("E302: Could not rename swap file"));
761EXTERN char e_unable_to_open_swap_file_for_str_recovery_impossible[]
762 INIT(= N_("E303: Unable to open swap file for \"%s\", recovery impossible"));
763EXTERN char e_ml_upd_block0_didnt_get_block_zero[]
764 INIT(= N_("E304: ml_upd_block0(): Didn't get block 0??"));
765EXTERN char e_no_swap_file_found_for_str[]
766 INIT(= N_("E305: No swap file found for %s"));
767EXTERN char e_cannot_open_str[]
768 INIT(= N_("E306: Cannot open %s"));
769EXTERN char e_str_does_not_look_like_vim_swap_file[]
770 INIT(= N_("E307: %s does not look like a Vim swap file"));
771EXTERN char e_warning_original_file_may_have_been_changed[]
772 INIT(= N_("E308: Warning: Original file may have been changed"));
773EXTERN char e_unable_to_read_block_one_from_str[]
774 INIT(= N_("E309: Unable to read block 1 from %s"));
775EXTERN char e_block_one_id_wrong_str_not_swp_file[]
776 INIT(= N_("E310: Block 1 ID wrong (%s not a .swp file?)"));
777EXTERN char e_recovery_interrupted[]
778 INIT(= N_("E311: Recovery Interrupted"));
779EXTERN char e_errors_detected_while_recovering_look_for_lines_starting_with_questions[]
780 INIT(= N_("E312: Errors detected while recovering; look for lines starting with ???"));
781EXTERN char e_cannot_preserve_there_is_no_swap_file[]
782 INIT(= N_("E313: Cannot preserve, there is no swap file"));
783EXTERN char e_preserve_failed[]
784 INIT(= N_("E314: Preserve failed"));
785EXTERN char e_ml_get_invalid_lnum_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100786 INIT(= N_("E315: ml_get: Invalid lnum: %ld"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000787EXTERN char e_ml_get_cannot_find_line_nr_in_buffer_nr_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100788 INIT(= N_("E316: ml_get: Cannot find line %ld in buffer %d %s"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000789EXTERN char e_pointer_block_id_wrong[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100790 INIT(= N_("E317: Pointer block id wrong"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000791EXTERN char e_pointer_block_id_wrong_two[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100792 INIT(= N_("E317: Pointer block id wrong 2"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000793EXTERN char e_pointer_block_id_wrong_three[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100794 INIT(= N_("E317: Pointer block id wrong 3"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000795EXTERN char e_pointer_block_id_wrong_four[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100796 INIT(= N_("E317: Pointer block id wrong 4"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000797EXTERN char e_updated_too_many_blocks[]
798 INIT(= N_("E318: Updated too many blocks?"));
799EXTERN char e_sorry_command_is_not_available_in_this_version[]
800 INIT(= N_("E319: Sorry, the command is not available in this version"));
801EXTERN char e_cannot_find_line_nr[]
802 INIT(= N_("E320: Cannot find line %ld"));
803EXTERN char e_could_not_reload_str[]
804 INIT(= N_("E321: Could not reload \"%s\""));
805EXTERN char e_line_number_out_of_range_nr_past_the_end[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100806 INIT(= N_("E322: Line number out of range: %ld past the end"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000807EXTERN char e_line_count_wrong_in_block_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100808 INIT(= N_("E323: Line count wrong in block %ld"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000809#ifdef FEAT_POSTSCRIPT
810EXTERN char e_cant_open_postscript_output_file[]
811 INIT(= N_("E324: Can't open PostScript output file"));
812#endif
813EXTERN char e_attention[]
814 INIT(= N_("E325: ATTENTION"));
815EXTERN char e_too_many_swap_files_found[]
816 INIT(= N_("E326: Too many swap files found"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000817#ifdef FEAT_MENU
Bram Moolenaareaaac012022-01-02 17:00:40 +0000818EXTERN char_u e_part_of_menu_item_path_is_not_sub_menu[]
819 INIT(= N_("E327: Part of menu-item path is not sub-menu"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +0000820EXTERN char e_menu_only_exists_in_another_mode[]
821 INIT(= N_("E328: Menu only exists in another mode"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000822EXTERN char_u e_no_menu_str[]
823 INIT(= N_("E329: No menu \"%s\""));
Bram Moolenaard88be5b2022-01-04 19:57:55 +0000824EXTERN char e_menu_path_must_not_lead_to_sub_menu[]
Bram Moolenaareaaac012022-01-02 17:00:40 +0000825 INIT(= N_("E330: Menu path must not lead to a sub-menu"));
826EXTERN char e_must_not_add_menu_items_directly_to_menu_bar[]
827 INIT(= N_("E331: Must not add menu items directly to menu bar"));
828EXTERN char e_separator_cannot_be_part_of_menu_path[]
829 INIT(= N_("E332: Separator cannot be part of a menu path"));
830EXTERN char e_menu_path_must_lead_to_menu_item[]
831 INIT(= N_("E333: Menu path must lead to a menu item"));
832EXTERN char e_menu_not_found_str[]
833 INIT(= N_("E334: Menu not found: %s"));
834EXTERN char e_menu_not_defined_for_str_mode[]
835 INIT(= N_("E335: Menu not defined for %s mode"));
836EXTERN char e_menu_path_must_lead_to_sub_menu[]
837 INIT(= N_("E336: Menu path must lead to a sub-menu"));
838EXTERN char e_menu_not_found_check_menu_names[]
839 INIT(= N_("E337: Menu not found - check menu names"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000840#endif
841#ifdef FEAT_BROWSE
Bram Moolenaareaaac012022-01-02 17:00:40 +0000842EXTERN char e_sorry_no_file_browser_in_console_mode[]
843 INIT(= N_("E338: Sorry, no file browser in console mode"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000844#endif
Bram Moolenaareaaac012022-01-02 17:00:40 +0000845EXTERN char e_pattern_too_long[]
846 INIT(= N_("E339: Pattern too long"));
847// E340 unused
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000848EXTERN char e_internal_error_lalloc_zero[]
849 INIT(= N_("E341: Internal error: lalloc(0, )"));
850EXTERN char e_out_of_memory_allocating_nr_bytes[]
851 INIT(= N_("E342: Out of memory! (allocating %lu bytes)"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000852EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[]
853 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."));
854EXTERN char e_cant_find_directory_str_in_cdpath[]
855 INIT(= N_("E344: Can't find directory \"%s\" in cdpath"));
856EXTERN char e_cant_find_file_str_in_path[]
857 INIT(= N_("E345: Can't find file \"%s\" in path"));
858EXTERN char e_no_more_directory_str_found_in_cdpath[]
859 INIT(= N_("E346: No more directory \"%s\" found in cdpath"));
860EXTERN char e_no_more_file_str_found_in_path[]
861 INIT(= N_("E347: No more file \"%s\" found in path"));
862EXTERN char e_no_string_under_cursor[]
863 INIT(= N_("E348: No string under cursor"));
864EXTERN char e_no_identifier_under_cursor[]
865 INIT(= N_("E349: No identifier under cursor"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000866#ifdef FEAT_FOLDING
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000867EXTERN char e_cannot_create_fold_with_current_foldmethod[]
868 INIT(= N_("E350: Cannot create fold with current 'foldmethod'"));
869EXTERN char e_cannot_delete_fold_with_current_foldmethod[]
870 INIT(= N_("E351: Cannot delete fold with current 'foldmethod'"));
871EXTERN char e_cannot_erase_folds_with_current_foldmethod[]
872 INIT(= N_("E352: Cannot erase folds with current 'foldmethod'"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000873#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000874EXTERN char e_nothing_in_register_str[]
875 INIT(= N_("E353: Nothing in register %s"));
876EXTERN char e_invalid_register_name_str[]
877 INIT(= N_("E354: Invalid register name: '%s'"));
878EXTERN char e_unknown_option_str_2[]
879 INIT(= N_("E355: Unknown option: %s"));
880EXTERN char e_get_varp_error[]
881 INIT(= N_("E356: get_varp ERROR"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000882#ifdef FEAT_LANGMAP
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000883EXTERN char e_langmap_matching_character_missing_for_str[]
884 INIT(= N_("E357: 'langmap': Matching character missing for %s"));
885EXTERN char e_langmap_extra_characters_after_semicolon_str[]
886 INIT(= N_("E358: 'langmap': Extra characters after semicolon: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000887#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +0000888#if defined(AMIGA) || defined(MACOS_X) || defined(MSWIN) \
889 || defined(UNIX) || defined(VMS)
890EXTERN char e_screen_mode_setting_not_supported[]
891 INIT(= N_("E359: Screen mode setting not supported"));
892#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000893#ifdef AMIGA
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000894EXTERN char e_cannot_execute_shell_with_f_option[]
895 INIT(= N_("E360: Cannot execute shell with -f option"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000896#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000897// E361 unused
Bram Moolenaar73e28dc2022-09-17 21:08:33 +0100898#if defined(FEAT_EVAL)
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000899EXTERN char e_using_boolean_value_as_float[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000900 INIT(= N_("E362: Using a boolean value as a Float"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000901#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +0000902EXTERN char e_pattern_uses_more_memory_than_maxmempattern[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100903 INIT(= N_("E363: Pattern uses more memory than 'maxmempattern'"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000904#ifdef FEAT_LIBCALL
905EXTERN char e_library_call_failed_for_str[]
906 INIT(= N_("E364: Library call failed for \"%s()\""));
907#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000908#ifdef FEAT_POSTSCRIPT
909EXTERN char e_failed_to_print_postscript_file[]
910 INIT(= N_("E365: Failed to print PostScript file"));
911#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000912#ifdef FEAT_PROP_POPUP
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000913EXTERN char e_not_allowed_to_enter_popup_window[]
914 INIT(= N_("E366: Not allowed to enter a popup window"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000915#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000916EXTERN char e_no_such_group_str[]
917 INIT(= N_("E367: No such group: \"%s\""));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000918#ifdef FEAT_LIBCALL
919EXTERN char e_got_sig_str_in_libcall[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100920 INIT(= N_("E368: Got SIG%s in libcall()"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000921#endif
922EXTERN char e_invalid_item_in_str_brackets[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100923 INIT(= N_("E369: Invalid item in %s%%[]"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000924#ifdef USING_LOAD_LIBRARY
925EXTERN char e_could_not_load_library_str_str[]
926 INIT(= N_("E370: Could not load library %s: %s"));
927#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000928#ifdef FEAT_GUI_MSWIN
929EXTERN char e_command_not_found[]
930 INIT(= N_("E371: Command not found"));
931#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000932#ifdef FEAT_QUICKFIX
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000933EXTERN char e_too_many_chr_in_format_string[]
934 INIT(= N_("E372: Too many %%%c in format string"));
935EXTERN char e_unexpected_chr_in_format_str[]
936 INIT(= N_("E373: Unexpected %%%c in format string"));
937EXTERN char e_missing_rsb_in_format_string[]
938 INIT(= N_("E374: Missing ] in format string"));
939EXTERN char e_unsupported_chr_in_format_string[]
940 INIT(= N_("E375: Unsupported %%%c in format string"));
941EXTERN char e_invalid_chr_in_format_string_prefix[]
942 INIT(= N_("E376: Invalid %%%c in format string prefix"));
943EXTERN char e_invalid_chr_in_format_string[]
944 INIT(= N_("E377: Invalid %%%c in format string"));
945EXTERN char e_errorformat_contains_no_pattern[]
946 INIT(= N_("E378: 'errorformat' contains no pattern"));
947EXTERN char e_missing_or_empty_directory_name[]
948 INIT(= N_("E379: Missing or empty directory name"));
949EXTERN char e_at_bottom_of_quickfix_stack[]
950 INIT(= N_("E380: At bottom of quickfix stack"));
951EXTERN char e_at_top_of_quickfix_stack[]
952 INIT(= N_("E381: At top of quickfix stack"));
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +0100953#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000954EXTERN char e_cannot_write_buftype_option_is_set[]
955 INIT(= N_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000956EXTERN char e_invalid_search_string_str[]
957 INIT(= N_("E383: Invalid search string: %s"));
958EXTERN char e_search_hit_top_without_match_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100959 INIT(= N_("E384: Search hit TOP without match for: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000960EXTERN char e_search_hit_bottom_without_match_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100961 INIT(= N_("E385: Search hit BOTTOM without match for: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000962EXTERN char e_expected_question_or_slash_after_semicolon[]
963 INIT(= N_("E386: Expected '?' or '/' after ';'"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000964#ifdef FEAT_FIND_ID
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000965EXTERN char e_match_is_on_current_line[]
966 INIT(= N_("E387: Match is on current line"));
967EXTERN char e_couldnt_find_definition[]
968 INIT(= N_("E388: Couldn't find definition"));
969EXTERN char e_couldnt_find_pattern[]
970 INIT(= N_("E389: Couldn't find pattern"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000971#endif
972#ifdef FEAT_SYN_HL
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000973EXTERN char e_illegal_argument_str_2[]
974 INIT(= N_("E390: Illegal argument: %s"));
975EXTERN char e_no_such_syntax_cluster_1[]
976 INIT(= N_("E391: No such syntax cluster: %s"));
977EXTERN char e_no_such_syntax_cluster_2[]
978 INIT(= N_("E392: No such syntax cluster: %s"));
979EXTERN char e_groupthere_not_accepted_here[]
980 INIT(= N_("E393: group[t]here not accepted here"));
981EXTERN char e_didnt_find_region_item_for_str[]
982 INIT(= N_("E394: Didn't find region item for %s"));
983EXTERN char e_contains_argument_not_accepted_here[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100984 INIT(= N_("E395: Contains argument not accepted here"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000985// E396 unused
986EXTERN char e_filename_required[]
987 INIT(= N_("E397: Filename required"));
988EXTERN char e_missing_equal_str[]
989 INIT(= N_("E398: Missing '=': %s"));
990EXTERN char e_not_enough_arguments_syntax_region_str[]
991 INIT(= N_("E399: Not enough arguments: syntax region %s"));
992EXTERN char e_no_cluster_specified[]
993 INIT(= N_("E400: No cluster specified"));
994EXTERN char e_pattern_delimiter_not_found_str[]
995 INIT(= N_("E401: Pattern delimiter not found: %s"));
996EXTERN char e_garbage_after_pattern_str[]
997 INIT(= N_("E402: Garbage after pattern: %s"));
998EXTERN char e_syntax_sync_line_continuations_pattern_specified_twice[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +0100999 INIT(= N_("E403: syntax sync: Line continuations pattern specified twice"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001000EXTERN char e_illegal_arguments_str[]
1001 INIT(= N_("E404: Illegal arguments: %s"));
1002EXTERN char e_missing_equal_sign_str[]
1003 INIT(= N_("E405: Missing equal sign: %s"));
1004EXTERN char e_empty_argument_str[]
1005 INIT(= N_("E406: Empty argument: %s"));
1006EXTERN char e_str_not_allowed_here[]
1007 INIT(= N_("E407: %s not allowed here"));
1008EXTERN char e_str_must_be_first_in_contains_list[]
1009 INIT(= N_("E408: %s must be first in contains list"));
1010EXTERN char e_unknown_group_name_str[]
1011 INIT(= N_("E409: Unknown group name: %s"));
1012EXTERN char e_invalid_syntax_subcommand_str[]
1013 INIT(= N_("E410: Invalid :syntax subcommand: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001014#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001015EXTERN char e_highlight_group_name_not_found_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001016 INIT(= N_("E411: Highlight group not found: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001017EXTERN char e_not_enough_arguments_highlight_link_str[]
1018 INIT(= N_("E412: Not enough arguments: \":highlight link %s\""));
1019EXTERN char e_too_many_arguments_highlight_link_str[]
1020 INIT(= N_("E413: Too many arguments: \":highlight link %s\""));
1021EXTERN char e_group_has_settings_highlight_link_ignored[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001022 INIT(= N_("E414: Group has settings, highlight link ignored"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001023EXTERN char e_unexpected_equal_sign_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001024 INIT(= N_("E415: Unexpected equal sign: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001025EXTERN char e_missing_equal_sign_str_2[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001026 INIT(= N_("E416: Missing equal sign: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001027EXTERN char e_missing_argument_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001028 INIT(= N_("E417: Missing argument: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001029EXTERN char e_illegal_value_str[]
1030 INIT(= N_("E418: Illegal value: %s"));
1031EXTERN char e_fg_color_unknown[]
1032 INIT(= N_("E419: FG color unknown"));
1033EXTERN char e_bg_color_unknown[]
1034 INIT(= N_("E420: BG color unknown"));
1035EXTERN char e_color_name_or_number_not_recognized[]
1036 INIT(= N_("E421: Color name or number not recognized: %s"));
1037EXTERN char e_terminal_code_too_long_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001038 INIT(= N_("E422: Terminal code too long: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001039EXTERN char e_illegal_argument_str_3[]
1040 INIT(= N_("E423: Illegal argument: %s"));
1041EXTERN char e_too_many_different_highlighting_attributes_in_use[]
1042 INIT(= N_("E424: Too many different highlighting attributes in use"));
1043EXTERN char e_cannot_go_before_first_matching_tag[]
1044 INIT(= N_("E425: Cannot go before first matching tag"));
1045EXTERN char e_tag_not_found_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001046 INIT(= N_("E426: Tag not found: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001047EXTERN char e_there_is_only_one_matching_tag[]
1048 INIT(= N_("E427: There is only one matching tag"));
1049EXTERN char e_cannot_go_beyond_last_matching_tag[]
1050 INIT(= N_("E428: Cannot go beyond last matching tag"));
1051EXTERN char e_file_str_does_not_exist[]
1052 INIT(= N_("E429: File \"%s\" does not exist"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001053#ifdef FEAT_EMACS_TAGS
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001054EXTERN char e_tag_file_path_truncated_for_str[]
1055 INIT(= N_("E430: Tag file path truncated for %s\n"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001056#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001057EXTERN char e_format_error_in_tags_file_str[]
1058 INIT(= N_("E431: Format error in tags file \"%s\""));
1059EXTERN char e_tags_file_not_sorted_str[]
1060 INIT(= N_("E432: Tags file not sorted: %s"));
1061EXTERN char e_no_tags_file[]
1062 INIT(= N_("E433: No tags file"));
1063EXTERN char e_canot_find_tag_pattern[]
1064 INIT(= N_("E434: Can't find tag pattern"));
1065EXTERN char e_couldnt_find_tag_just_guessing[]
1066 INIT(= N_("E435: Couldn't find tag, just guessing!"));
1067EXTERN char e_no_str_entry_in_termcap[]
1068 INIT(= N_("E436: No \"%s\" entry in termcap"));
1069EXTERN char e_terminal_capability_cm_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001070 INIT(= N_("E437: Terminal capability \"cm\" required"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001071EXTERN char e_u_undo_line_numbers_wrong[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001072 INIT(= N_("E438: u_undo: Line numbers wrong"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001073EXTERN char e_undo_list_corrupt[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001074 INIT(= N_("E439: Undo list corrupt"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001075EXTERN char e_undo_line_missing[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001076 INIT(= N_("E440: Undo line missing"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001077#ifdef FEAT_QUICKFIX
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001078EXTERN char e_there_is_no_preview_window[]
1079 INIT(= N_("E441: There is no preview window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001080#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001081EXTERN char e_cant_split_topleft_and_botright_at_the_same_time[]
1082 INIT(= N_("E442: Can't split topleft and botright at the same time"));
1083EXTERN char e_cannot_rotate_when_another_window_is_split[]
1084 INIT(= N_("E443: Cannot rotate when another window is split"));
1085EXTERN char e_cannot_close_last_window[]
1086 INIT(= N_("E444: Cannot close last window"));
1087EXTERN char e_other_window_contains_changes[]
1088 INIT(= N_("E445: Other window contains changes"));
1089EXTERN char e_no_file_name_under_cursor[]
1090 INIT(= N_("E446: No file name under cursor"));
1091EXTERN char e_cant_find_file_str_in_path_2[]
1092 INIT(= N_("E447: Can't find file \"%s\" in path"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001093#ifdef USING_LOAD_LIBRARY
1094EXTERN char e_could_not_load_library_function_str[]
1095 INIT(= N_("E448: Could not load library function %s"));
1096#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001097#ifdef FEAT_CLIENTSERVER
1098EXTERN char e_invalid_expression_received[]
1099 INIT(= N_("E449: Invalid expression received"));
1100#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001101#ifdef FEAT_PROP_POPUP
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001102EXTERN char e_buffer_number_text_or_list_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001103 INIT(= N_("E450: Buffer number, text or a list required"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001104#endif
1105#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001106EXTERN char e_expected_right_curly_str[]
1107 INIT(= N_("E451: Expected }: %s"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001108EXTERN char e_double_semicolon_in_list_of_variables[]
1109 INIT(= N_("E452: Double ; in list of variables"));
1110#endif
1111EXTERN char e_ul_color_unknown[]
1112 INIT(= N_("E453: UL color unknown"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001113#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001114EXTERN char e_function_list_was_modified[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001115 INIT(= N_("E454: Function list was modified"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001116#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001117#ifdef FEAT_POSTSCRIPT
1118EXTERN char e_error_writing_to_postscript_output_file[]
1119 INIT(= N_("E455: Error writing to PostScript output file"));
1120EXTERN char e_cant_open_file_str_2[]
1121 INIT(= N_("E456: Can't open file \"%s\""));
1122EXTERN char e_cant_find_postscript_resource_file_str_ps[]
1123 INIT(= N_("E456: Can't find PostScript resource file \"%s.ps\""));
1124EXTERN char e_cant_read_postscript_resource_file_str[]
1125 INIT(= N_("E457: Can't read PostScript resource file \"%s\""));
1126#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001127#ifdef FEAT_GUI_X11
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001128EXTERN char e_cannot_allocate_colormap_entry_some_colors_may_be_incorrect[]
1129 INIT(= N_("E458: Cannot allocate colormap entry, some colors may be incorrect"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001130#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001131#if defined(UNIX) || defined(FEAT_SESSION)
1132EXTERN char e_cannot_go_back_to_previous_directory[]
1133 INIT(= N_("E459: Cannot go back to previous directory"));
1134#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001135#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001136EXTERN char e_entries_missing_in_mapset_dict_argument[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001137 INIT(= N_("E460: Entries missing in mapset() dict argument"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001138EXTERN char e_illegal_variable_name_str[]
1139 INIT(= N_("E461: Illegal variable name: %s"));
1140#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001141EXTERN char e_could_not_prepare_for_reloading_str[]
1142 INIT(= N_("E462: Could not prepare for reloading \"%s\""));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001143#ifdef FEAT_NETBEANS_INTG
1144EXTERN char e_region_is_guarded_cannot_modify[]
1145 INIT(= N_("E463: Region is guarded, cannot modify"));
1146#endif
Bram Moolenaard1510ee2021-01-04 16:15:58 +01001147EXTERN char e_ambiguous_use_of_user_defined_command[]
1148 INIT(= N_("E464: Ambiguous use of user-defined command"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001149#ifdef FEAT_EVAL
Bram Moolenaarbed34f02022-01-19 20:48:37 +00001150EXTERN char e_ambiguous_use_of_user_defined_command_str[]
1151 INIT(= N_("E464: Ambiguous use of user-defined command: %s"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001152#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001153EXTERN char e_winsize_requires_two_number_arguments[]
1154 INIT(= N_("E465: :winsize requires two number arguments"));
1155EXTERN char e_winpos_requires_two_number_arguments[]
1156 INIT(= N_("E466: :winpos requires two number arguments"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001157#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001158EXTERN char e_custom_completion_requires_function_argument[]
1159 INIT(= N_("E467: Custom completion requires a function argument"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001160#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001161EXTERN char e_completion_argument_only_allowed_for_custom_completion[]
1162 INIT(= N_("E468: Completion argument only allowed for custom completion"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001163#ifdef FEAT_CSCOPE
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001164EXTERN char e_invalid_cscopequickfix_flag_chr_for_chr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001165 INIT(= N_("E469: Invalid cscopequickfix flag %c for %c"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001166#endif
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001167EXTERN char e_command_aborted[]
1168 INIT(= N_("E470: Command aborted"));
1169EXTERN char e_argument_required[]
1170 INIT(= N_("E471: Argument required"));
1171EXTERN char e_command_failed[]
1172 INIT(= N_("E472: Command failed"));
1173EXTERN char e_internal_error_in_regexp[]
1174 INIT(= N_("E473: Internal error in regexp"));
1175EXTERN char e_invalid_argument[]
1176 INIT(= N_("E474: Invalid argument"));
1177EXTERN char e_invalid_argument_str[]
1178 INIT(= N_("E475: Invalid argument: %s"));
1179EXTERN char e_invalid_value_for_argument_str[]
1180 INIT(= N_("E475: Invalid value for argument %s"));
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01001181#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_PROP_POPUP) || defined(FEAT_EVAL)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001182EXTERN char e_invalid_value_for_argument_str_str[]
1183 INIT(= N_("E475: Invalid value for argument %s: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001184#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02001185EXTERN char e_invalid_command[]
1186 INIT(= N_("E476: Invalid command"));
1187#ifdef FEAT_EVAL
1188EXTERN char e_invalid_command_str[]
1189 INIT(= N_("E476: Invalid command: %s"));
Bram Moolenaar096ca732022-01-01 00:55:28 +00001190#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001191EXTERN char e_no_bang_allowed[]
1192 INIT(= N_("E477: No ! allowed"));
1193EXTERN char e_dont_panic[]
1194 INIT(= N_("E478: Don't panic!"));
1195EXTERN char e_no_match[]
1196 INIT(= N_("E479: No match"));
1197EXTERN char e_no_match_str_2[]
1198 INIT(= N_("E480: No match: %s"));
1199EXTERN char e_no_range_allowed[]
1200 INIT(= N_("E481: No range allowed"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001201EXTERN char e_cant_create_file_str[]
1202 INIT(= N_("E482: Can't create file %s"));
1203EXTERN char e_cant_get_temp_file_name[]
1204 INIT(= N_("E483: Can't get temp file name"));
1205EXTERN char e_cant_open_file_str[]
1206 INIT(= N_("E484: Can't open file %s"));
1207EXTERN char e_cant_read_file_str[]
1208 INIT(= N_("E485: Can't read file %s"));
1209EXTERN char e_pattern_not_found[]
1210 INIT(= N_("E486: Pattern not found"));
1211EXTERN char e_pattern_not_found_str[]
1212 INIT(= N_("E486: Pattern not found: %s"));
1213EXTERN char e_argument_must_be_positive[]
1214 INIT(= N_("E487: Argument must be positive"));
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001215EXTERN char e_argument_must_be_positive_str[]
1216 INIT(= N_("E487: Argument must be positive: %s"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001217EXTERN char e_trailing_characters[]
1218 INIT(= N_("E488: Trailing characters"));
1219EXTERN char e_trailing_characters_str[]
1220 INIT(= N_("E488: Trailing characters: %s"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001221EXTERN char e_no_call_stack_to_substitute_for_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001222 INIT(= N_("E489: No call stack to substitute for \"<stack>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001223#ifdef FEAT_FOLDING
1224EXTERN char e_no_fold_found[]
1225 INIT(= N_("E490: No fold found"));
1226#endif
1227#ifdef FEAT_EVAL
1228EXTERN char e_json_decode_error_at_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001229 INIT(= N_("E491: JSON decode error at '%s'"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001230#endif
1231EXTERN char e_not_an_editor_command[]
1232 INIT(= N_("E492: Not an editor command"));
1233EXTERN char e_backwards_range_given[]
1234 INIT(= N_("E493: Backwards range given"));
1235EXTERN char e_use_w_or_w_gt_gt[]
1236 INIT(= N_("E494: Use w or w>>"));
1237EXTERN char e_no_autocommand_file_name_to_substitute_for_afile[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001238 INIT(= N_("E495: No autocommand file name to substitute for \"<afile>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001239EXTERN char e_no_autocommand_buffer_name_to_substitute_for_abuf[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001240 INIT(= N_("E496: No autocommand buffer number to substitute for \"<abuf>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001241EXTERN char e_no_autocommand_match_name_to_substitute_for_amatch[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001242 INIT(= N_("E497: No autocommand match name to substitute for \"<amatch>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001243EXTERN char e_no_source_file_name_to_substitute_for_sfile[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001244 INIT(= N_("E498: No :source file name to substitute for \"<sfile>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001245EXTERN char e_empty_file_name_for_percent_or_hash_only_works_with_ph[]
K.Takatab5988e32022-01-16 11:25:26 +00001246 // xgettext:no-c-format
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001247 INIT(= N_("E499: Empty file name for '%' or '#', only works with \":p:h\""));
1248EXTERN char e_evaluates_to_an_empty_string[]
1249 INIT(= N_("E500: Evaluates to an empty string"));
1250EXTERN char e_at_end_of_file[]
1251 INIT(= N_("E501: At end-of-file"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001252 // E502
1253EXTERN char e_is_a_directory[]
1254 INIT(= N_("is a directory"));
1255 // E503
1256EXTERN char e_is_not_file_or_writable_device[]
1257 INIT(= N_("is not a file or writable device"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001258EXTERN char e_str_is_not_file_or_writable_device[]
1259 INIT(= N_("E503: \"%s\" is not a file or writable device"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001260 // E504
1261EXTERN char e_is_read_only_cannot_override_W_in_cpoptions[]
1262 INIT(= N_("is read-only (cannot override: \"W\" in 'cpoptions')"));
1263 // E505
1264EXTERN char e_is_read_only_add_bang_to_override[]
1265 INIT(= N_("is read-only (add ! to override)"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001266EXTERN char e_str_is_read_only_add_bang_to_override[]
1267 INIT(= N_("E505: \"%s\" is read-only (add ! to override)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001268EXTERN char e_canot_write_to_backup_file_add_bang_to_override[]
1269 INIT(= N_("E506: Can't write to backup file (add ! to override)"));
1270EXTERN char e_close_error_for_backup_file_add_bang_to_write_anyway[]
1271 INIT(= N_("E507: Close error for backup file (add ! to write anyway)"));
1272EXTERN char e_cant_read_file_for_backup_add_bang_to_write_anyway[]
1273 INIT(= N_("E508: Can't read file for backup (add ! to write anyway)"));
1274EXTERN char e_cannot_create_backup_file_add_bang_to_write_anyway[]
1275 INIT(= N_("E509: Cannot create backup file (add ! to override)"));
1276EXTERN char e_cant_make_backup_file_add_bang_to_write_anyway[]
1277 INIT(= N_("E510: Can't make backup file (add ! to write anyway)"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001278#ifdef FEAT_NETBEANS_INTG
1279EXTERN char e_netbeans_already_connected[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001280 INIT(= N_("E511: NetBeans already connected"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001281#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001282EXTERN char e_close_failed[]
1283 INIT(= N_("E512: Close failed"));
1284EXTERN char e_write_error_conversion_failed_make_fenc_empty_to_override[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001285 INIT(= N_("E513: Write error, conversion failed (make 'fenc' empty to override)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001286EXTERN char e_write_error_conversion_failed_in_line_nr_make_fenc_empty_to_override[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001287 INIT(= N_("E513: Write error, conversion failed in line %ld (make 'fenc' empty to override)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001288EXTERN char e_write_error_file_system_full[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001289 INIT(= N_("E514: Write error (file system full?)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001290EXTERN char e_no_buffers_were_unloaded[]
1291 INIT(= N_("E515: No buffers were unloaded"));
1292EXTERN char e_no_buffers_were_deleted[]
1293 INIT(= N_("E516: No buffers were deleted"));
1294EXTERN char e_no_buffers_were_wiped_out[]
1295 INIT(= N_("E517: No buffers were wiped out"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001296EXTERN char e_unknown_option[]
1297 INIT(= N_("E518: Unknown option"));
1298EXTERN char e_option_not_supported[]
1299 INIT(= N_("E519: Option not supported"));
1300EXTERN char e_not_allowed_in_modeline[]
1301 INIT(= N_("E520: Not allowed in a modeline"));
1302EXTERN char e_number_required_after_equal[]
1303 INIT(= N_("E521: Number required after ="));
1304EXTERN char e_number_required_after_str_equal_str[]
1305 INIT(= N_("E521: Number required: &%s = '%s'"));
1306EXTERN char e_not_found_in_termcap[]
1307 INIT(= N_("E522: Not found in termcap"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001308EXTERN char e_not_allowed_here[]
1309 INIT(= N_("E523: Not allowed here"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001310EXTERN char e_missing_colon[]
1311 INIT(= N_("E524: Missing colon"));
1312EXTERN char e_zero_length_string[]
1313 INIT(= N_("E525: Zero length string"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001314#ifdef FEAT_VIMINFO
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001315EXTERN char e_missing_number_after_angle_str_angle[]
1316 INIT(= N_("E526: Missing number after <%s>"));
1317EXTERN char e_missing_comma[]
1318 INIT(= N_("E527: Missing comma"));
1319EXTERN char e_must_specify_a_value[]
1320 INIT(= N_("E528: Must specify a ' value"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001321#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001322EXTERN char e_cannot_set_term_to_empty_string[]
1323 INIT(= N_("E529: Cannot set 'term' to empty string"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001324#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001325EXTERN char e_cannot_change_term_in_GUI[]
1326 INIT(= N_("E530: Cannot change 'term' in the GUI"));
1327EXTERN char e_use_gui_to_start_GUI[]
1328 INIT(= N_("E531: Use \":gui\" to start the GUI"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001329#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001330#ifdef FEAT_NETBEANS_INTG
1331EXTERN char e_highlighting_color_name_too_long_in_defineAnnoType[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001332 INIT(= N_("E532: Highlighting color name too long in defineAnnoType"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001333#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001334#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001335EXTERN char e_cant_select_wide_font[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001336 INIT(= N_("E533: Can't select wide font"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001337EXTERN char e_invalid_wide_font[]
1338 INIT(= N_("E534: Invalid wide font"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001339#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001340EXTERN char e_illegal_character_after_chr[]
1341 INIT(= N_("E535: Illegal character after <%c>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001342#ifdef FEAT_FOLDING
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001343EXTERN char e_comma_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001344 INIT(= N_("E536: Comma required"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001345EXTERN char e_commentstring_must_be_empty_or_contain_str[]
1346 INIT(= N_("E537: 'commentstring' must be empty or contain %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001347#endif
Bram Moolenaar24d9c052022-03-04 21:34:31 +00001348EXTERN char e_pattern_found_in_every_line_str[]
1349 INIT(= N_("E538: Pattern found in every line: %s"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001350EXTERN char e_illegal_character_str[]
1351 INIT(= N_("E539: Illegal character <%s>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001352#ifdef FEAT_STL_OPT
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001353EXTERN char e_unclosed_expression_sequence[]
1354 INIT(= N_("E540: Unclosed expression sequence"));
1355// E541 unused
1356EXTERN char e_unbalanced_groups[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001357 INIT(= N_("E542: Unbalanced groups"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001358#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001359#ifdef MSWIN
1360EXTERN char e_not_valid_codepage[]
1361 INIT(= N_("E543: Not a valid codepage"));
1362#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001363#ifdef FEAT_KEYMAP
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001364EXTERN char e_keymap_file_not_found[]
1365 INIT(= N_("E544: Keymap file not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001366#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001367#ifdef CURSOR_SHAPE
Bram Moolenaar475d9522022-01-02 21:46:29 +00001368EXTERN char e_missing_colon_2[]
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001369 INIT(= N_("E545: Missing colon"));
1370EXTERN char e_illegal_mode[]
1371 INIT(= N_("E546: Illegal mode"));
1372#endif
1373#ifdef FEAT_MOUSESHAPE
1374EXTERN char e_illegal_mouseshape[]
1375 INIT(= N_("E547: Illegal mouseshape"));
1376#endif
1377EXTERN char e_digit_expected[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001378 INIT(= N_("E548: Digit expected"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001379EXTERN char e_illegal_percentage[]
1380 INIT(= N_("E549: Illegal percentage"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001381#ifdef FEAT_PRINTER
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001382EXTERN char e_missing_colon_3[]
1383 INIT(= N_("E550: Missing colon"));
1384EXTERN char e_illegal_component[]
1385 INIT(= N_("E551: Illegal component"));
1386EXTERN char e_digit_expected_2[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001387 INIT(= N_("E552: Digit expected"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001388#endif
1389#ifdef FEAT_QUICKFIX
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001390EXTERN char e_no_more_items[]
1391 INIT(= N_("E553: No more items"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001392#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001393EXTERN char e_syntax_error_in_str_curlies[]
1394 INIT(= N_("E554: Syntax error in %s{...}"));
1395EXTERN char e_at_bottom_of_tag_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001396 INIT(= N_("E555: At bottom of tag stack"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001397EXTERN char e_at_top_of_tag_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001398 INIT(= N_("E556: At top of tag stack"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001399EXTERN char e_cannot_open_termcap_file[]
1400 INIT(= N_("E557: Cannot open termcap file"));
1401EXTERN char e_terminal_entry_not_found_in_terminfo[]
1402 INIT(= N_("E558: Terminal entry not found in terminfo"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001403#if defined(HAVE_TGETENT) && !defined(TERMINFO)
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001404EXTERN char e_terminal_entry_not_found_in_termcap[]
1405 INIT(= N_("E559: Terminal entry not found in termcap"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001406#endif
1407#ifdef FEAT_CSCOPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001408EXTERN char e_usage_cscope_str[]
1409 INIT(= N_("E560: Usage: cs[cope] %s"));
1410EXTERN char e_unknown_cscope_search_type[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001411 INIT(= N_("E561: Unknown cscope search type"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001412EXTERN char e_usage_cstag_ident[]
1413 INIT(= N_("E562: Usage: cstag <ident>"));
1414EXTERN char e_stat_str_error_nr[]
1415 INIT(= N_("E563: stat(%s) error: %d"));
1416EXTERN char e_str_is_not_directory_or_valid_cscope_database[]
1417 INIT(= N_("E564: %s is not a directory or a valid cscope database"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001418#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001419EXTERN char e_not_allowed_to_change_text_or_change_window[]
1420 INIT(= N_("E565: Not allowed to change text or change window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001421#ifdef FEAT_CSCOPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001422EXTERN char e_could_not_create_cscope_pipes[]
1423 INIT(= N_("E566: Could not create cscope pipes"));
1424EXTERN char e_no_cscope_connections[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001425 INIT(= N_("E567: No cscope connections"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001426EXTERN char e_duplicate_cscope_database_not_added[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001427 INIT(= N_("E568: Duplicate cscope database not added"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001428// E569 unused
1429EXTERN char e_fatal_error_in_cs_manage_matches[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001430 INIT(= N_("E570: Fatal error in cs_manage_matches"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001431#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001432#ifdef DYNAMIC_TCL
1433EXTERN char e_sorry_this_command_is_disabled_tcl_library_could_not_be_loaded[]
1434 INIT(= N_("E571: Sorry, this command is disabled: the Tcl library could not be loaded."));
1435#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001436#ifdef FEAT_TCL
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001437EXTERN char e_exit_code_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001438 INIT(= N_("E572: Exit code %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001439#endif
1440#ifdef FEAT_CLIENTSERVER
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001441EXTERN char e_invalid_server_id_used_str[]
1442 INIT(= N_("E573: Invalid server id used: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001443#endif
1444#ifdef FEAT_VIMINFO
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001445EXTERN char e_unknown_register_type_nr[]
1446 INIT(= N_("E574: Unknown register type %d"));
1447 // E575
1448EXTERN char e_illegal_starting_char[]
1449 INIT(= N_("Illegal starting char"));
1450 // E576
1451EXTERN char e_nonr_missing_gt[]
1452 INIT(= N_("Missing '>'"));
1453 // E577
1454EXTERN char e_illegal_register_name[]
1455 INIT(= N_("Illegal register name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001456#endif
zeertzjqcfe45652022-05-27 17:26:55 +01001457// E578 unused
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001458#ifdef FEAT_EVAL
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001459EXTERN char e_if_nesting_too_deep[]
1460 INIT(= N_("E579: :if nesting too deep"));
1461EXTERN char e_block_nesting_too_deep[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001462 INIT(= N_("E579: Block nesting too deep"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001463EXTERN char e_endif_without_if[]
1464 INIT(= N_("E580: :endif without :if"));
1465EXTERN char e_else_without_if[]
1466 INIT(= N_("E581: :else without :if"));
1467EXTERN char e_elseif_without_if[]
1468 INIT(= N_("E582: :elseif without :if"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001469EXTERN char e_multiple_else[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001470 INIT(= N_("E583: Multiple :else"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001471EXTERN char e_elseif_after_else[]
1472 INIT(= N_("E584: :elseif after :else"));
1473EXTERN char e_while_for_nesting_too_deep[]
1474 INIT(= N_("E585: :while/:for nesting too deep"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001475EXTERN char e_continue_without_while_or_for[]
1476 INIT(= N_("E586: :continue without :while or :for"));
1477EXTERN char e_break_without_while_or_for[]
1478 INIT(= N_("E587: :break without :while or :for"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001479EXTERN char e_endwhile_without_while[]
1480 INIT(= N_("E588: :endwhile without :while"));
1481EXTERN char e_endfor_without_for[]
1482 INIT(= N_("E588: :endfor without :for"));
Bram Moolenaar0f7a5e72022-01-01 16:31:48 +00001483#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001484EXTERN char e_backupext_and_patchmode_are_equal[]
1485 INIT(= N_("E589: 'backupext' and 'patchmode' are equal"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001486#ifdef FEAT_QUICKFIX
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001487EXTERN char e_preview_window_already_exists[]
1488 INIT(= N_("E590: A preview window already exists"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001489#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001490EXTERN char e_winheight_cannot_be_smaller_than_winminheight[]
1491 INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'"));
1492EXTERN char e_winwidth_cannot_be_smaller_than_winminwidth[]
1493 INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001494EXTERN char e_need_at_least_nr_lines[]
1495 INIT(= N_("E593: Need at least %d lines"));
1496EXTERN char e_need_at_least_nr_columns[]
1497 INIT(= N_("E594: Need at least %d columns"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001498#ifdef FEAT_LINEBREAK
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001499EXTERN char e_showbreak_contains_unprintable_or_wide_character[]
1500 INIT(= N_("E595: 'showbreak' contains unprintable or wide character"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001501#endif
1502#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001503EXTERN char e_invalid_fonts[]
1504 INIT(= N_("E596: Invalid font(s)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001505# ifdef FEAT_XFONTSET
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001506EXTERN char e_cant_select_fontset[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001507 INIT(= N_("E597: Can't select fontset"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001508EXTERN char e_invalid_fontset[]
1509 INIT(= N_("E598: Invalid fontset"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001510# endif
1511#endif
1512#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001513EXTERN char e_value_of_imactivatekey_is_invalid[]
1514 INIT(= N_("E599: Value of 'imactivatekey' is invalid"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001515#endif
Bram Moolenaar0f7a5e72022-01-01 16:31:48 +00001516#ifdef FEAT_EVAL
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001517EXTERN char e_missing_endtry[]
1518 INIT(= N_("E600: Missing :endtry"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001519EXTERN char e_try_nesting_too_deep[]
1520 INIT(= N_("E601: :try nesting too deep"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001521EXTERN char e_endtry_without_try[]
1522 INIT(= N_("E602: :endtry without :try"));
1523EXTERN char e_catch_without_try[]
1524 INIT(= N_("E603: :catch without :try"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001525EXTERN char e_catch_after_finally[]
1526 INIT(= N_("E604: :catch after :finally"));
1527EXTERN char e_exception_not_caught_str[]
1528 INIT(= N_("E605: Exception not caught: %s"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001529EXTERN char e_finally_without_try[]
1530 INIT(= N_("E606: :finally without :try"));
1531EXTERN char e_multiple_finally[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001532 INIT(= N_("E607: Multiple :finally"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001533EXTERN char e_cannot_throw_exceptions_with_vim_prefix[]
1534 INIT(= N_("E608: Cannot :throw exceptions with 'Vim' prefix"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001535#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001536#ifdef FEAT_CSCOPE
1537EXTERN char e_cscope_error_str[]
1538 INIT(= N_("E609: Cscope error: %s"));
1539#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001540EXTERN char e_no_argument_to_delete[]
1541 INIT(= N_("E610: No argument to delete"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001542#ifdef FEAT_EVAL
1543EXTERN char e_using_special_as_number[]
1544 INIT(= N_("E611: Using a Special as a Number"));
1545#endif
1546#ifdef FEAT_SIGNS
1547EXTERN char e_too_many_signs_defined[]
1548 INIT(= N_("E612: Too many signs defined"));
1549#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001550#if defined(MSWIN) && defined(FEAT_PRINTER)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001551EXTERN char e_unknown_printer_font_str[]
1552 INIT(= N_("E613: Unknown printer font: %s"));
1553#endif
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001554// E614 unused
1555// E615 unused
1556// E616 unused
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001557#ifdef FEAT_GUI_GTK
1558EXTERN char e_cannot_be_changed_in_gtk_GUI[]
1559 INIT(= N_("E617: Cannot be changed in the GTK GUI"));
1560#endif
1561#ifdef FEAT_POSTSCRIPT
1562EXTERN char e_file_str_is_not_postscript_resource_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001563 INIT(= N_("E618: File \"%s\" is not a PostScript resource file"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001564EXTERN char e_file_str_is_not_supported_postscript_resource_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001565 INIT(= N_("E619: File \"%s\" is not a supported PostScript resource file"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001566EXTERN char e_unable_to_convert_to_print_encoding_str[]
1567 INIT(= N_("E620: Unable to convert to print encoding \"%s\""));
1568EXTERN char e_str_resource_file_has_wrong_version[]
1569 INIT(= N_("E621: \"%s\" resource file has wrong version"));
1570#endif
1571#ifdef FEAT_CSCOPE
1572EXTERN char e_could_not_fork_for_cscope[]
1573 INIT(= N_("E622: Could not fork for cscope"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001574# ifndef UNIX
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001575EXTERN char e_could_not_spawn_cscope_process[]
1576 INIT(= N_("E623: Could not spawn cscope process"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001577# endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001578#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001579#if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001580EXTERN char e_cant_open_file_str_3[]
1581 INIT(= N_("E624: Can't open file \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00001582#endif
1583#if defined(FEAT_CSCOPE) && !defined(UNIX)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001584EXTERN char e_cannot_open_cscope_database_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001585 INIT(= N_("E625: Cannot open cscope database: %s"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001586EXTERN char e_cannot_get_cscope_database_information[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001587 INIT(= N_("E626: Cannot get cscope database information"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001588#endif
1589#ifdef FEAT_NETBEANS_INTG
1590EXTERN char e_missing_colon_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001591 INIT(= "E627: Missing colon: %s");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001592EXTERN char e_missing_bang_or_slash_in_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001593 INIT(= "E628: Missing ! or / in: %s");
Dominique Pellef85a4242022-01-09 12:49:31 +00001594#ifdef NBDEBUG
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001595EXTERN char e_bad_return_from_nb_do_cmd[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001596 INIT(= "E629: Bad return from nb_do_cmd");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001597#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001598#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001599#ifdef FEAT_JOB_CHANNEL
1600EXTERN char e_str_write_while_not_connected[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001601 INIT(= N_("E630: %s(): Write while not connected"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001602EXTERN char e_str_write_failed[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001603 INIT(= N_("E631: %s(): Write failed"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001604#endif
1605#ifdef FEAT_NETBEANS_INTG
1606EXTERN char e_invalid_buffer_identifier_in_getlength[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001607 INIT(= "E632: Invalid buffer identifier in getLength");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001608EXTERN char e_invalid_buffer_identifier_in_gettext[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001609 INIT(= "E633: Invalid buffer identifier in getText");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001610EXTERN char e_invalid_buffer_identifier_in_remove[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001611 INIT(= "E634: Invalid buffer identifier in remove");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001612EXTERN char e_invalid_buffer_identifier_in_insert[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001613 INIT(= "E635: Invalid buffer identifier in insert");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001614EXTERN char e_invalid_buffer_identifier_in_create[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001615 INIT(= "E636: Invalid buffer identifier in create");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001616EXTERN char e_invalid_buffer_identifier_in_startdocumentlisten[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001617 INIT(= "E637: Invalid buffer identifier in startDocumentListen");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001618EXTERN char e_invalid_buffer_identifier_in_stopdocumentlisten[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001619 INIT(= "E638: Invalid buffer identifier in stopDocumentListen");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001620EXTERN char e_invalid_buffer_identifier_in_settitle[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001621 INIT(= "E639: Invalid buffer identifier in setTitle");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001622EXTERN char e_invalid_buffer_identifier_in_initdone[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001623 INIT(= "E640: Invalid buffer identifier in initDone");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001624EXTERN char e_invalid_buffer_identifier_in_setbuffernumber[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001625 INIT(= "E641: Invalid buffer identifier in setBufferNumber");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001626EXTERN char e_file_str_not_found_in_setbuffernumber[]
1627 INIT(= "E642: File %s not found in setBufferNumber");
1628EXTERN char e_invalid_buffer_identifier_in_setfullname[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001629 INIT(= "E643: Invalid buffer identifier in setFullName");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001630EXTERN char e_invalid_buffer_identifier_in_editfile[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001631 INIT(= "E644: Invalid buffer identifier in editFile");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001632EXTERN char e_invalid_buffer_identifier_in_setvisible[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001633 INIT(= "E645: Invalid buffer identifier in setVisible");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001634EXTERN char e_invalid_buffer_identifier_in_setmodified[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001635 INIT(= "E646: Invalid buffer identifier in setModified");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001636EXTERN char e_invalid_buffer_identifier_in_setdot[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001637 INIT(= "E647: Invalid buffer identifier in setDot");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001638EXTERN char e_invalid_buffer_identifier_in_close[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001639 INIT(= "E648: Invalid buffer identifier in close");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001640EXTERN char e_invalid_buffer_identifier_in_close_2[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001641 INIT(= "E649: Invalid buffer identifier in close");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001642EXTERN char e_invalid_buffer_identifier_in_defineannotype[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001643 INIT(= "E650: Invalid buffer identifier in defineAnnoType");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001644EXTERN char e_invalid_buffer_identifier_in_addanno[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001645 INIT(= "E651: Invalid buffer identifier in addAnno");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001646EXTERN char e_invalid_buffer_identifier_in_getanno[]
1647 INIT(= "E652: Invalid buffer identifier in getAnno");
1648#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001649// E653 unused
1650EXTERN char e_missing_delimiter_after_search_pattern_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001651 INIT(= N_("E654: Missing delimiter after search pattern: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001652#ifdef FEAT_EVAL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001653EXTERN char e_too_many_symbolic_links_cycle[]
1654 INIT(= N_("E655: Too many symbolic links (cycle?)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001655#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001656#ifdef FEAT_NETBEANS_INTG
1657 // E656
1658EXTERN char e_netbeans_disallows_writes_of_unmodified_buffers[]
1659 INIT(= N_("NetBeans disallows writes of unmodified buffers"));
1660 // E657
1661EXTERN char e_partial_writes_disallowed_for_netbeans_buffers[]
1662 INIT(= N_("Partial writes disallowed for NetBeans buffers"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001663EXTERN char e_netbeans_connection_lost_for_buffer_nr[]
1664 INIT(= N_("E658: NetBeans connection lost for buffer %d"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001665#endif
1666#ifdef FEAT_PYTHON
1667EXTERN char e_cannot_invoke_python_recursively[]
1668 INIT(= N_("E659: Cannot invoke Python recursively"));
1669#endif
1670#ifdef FEAT_NETBEANS_INTG
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001671EXTERN char e_cannot_open_netbeans_connection_info_file[]
1672 INIT(= "E660: Cannot open NetBeans connection info file");
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001673#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001674#ifdef FEAT_MULTI_LANG
1675EXTERN char e_sorry_no_str_help_for_str[]
1676 INIT(= N_("E661: Sorry, no '%s' help for %s"));
1677#endif
1678EXTERN char e_at_start_of_changelist[]
1679 INIT(= N_("E662: At start of changelist"));
1680EXTERN char e_at_end_of_changelist[]
1681 INIT(= N_("E663: At end of changelist"));
1682EXTERN char e_changelist_is_empty[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001683 INIT(= N_("E664: Changelist is empty"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001684#ifdef FEAT_GUI
1685EXTERN char e_cannot_start_gui_no_valid_font_found[]
1686 INIT(= N_("E665: Cannot start GUI, no valid font found"));
1687#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001688#ifdef FEAT_EVAL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001689EXTERN char e_compiler_not_supported_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001690 INIT(= N_("E666: Compiler not supported: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001691#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001692#ifdef HAVE_FSYNC
1693EXTERN char e_fsync_failed[]
1694 INIT(= N_("E667: Fsync failed"));
1695#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001696#ifdef FEAT_NETBEANS_INTG
1697EXTERN char e_wrong_access_mode_for_netbeans_connection_info_file_str[]
1698 INIT(= N_("E668: Wrong access mode for NetBeans connection info file: \"%s\""));
1699#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001700EXTERN char e_unprintable_character_in_group_name[]
1701 INIT(= N_("E669: Unprintable character in group name"));
1702EXTERN char e_mix_of_help_file_encodings_within_language_str[]
1703 INIT(= N_("E670: Mix of help file encodings within a language: %s"));
1704#ifdef FEAT_GUI_MSWIN
1705EXTERN char e_cannot_find_window_title_str[]
1706 INIT(= N_("E671: Cannot find window title \"%s\""));
1707EXTERN char e_unable_to_open_window_inside_mdi_application[]
1708 INIT(= N_("E672: Unable to open window inside MDI application"));
1709#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001710#if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT)
Bram Moolenaara6f79292022-01-04 21:30:47 +00001711EXTERN char e_incompatible_multi_byte_encoding_and_character_set[]
1712 INIT(= N_("E673: Incompatible multi-byte encoding and character set"));
1713EXTERN char e_printmbcharset_cannot_be_empty_with_multi_byte_encoding[]
1714 INIT(= N_("E674: printmbcharset cannot be empty with multi-byte encoding."));
1715EXTERN char e_no_default_font_specified_for_multi_byte_printing[]
1716 INIT(= N_("E675: No default font specified for multi-byte printing."));
Dominique Pellef85a4242022-01-09 12:49:31 +00001717#endif
Bram Moolenaar500a1f92022-09-20 11:49:10 +01001718EXTERN char e_no_matching_autocommands_for_buftype_str_buffer[]
1719 INIT(= N_("E676: No matching autocommands for buftype=%s buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001720#ifdef FEAT_SYN_HL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001721EXTERN char e_error_writing_temp_file[]
1722 INIT(= N_("E677: Error writing temp file"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001723#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001724EXTERN char e_invalid_character_after_str_2[]
1725 INIT(= N_("E678: Invalid character after %s%%[dxouU]"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001726#ifdef FEAT_SYN_HL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001727EXTERN char e_recursive_loop_loading_syncolor_vim[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001728 INIT(= N_("E679: Recursive loop loading syncolor.vim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001729#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001730EXTERN char e_buffer_nr_invalid_buffer_number[]
1731 INIT(= N_("E680: <buffer=%d>: invalid buffer number"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001732#ifdef FEAT_QUICKFIX
Bram Moolenaara6f79292022-01-04 21:30:47 +00001733EXTERN char e_buffer_is_not_loaded[]
1734 INIT(= N_("E681: Buffer is not loaded"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001735EXTERN char e_invalid_search_pattern_or_delimiter[]
1736 INIT(= N_("E682: Invalid search pattern or delimiter"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001737EXTERN char e_file_name_missing_or_invalid_pattern[]
1738 INIT(= N_("E683: File name missing or invalid pattern"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001739#endif
Bram Moolenaar096ca732022-01-01 00:55:28 +00001740#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001741EXTERN char e_list_index_out_of_range_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001742 INIT(= N_("E684: List index out of range: %ld"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001743#endif
1744EXTERN char e_internal_error_str[]
1745 INIT(= N_("E685: Internal error: %s"));
1746#ifdef FEAT_EVAL
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001747EXTERN char e_argument_of_str_must_be_list[]
1748 INIT(= N_("E686: Argument of %s must be a List"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001749EXTERN char e_less_targets_than_list_items[]
1750 INIT(= N_("E687: Less targets than List items"));
1751EXTERN char e_more_targets_than_list_items[]
1752 INIT(= N_("E688: More targets than List items"));
1753EXTERN char e_can_only_index_list_dictionary_or_blob[]
1754 INIT(= N_("E689: Can only index a List, Dictionary or Blob"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001755EXTERN char e_missing_in_after_for[]
1756 INIT(= N_("E690: Missing \"in\" after :for"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001757EXTERN char e_can_only_compare_list_with_list[]
1758 INIT(= N_("E691: Can only compare List with List"));
1759EXTERN char e_invalid_operation_for_list[]
1760 INIT(= N_("E692: Invalid operation for List"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001761// E693 unused
Bram Moolenaara6f79292022-01-04 21:30:47 +00001762EXTERN char e_invalid_operation_for_funcrefs[]
1763 INIT(= N_("E694: Invalid operation for Funcrefs"));
Bram Moolenaarf47c5a82021-12-19 15:17:21 +00001764EXTERN char e_cannot_index_a_funcref[]
1765 INIT(= N_("E695: Cannot index a Funcref"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001766EXTERN char e_missing_comma_in_list_str[]
1767 INIT(= N_("E696: Missing comma in List: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001768EXTERN char e_missing_end_of_list_rsb_str[]
1769 INIT(= N_("E697: Missing end of List ']': %s"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001770EXTERN char e_variable_nested_too_deep_for_making_copy[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001771 INIT(= N_("E698: Variable nested too deep for making a copy"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001772EXTERN char e_too_many_arguments[]
1773 INIT(= N_("E699: Too many arguments"));
1774EXTERN char e_unknown_function_str_2[]
1775 INIT(= N_("E700: Unknown function: %s"));
1776EXTERN char e_invalid_type_for_len[]
1777 INIT(= N_("E701: Invalid type for len()"));
1778EXTERN char e_sort_compare_function_failed[]
1779 INIT(= N_("E702: Sort compare function failed"));
1780EXTERN char e_using_funcref_as_number[]
1781 INIT(= N_("E703: Using a Funcref as a Number"));
1782EXTERN char e_funcref_variable_name_must_start_with_capital_str[]
1783 INIT(= N_("E704: Funcref variable name must start with a capital: %s"));
1784EXTERN char e_variable_name_conflicts_with_existing_function_str[]
1785 INIT(= N_("E705: Variable name conflicts with existing function: %s"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001786// E706 unused
Bram Moolenaara6f79292022-01-04 21:30:47 +00001787EXTERN char e_function_name_conflicts_with_variable_str[]
1788 INIT(= N_("E707: Function name conflicts with variable: %s"));
1789EXTERN char e_slice_must_come_last[]
1790 INIT(= N_("E708: [:] must come last"));
1791EXTERN char e_slice_requires_list_or_blob_value[]
1792 INIT(= N_("E709: [:] requires a List or Blob value"));
Bram Moolenaar792f7862020-11-23 08:31:18 +01001793EXTERN char e_list_value_has_more_items_than_targets[]
1794 INIT(= N_("E710: List value has more items than targets"));
1795EXTERN char e_list_value_does_not_have_enough_items[]
1796 INIT(= N_("E711: List value does not have enough items"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001797EXTERN char e_argument_of_str_must_be_list_or_dictionary[]
1798 INIT(= N_("E712: Argument of %s must be a List or Dictionary"));
1799EXTERN char e_cannot_use_empty_key_for_dictionary[]
1800 INIT(= N_("E713: Cannot use empty key for Dictionary"));
1801EXTERN char e_list_required[]
1802 INIT(= N_("E714: List required"));
1803EXTERN char e_dictionary_required[]
1804 INIT(= N_("E715: Dictionary required"));
1805EXTERN char e_key_not_present_in_dictionary[]
1806 INIT(= N_("E716: Key not present in Dictionary: \"%s\""));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001807EXTERN char e_dictionary_entry_already_exists[]
1808 INIT(= N_("E717: Dictionary entry already exists"));
1809EXTERN char e_funcref_required[]
1810 INIT(= N_("E718: Funcref required"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02001811EXTERN char e_cannot_slice_dictionary[]
Bram Moolenaar77072282020-09-16 17:55:40 +02001812 INIT(= N_("E719: Cannot slice a Dictionary"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001813EXTERN char e_missing_colon_in_dictionary[]
1814 INIT(= N_("E720: Missing colon in Dictionary: %s"));
1815EXTERN char e_duplicate_key_in_dicitonary[]
1816 INIT(= N_("E721: Duplicate key in Dictionary: \"%s\""));
1817EXTERN char e_missing_comma_in_dictionary[]
1818 INIT(= N_("E722: Missing comma in Dictionary: %s"));
1819EXTERN char e_missing_dict_end[]
1820 INIT(= N_("E723: Missing end of Dictionary '}': %s"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001821EXTERN char e_variable_nested_too_deep_for_displaying[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001822 INIT(= N_("E724: Variable nested too deep for displaying"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001823EXTERN char e_calling_dict_function_without_dictionary_str[]
1824 INIT(= N_("E725: Calling dict function without Dictionary: %s"));
1825EXTERN char e_stride_is_zero[]
1826 INIT(= N_("E726: Stride is zero"));
1827EXTERN char e_start_past_end[]
1828 INIT(= N_("E727: Start past end"));
1829EXTERN char e_using_dictionary_as_number[]
1830 INIT(= N_("E728: Using a Dictionary as a Number"));
1831EXTERN char e_using_funcref_as_string[]
1832 INIT(= N_("E729: Using a Funcref as a String"));
1833EXTERN char e_using_list_as_string[]
1834 INIT(= N_("E730: Using a List as a String"));
1835EXTERN char e_using_dictionary_as_string[]
1836 INIT(= N_("E731: Using a Dictionary as a String"));
1837EXTERN char e_using_endfor_with_while[]
1838 INIT(= N_("E732: Using :endfor with :while"));
1839EXTERN char e_using_endwhile_with_for[]
1840 INIT(= N_("E733: Using :endwhile with :for"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001841EXTERN char e_wrong_variable_type_for_str_equal[]
1842 INIT(= N_("E734: Wrong variable type for %s="));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001843EXTERN char e_can_only_compare_dictionary_with_dictionary[]
1844 INIT(= N_("E735: Can only compare Dictionary with Dictionary"));
1845EXTERN char e_invalid_operation_for_dictionary[]
1846 INIT(= N_("E736: Invalid operation for Dictionary"));
1847EXTERN char e_key_already_exists_str[]
1848 INIT(= N_("E737: Key already exists: %s"));
1849EXTERN char e_cant_list_variables_for_str[]
1850 INIT(= N_("E738: Can't list variables for %s"));
1851EXTERN char e_cannot_create_directory_str[]
1852 INIT(= N_("E739: Cannot create directory: %s"));
1853EXTERN char e_too_many_arguments_for_function_str_2[]
1854 INIT(= N_("E740: Too many arguments for function %s"));
Bram Moolenaar71b76852021-12-17 20:15:38 +00001855EXTERN char e_value_is_locked[]
1856 INIT(= N_("E741: Value is locked"));
1857EXTERN char e_value_is_locked_str[]
1858 INIT(= N_("E741: Value is locked: %s"));
1859EXTERN char e_cannot_change_value[]
1860 INIT(= N_("E742: Cannot change value"));
1861EXTERN char e_cannot_change_value_of_str[]
1862 INIT(= N_("E742: Cannot change value of %s"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001863EXTERN char e_variable_nested_too_deep_for_unlock[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001864 INIT(= N_("E743: Variable nested too deep for (un)lock"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001865#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001866#ifdef FEAT_NETBEANS_INTG
1867EXTERN char e_netbeans_does_not_allow_changes_in_read_only_files[]
1868 INIT(= N_("E744: NetBeans does not allow changes in read-only files"));
1869#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001870#ifdef FEAT_EVAL
1871EXTERN char e_using_list_as_number[]
1872 INIT(= N_("E745: Using a List as a Number"));
1873EXTERN char e_function_name_does_not_match_script_file_name_str[]
1874 INIT(= N_("E746: Function name does not match script file name: %s"));
1875#endif
1876EXTERN char e_cannot_change_directory_buffer_is_modified_add_bang_to_override[]
1877 INIT(= N_("E747: Cannot change directory, buffer is modified (add ! to override)"));
1878EXTERN char e_no_previously_used_register[]
1879 INIT(= N_("E748: No previously used register"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001880EXTERN char e_empty_buffer[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001881 INIT(= N_("E749: Empty buffer"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001882#ifdef FEAT_PROFILE
1883EXTERN char e_first_use_profile_start_fname[]
1884 INIT(= N_("E750: First use \":profile start {fname}\""));
1885#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001886#ifdef FEAT_SPELL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001887EXTERN char e_output_file_name_must_not_have_region_name[]
1888 INIT(= N_("E751: Output file name must not have region name"));
1889EXTERN char e_no_previous_spell_replacement[]
1890 INIT(= N_("E752: No previous spell replacement"));
1891EXTERN char e_not_found_str[]
1892 INIT(= N_("E753: Not found: %s"));
1893EXTERN char e_only_up_to_nr_regions_supported[]
1894 INIT(= N_("E754: Only up to %d regions supported"));
1895EXTERN char e_invalid_region_in_str[]
1896 INIT(= N_("E755: Invalid region in %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001897EXTERN char e_spell_checking_is_not_possible[]
1898 INIT(= N_("E756: Spell checking is not possible"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001899EXTERN char e_this_does_not_look_like_spell_file[]
1900 INIT(= N_("E757: This does not look like a spell file"));
1901EXTERN char e_truncated_spell_file[]
1902 INIT(= N_("E758: Truncated spell file"));
1903EXTERN char e_format_error_in_spell_file[]
1904 INIT(= N_("E759: Format error in spell file"));
1905EXTERN char e_no_word_count_in_str[]
1906 INIT(= N_("E760: No word count in %s"));
1907EXTERN char e_format_error_in_affix_file_fol_low_or_upp[]
1908 INIT(= N_("E761: Format error in affix file FOL, LOW or UPP"));
1909EXTERN char e_character_in_fol_low_or_upp_is_out_of_range[]
1910 INIT(= N_("E762: Character in FOL, LOW or UPP is out of range"));
1911EXTERN char e_word_characters_differ_between_spell_files[]
1912 INIT(= N_("E763: Word characters differ between spell files"));
Bram Moolenaare60b3c42022-01-05 20:40:34 +00001913#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001914#if defined(FEAT_SYN_HL) || defined(FEAT_COMPL_FUNC)
1915EXTERN char e_option_str_is_not_set[]
1916 INIT(= N_("E764: Option '%s' is not set"));
1917#endif
Bram Moolenaare60b3c42022-01-05 20:40:34 +00001918#ifdef FEAT_SPELL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001919EXTERN char e_spellfile_does_not_have_nr_entries[]
1920 INIT(= N_("E765: 'spellfile' does not have %d entries"));
1921#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001922#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001923EXTERN char e_insufficient_arguments_for_printf[]
1924 INIT(= N_("E766: Insufficient arguments for printf()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001925#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001926EXTERN char e_too_many_arguments_to_printf[]
1927 INIT(= N_("E767: Too many arguments for printf()"));
1928EXTERN char e_swap_file_exists_str_silent_overrides[]
1929 INIT(= N_("E768: Swap file exists: %s (:silent! overrides)"));
1930EXTERN char e_missing_rsb_after_str_lsb[]
1931 INIT(= N_("E769: Missing ] after %s["));
1932#ifdef FEAT_SPELL
1933EXTERN char e_unsupported_section_in_spell_file[]
1934 INIT(= N_("E770: Unsupported section in spell file"));
1935EXTERN char e_old_spell_file_needs_to_be_updated[]
1936 INIT(= N_("E771: Old spell file, needs to be updated"));
1937EXTERN char e_spell_file_is_for_newer_version_of_vim[]
1938 INIT(= N_("E772: Spell file is for newer version of Vim"));
1939#endif
1940EXTERN char e_symlink_loop_for_str[]
1941 INIT(= N_("E773: Symlink loop for \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00001942#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001943EXTERN char e_operatorfunc_is_empty[]
1944 INIT(= N_("E774: 'operatorfunc' is empty"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001945#else
Bram Moolenaar677658a2022-01-05 16:09:06 +00001946EXTERN char e_eval_feature_not_available[]
1947 INIT(= N_("E775: Eval feature not available"));
1948#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001949#ifdef FEAT_QUICKFIX
1950EXTERN char e_no_location_list[]
1951 INIT(= N_("E776: No location list"));
Bram Moolenaar968443e2022-05-27 21:16:34 +01001952#endif
1953#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001954EXTERN char e_string_or_list_expected[]
1955 INIT(= N_("E777: String or List expected"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001956#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001957#ifdef FEAT_SPELL
1958EXTERN char e_this_does_not_look_like_sug_file_str[]
1959 INIT(= N_("E778: This does not look like a .sug file: %s"));
1960EXTERN char e_old_sug_file_needs_to_be_updated_str[]
1961 INIT(= N_("E779: Old .sug file, needs to be updated: %s"));
1962EXTERN char e_sug_file_is_for_newer_version_of_vim_str[]
1963 INIT(= N_("E780: .sug file is for newer version of Vim: %s"));
1964EXTERN char e_sug_file_doesnt_match_spl_file_str[]
1965 INIT(= N_("E781: .sug file doesn't match .spl file: %s"));
1966EXTERN char e_error_while_reading_sug_file_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001967 INIT(= N_("E782: Error while reading .sug file: %s"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001968EXTERN char e_duplicate_char_in_map_entry[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001969 INIT(= N_("E783: Duplicate char in MAP entry"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001970#endif
1971EXTERN char e_cannot_close_last_tab_page[]
1972 INIT(= N_("E784: Cannot close last tab page"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001973#ifdef FEAT_EVAL
1974# ifdef FEAT_COMPL_FUNC
Bram Moolenaar677658a2022-01-05 16:09:06 +00001975EXTERN char e_complete_can_only_be_used_in_insert_mode[]
1976 INIT(= N_("E785: complete() can only be used in Insert mode"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001977# endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001978EXTERN char e_range_not_allowed[]
1979 INIT(= N_("E786: Range not allowed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001980#endif
1981#ifdef FEAT_DIFF
Bram Moolenaar677658a2022-01-05 16:09:06 +00001982EXTERN char e_buffer_changed_unexpectedly[]
1983 INIT(= N_("E787: Buffer changed unexpectedly"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001984#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001985EXTERN char e_not_allowed_to_edit_another_buffer_now[]
1986 INIT(= N_("E788: Not allowed to edit another buffer now"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001987#ifdef FEAT_SYN_HL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001988EXTERN char e_error_missing_rsb_str[]
1989 INIT(= N_("E789: Missing ']': %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001990#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001991EXTERN char e_undojoin_is_not_allowed_after_undo[]
1992 INIT(= N_("E790: undojoin is not allowed after undo"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001993#ifdef FEAT_KEYMAP
Bram Moolenaar677658a2022-01-05 16:09:06 +00001994EXTERN char e_empty_keymap_entry[]
1995 INIT(= N_("E791: Empty keymap entry"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001996#endif
1997#ifdef FEAT_MENU
Bram Moolenaar677658a2022-01-05 16:09:06 +00001998EXTERN char e_empty_menu_name[]
1999 INIT(= N_("E792: Empty menu name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002000#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002001#ifdef FEAT_DIFF
2002EXTERN char e_no_other_buffer_in_diff_mode_is_modifiable[]
2003 INIT(= N_("E793: No other buffer in diff mode is modifiable"));
2004#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002005#ifdef FEAT_EVAL
Bram Moolenaar71b76852021-12-17 20:15:38 +00002006EXTERN char e_cannot_set_variable_in_sandbox[]
2007 INIT(= N_("E794: Cannot set variable in the sandbox"));
2008EXTERN char e_cannot_set_variable_in_sandbox_str[]
2009 INIT(= N_("E794: Cannot set variable in the sandbox: \"%s\""));
2010EXTERN char e_cannot_delete_variable[]
2011 INIT(= N_("E795: Cannot delete variable"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00002012EXTERN char e_cannot_delete_variable_str[]
2013 INIT(= N_("E795: Cannot delete variable %s"));
K.Takata2da11a42022-09-10 13:03:12 +01002014#endif
2015#ifdef MSWIN
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002016 // E796
2017EXTERN char e_writing_to_device_disabled_with_opendevice_option[]
2018 INIT(= N_("writing to device disabled with 'opendevice' option"));
zeertzjq09f77232021-10-20 17:21:24 +01002019#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002020#ifdef FEAT_SPELL
2021EXTERN char e_spellfilemising_autocommand_deleted_buffer[]
2022 INIT(= N_("E797: SpellFileMissing autocommand deleted buffer"));
2023#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002024#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar677658a2022-01-05 16:09:06 +00002025EXTERN char e_id_is_reserved_for_match_nr[]
2026 INIT(= N_("E798: ID is reserved for \":match\": %d"));
Bram Moolenaarbb8cac52022-01-05 18:16:53 +00002027EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_1[]
2028 INIT(= N_("E799: Invalid ID: %d (must be greater than or equal to 1)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002029#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002030#ifndef FEAT_ARABIC
2031EXTERN char e_arabic_cannot_be_used_not_enabled_at_compile_time[]
2032 INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n"));
2033#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002034#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002035EXTERN char e_id_already_taken_nr[]
2036 INIT(= N_("E801: ID already taken: %d"));
Bram Moolenaarbb8cac52022-01-05 18:16:53 +00002037EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_2[]
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002038 INIT(= N_("E802: Invalid ID: %d (must be greater than or equal to 1)"));
2039EXTERN char e_id_not_found_nr[]
2040 INIT(= N_("E803: ID not found: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002041#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002042#ifdef FEAT_EVAL
2043EXTERN char e_cannot_use_percent_with_float[]
K.Takatab5988e32022-01-16 11:25:26 +00002044 // xgettext:no-c-format
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002045 INIT(= N_("E804: Cannot use '%' with Float"));
2046#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002047EXTERN char e_using_float_as_number[]
2048 INIT(= N_("E805: Using a Float as a Number"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002049EXTERN char e_using_float_as_string[]
Bram Moolenaardde77a72022-08-23 21:41:15 +01002050 INIT(= N_("E806: Using a Float as a String"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002051EXTERN char e_expected_float_argument_for_printf[]
2052 INIT(= N_("E807: Expected Float argument for printf()"));
Bram Moolenaar73e28dc2022-09-17 21:08:33 +01002053#if defined(FEAT_EVAL)
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002054EXTERN char e_number_or_float_required[]
2055 INIT(= N_("E808: Number or Float required"));
2056#endif
2057#ifndef FEAT_EVAL
2058EXTERN char e_hashsmall_is_not_available_without_the_eval_feature[]
2059 INIT(= N_("E809: #< is not available without the +eval feature"));
2060#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002061#ifdef FEAT_DIFF
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002062EXTERN char e_cannot_read_or_write_temp_files[]
2063 INIT(= N_("E810: Cannot read or write temp files"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002064#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002065EXTERN char e_not_allowed_to_change_buffer_information_now[]
2066 INIT(= N_("E811: Not allowed to change buffer information now"));
2067EXTERN char e_autocommands_changed_buffer_or_buffer_name[]
2068 INIT(= N_("E812: Autocommands changed buffer or buffer name"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002069EXTERN char e_cannot_close_autocmd_or_popup_window[]
2070 INIT(= N_("E813: Cannot close autocmd or popup window"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002071EXTERN char e_cannot_close_window_only_autocmd_window_would_remain[]
2072 INIT(= N_("E814: Cannot close window, only autocmd window would remain"));
2073#ifdef FEAT_MZSCHEME
2074EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_libraries_could_not_be_loaded[]
2075 INIT(= N_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded."));
2076#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002077#ifdef FEAT_DIFF
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002078EXTERN char e_cannot_read_patch_output[]
2079 INIT(= N_("E816: Cannot read patch output"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002080#endif
2081#ifdef FEAT_CRYPT
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002082EXTERN char e_blowfish_big_little_endian_use_wrong[]
2083 INIT(= N_("E817: Blowfish big/little endian use wrong"));
2084EXTERN char e_sha256_test_failed[]
2085 INIT(= N_("E818: sha256 test failed"));
2086EXTERN char e_blowfish_test_failed[]
2087 INIT(= N_("E819: Blowfish test failed"));
2088EXTERN char e_sizeof_uint32_isnot_four[]
2089 INIT(= N_("E820: sizeof(uint32_t) != 4"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002090EXTERN char e_file_is_encrypted_with_unknown_method[]
2091 INIT(= N_("E821: File is encrypted with unknown method"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002092#endif
2093#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002094EXTERN char e_cannot_open_undo_file_for_reading_str[]
2095 INIT(= N_("E822: Cannot open undo file for reading: %s"));
2096EXTERN char e_not_an_undo_file_str[]
2097 INIT(= N_("E823: Not an undo file: %s"));
2098EXTERN char e_incompatible_undo_file_str[]
2099 INIT(= N_("E824: Incompatible undo file: %s"));
2100EXTERN char e_corrupted_undo_file_str_str[]
2101 INIT(= N_("E825: Corrupted undo file (%s): %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002102# ifdef FEAT_CRYPT
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002103EXTERN char e_undo_file_decryption_failed[]
2104 INIT(= N_("E826: Undo file decryption failed: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002105# else
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002106EXTERN char e_undo_file_is_encrypted_str[]
2107 INIT(= N_("E827: Undo file is encrypted: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002108# endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002109EXTERN char e_cannot_open_undo_file_for_writing_str[]
2110 INIT(= N_("E828: Cannot open undo file for writing: %s"));
2111EXTERN char e_write_error_in_undo_file_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002112 INIT(= N_("E829: Write error in undo file: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002113#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002114EXTERN char e_undo_number_nr_not_found[]
2115 INIT(= N_("E830: Undo number %ld not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002116#ifdef FEAT_CRYPT
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002117EXTERN char e_bf_key_init_called_with_empty_password[]
2118 INIT(= N_("E831: bf_key_init() called with empty password"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002119# ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002120EXTERN char e_non_encrypted_file_has_encrypted_undo_file[]
2121 INIT(= N_("E832: Non-encrypted file has encrypted undo file: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002122# endif
2123#else
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002124EXTERN char e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption[]
2125 INIT(= N_("E833: %s is encrypted and this version of Vim does not support encryption"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002126#endif
zeertzjq94358a12021-10-20 11:01:15 +01002127EXTERN char e_conflicts_with_value_of_listchars[]
2128 INIT(= N_("E834: Conflicts with value of 'listchars'"));
2129EXTERN char e_conflicts_with_value_of_fillchars[]
2130 INIT(= N_("E835: Conflicts with value of 'fillchars'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002131#ifdef DYNAMIC_PYTHON
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002132EXTERN char e_this_vim_cannot_execute_python_after_using_py3[]
2133 INIT(= N_("E836: This Vim cannot execute :python after using :py3"));
2134EXTERN char e_this_vim_cannot_execute_py3_after_using_python[]
2135 INIT(= N_("E837: This Vim cannot execute :py3 after using :python"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002136#endif
2137#if defined(FEAT_NETBEANS_INTG) && defined(FEAT_GUI)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00002138EXTERN char e_netbeans_is_not_supported_with_this_GUI[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002139 INIT(= N_("E838: NetBeans is not supported with this GUI"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00002140#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002141// E839 unused
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002142# ifdef FEAT_COMPL_FUNC
2143EXTERN char e_complete_function_deleted_text[]
2144 INIT(= N_("E840: Completion function deleted text"));
2145# endif
2146EXTERN char e_reserved_name_cannot_be_used_for_user_defined_command[]
2147 INIT(= N_("E841: Reserved name, cannot be used for user defined command"));
2148EXTERN char e_no_line_number_to_use_for_slnum[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002149 INIT(= N_("E842: No line number to use for \"<slnum>\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002150#ifdef FEAT_CRYPT
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002151EXTERN char e_error_while_updating_swap_file_crypt[]
2152 INIT(= N_("E843: Error while updating swap file crypt"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002153#endif
2154#ifdef FEAT_CONCEAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002155EXTERN char e_invalid_cchar_value[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002156 INIT(= N_("E844: Invalid cchar value"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002157#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002158#ifdef FEAT_SPELL
2159EXTERN char e_insufficient_memory_word_list_will_be_incomplete[]
2160 INIT(= N_("E845: Insufficient memory, word list will be incomplete"));
2161#endif
2162EXTERN char e_key_code_not_set[]
2163 INIT(= N_("E846: Key code not set"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002164#ifdef FEAT_SYN_HL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002165EXTERN char e_too_many_syntax_includes[]
2166 INIT(= N_("E847: Too many syntax includes"));
2167EXTERN char e_too_many_syntax_clusters[]
2168 INIT(= N_("E848: Too many syntax clusters"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002169#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002170EXTERN char e_too_many_highlight_and_syntax_groups[]
2171 INIT(= N_("E849: Too many highlight and syntax groups"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002172#ifndef FEAT_CLIPBOARD
2173EXTERN char e_invalid_register_name[]
2174 INIT(= N_("E850: Invalid register name"));
2175#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002176#ifdef FEAT_GUI
2177EXTERN char e_failed_to_create_new_process_for_GUI[]
2178 INIT(= N_("E851: Failed to create a new process for the GUI"));
2179EXTERN char e_the_child_process_failed_to_start_GUI[]
2180 INIT(= N_("E852: The child process failed to start the GUI"));
2181#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002182#ifdef FEAT_EVAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002183EXTERN char e_duplicate_argument_name_str[]
2184 INIT(= N_("E853: Duplicate argument name: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002185#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002186EXTERN char e_path_too_long_for_completion[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002187 INIT(= N_("E854: Path too long for completion"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002188EXTERN char e_autocommands_caused_command_to_abort[]
2189 INIT(= N_("E855: Autocommands caused command to abort"));
zeertzjq09f77232021-10-20 17:21:24 +01002190#ifdef FEAT_EVAL
Bram Moolenaar44d66522020-09-06 22:26:57 +02002191EXTERN char e_assert_fails_second_arg[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002192 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 +00002193EXTERN char e_dictionary_key_str_required[]
2194 INIT(= N_("E857: Dictionary key \"%s\" required"));
2195#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002196#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2197EXTERN char e_eval_did_not_return_valid_python_object[]
2198 INIT(= N_("E858: Eval did not return a valid python object"));
2199EXTERN char e_failed_to_convert_returned_python_object_to_vim_value[]
2200 INIT(= N_("E859: Failed to convert returned python object to a Vim value"));
2201#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002202#ifdef FEAT_PROP_POPUP
Ben Jacksona7704222022-08-20 20:54:51 +01002203EXTERN char e_need_id_and_type_or_types_with_both[]
2204 INIT(= N_("E860: Need 'id' and 'type' or 'types' with 'both'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002205# ifdef FEAT_TERMINAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002206EXTERN char e_cannot_open_second_popup_with_terminal[]
2207 INIT(= N_("E861: Cannot open a second popup with a terminal"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002208# endif
2209#endif
2210#ifdef FEAT_EVAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002211EXTERN char e_cannot_use_g_here[]
2212 INIT(= N_("E862: Cannot use g: here"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002213#endif
2214#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002215EXTERN char e_not_allowed_for_terminal_in_popup_window[]
2216 INIT(= N_("E863: Not allowed for a terminal in a popup window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002217#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002218EXTERN char e_percent_hash_can_only_be_followed_by_zero_one_two_automatic_engine_will_be_used[]
K.Takatab5988e32022-01-16 11:25:26 +00002219 // xgettext:no-c-format
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002220 INIT(= N_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used"));
2221EXTERN char e_nfa_regexp_end_encountered_prematurely[]
2222 INIT(= N_("E865: (NFA) Regexp end encountered prematurely"));
2223EXTERN char e_nfa_regexp_misplaced_chr[]
2224 INIT(= N_("E866: (NFA regexp) Misplaced %c"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002225EXTERN char e_nfa_regexp_unknown_operator_z_chr[]
2226 INIT(= N_("E867: (NFA regexp) Unknown operator '\\z%c'"));
2227EXTERN char e_nfa_regexp_unknown_operator_percent_chr[]
2228 INIT(= N_("E867: (NFA regexp) Unknown operator '\\%%%c'"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002229EXTERN char e_error_building_nfa_with_equivalence_class[]
2230 INIT(= N_("E868: Error building NFA with equivalence class!"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002231EXTERN char e_nfa_regexp_unknown_operator_at_chr[]
2232 INIT(= N_("E869: (NFA regexp) Unknown operator '\\@%c'"));
2233EXTERN char e_nfa_regexp_error_reading_repetition_limits[]
2234 INIT(= N_("E870: (NFA regexp) Error reading repetition limits"));
2235EXTERN char e_nfa_regexp_cant_have_multi_follow_multi[]
2236 INIT(= N_("E871: (NFA regexp) Can't have a multi follow a multi"));
2237EXTERN char e_nfa_regexp_too_many_parens[]
2238 INIT(= N_("E872: (NFA regexp) Too many '('"));
2239EXTERN char e_nfa_regexp_proper_termination_error[]
2240 INIT(= N_("E873: (NFA regexp) proper termination error"));
2241EXTERN char e_nfa_regexp_could_not_pop_stack[]
2242 INIT(= N_("E874: (NFA regexp) Could not pop the stack!"));
2243EXTERN char e_nfa_regexp_while_converting_from_postfix_to_nfa_too_many_stats_left_on_stack[]
2244 INIT(= N_("E875: (NFA regexp) (While converting from postfix to NFA), too many states left on stack"));
2245EXTERN char e_nfa_regexp_not_enough_space_to_store_whole_nfa[]
2246 INIT(= N_("E876: (NFA regexp) Not enough space to store the whole NFA"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002247EXTERN char e_nfa_regexp_invalid_character_class_nr[]
2248 INIT(= N_("E877: (NFA regexp) Invalid character class: %d"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002249EXTERN char e_nfa_regexp_could_not_allocate_memory_for_branch_traversal[]
2250 INIT(= N_("E878: (NFA regexp) Could not allocate memory for branch traversal!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002251#ifdef FEAT_SYN_HL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002252EXTERN char e_nfa_regexp_too_many_z[]
2253 INIT(= N_("E879: (NFA regexp) Too many \\z("));
Dominique Pellef85a4242022-01-09 12:49:31 +00002254#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002255#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2256EXTERN char e_cant_handle_systemexit_of_python_exception_in_vim[]
2257 INIT(= N_("E880: Can't handle SystemExit of python exception in vim"));
2258#endif
2259EXTERN char e_line_count_changed_unexpectedly[]
2260 INIT(= N_("E881: Line count changed unexpectedly"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002261#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002262EXTERN char e_uniq_compare_function_failed[]
2263 INIT(= N_("E882: Uniq compare function failed"));
2264EXTERN char e_search_pattern_and_expression_register_may_not_contain_two_or_more_lines[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002265 INIT(= N_("E883: Search pattern and expression register may not contain two or more lines"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002266EXTERN char e_function_name_cannot_contain_colon_str[]
2267 INIT(= N_("E884: Function name cannot contain a colon: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002268#endif
2269#ifdef FEAT_SIGNS
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002270EXTERN char e_not_possible_to_change_sign_str[]
2271 INIT(= N_("E885: Not possible to change sign %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002272#endif
2273#ifdef FEAT_VIMINFO
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002274EXTERN char e_cant_rename_viminfo_file_to_str[]
2275 INIT(= N_("E886: Can't rename viminfo file to %s!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002276#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002277EXTERN char e_sorry_this_command_is_disabled_python_side_module_could_not_be_loaded[]
2278 INIT(= N_("E887: Sorry, this command is disabled, the Python's site module could not be loaded."));
2279EXTERN char e_nfa_regexp_cannot_repeat_str[]
2280 INIT(= N_("E888: (NFA regexp) cannot repeat %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002281#ifdef FEAT_PROP_POPUP
2282EXTERN char e_number_required[]
2283 INIT(= N_("E889: Number required"));
2284#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002285#ifdef FEAT_SYN_HL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002286EXTERN char e_trailing_char_after_rsb_str_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002287 INIT(= N_("E890: Trailing char after ']': %s]%s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002288#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002289EXTERN char e_using_funcref_as_float[]
2290 INIT(= N_("E891: Using a Funcref as a Float"));
2291EXTERN char e_using_string_as_float[]
2292 INIT(= N_("E892: Using a String as a Float"));
2293EXTERN char e_using_list_as_float[]
2294 INIT(= N_("E893: Using a List as a Float"));
2295EXTERN char e_using_dictionary_as_float[]
2296 INIT(= N_("E894: Using a Dictionary as a Float"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002297#ifdef FEAT_MZSCHEME
2298EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_racket_base_module_could_not_be_loaded[]
2299 INIT(= N_("E895: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded."));
2300#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002301#ifdef FEAT_EVAL
2302EXTERN char e_argument_of_str_must_be_list_dictionary_or_blob[]
2303 INIT(= N_("E896: Argument of %s must be a List, Dictionary or Blob"));
2304EXTERN char e_list_or_blob_required[]
2305 INIT(= N_("E897: List or Blob required"));
2306#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002307#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002308EXTERN char e_socket_in_channel_connect[]
2309 INIT(= N_("E898: socket() in channel_connect()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002310#endif
2311#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002312EXTERN char e_argument_of_str_must_be_list_or_blob[]
2313 INIT(= N_("E899: Argument of %s must be a List or Blob"));
2314EXTERN char e_maxdepth_must_be_non_negative_number[]
2315 INIT(= N_("E900: maxdepth must be non-negative number"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002316#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002317#ifdef FEAT_JOB_CHANNEL
2318EXTERN char e_getaddrinfo_in_channel_open_str[]
2319 INIT(= N_("E901: getaddrinfo() in channel_open(): %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002320# ifndef FEAT_IPV6
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002321EXTERN char e_gethostbyname_in_channel_open[]
2322 INIT(= N_("E901: gethostbyname() in channel_open()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002323# endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002324EXTERN char e_cannot_connect_to_port[]
2325 INIT(= N_("E902: Cannot connect to port"));
2326EXTERN char e_received_command_with_non_string_argument[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002327 INIT(= N_("E903: Received command with non-string argument"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002328EXTERN char e_last_argument_for_expr_call_must_be_number[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002329 INIT(= N_("E904: Last argument for expr/call must be a number"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002330EXTERN char e_third_argument_for_call_must_be_list[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002331 INIT(= N_("E904: Third argument for call must be a list"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002332EXTERN char e_received_unknown_command_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002333 INIT(= N_("E905: Received unknown command: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002334EXTERN char e_not_an_open_channel[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002335 INIT(= N_("E906: Not an open channel"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002336#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002337EXTERN char e_using_special_value_as_float[]
2338 INIT(= N_("E907: Using a special value as a Float"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002339#ifdef FEAT_EVAL
Bram Moolenaar68db9962021-05-09 23:19:22 +02002340EXTERN char e_using_invalid_value_as_string_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002341 INIT(= N_("E908: Using an invalid value as a String: %s"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002342EXTERN char e_cannot_index_special_variable[]
2343 INIT(= N_("E909: Cannot index a special variable"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002344#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002345#ifdef FEAT_JOB_CHANNEL
2346EXTERN char e_using_job_as_number[]
2347 INIT(= N_("E910: Using a Job as a Number"));
2348EXTERN char e_using_job_as_float[]
2349 INIT(= N_("E911: Using a Job as a Float"));
2350EXTERN char e_cannot_use_evalexpr_sendexpr_with_raw_or_nl_channel[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002351 INIT(= N_("E912: Cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002352EXTERN char e_using_channel_as_number[]
2353 INIT(= N_("E913: Using a Channel as a Number"));
2354EXTERN char e_using_channel_as_float[]
2355 INIT(= N_("E914: Using a Channel as a Float"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002356EXTERN char e_in_io_buffer_requires_in_buf_or_in_name_to_be_set[]
2357 INIT(= N_("E915: in_io buffer requires in_buf or in_name to be set"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002358EXTERN char e_not_valid_job[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002359 INIT(= N_("E916: Not a valid job"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002360EXTERN char e_cannot_use_callback_with_str[]
2361 INIT(= N_("E917: Cannot use a callback with %s()"));
2362EXTERN char e_buffer_must_be_loaded_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002363 INIT(= N_("E918: Buffer must be loaded: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002364#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00002365EXTERN char e_directory_not_found_in_str_str[]
2366 INIT(= N_("E919: Directory not found in '%s': \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002367#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002368EXTERN char e_io_file_requires_name_to_be_set[]
2369 INIT(= N_("E920: _io file requires _name to be set"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002370#endif
2371#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002372EXTERN char e_invalid_callback_argument[]
2373 INIT(= N_("E921: Invalid callback argument"));
2374EXTERN char e_expected_dict[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002375 INIT(= N_("E922: Expected a dict"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002376EXTERN char e_second_argument_of_function_must_be_list_or_dict[]
2377 INIT(= N_("E923: Second argument of function() must be a list or a dict"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002378#endif
2379#ifdef FEAT_QUICKFIX
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002380EXTERN char e_current_window_was_closed[]
2381 INIT(= N_("E924: Current window was closed"));
2382EXTERN char e_current_quickfix_list_was_changed[]
2383 INIT(= N_("E925: Current quickfix list was changed"));
2384EXTERN char e_current_location_list_was_changed[]
2385 INIT(= N_("E926: Current location list was changed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002386#endif
2387#ifdef FEAT_EVAL
2388# ifdef FEAT_QUICKFIX
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002389EXTERN char e_invalid_action_str_1[]
2390 INIT(= N_("E927: Invalid action: '%s'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002391# endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002392EXTERN char e_string_required[]
2393 INIT(= N_("E928: String required"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002394#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002395#ifdef FEAT_VIMINFO
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002396EXTERN char e_too_many_viminfo_temp_files_like_str[]
2397 INIT(= N_("E929: Too many viminfo temp files, like %s!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002398#endif
2399#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002400EXTERN char e_cannot_use_redir_inside_execute[]
2401 INIT(= N_("E930: Cannot use :redir inside execute()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002402#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002403EXTERN char e_buffer_cannot_be_registered[]
2404 INIT(= N_("E931: Buffer cannot be registered"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002405#ifdef FEAT_EVAL
Bram Moolenaara6f79292022-01-04 21:30:47 +00002406EXTERN char e_closure_function_should_not_be_at_top_level[]
2407 INIT(= N_("E932: Closure function should not be at top level: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002408EXTERN char e_function_was_deleted_str[]
2409 INIT(= N_("E933: Function was deleted: %s"));
2410#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002411#ifdef FEAT_SIGNS
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002412EXTERN char e_cannot_jump_to_buffer_that_does_not_have_name[]
2413 INIT(= N_("E934: Cannot jump to a buffer that does not have a name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002414#endif
2415#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002416EXTERN char e_invalid_submatch_number_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002417 INIT(= N_("E935: Invalid submatch number: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002418#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002419EXTERN char e_cannot_delete_current_group[]
2420 INIT(= N_("E936: Cannot delete the current group"));
2421EXTERN char e_attempt_to_delete_buffer_that_is_in_use_str[]
2422 INIT(= N_("E937: Attempt to delete a buffer that is in use: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002423#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002424EXTERN char e_duplicate_key_in_json_str[]
2425 INIT(= N_("E938: Duplicate key in JSON: \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002426#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00002427EXTERN char e_positive_count_required[]
2428 INIT(= N_("E939: Positive count required"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00002429#ifdef FEAT_EVAL
2430EXTERN char e_cannot_lock_or_unlock_variable_str[]
2431 INIT(= N_("E940: Cannot lock or unlock variable %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002432# ifdef FEAT_CLIENTSERVER
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002433EXTERN char e_already_started_server[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002434 INIT(= N_("E941: Already started a server"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002435# else
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002436EXTERN char e_clientserver_feature_not_available[]
2437 INIT(= N_("E942: +clientserver feature not available"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002438# endif
2439#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002440EXTERN char e_command_table_needs_to_be_updated_run_make_cmdidxs[]
2441 INIT(= N_("E943: Command table needs to be updated, run 'make cmdidxs'"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00002442EXTERN char e_reverse_range_in_character_class[]
2443 INIT(= N_("E944: Reverse range in character class"));
2444EXTERN char e_range_too_large_in_character_class[]
2445 INIT(= N_("E945: Range too large in character class"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002446#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002447EXTERN char e_cannot_make_terminal_with_running_job_modifiable[]
2448 INIT(= N_("E946: Cannot make a terminal with running job modifiable"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002449EXTERN char e_job_still_running_in_buffer_str[]
2450 INIT(= N_("E947: Job still running in buffer \"%s\""));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002451EXTERN char e_job_still_running[]
2452 INIT(= N_("E948: Job still running"));
2453EXTERN char e_job_still_running_add_bang_to_end_the_job[]
2454 INIT(= N_("E948: Job still running (add ! to end the job)"));
Bram Moolenaar096ca732022-01-01 00:55:28 +00002455#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002456EXTERN char e_file_changed_while_writing[]
2457 INIT(= N_("E949: File changed while writing"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002458EXTERN char e_cannot_convert_between_str_and_str[]
2459 INIT(= N_("E950: Cannot convert between %s and %s"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002460EXTERN char e_percent_value_too_large[]
K.Takatab5988e32022-01-16 11:25:26 +00002461 // xgettext:no-c-format
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002462 INIT(= N_("E951: \\% value too large"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002463#if defined(FEAT_EVAL) && defined(FEAT_QUICKFIX)
Bram Moolenaar74409f62022-01-01 15:58:22 +00002464EXTERN char e_autocommand_caused_recursive_behavior[]
2465 INIT(= N_("E952: Autocommand caused recursive behavior"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002466#endif
2467#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002468EXTERN char e_file_exists_str[]
2469 INIT(= N_("E953: File exists: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002470#endif
2471#if defined(FEAT_TERMGUICOLORS) && defined(FEAT_VTP)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002472EXTERN char e_24_bit_colors_are_not_supported_on_this_environment[]
2473 INIT(= N_("E954: 24-bit colors are not supported on this environment"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002474#endif
2475#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002476EXTERN char e_not_terminal_buffer[]
2477 INIT(= N_("E955: Not a terminal buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002478#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002479EXTERN char e_cannot_use_pattern_recursively[]
2480 INIT(= N_("E956: Cannot use pattern recursively"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002481#ifdef FEAT_EVAL
Bram Moolenaar3a846e62022-01-01 16:21:00 +00002482EXTERN char e_invalid_window_number[]
2483 INIT(= N_("E957: Invalid window number"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002484#endif
2485#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002486EXTERN char e_job_already_finished[]
2487 INIT(= N_("E958: Job already finished"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002488#endif
2489#ifdef FEAT_DIFF
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002490EXTERN char e_invalid_diff_format[]
2491 INIT(= N_("E959: Invalid diff format."));
2492EXTERN char e_problem_creating_internal_diff[]
2493 INIT(= N_("E960: Problem creating the internal diff"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002494#endif
2495#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002496EXTERN char e_no_line_number_to_use_for_sflnum[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002497 INIT(= N_("E961: No line number to use for \"<sflnum>\""));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002498EXTERN char e_invalid_action_str_2[]
2499 INIT(= N_("E962: Invalid action: '%s'"));
2500EXTERN char e_setting_str_to_value_with_wrong_type[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002501 INIT(= N_("E963: Setting %s to value with wrong type"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002502#endif
2503#ifdef FEAT_PROP_POPUP
Bram Moolenaar8dac2ac2021-12-27 20:57:06 +00002504EXTERN char_u e_invalid_column_number_nr[]
2505 INIT(= N_("E964: Invalid column number: %ld"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002506EXTERN char e_missing_property_type_name[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002507 INIT(= N_("E965: Missing property type name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002508#endif
2509#ifdef FEAT_EVAL
Bram Moolenaar8dac2ac2021-12-27 20:57:06 +00002510EXTERN char_u e_invalid_line_number_nr[]
2511 INIT(= N_("E966: Invalid line number: %ld"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002512#endif
2513#ifdef FEAT_PROP_POPUP
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002514EXTERN char e_text_property_info_corrupted[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002515 INIT(= N_("E967: Text property info corrupted"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002516EXTERN char e_need_at_least_one_of_id_or_type[]
2517 INIT(= N_("E968: Need at least one of 'id' or 'type'"));
2518EXTERN char e_property_type_str_already_defined[]
2519 INIT(= N_("E969: Property type %s already defined"));
2520EXTERN char e_unknown_highlight_group_name_str[]
2521 INIT(= N_("E970: Unknown highlight group name: '%s'"));
2522EXTERN char e_type_not_exist[]
2523 INIT(= N_("E971: Property type %s does not exist"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002524#endif
2525#ifdef FEAT_EVAL
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002526EXTERN char e_blob_value_does_not_have_right_number_of_bytes[]
2527 INIT(= N_("E972: Blob value does not have the right number of bytes"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002528EXTERN char e_blob_literal_should_have_an_even_number_of_hex_characters[]
2529 INIT(= N_("E973: Blob literal should have an even number of hex characters"));
2530EXTERN char e_using_blob_as_number[]
2531 INIT(= N_("E974: Using a Blob as a Number"));
2532EXTERN char e_using_blob_as_float[]
2533 INIT(= N_("E975: Using a Blob as a Float"));
2534EXTERN char e_using_blob_as_string[]
2535 INIT(= N_("E976: Using a Blob as a String"));
2536EXTERN char e_can_only_compare_blob_with_blob[]
2537 INIT(= N_("E977: Can only compare Blob with Blob"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002538EXTERN char e_invalid_operation_for_blob[]
2539 INIT(= N_("E978: Invalid operation for Blob"));
2540EXTERN char e_blob_index_out_of_range_nr[]
2541 INIT(= N_("E979: Blob index out of range: %ld"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002542# ifndef USE_INPUT_BUF
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002543EXTERN char e_lowlevel_input_not_supported[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002544 INIT(= N_("E980: Lowlevel input not supported"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002545# endif
2546#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002547EXTERN char e_command_not_allowed_in_rvim[]
2548 INIT(= N_("E981: Command not allowed in rvim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002549#if defined(FEAT_TERMINAL) && defined(MSWIN)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002550EXTERN char e_conpty_is_not_available[]
2551 INIT(= N_("E982: ConPTY is not available"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002552#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002553EXTERN char e_duplicate_argument_str[]
2554 INIT(= N_("E983: Duplicate argument: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002555EXTERN char e_scriptversion_used_outside_of_sourced_file[]
2556 INIT(= N_("E984: :scriptversion used outside of a sourced file"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002557#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002558EXTERN char e_dot_equal_not_supported_with_script_version_two[]
2559 INIT(= N_("E985: .= is not supported with script version >= 2"));
2560EXTERN char e_cannot_modify_tag_stack_within_tagfunc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002561 INIT(= N_("E986: Cannot modify the tag stack within tagfunc"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002562EXTERN char e_invalid_return_value_from_tagfunc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002563 INIT(= N_("E987: Invalid return value from tagfunc"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002564#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002565#ifdef GUI_MAY_SPAWN
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002566EXTERN char e_gui_cannot_be_used_cannot_execute_gvim_exe[]
2567 INIT(= N_("E988: GUI cannot be used. Cannot execute gvim.exe."));
Dominique Pellef85a4242022-01-09 12:49:31 +00002568#endif
2569#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002570EXTERN char e_non_default_argument_follows_default_argument[]
2571 INIT(= N_("E989: Non-default argument follows default argument"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002572EXTERN char e_missing_end_marker_str[]
2573 INIT(= N_("E990: Missing end marker '%s'"));
2574EXTERN char e_cannot_use_heredoc_here[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002575 INIT(= N_("E991: Cannot use =<< here"));
Bram Moolenaar269dc632022-01-06 11:43:21 +00002576#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002577EXTERN char e_not_allowed_in_modeline_when_modelineexpr_is_off[]
2578 INIT(= N_("E992: Not allowed in a modeline when 'modelineexpr' is off"));
Bram Moolenaar269dc632022-01-06 11:43:21 +00002579#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002580EXTERN char e_window_nr_is_not_popup_window[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002581 INIT(= N_("E993: Window %d is not a popup window"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002582EXTERN char e_not_allowed_in_popup_window[]
2583 INIT(= N_("E994: Not allowed in a popup window"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002584EXTERN char e_cannot_modify_existing_variable[]
2585 INIT(= N_("E995: Cannot modify existing variable"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002586EXTERN char e_cannot_lock_range[]
2587 INIT(= N_("E996: Cannot lock a range"));
2588EXTERN char e_cannot_lock_option[]
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002589 INIT(= N_("E996: Cannot lock an option"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002590EXTERN char e_cannot_lock_list_or_dict[]
2591 INIT(= N_("E996: Cannot lock a list or dict"));
2592EXTERN char e_cannot_lock_environment_variable[]
2593 INIT(= N_("E996: Cannot lock an environment variable"));
2594EXTERN char e_cannot_lock_register[]
2595 INIT(= N_("E996: Cannot lock a register"));
2596#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002597#ifdef FEAT_PROP_POPUP
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002598EXTERN char e_tabpage_not_found_nr[]
2599 INIT(= N_("E997: Tabpage not found: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002600#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002601#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002602EXTERN char e_reduce_of_an_empty_str_with_no_initial_value[]
2603 INIT(= N_("E998: Reduce of an empty %s with no initial value"));
2604#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002605EXTERN char e_scriptversion_not_supported_nr[]
2606 INIT(= N_("E999: scriptversion not supported: %d"));
2607// E1000 unused
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002608#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002609EXTERN char e_variable_not_found_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002610 INIT(= N_("E1001: Variable not found: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002611EXTERN char e_syntax_error_at_str[]
2612 INIT(= N_("E1002: Syntax error at %s"));
2613EXTERN char e_missing_return_value[]
2614 INIT(= N_("E1003: Missing return value"));
Bram Moolenaare7a73e02021-01-01 19:17:55 +01002615EXTERN char e_white_space_required_before_and_after_str_at_str[]
2616 INIT(= N_("E1004: White space required before and after '%s' at \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002617EXTERN char e_too_many_argument_types[]
2618 INIT(= N_("E1005: Too many argument types"));
2619EXTERN char e_str_is_used_as_argument[]
2620 INIT(= N_("E1006: %s is used as an argument"));
2621EXTERN char e_mandatory_argument_after_optional_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002622 INIT(= N_("E1007: Mandatory argument after optional argument"));
Bram Moolenaar62e0e2e2022-08-20 12:07:58 +01002623EXTERN char e_missing_type_after_str[]
2624 INIT(= N_("E1008: Missing <type> after %s"));
2625EXTERN char e_missing_gt_after_type_str[]
2626 INIT(= N_("E1009: Missing > after type: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002627EXTERN char e_type_not_recognized_str[]
2628 INIT(= N_("E1010: Type not recognized: %s"));
2629EXTERN char e_name_too_long_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002630 INIT(= N_("E1011: Name too long: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002631EXTERN char e_type_mismatch_expected_str_but_got_str[]
Bram Moolenaar5e654232020-09-16 15:22:00 +02002632 INIT(= N_("E1012: Type mismatch; expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002633EXTERN char e_type_mismatch_expected_str_but_got_str_in_str[]
2634 INIT(= N_("E1012: Type mismatch; expected %s but got %s in %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002635EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002636 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002637EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str_in_str[]
2638 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s in %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002639EXTERN char e_invalid_key_str[]
2640 INIT(= N_("E1014: Invalid key: %s"));
Bram Moolenaare4984292020-12-13 14:19:25 +01002641EXTERN char e_name_expected_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002642 INIT(= N_("E1015: Name expected: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002643EXTERN char e_cannot_declare_a_scope_variable[]
2644 INIT(= N_("E1016: Cannot declare a %s variable: %s"));
2645EXTERN char e_cannot_declare_an_environment_variable[]
2646 INIT(= N_("E1016: Cannot declare an environment variable: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002647EXTERN char e_variable_already_declared[]
2648 INIT(= N_("E1017: Variable already declared: %s"));
2649EXTERN char e_cannot_assign_to_constant[]
2650 INIT(= N_("E1018: Cannot assign to a constant: %s"));
2651EXTERN char e_can_only_concatenate_to_string[]
2652 INIT(= N_("E1019: Can only concatenate to string"));
2653EXTERN char e_cannot_use_operator_on_new_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002654 INIT(= N_("E1020: Cannot use an operator on a new variable: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002655EXTERN char e_const_requires_a_value[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002656 INIT(= N_("E1021: Const requires a value"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002657EXTERN char e_type_or_initialization_required[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002658 INIT(= N_("E1022: Type or initialization required"));
Bram Moolenaard70840e2020-08-22 15:06:35 +02002659EXTERN char e_using_number_as_bool_nr[]
Bram Moolenaar239f8d92021-01-17 13:21:20 +01002660 INIT(= N_("E1023: Using a Number as a Bool: %lld"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002661EXTERN char e_using_number_as_string[]
2662 INIT(= N_("E1024: Using a Number as a String"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002663EXTERN char e_using_rcurly_outside_if_block_scope[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002664 INIT(= N_("E1025: Using } outside of a block scope"));
Bram Moolenaar90887842021-07-27 22:35:42 +02002665#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002666EXTERN char e_missing_rcurly[]
2667 INIT(= N_("E1026: Missing }"));
Bram Moolenaar90887842021-07-27 22:35:42 +02002668#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002669EXTERN char e_missing_return_statement[]
2670 INIT(= N_("E1027: Missing return statement"));
Bram Moolenaare13bdec2020-10-16 23:16:47 +02002671EXTERN char e_compiling_def_function_failed[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002672 INIT(= N_("E1028: Compiling :def function failed"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002673EXTERN char e_expected_str_but_got_str[]
2674 INIT(= N_("E1029: Expected %s but got %s"));
Bram Moolenaarea2d4072020-11-12 12:08:51 +01002675EXTERN char e_using_string_as_number_str[]
2676 INIT(= N_("E1030: Using a String as a Number: \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002677EXTERN char e_cannot_use_void_value[]
2678 INIT(= N_("E1031: Cannot use void value"));
2679EXTERN char e_missing_catch_or_finally[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002680 INIT(= N_("E1032: Missing :catch or :finally"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002681EXTERN char e_catch_unreachable_after_catch_all[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002682 INIT(= N_("E1033: Catch unreachable after catch-all"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002683EXTERN char e_cannot_use_reserved_name[]
2684 INIT(= N_("E1034: Cannot use reserved name %s"));
2685EXTERN char e_percent_requires_number_arguments[]
K.Takatab5988e32022-01-16 11:25:26 +00002686 // xgettext:no-c-format
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002687 INIT(= N_("E1035: % requires number arguments"));
2688EXTERN char e_char_requires_number_or_float_arguments[]
2689 INIT(= N_("E1036: %c requires number or float arguments"));
2690EXTERN char e_cannot_use_str_with_str[]
2691 INIT(= N_("E1037: Cannot use \"%s\" with %s"));
2692EXTERN char e_vim9script_can_only_be_used_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002693 INIT(= N_("E1038: \"vim9script\" can only be used in a script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002694EXTERN char e_vim9script_must_be_first_command_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002695 INIT(= N_("E1039: \"vim9script\" must be the first command in a script"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002696#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002697EXTERN char e_cannot_use_scriptversion_after_vim9script[]
2698 INIT(= N_("E1040: Cannot use :scriptversion after :vim9script"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002699#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002700EXTERN char e_redefining_script_item_str[]
Bram Moolenaar6d877fe2022-03-21 19:47:31 +00002701 INIT(= N_("E1041: Redefining script item: \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002702EXTERN char e_export_can_only_be_used_in_vim9script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002703 INIT(= N_("E1042: Export can only be used in vim9script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002704EXTERN char e_invalid_command_after_export[]
2705 INIT(= N_("E1043: Invalid command after :export"));
2706EXTERN char e_export_with_invalid_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002707 INIT(= N_("E1044: Export with invalid argument"));
Bram Moolenaarfe6fb262022-01-24 18:16:12 +00002708// E1045 not used
2709// E1046 not used
Bram Moolenaara9e3d562021-09-08 12:31:35 +02002710EXTERN char e_syntax_error_in_import_str[]
2711 INIT(= N_("E1047: Syntax error in import: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002712EXTERN char e_item_not_found_in_script_str[]
2713 INIT(= N_("E1048: Item not found in script: %s"));
2714EXTERN char e_item_not_exported_in_script_str[]
2715 INIT(= N_("E1049: Item not exported in script: %s"));
Bram Moolenaar6e2c2c52020-12-25 19:25:45 +01002716EXTERN char e_colon_required_before_range_str[]
2717 INIT(= N_("E1050: Colon required before a range: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002718EXTERN char e_wrong_argument_type_for_plus[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002719 INIT(= N_("E1051: Wrong argument type for +"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002720EXTERN char e_cannot_declare_an_option[]
2721 INIT(= N_("E1052: Cannot declare an option: %s"));
2722EXTERN char e_could_not_import_str[]
2723 INIT(= N_("E1053: Could not import \"%s\""));
Bram Moolenaar057e84a2021-02-28 16:55:11 +01002724EXTERN char e_variable_already_declared_in_script_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002725 INIT(= N_("E1054: Variable already declared in the script: %s"));
2726EXTERN char e_missing_name_after_dots[]
2727 INIT(= N_("E1055: Missing name after ..."));
2728EXTERN char e_expected_type_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002729 INIT(= N_("E1056: Expected a type: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002730EXTERN char e_missing_enddef[]
2731 INIT(= N_("E1057: Missing :enddef"));
2732EXTERN char e_function_nesting_too_deep[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002733 INIT(= N_("E1058: Function nesting too deep"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002734EXTERN char e_no_white_space_allowed_before_colon_str[]
2735 INIT(= N_("E1059: No white space allowed before colon: %s"));
2736EXTERN char e_expected_dot_after_name_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002737 INIT(= N_("E1060: Expected dot after name: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002738EXTERN char e_cannot_find_function_str[]
2739 INIT(= N_("E1061: Cannot find function %s"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002740EXTERN char e_cannot_index_number[]
2741 INIT(= N_("E1062: Cannot index a Number"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002742EXTERN char e_type_mismatch_for_v_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002743 INIT(= N_("E1063: Type mismatch for v: variable"));
Bram Moolenaar021ef352021-12-02 20:44:42 +00002744#endif
Bram Moolenaar9ac38122021-12-02 18:42:33 +00002745EXTERN char e_yank_register_changed_while_using_it[]
2746 INIT(= N_("E1064: Yank register changed while using it"));
Bram Moolenaarb2175222022-03-05 20:24:41 +00002747EXTERN char e_command_cannot_be_shortened_str[]
Bram Moolenaar204852a2022-03-05 12:56:44 +00002748 INIT(= N_("E1065: Command cannot be shortened: %s"));
Bram Moolenaar021ef352021-12-02 20:44:42 +00002749#ifdef FEAT_EVAL
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002750EXTERN char e_cannot_declare_a_register_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002751 INIT(= N_("E1066: Cannot declare a register: %s"));
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002752EXTERN char e_separator_mismatch_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002753 INIT(= N_("E1067: Separator mismatch: %s"));
Bram Moolenaarba98fb52021-02-07 18:06:29 +01002754EXTERN char e_no_white_space_allowed_before_str_str[]
2755 INIT(= N_("E1068: No white space allowed before '%s': %s"));
Bram Moolenaarc3fc75d2021-02-07 15:28:09 +01002756EXTERN char e_white_space_required_after_str_str[]
2757 INIT(= N_("E1069: White space required after '%s': %s"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00002758EXTERN char e_invalid_string_for_import_str[]
2759 INIT(= N_("E1071: Invalid string for :import: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002760EXTERN char e_cannot_compare_str_with_str[]
2761 INIT(= N_("E1072: Cannot compare %s with %s"));
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002762EXTERN char e_name_already_defined_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002763 INIT(= N_("E1073: Name already defined: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002764EXTERN char e_no_white_space_allowed_after_dot[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002765 INIT(= N_("E1074: No white space allowed after dot"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002766EXTERN char e_namespace_not_supported_str[]
2767 INIT(= N_("E1075: Namespace not supported: %s"));
Bram Moolenaar73e28dc2022-09-17 21:08:33 +01002768// E1076 was deleted
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002769EXTERN char e_missing_argument_type_for_str[]
2770 INIT(= N_("E1077: Missing argument type for %s"));
Bram Moolenaarf0775142022-03-04 20:10:38 +00002771#endif
2772EXTERN char e_invalid_command_nested_did_you_mean_plusplus_nested[]
2773 INIT(= N_("E1078: Invalid command \"nested\", did you mean \"++nested\"?"));
2774#ifdef FEAT_EVAL
Bram Moolenaar0e1574c2022-03-03 17:05:35 +00002775EXTERN char e_cannot_declare_variable_on_command_line[]
2776 INIT(= N_("E1079: Cannot declare a variable on the command line"));
Bram Moolenaar8b716f52022-02-15 21:17:56 +00002777EXTERN char e_invalid_assignment[]
2778 INIT(= N_("E1080: Invalid assignment"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002779EXTERN char e_cannot_unlet_str[]
2780 INIT(= N_("E1081: Cannot unlet %s"));
Bram Moolenaarb5d20392022-02-14 21:42:15 +00002781#endif
Bram Moolenaarbc510062022-02-14 21:19:04 +00002782EXTERN char e_command_modifier_without_command[]
2783 INIT(= N_("E1082: Command modifier without command"));
Bram Moolenaarb5d20392022-02-14 21:42:15 +00002784#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002785EXTERN char e_missing_backtick[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002786 INIT(= N_("E1083: Missing backtick"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002787EXTERN char e_cannot_delete_vim9_script_function_str[]
2788 INIT(= N_("E1084: Cannot delete Vim9 script function %s"));
2789EXTERN char e_not_callable_type_str[]
2790 INIT(= N_("E1085: Not a callable type: %s"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01002791// E1086 unused
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002792EXTERN char e_cannot_use_index_when_declaring_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002793 INIT(= N_("E1087: Cannot use an index when declaring a variable"));
Bram Moolenaar779aeff2022-02-08 19:12:19 +00002794EXTERN char e_script_cannot_import_itself[]
2795 INIT(= N_("E1088: Script cannot import itself"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002796EXTERN char e_unknown_variable_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002797 INIT(= N_("E1089: Unknown variable: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002798EXTERN char e_cannot_assign_to_argument[]
2799 INIT(= N_("E1090: Cannot assign to argument %s"));
2800EXTERN char e_function_is_not_compiled_str[]
2801 INIT(= N_("E1091: Function is not compiled: %s"));
Bram Moolenaar5658ca32022-02-03 20:09:19 +00002802EXTERN char e_cannot_nest_redir[]
2803 INIT(= N_("E1092: Cannot nest :redir"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002804EXTERN char e_expected_nr_items_but_got_nr[]
2805 INIT(= N_("E1093: Expected %d items but got %d"));
2806EXTERN char e_import_can_only_be_used_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002807 INIT(= N_("E1094: Import can only be used in a script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002808EXTERN char e_unreachable_code_after_return[]
2809 INIT(= N_("E1095: Unreachable code after :return"));
2810EXTERN char e_returning_value_in_function_without_return_type[]
2811 INIT(= N_("E1096: Returning a value in a function without a return type"));
2812EXTERN char e_line_incomplete[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002813 INIT(= N_("E1097: Line incomplete"));
Sean Dewar80d73952021-08-04 19:25:54 +02002814EXTERN char e_string_list_or_blob_required[]
2815 INIT(= N_("E1098: String, List or Blob required"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002816EXTERN char e_unknown_error_while_executing_str[]
2817 INIT(= N_("E1099: Unknown error while executing %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002818EXTERN char e_command_not_supported_in_vim9_script_missing_var_str[]
2819 INIT(= N_("E1100: Command not supported in Vim9 script (missing :var?): %s"));
Bram Moolenaara749a422022-02-12 19:52:25 +00002820EXTERN char e_cannot_declare_script_variable_in_function_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002821 INIT(= N_("E1101: Cannot declare a script variable in a function: %s"));
2822EXTERN char e_lambda_function_not_found_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002823 INIT(= N_("E1102: Lambda function not found: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002824EXTERN char e_dictionary_not_set[]
2825 INIT(= N_("E1103: Dictionary not set"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002826EXTERN char e_missing_gt[]
2827 INIT(= N_("E1104: Missing >"));
2828EXTERN char e_cannot_convert_str_to_string[]
2829 INIT(= N_("E1105: Cannot convert %s to string"));
2830EXTERN char e_one_argument_too_many[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002831 INIT(= N_("E1106: One argument too many"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002832EXTERN char e_nr_arguments_too_many[]
2833 INIT(= N_("E1106: %d arguments too many"));
Bram Moolenaar56acb092020-08-16 14:48:19 +02002834EXTERN char e_string_list_dict_or_blob_required[]
2835 INIT(= N_("E1107: String, List, Dict or Blob required"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002836EXTERN char e_item_not_found_str[]
2837 INIT(= N_("E1108: Item not found: %s"));
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02002838EXTERN char e_list_item_nr_is_not_list[]
2839 INIT(= N_("E1109: List item %d is not a List"));
2840EXTERN char e_list_item_nr_does_not_contain_3_numbers[]
2841 INIT(= N_("E1110: List item %d does not contain 3 numbers"));
2842EXTERN char e_list_item_nr_range_invalid[]
2843 INIT(= N_("E1111: List item %d range invalid"));
2844EXTERN char e_list_item_nr_cell_width_invalid[]
2845 INIT(= N_("E1112: List item %d cell width invalid"));
2846EXTERN char e_overlapping_ranges_for_nr[]
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02002847 INIT(= N_("E1113: Overlapping ranges for 0x%lx"));
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02002848EXTERN char e_only_values_of_0x100_and_higher_supported[]
2849 INIT(= N_("E1114: Only values of 0x100 and higher supported"));
Bram Moolenaar44d66522020-09-06 22:26:57 +02002850EXTERN char e_assert_fails_fourth_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002851 INIT(= N_("E1115: \"assert_fails()\" fourth argument must be a number"));
Bram Moolenaar44d66522020-09-06 22:26:57 +02002852EXTERN char e_assert_fails_fifth_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002853 INIT(= N_("E1116: \"assert_fails()\" fifth argument must be a string"));
Bram Moolenaar8b848ca2020-09-10 22:28:01 +02002854EXTERN char e_cannot_use_bang_with_nested_def[]
2855 INIT(= N_("E1117: Cannot use ! with nested :def"));
Bram Moolenaar70c43d82022-01-26 21:01:15 +00002856EXTERN char e_cannot_change_locked_list[]
2857 INIT(= N_("E1118: Cannot change locked list"));
2858EXTERN char e_cannot_change_locked_list_item[]
2859 INIT(= N_("E1119: Cannot change locked list item"));
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02002860EXTERN char e_cannot_change_dict[]
2861 INIT(= N_("E1120: Cannot change dict"));
2862EXTERN char e_cannot_change_dict_item[]
2863 INIT(= N_("E1121: Cannot change dict item"));
Bram Moolenaar916911f2020-09-16 21:41:53 +02002864EXTERN char e_variable_is_locked_str[]
2865 INIT(= N_("E1122: Variable is locked: %s"));
Bram Moolenaar10e4f122020-09-20 22:43:52 +02002866EXTERN char e_missing_comma_before_argument_str[]
2867 INIT(= N_("E1123: Missing comma before argument: %s"));
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002868EXTERN char e_str_cannot_be_used_in_legacy_vim_script[]
2869 INIT(= N_("E1124: \"%s\" cannot be used in legacy Vim script"));
2870EXTERN char e_final_requires_a_value[]
2871 INIT(= N_("E1125: Final requires a value"));
Bram Moolenaarcfcd0112020-09-27 15:19:27 +02002872EXTERN char e_cannot_use_let_in_vim9_script[]
2873 INIT(= N_("E1126: Cannot use :let in Vim9 script"));
Bram Moolenaarc1f00662020-10-03 13:41:53 +02002874EXTERN char e_missing_name_after_dot[]
2875 INIT(= N_("E1127: Missing name after dot"));
Bram Moolenaar9becdf22020-10-10 21:33:48 +02002876EXTERN char e_endblock_without_block[]
2877 INIT(= N_("E1128: } without {"));
Bram Moolenaar1e021e62020-10-16 20:25:23 +02002878EXTERN char e_throw_with_empty_string[]
2879 INIT(= N_("E1129: Throw with empty string"));
Bram Moolenaar1dcae592020-10-19 19:02:42 +02002880EXTERN char e_cannot_add_to_null_list[]
2881 INIT(= N_("E1130: Cannot add to null list"));
Bram Moolenaar80b0e5e2020-10-19 20:45:36 +02002882EXTERN char e_cannot_add_to_null_blob[]
2883 INIT(= N_("E1131: Cannot add to null blob"));
Bram Moolenaar0d90e722020-11-03 18:20:19 +01002884EXTERN char e_missing_function_argument[]
2885 INIT(= N_("E1132: Missing function argument"));
Bram Moolenaar348be7e2020-11-04 11:36:35 +01002886EXTERN char e_cannot_extend_null_dict[]
2887 INIT(= N_("E1133: Cannot extend a null dict"));
2888EXTERN char e_cannot_extend_null_list[]
2889 INIT(= N_("E1134: Cannot extend a null list"));
Bram Moolenaarea2d4072020-11-12 12:08:51 +01002890EXTERN char e_using_string_as_bool_str[]
2891 INIT(= N_("E1135: Using a String as a Bool: \"%s\""));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002892#endif
Bram Moolenaar957cf672020-11-12 14:21:06 +01002893EXTERN char e_cmd_mapping_must_end_with_cr_before_second_cmd[]
Bram Moolenaar806da512021-12-24 19:54:52 +00002894 INIT(= N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>"));
Bram Moolenaar957cf672020-11-12 14:21:06 +01002895EXTERN char e_cmd_maping_must_not_include_str_key[]
2896 INIT(= N_("E1137: <Cmd> mapping must not include %s key"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002897#ifdef FEAT_EVAL
Bram Moolenaard92cc132020-11-18 17:17:15 +01002898EXTERN char e_using_bool_as_number[]
2899 INIT(= N_("E1138: Using a Bool as a Number"));
Bram Moolenaar2bede172020-11-19 18:53:18 +01002900EXTERN char e_missing_matching_bracket_after_dict_key[]
2901 INIT(= N_("E1139: Missing matching bracket after dict key"));
Bram Moolenaar792f7862020-11-23 08:31:18 +01002902EXTERN char e_for_argument_must_be_sequence_of_lists[]
Bram Moolenaar4d5dfe22021-06-26 13:59:29 +02002903 INIT(= N_("E1140: :for argument must be a sequence of lists"));
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002904EXTERN char e_indexable_type_required[]
2905 INIT(= N_("E1141: Indexable type required"));
Bram Moolenaarb3d83982022-01-27 19:59:47 +00002906EXTERN char e_calling_test_garbagecollect_now_while_v_testing_is_not_set[]
2907 INIT(= N_("E1142: Calling test_garbagecollect_now() while v:testing is not set"));
Bram Moolenaare4984292020-12-13 14:19:25 +01002908EXTERN char e_empty_expression_str[]
Bram Moolenaarb5b94802020-12-13 17:50:20 +01002909 INIT(= N_("E1143: Empty expression: \"%s\""));
Bram Moolenaarb98cec22021-04-25 16:35:55 +02002910EXTERN char e_command_str_not_followed_by_white_space_str[]
2911 INIT(= N_("E1144: Command \"%s\" is not followed by white space: %s"));
Bram Moolenaarb5b94802020-12-13 17:50:20 +01002912EXTERN char e_missing_heredoc_end_marker_str[]
2913 INIT(= N_("E1145: Missing heredoc end marker: %s"));
Bram Moolenaar52c124d2020-12-20 21:43:35 +01002914EXTERN char e_command_not_recognized_str[]
2915 INIT(= N_("E1146: Command not recognized: %s"));
Bram Moolenaar4f5e3972020-12-21 17:30:50 +01002916EXTERN char e_list_not_set[]
2917 INIT(= N_("E1147: List not set"));
2918EXTERN char e_cannot_index_str[]
2919 INIT(= N_("E1148: Cannot index a %s"));
Bram Moolenaar4aab88d2020-12-24 21:56:41 +01002920EXTERN char e_script_variable_invalid_after_reload_in_function_str[]
2921 INIT(= N_("E1149: Script variable is invalid after reload in function %s"));
Bram Moolenaar07a65d22020-12-26 20:09:15 +01002922EXTERN char e_script_variable_type_changed[]
2923 INIT(= N_("E1150: Script variable type changed"));
Bram Moolenaar5178b1b2021-01-01 18:43:51 +01002924EXTERN char e_mismatched_endfunction[]
2925 INIT(= N_("E1151: Mismatched endfunction"));
2926EXTERN char e_mismatched_enddef[]
2927 INIT(= N_("E1152: Mismatched enddef"));
Bram Moolenaar0c357522021-07-18 14:43:43 +02002928EXTERN char e_invalid_operation_for_str[]
2929 INIT(= N_("E1153: Invalid operation for %s"));
Bram Moolenaar99880f92021-01-20 21:23:14 +01002930EXTERN char e_divide_by_zero[]
2931 INIT(= N_("E1154: Divide by zero"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002932#endif
Bram Moolenaar9a046fd2021-01-28 13:47:59 +01002933EXTERN char e_cannot_define_autocommands_for_all_events[]
2934 INIT(= N_("E1155: Cannot define autocommands for ALL events"));
Bram Moolenaar61015162021-01-28 17:56:09 +01002935EXTERN char e_cannot_change_arglist_recursively[]
2936 INIT(= N_("E1156: Cannot change the argument list recursively"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002937#ifdef FEAT_EVAL
Bram Moolenaar0346b792021-01-31 22:18:29 +01002938EXTERN char e_missing_return_type[]
2939 INIT(= N_("E1157: Missing return type"));
Bram Moolenaar3b690062021-02-01 20:14:51 +01002940EXTERN char e_cannot_use_flatten_in_vim9_script[]
Bram Moolenaarfb808622022-01-28 15:01:47 +00002941 INIT(= N_("E1158: Cannot use flatten() in Vim9 script, use flattennew()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002942#endif
Bram Moolenaar983d83f2021-02-07 12:12:43 +01002943EXTERN char e_cannot_split_window_when_closing_buffer[]
2944 INIT(= N_("E1159: Cannot split a window when closing the buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002945#ifdef FEAT_EVAL
Bram Moolenaara5a1ec12021-02-07 16:05:47 +01002946EXTERN char e_cannot_use_default_for_variable_arguments[]
2947 INIT(= N_("E1160: Cannot use a default for variable arguments"));
Bram Moolenaara8530892021-02-08 21:53:09 +01002948EXTERN char e_cannot_json_encode_str[]
2949 INIT(= N_("E1161: Cannot json encode a %s"));
Bram Moolenaar418a29f2021-02-10 22:23:41 +01002950EXTERN char e_register_name_must_be_one_char_str[]
2951 INIT(= N_("E1162: Register name must be one character: %s"));
Bram Moolenaarf785aa12021-02-11 21:19:34 +01002952EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str[]
2953 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002954EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str_in_str[]
2955 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s in %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002956#endif
Bram Moolenaar39f3b142021-02-14 12:57:36 +01002957EXTERN char e_vim9cmd_must_be_followed_by_command[]
2958 INIT(= N_("E1164: vim9cmd must be followed by a command"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002959#ifdef FEAT_EVAL
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002960EXTERN char e_cannot_use_range_with_assignment_str[]
2961 INIT(= N_("E1165: Cannot use a range with an assignment: %s"));
2962EXTERN char e_cannot_use_range_with_dictionary[]
2963 INIT(= N_("E1166: Cannot use a range with a dictionary"));
Bram Moolenaar057e84a2021-02-28 16:55:11 +01002964EXTERN char e_argument_name_shadows_existing_variable_str[]
2965 INIT(= N_("E1167: Argument name shadows existing variable: %s"));
2966EXTERN char e_argument_already_declared_in_script_str[]
2967 INIT(= N_("E1168: Argument already declared in the script: %s"));
Bram Moolenaarfe6fb262022-01-24 18:16:12 +00002968EXTERN char e_expression_too_recursive_str[]
2969 INIT(= N_("E1169: Expression too recursive: %s"));
Bram Moolenaar3f74c0a2022-08-06 18:12:06 +01002970EXTERN char e_cannot_use_hash_curly_to_start_comment[]
2971 INIT(= N_("E1170: Cannot use #{ to start a comment"));
Bram Moolenaar7a6eaa02021-03-21 20:53:29 +01002972EXTERN char e_missing_end_block[]
2973 INIT(= N_("E1171: Missing } after inline function"));
2974EXTERN char e_cannot_use_default_values_in_lambda[]
2975 INIT(= N_("E1172: Cannot use default values in a lambda"));
Bram Moolenaar7473a842021-12-28 17:55:26 +00002976EXTERN char e_text_found_after_str_str[]
2977 INIT(= N_("E1173: Text found after %s: %s"));
Bram Moolenaarf28f2ac2021-03-22 22:21:26 +01002978EXTERN char e_string_required_for_argument_nr[]
2979 INIT(= N_("E1174: String required for argument %d"));
2980EXTERN char e_non_empty_string_required_for_argument_nr[]
Bram Moolenaar3a0f0922021-03-25 22:22:30 +01002981 INIT(= N_("E1175: Non-empty string required for argument %d"));
2982EXTERN char e_misplaced_command_modifier[]
2983 INIT(= N_("E1176: Misplaced command modifier"));
Bram Moolenaar74e54fc2021-03-26 20:41:29 +01002984EXTERN char e_for_loop_on_str_not_supported[]
2985 INIT(= N_("E1177: For loop on %s not supported"));
Bram Moolenaarb2cb6c82021-03-28 20:38:34 +02002986EXTERN char e_cannot_lock_unlock_local_variable[]
2987 INIT(= N_("E1178: Cannot lock or unlock a local variable"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002988#endif
2989#ifdef FEAT_TERMINAL
Bram Moolenaar9ea7e552021-03-29 21:06:04 +02002990EXTERN char e_failed_to_extract_pwd_from_str_check_your_shell_config[]
2991 INIT(= N_("E1179: Failed to extract PWD from %s, check your shell's config related to OSC 7"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002992#endif
2993#ifdef FEAT_EVAL
Bram Moolenaar2a389082021-04-09 20:24:31 +02002994EXTERN char e_variable_arguments_type_must_be_list_str[]
2995 INIT(= N_("E1180: Variable arguments type must be a list: %s"));
Bram Moolenaar962c43b2021-04-10 17:18:09 +02002996EXTERN char e_cannot_use_underscore_here[]
2997 INIT(= N_("E1181: Cannot use an underscore here"));
Bram Moolenaardea5ab02022-02-23 22:12:02 +00002998EXTERN char e_cannot_define_dict_func_in_vim9_script_str[]
2999 INIT(= N_("E1182: Cannot define a dict function in Vim9 script: %s"));
Bram Moolenaar0e3ff192021-04-14 20:35:23 +02003000EXTERN char e_cannot_use_range_with_assignment_operator_str[]
3001 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003002#endif
3003#ifdef FEAT_EVAL
Bram Moolenaar51e93322021-04-17 20:44:56 +02003004EXTERN char e_blob_not_set[]
3005 INIT(= N_("E1184: Blob not set"));
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02003006EXTERN char e_missing_redir_end[]
3007 INIT(= N_("E1185: Missing :redir END"));
Bram Moolenaar68db9962021-05-09 23:19:22 +02003008EXTERN char e_expression_does_not_result_in_value_str[]
3009 INIT(= N_("E1186: Expression does not result in a value: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003010#endif
Christian Brabandt1d3a14e2021-05-29 19:53:50 +02003011EXTERN char e_failed_to_source_defaults[]
3012 INIT(= N_("E1187: Failed to source defaults.vim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003013#if defined(FEAT_TERMINAL) && defined(FEAT_CMDWIN)
Bram Moolenaare5b44862021-05-30 13:54:03 +02003014EXTERN char e_cannot_open_terminal_from_command_line_window[]
3015 INIT(= N_("E1188: Cannot open a terminal from the command line window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003016#endif
3017#ifdef FEAT_EVAL
Bram Moolenaarc3cb1c92021-06-02 16:47:53 +02003018EXTERN char e_cannot_use_legacy_with_command_str[]
3019 INIT(= N_("E1189: Cannot use :legacy with this command: %s"));
Bram Moolenaar8da6d6d2021-06-05 18:15:09 +02003020EXTERN char e_one_argument_too_few[]
3021 INIT(= N_("E1190: One argument too few"));
3022EXTERN char e_nr_arguments_too_few[]
3023 INIT(= N_("E1190: %d arguments too few"));
Bram Moolenaarb55d6182021-06-08 22:01:53 +02003024EXTERN char e_call_to_function_that_failed_to_compile_str[]
3025 INIT(= N_("E1191: Call to function that failed to compile: %s"));
Bram Moolenaar22db0d52021-06-12 12:16:55 +02003026EXTERN char e_empty_function_name[]
3027 INIT(= N_("E1192: Empty function name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003028#endif
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003029// libsodium
Dominique Pellef85a4242022-01-09 12:49:31 +00003030#ifdef FEAT_CRYPT
3031# ifndef FEAT_SODIUM
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003032EXTERN char e_libsodium_not_built_in[]
3033 INIT(= N_("E1193: cryptmethod xchacha20 not built into this Vim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003034# else
3035# if 0
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003036EXTERN char e_libsodium_cannot_encrypt_header[]
3037 INIT(= N_("E1194: Cannot encrypt header, not enough space"));
3038EXTERN char e_libsodium_cannot_encrypt_buffer[]
3039 INIT(= N_("E1195: Cannot encrypt buffer, not enough space"));
3040EXTERN char e_libsodium_cannot_decrypt_header[]
3041 INIT(= N_("E1196: Cannot decrypt header, not enough space"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003042# endif
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003043EXTERN char e_libsodium_cannot_allocate_buffer[]
3044 INIT(= N_("E1197: Cannot allocate_buffer for encryption"));
3045EXTERN char e_libsodium_decryption_failed_header_incomplete[]
3046 INIT(= N_("E1198: Decryption failed: Header incomplete!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003047# if 0
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003048EXTERN char e_libsodium_cannot_decrypt_buffer[]
3049 INIT(= N_("E1199: Cannot decrypt buffer, not enough space"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003050# endif
Dominique Pellecb54bc62021-06-21 20:15:37 +02003051EXTERN char e_libsodium_decryption_failed[]
Christian Brabandt226b28b2021-06-21 21:08:08 +02003052 INIT(= N_("E1200: Decryption failed!"));
Dominique Pellecb54bc62021-06-21 20:15:37 +02003053EXTERN char e_libsodium_decryption_failed_premature[]
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003054 INIT(= N_("E1201: Decryption failed: pre-mature end of file!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003055# endif
3056#endif
3057#ifdef FEAT_EVAL
Bram Moolenaar22480d12021-06-25 21:31:09 +02003058EXTERN char e_no_white_space_allowed_after_str_str[]
3059 INIT(= N_("E1202: No white space allowed after '%s': %s"));
Bram Moolenaar3a3b10e2021-06-26 15:00:59 +02003060EXTERN char e_dot_can_only_be_used_on_dictionary_str[]
3061 INIT(= N_("E1203: Dot can only be used on a dictionary: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003062#endif
Bram Moolenaar91ff3d42022-04-04 18:32:32 +01003063EXTERN char e_regexp_number_after_dot_pos_search_chr[]
Bram Moolenaar04db26b2021-07-05 20:15:23 +02003064 INIT(= N_("E1204: No Number allowed after .: '\\%%%c'"));
Bram Moolenaar1594f312021-07-08 16:40:13 +02003065EXTERN char e_no_white_space_allowed_between_option_and[]
3066 INIT(= N_("E1205: No white space allowed between option and"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003067#ifdef FEAT_EVAL
Yegappan Lakshmanan5b739922021-07-10 13:15:41 +02003068EXTERN char e_dict_required_for_argument_nr[]
3069 INIT(= N_("E1206: Dictionary required for argument %d"));
Bram Moolenaarc3235272021-07-10 19:42:03 +02003070EXTERN char e_expression_without_effect_str[]
3071 INIT(= N_("E1207: Expression without an effect: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003072#endif
Bram Moolenaar41a34852021-08-04 16:09:24 +02003073EXTERN char e_complete_used_without_allowing_arguments[]
3074 INIT(= N_("E1208: -complete used without allowing arguments"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003075#ifdef FEAT_EVAL
Bram Moolenaar0f1227f2021-07-11 16:01:58 +02003076EXTERN char e_invalid_value_for_line_number_str[]
3077 INIT(= N_("E1209: Invalid value for a line number: \"%s\""));
Yegappan Lakshmanan1a71d312021-07-15 12:49:58 +02003078EXTERN char e_number_required_for_argument_nr[]
3079 INIT(= N_("E1210: Number required for argument %d"));
Yegappan Lakshmanana9a7c0c2021-07-17 19:11:07 +02003080EXTERN char e_list_required_for_argument_nr[]
3081 INIT(= N_("E1211: List required for argument %d"));
3082EXTERN char e_bool_required_for_argument_nr[]
Bram Moolenaar98c2eae2021-07-19 10:38:49 +02003083 INIT(= N_("E1212: Bool required for argument %d"));
Bram Moolenaar24e93162021-07-18 20:40:33 +02003084EXTERN char e_redefining_imported_item_str[]
Bram Moolenaar60579352021-07-19 21:45:07 +02003085 INIT(= N_("E1213: Redefining imported item \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00003086#endif
mityu61065042021-07-19 20:07:21 +02003087#if defined(FEAT_DIGRAPHS) && defined(FEAT_EVAL)
3088EXTERN char e_digraph_must_be_just_two_characters_str[]
3089 INIT(= N_("E1214: Digraph must be just two characters: %s"));
3090EXTERN char e_digraph_argument_must_be_one_character_str[]
3091 INIT(= N_("E1215: Digraph must be one character: %s"));
h-east29b85712021-07-26 21:54:04 +02003092EXTERN char e_digraph_setlist_argument_must_be_list_of_lists_with_two_items[]
3093 INIT(= N_("E1216: digraph_setlist() argument must be a list of lists with two items"));
mityu61065042021-07-19 20:07:21 +02003094#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00003095#ifdef FEAT_EVAL
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003096# ifdef FEAT_JOB_CHANNEL
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02003097EXTERN char e_chan_or_job_required_for_argument_nr[]
Yegappan Lakshmanan0ad871d2021-07-23 20:37:56 +02003098 INIT(= N_("E1217: Channel or Job required for argument %d"));
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02003099EXTERN char e_job_required_for_argument_nr[]
Yegappan Lakshmanan0ad871d2021-07-23 20:37:56 +02003100 INIT(= N_("E1218: Job required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003101# endif
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003102EXTERN char e_float_or_number_required_for_argument_nr[]
3103 INIT(= N_("E1219: Float or Number required for argument %d"));
3104EXTERN char e_string_or_number_required_for_argument_nr[]
3105 INIT(= N_("E1220: String or Number required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003106# ifdef FEAT_JOB_CHANNEL
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003107EXTERN char e_string_or_blob_required_for_argument_nr[]
3108 INIT(= N_("E1221: String or Blob required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003109# endif
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003110EXTERN char e_string_or_list_required_for_argument_nr[]
3111 INIT(= N_("E1222: String or List required for argument %d"));
3112EXTERN char e_string_or_dict_required_for_argument_nr[]
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003113 INIT(= N_("E1223: String or Dictionary required for argument %d"));
3114EXTERN char e_string_number_or_list_required_for_argument_nr[]
3115 INIT(= N_("E1224: String, Number or List required for argument %d"));
3116EXTERN char e_string_list_or_dict_required_for_argument_nr[]
3117 INIT(= N_("E1225: String, List or Dictionary required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003118EXTERN char e_list_or_blob_required_for_argument_nr[]
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003119 INIT(= N_("E1226: List or Blob required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003120EXTERN char e_list_or_dict_required_for_argument_nr[]
3121 INIT(= N_("E1227: List or Dictionary required for argument %d"));
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003122EXTERN char e_list_dict_or_blob_required_for_argument_nr[]
3123 INIT(= N_("E1228: List, Dictionary or Blob required for argument %d"));
Bram Moolenaard47c3972021-07-28 20:52:13 +02003124EXTERN char e_expected_dictionary_for_using_key_str_but_got_str[]
3125 INIT(= N_("E1229: Expected dictionary for using key \"%s\", but got %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003126#endif
3127#ifdef FEAT_SODIUM
Bram Moolenaar131530a2021-07-29 20:37:49 +02003128EXTERN char e_encryption_sodium_mlock_failed[]
Bram Moolenaar63b91732021-08-05 20:40:03 +02003129 INIT(= N_("E1230: Encryption: sodium_mlock() failed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003130#endif
Bram Moolenaar63b91732021-08-05 20:40:03 +02003131EXTERN char e_cannot_use_bar_to_separate_commands_here_str[]
3132 INIT(= N_("E1231: Cannot use a bar to separate commands here: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003133#ifdef FEAT_EVAL
Bram Moolenaar26735992021-08-08 14:43:22 +02003134EXTERN char e_argument_of_exists_compiled_must_be_literal_string[]
3135 INIT(= N_("E1232: Argument of exists_compiled() must be a literal string"));
3136EXTERN char e_exists_compiled_can_only_be_used_in_def_function[]
3137 INIT(= N_("E1233: exists_compiled() can only be used in a :def function"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003138#endif
Bram Moolenaardd9de502021-08-15 13:49:42 +02003139EXTERN char e_legacy_must_be_followed_by_command[]
3140 INIT(= N_("E1234: legacy must be followed by a command"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003141#ifdef FEAT_EVAL
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003142// E1235 unused
Bram Moolenaard5f400c2022-01-06 21:10:28 +00003143EXTERN char e_cannot_use_str_itself_it_is_imported[]
3144 INIT(= N_("E1236: Cannot use %s itself, it is imported"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003145#endif
Bram Moolenaarbdcba242021-09-12 20:58:02 +02003146EXTERN char e_no_such_user_defined_command_in_current_buffer_str[]
3147 INIT(= N_("E1237: No such user-defined command in current buffer: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003148#ifdef FEAT_EVAL
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +02003149EXTERN char e_blob_required_for_argument_nr[]
3150 INIT(= N_("E1238: Blob required for argument %d"));
3151EXTERN char e_invalid_value_for_blob_nr[]
3152 INIT(= N_("E1239: Invalid value for blob: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003153#endif
Bram Moolenaareeed1c72021-10-10 12:35:17 +01003154EXTERN char e_resulting_text_too_long[]
3155 INIT(= N_("E1240: Resulting text too long"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003156#ifdef FEAT_EVAL
Bram Moolenaar7b829262021-10-13 15:04:34 +01003157EXTERN char e_separator_not_supported_str[]
3158 INIT(= N_("E1241: Separator not supported: %s"));
3159EXTERN char e_no_white_space_allowed_before_separator_str[]
3160 INIT(= N_("E1242: No white space allowed before separator: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003161#endif
3162#ifdef FEAT_GUI_GTK
Dusan Popovic4eeedc02021-10-16 20:52:05 +01003163EXTERN char e_ascii_code_not_in_range[]
3164 INIT(= N_("E1243: ASCII code not in 32-127 range"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003165#endif
3166#ifdef FEAT_EVAL
3167# if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
Drew Vogele30d1022021-10-24 20:35:07 +01003168EXTERN char e_bad_color_string_str[]
3169 INIT(= N_("E1244: Bad color string: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003170# endif
Bram Moolenaarc4492712021-11-22 15:37:15 +00003171EXTERN char e_cannot_expand_sfile_in_vim9_function[]
3172 INIT(= N_("E1245: Cannot expand <sfile> in a Vim9 function"));
Bram Moolenaar04b568b2021-11-22 21:58:41 +00003173EXTERN char e_cannot_find_variable_to_unlock_str[]
3174 INIT(= N_("E1246: Cannot find variable to (un)lock: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003175#endif
Bram Moolenaar03725c52021-11-24 12:17:53 +00003176EXTERN char e_line_number_out_of_range[]
3177 INIT(= N_("E1247: Line number out of range"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003178#ifdef FEAT_EVAL
Bram Moolenaar69c76172021-12-02 16:38:52 +00003179EXTERN char e_closure_called_from_invalid_context[]
3180 INIT(= N_("E1248: Closure called from invalid context"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003181#endif
erw7f7f7aaf2021-12-07 21:29:20 +00003182EXTERN char e_highlight_group_name_too_long[]
3183 INIT(= N_("E1249: Highlight group name too long"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003184#ifdef FEAT_EVAL
rbtnnc479ce02021-12-15 19:14:54 +00003185EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[]
3186 INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob"));
Bram Moolenaar2d877592021-12-16 08:21:09 +00003187EXTERN char e_list_dict_blob_or_string_required_for_argument_nr[]
rbtnn0ccb5842021-12-18 18:33:46 +00003188 INIT(= N_("E1251: List, Dictionary, Blob or String required for argument %d"));
3189EXTERN char e_string_list_or_blob_required_for_argument_nr[]
3190 INIT(= N_("E1252: String, List or Blob required for argument %d"));
3191EXTERN char e_string_expected_for_argument_nr[]
3192 INIT(= N_("E1253: String expected for argument %d"));
Bram Moolenaara99fb232021-12-20 12:25:03 +00003193EXTERN char e_cannot_use_script_variable_in_for_loop[]
3194 INIT(= N_("E1254: Cannot use script variable in for loop"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003195#endif
Bram Moolenaar806da512021-12-24 19:54:52 +00003196EXTERN char e_cmd_mapping_must_end_with_cr[]
3197 INIT(= N_("E1255: <Cmd> mapping must end with <CR>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003198#ifdef FEAT_EVAL
Bram Moolenaar223d0a62021-12-25 19:29:21 +00003199EXTERN char e_string_or_function_required_for_argument_nr[]
3200 INIT(= N_("E1256: String or function required for argument %d"));
Bram Moolenaar834d4182022-01-07 13:38:24 +00003201EXTERN char e_imported_script_must_use_as_or_end_in_dot_vim_str[]
3202 INIT(= N_("E1257: Imported script must use \"as\" or end in .vim: %s"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00003203EXTERN char e_no_dot_after_imported_name_str[]
3204 INIT(= N_("E1258: No '.' after imported name: %s"));
3205EXTERN char e_missing_name_after_imported_name_str[]
3206 INIT(= N_("E1259: Missing name after imported name: %s"));
3207EXTERN char e_cannot_unlet_imported_item_str[]
3208 INIT(= N_("E1260: Cannot unlet an imported item: %s"));
Bram Moolenaar834d4182022-01-07 13:38:24 +00003209EXTERN char e_cannot_import_dot_vim_without_using_as[]
3210 INIT(= N_("E1261: Cannot import .vim without using \"as\""));
Bram Moolenaar7c24dfd2022-01-08 17:03:55 +00003211EXTERN char e_cannot_import_same_script_twice_str[]
3212 INIT(= N_("E1262: Cannot import the same script twice: %s"));
Bram Moolenaard8fe6d32022-01-30 18:40:44 +00003213EXTERN char e_cannot_use_name_with_hash_in_vim9_script_use_export_instead[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01003214 INIT(= N_("E1263: Cannot use name with # in Vim9 script, use export instead"));
Bram Moolenaardc4451d2022-01-09 21:36:37 +00003215EXTERN char e_autoload_import_cannot_use_absolute_or_relative_path[]
3216 INIT(= N_("E1264: Autoload import cannot use absolute or relative path: %s"));
Bram Moolenaarc665dab2022-01-16 19:38:07 +00003217EXTERN char e_cannot_use_partial_here[]
3218 INIT(= N_("E1265: Cannot use a partial here"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003219#endif
Bram Moolenaar63ff72a2022-02-07 13:54:01 +00003220#if defined(FEAT_PYTHON3) && defined(MSWIN)
3221EXTERN char e_critical_error_in_python3_initialization_check_your_installation[]
3222 INIT(= N_("E1266: Critical error in python3 initialization, check your python3 installation"));
3223#endif
Bram Moolenaar3787f262022-02-07 21:54:01 +00003224#ifdef FEAT_EVAL
3225EXTERN char e_function_name_must_start_with_capital_str[]
3226 INIT(= N_("E1267: Function name must start with a capital: %s"));
Bram Moolenaara749a422022-02-12 19:52:25 +00003227EXTERN char e_cannot_use_s_colon_in_vim9_script_str[]
3228 INIT(= N_("E1268: Cannot use s: in Vim9 script: %s"));
Bram Moolenaar75e27d72022-02-13 13:56:29 +00003229EXTERN char e_cannot_create_vim9_script_variable_in_function_str[]
3230 INIT(= N_("E1269: Cannot create a Vim9 script variable in a function: %s"));
Bram Moolenaar525eba02022-03-05 22:07:32 +00003231#endif
Bram Moolenaar9fb7b422022-03-05 21:13:26 +00003232EXTERN char e_cannot_use_s_backslash_in_vim9_script[]
3233 INIT(= N_("E1270: Cannot use :s\\/sub/ in Vim9 script"));
Bram Moolenaar96923b72022-03-15 15:57:04 +00003234#ifdef FEAT_EVAL
3235EXTERN char e_compiling_closure_without_context_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01003236 INIT(= N_("E1271: Compiling closure without context: %s"));
Bram Moolenaar4c8b5462022-03-16 20:01:39 +00003237EXTERN char e_using_type_not_in_script_context_str[]
3238 INIT(= N_("E1272: Using type not in a script context: %s"));
Bram Moolenaar96923b72022-03-15 15:57:04 +00003239#endif
Bram Moolenaar91ff3d42022-04-04 18:32:32 +01003240EXTERN char e_nfa_regexp_missing_value_in_chr[]
3241 INIT(= N_("E1273: (NFA regexp) missing value in '\\%%%c'"));
LemonBoy6013d002022-04-09 21:42:10 +01003242EXTERN char e_no_script_file_name_to_substitute_for_script[]
3243 INIT(= N_("E1274: No script file name to substitute for \"<script>\""));
Bram Moolenaar8b91e712022-04-17 15:06:35 +01003244#ifdef FEAT_EVAL
3245EXTERN char e_string_or_function_required_for_arrow_parens_expr[]
3246 INIT(= N_("E1275: String or function required for ->(expr)"));
Ernie Rael51d04d12022-05-04 15:40:22 +01003247EXTERN char e_illegal_map_mode_string_str[]
3248 INIT(= N_("E1276: Illegal map mode string: '%s'"));
Bram Moolenaarc9af6172022-05-04 16:46:54 +01003249# if !defined(FEAT_JOB_CHANNEL)
3250EXTERN char e_channel_job_feature_not_available[]
3251 INIT(= N_("E1277: Channel and job feature is not available"));
3252# endif
LemonBoy2eaef102022-05-06 13:14:50 +01003253EXTERN char e_stray_closing_curly_str[]
3254 INIT(= N_("E1278: Stray '}' without a matching '{': %s"));
3255EXTERN char e_missing_close_curly_str[]
3256 INIT(= N_("E1279: Missing '}': %s"));
Bram Moolenaar8b91e712022-04-17 15:06:35 +01003257#endif
Bram Moolenaar7c824682022-05-08 22:32:58 +01003258#ifdef FEAT_SPELL
3259EXTERN char e_illegal_character_in_word[]
3260 INIT(= N_("E1280: Illegal character in word"));
3261#endif
Christian Brabandt360da402022-05-18 15:04:02 +01003262EXTERN char e_atom_engine_must_be_at_start_of_pattern[]
3263 INIT(= N_("E1281: Atom '\\%%#=%c' must be at the start of the pattern"));
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01003264#ifdef FEAT_EVAL
3265EXTERN char e_bitshift_ops_must_be_number[]
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01003266 INIT(= N_("E1282: Bitshift operands must be numbers"));
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01003267EXTERN char e_bitshift_ops_must_be_postive[]
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01003268 INIT(= N_("E1283: Bitshift amount must be a positive number"));
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01003269#endif
Bram Moolenaar83bd7a92022-05-29 17:13:24 +01003270#if defined(FEAT_PROP_POPUP)
3271EXTERN char e_argument_1_list_item_nr_dictionary_required[]
3272 INIT(= N_("E1284: Argument 1, list item %d: Dictionary required"));
3273#endif
Paul Ollis65745772022-06-05 16:55:54 +01003274#ifdef FEAT_RELTIME
3275EXTERN char e_could_not_clear_timeout_str[]
3276 INIT(= N_("E1285: Could not clear timeout: %s"));
3277EXTERN char e_could_not_set_timeout_str[]
3278 INIT(= N_("E1286: Could not set timeout: %s"));
3279EXTERN char e_could_not_set_handler_for_timeout_str[]
3280 INIT(= N_("E1287: Could not set handler for timeout: %s"));
3281EXTERN char e_could_not_reset_handler_for_timeout_str[]
3282 INIT(= N_("E1288: Could not reset handler for timeout: %s"));
3283EXTERN char e_could_not_check_for_pending_sigalrm_str[]
3284 INIT(= N_("E1289: Could not check for pending SIGALRM: %s"));
3285#endif
Bram Moolenaar44ddf192022-06-21 22:15:25 +01003286#ifdef FEAT_EVAL
3287EXTERN char e_substitute_nesting_too_deep[]
3288 INIT(= N_("E1290: substitute nesting too deep"));
Yegappan Lakshmanan81a3ff92022-07-23 05:04:16 +01003289EXTERN char e_invalid_argument_nr[]
3290 INIT(= N_("E1291: Invalid argument: %ld"));
Bram Moolenaar44ddf192022-06-21 22:15:25 +01003291#endif
Bram Moolenaarc963ec32022-07-24 20:08:01 +01003292#ifdef FEAT_CMDWIN
3293EXTERN char e_cmdline_window_already_open[]
3294 INIT(= N_("E1292: Command-line window is already open"));
3295#endif
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003296#ifdef FEAT_PROP_POPUP
3297EXTERN char e_cannot_use_negative_id_after_adding_textprop_with_text[]
Bram Moolenaar34d17732022-07-27 13:18:14 +01003298 INIT(= N_("E1293: Cannot use a negative id after adding a textprop with text"));
Bram Moolenaar82b14c12022-08-10 19:50:47 +01003299EXTERN char e_can_only_use_text_align_when_column_is_zero[]
3300 INIT(= N_("E1294: Can only use text_align when column is zero"));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003301#endif
Ben Jacksona7704222022-08-20 20:54:51 +01003302#ifdef FEAT_PROP_POPUP
3303EXTERN char e_cannot_specify_both_type_and_types[]
3304 INIT(= N_("E1295: Cannot specify both 'type' and 'types'"));
Bram Moolenaarf396ce82022-08-23 18:39:37 +01003305EXTERN char e_can_only_use_left_padding_when_column_is_zero[]
3306 INIT(= N_("E1296: Can only use left padding when column is zero"));
Ben Jacksona7704222022-08-20 20:54:51 +01003307#endif
Bram Moolenaard83392a2022-09-01 12:22:46 +01003308#ifdef FEAT_EVAL
Yegappan Lakshmanan04c4c572022-08-30 19:48:24 +01003309EXTERN char e_non_null_dict_required_for_argument_nr[]
3310 INIT(= N_("E1297: Non-NULL Dictionary required for argument %d"));
Bram Moolenaard83392a2022-09-01 12:22:46 +01003311EXTERN char e_non_null_list_required_for_argument_nr[]
3312 INIT(= N_("E1298: Non-NULL List required for argument %d"));
3313#endif
Bram Moolenaarccfde4d2022-09-05 19:51:13 +01003314EXTERN char e_window_unexpectedly_close_while_searching_for_tags[]
3315 INIT(= N_("E1299: Window unexpectedly closed while searching for tags"));
Bram Moolenaar86d87252022-09-05 21:21:25 +01003316#ifdef FEAT_EVAL
3317EXTERN char e_cannot_use_partial_with_dictionary_for_defer[]
3318 INIT(= N_("E1300: Cannot use a partial with dictionary for :defer"));
Bakudankun375141e2022-09-09 18:46:47 +01003319EXTERN char e_string_number_list_or_blob_required_for_argument_nr[]
3320 INIT(= N_("E1301: String, Number, List or Blob required for argument %d"));
Bram Moolenaar6de22962022-09-09 21:35:36 +01003321EXTERN char e_script_variable_was_deleted[]
3322 INIT(= N_("E1302: Script variable was deleted"));
Bram Moolenaar55e93662022-09-10 13:52:26 +01003323EXTERN char e_custom_list_completion_function_does_not_return_list_but_str[]
3324 INIT(= N_("E1303: Custom list completion function does not return a List but a %s"));
Bram Moolenaar9510d222022-09-11 15:14:05 +01003325EXTERN char e_cannot_use_type_with_this_variable_str[]
3326 INIT(= N_("E1304: Cannot use type with this variable: %s"));
Bram Moolenaar86d87252022-09-05 21:21:25 +01003327#endif
Bram Moolenaarfb593c52022-09-17 18:57:36 +01003328#ifdef FEAT_PROP_POPUP
3329EXTERN char e_cannot_use_length_endcol_and_endlnum_with_text[]
3330 INIT(= N_("E1305: Cannot use \"length\", \"end_col\" and \"end_lnum\" with \"text\""));
3331#endif
Bram Moolenaarcc341812022-09-19 15:54:34 +01003332#ifdef FEAT_EVAL
3333EXTERN char e_loop_nesting_too_deep[]
3334 INIT(= N_("E1306: Loop nesting too deep"));
Bram Moolenaarfa103972022-09-29 19:14:42 +01003335EXTERN char e_argument_nr_trying_to_modify_const_str[]
3336 INIT(= N_("E1307: Argument %d: Trying to modify a const %s"));
Bram Moolenaarcc341812022-09-19 15:54:34 +01003337#endif