blob: dfb6ce644d76bb6baed845b3806137c8d91850ca [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
Bram Moolenaara1d5f9f2023-05-27 13:40:11 +01009// Use PLURAL_MSG() for messages that are passed to ngettext(), so that the
10// second one uses msgid_plural.
11#ifdef DO_INIT
12# define PLURAL_MSG(var1, msg1, var2, msg2) \
13 char var1[] = msg1; \
14 char var2[] = msg2;
15#else
16# define PLURAL_MSG(var1, msg1, var2, msg2) \
17 extern char var1[]; \
18 extern char var2[];
19#endif
20
Bram Moolenaarbc4c5052020-08-13 22:47:35 +020021/*
22 * Definition of error messages, sorted on error number.
23 */
24
Bram Moolenaar436b5ad2021-12-31 22:49:24 +000025EXTERN char e_interrupted[]
26 INIT(= N_("Interrupted"));
27
Bram Moolenaar108010a2021-06-27 22:03:33 +020028EXTERN char e_backslash_should_be_followed_by[]
29 INIT(= N_("E10: \\ should be followed by /, ? or &"));
Bram Moolenaar108010a2021-06-27 22:03:33 +020030EXTERN char e_invalid_in_cmdline_window[]
Bram Moolenaarb2f0ca82022-09-18 15:08:19 +010031 INIT(= N_("E11: Invalid in command-line window; :q<CR> closes the window"));
Bram Moolenaar108010a2021-06-27 22:03:33 +020032EXTERN char e_command_not_allowed_from_vimrc_in_current_dir_or_tag_search[]
33 INIT(= N_("E12: Command not allowed from exrc/vimrc in current dir or tag search"));
34EXTERN char e_file_exists[]
35 INIT(= N_("E13: File exists (add ! to override)"));
Bram Moolenaarb2810f12022-01-08 21:38:52 +000036// E14 unused
Bram Moolenaar108010a2021-06-27 22:03:33 +020037#ifdef FEAT_EVAL
38EXTERN char e_invalid_expression_str[]
39 INIT(= N_("E15: Invalid expression: \"%s\""));
40#endif
41EXTERN char e_invalid_range[]
42 INIT(= N_("E16: Invalid range"));
Bram Moolenaar4dea2d92022-03-31 11:37:57 +010043#if defined(UNIX) || defined(FEAT_SYN_HL) \
44 || defined(FEAT_SPELL) || defined(FEAT_EVAL)
45EXTERN char e_str_is_directory[]
Bram Moolenaar108010a2021-06-27 22:03:33 +020046 INIT(= N_("E17: \"%s\" is a directory"));
47#endif
48#ifdef FEAT_EVAL
49EXTERN char e_unexpected_characters_in_let[]
50 INIT(= N_("E18: Unexpected characters in :let"));
51EXTERN char e_unexpected_characters_in_assignment[]
52 INIT(= N_("E18: Unexpected characters in assignment"));
53#endif
54EXTERN char e_mark_has_invalid_line_number[]
55 INIT(= N_("E19: Mark has invalid line number"));
56EXTERN char e_mark_not_set[]
57 INIT(= N_("E20: Mark not set"));
58EXTERN char e_cannot_make_changes_modifiable_is_off[]
59 INIT(= N_("E21: Cannot make changes, 'modifiable' is off"));
60EXTERN char e_scripts_nested_too_deep[]
61 INIT(= N_("E22: Scripts nested too deep"));
62EXTERN char e_no_alternate_file[]
63 INIT(= N_("E23: No alternate file"));
64EXTERN char e_no_such_abbreviation[]
65 INIT(= N_("E24: No such abbreviation"));
Bram Moolenaare29a27f2021-07-20 21:07:36 +020066#if !defined(FEAT_GUI) || defined(VIMDLL)
67EXTERN char e_gui_cannot_be_used_not_enabled_at_compile_time[]
68 INIT(= N_("E25: GUI cannot be used: Not enabled at compile time"));
69#endif
70#ifndef FEAT_RIGHTLEFT
71EXTERN char e_hebrew_cannot_be_used_not_enabled_at_compile_time[]
72 INIT(= N_("E26: Hebrew cannot be used: Not enabled at compile time\n"));
73#endif
74EXTERN char e_farsi_support_has_been_removed[]
75 INIT(= N_("E27: Farsi support has been removed\n"));
Bram Moolenaare29a27f2021-07-20 21:07:36 +020076#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_SYN_HL)
77EXTERN char e_no_such_highlight_group_name_str[]
78 INIT(= N_("E28: No such highlight group name: %s"));
79#endif
80EXTERN char e_no_inserted_text_yet[]
81 INIT(= N_("E29: No inserted text yet"));
82EXTERN char e_no_previous_command_line[]
83 INIT(= N_("E30: No previous command line"));
84EXTERN char e_no_such_mapping[]
85 INIT(= N_("E31: No such mapping"));
86EXTERN char e_no_file_name[]
87 INIT(= N_("E32: No file name"));
88EXTERN char e_no_previous_substitute_regular_expression[]
89 INIT(= N_("E33: No previous substitute regular expression"));
90EXTERN char e_no_previous_command[]
91 INIT(= N_("E34: No previous command"));
92EXTERN char e_no_previous_regular_expression[]
93 INIT(= N_("E35: No previous regular expression"));
94EXTERN char e_not_enough_room[]
95 INIT(= N_("E36: Not enough room"));
96EXTERN char e_no_write_since_last_change[]
97 INIT(= N_("E37: No write since last change"));
98EXTERN char e_no_write_since_last_change_add_bang_to_override[]
99 INIT(= N_("E37: No write since last change (add ! to override)"));
100EXTERN char e_null_argument[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100101 INIT(= "E38: Null argument");
Bram Moolenaare29a27f2021-07-20 21:07:36 +0200102#if defined(FEAT_DIGRAPHS) || defined(FEAT_TIMERS) || defined(FEAT_EVAL)
103EXTERN char e_number_expected[]
104 INIT(= N_("E39: Number expected"));
105#endif
106#ifdef FEAT_QUICKFIX
107EXTERN char e_cant_open_errorfile_str[]
108 INIT(= N_("E40: Can't open errorfile %s"));
109#endif
110EXTERN char e_out_of_memory[]
111 INIT(= N_("E41: Out of memory!"));
112#ifdef FEAT_QUICKFIX
113EXTERN char e_no_errors[]
114 INIT(= N_("E42: No Errors"));
115#endif
116EXTERN char e_damaged_match_string[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100117 INIT(= "E43: Damaged match string");
Bram Moolenaare29a27f2021-07-20 21:07:36 +0200118EXTERN char e_corrupted_regexp_program[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100119 INIT(= "E44: Corrupted regexp program");
Bram Moolenaare29a27f2021-07-20 21:07:36 +0200120EXTERN char e_readonly_option_is_set_add_bang_to_override[]
121 INIT(= N_("E45: 'readonly' option is set (add ! to override)"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200122#ifdef FEAT_EVAL
Bram Moolenaar71b76852021-12-17 20:15:38 +0000123EXTERN char e_cannot_change_readonly_variable[]
124 INIT(= N_("E46: Cannot change read-only variable"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200125EXTERN char e_cannot_change_readonly_variable_str[]
126 INIT(= N_("E46: Cannot change read-only variable \"%s\""));
127#endif
128#ifdef FEAT_QUICKFIX
129EXTERN char e_error_while_reading_errorfile[]
130 INIT(= N_("E47: Error while reading errorfile"));
131#endif
132#ifdef HAVE_SANDBOX
133EXTERN char e_not_allowed_in_sandbox[]
134 INIT(= N_("E48: Not allowed in sandbox"));
135#endif
136EXTERN char e_invalid_scroll_size[]
137 INIT(= N_("E49: Invalid scroll size"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000138#ifdef FEAT_SYN_HL
Bram Moolenaard8e44472021-07-21 22:20:33 +0200139EXTERN char e_too_many_z[]
140 INIT(= N_("E50: Too many \\z("));
Dominique Pellef85a4242022-01-09 12:49:31 +0000141#endif
Bram Moolenaard8e44472021-07-21 22:20:33 +0200142EXTERN char e_too_many_str_open[]
143 INIT(= N_("E51: Too many %s("));
Dominique Pellef85a4242022-01-09 12:49:31 +0000144#ifdef FEAT_SYN_HL
Bram Moolenaard8e44472021-07-21 22:20:33 +0200145EXTERN char e_unmatched_z[]
146 INIT(= N_("E52: Unmatched \\z("));
Dominique Pellef85a4242022-01-09 12:49:31 +0000147#endif
Bram Moolenaard8e44472021-07-21 22:20:33 +0200148EXTERN char e_unmatched_str_percent_open[]
149 INIT(= N_("E53: Unmatched %s%%("));
150EXTERN char e_unmatched_str_open[]
151 INIT(= N_("E54: Unmatched %s("));
152EXTERN char e_unmatched_str_close[]
153 INIT(= N_("E55: Unmatched %s)"));
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000154// E56 unused
155// E57 unused
156// E58 unused
Bram Moolenaard8e44472021-07-21 22:20:33 +0200157EXTERN char e_invalid_character_after_str_at[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100158 INIT(= N_("E59: Invalid character after %s@"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200159EXTERN char e_too_many_complex_str_curly[]
160 INIT(= N_("E60: Too many complex %s{...}s"));
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000161EXTERN char e_nested_str[]
162 INIT(= N_("E61: Nested %s*"));
163EXTERN char e_nested_str_chr[]
164 INIT(= N_("E62: Nested %s%c"));
165EXTERN char e_invalid_use_of_underscore[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100166 INIT(= N_("E63: Invalid use of \\_"));
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000167EXTERN char e_str_chr_follows_nothing[]
168 INIT(= N_("E64: %s%c follows nothing"));
169EXTERN char e_illegal_back_reference[]
170 INIT(= N_("E65: Illegal back reference"));
171#ifdef FEAT_SYN_HL
172EXTERN char e_z_not_allowed_here[]
173 INIT(= N_("E66: \\z( not allowed here"));
174EXTERN char e_z1_z9_not_allowed_here[]
175 INIT(= N_("E67: \\z1 - \\z9 not allowed here"));
176#endif
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000177EXTERN char e_invalid_character_after_bsl_z[]
178 INIT(= N_("E68: Invalid character after \\z"));
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000179EXTERN char e_missing_sb_after_str[]
180 INIT(= N_("E69: Missing ] after %s%%["));
181EXTERN char e_empty_str_brackets[]
182 INIT(= N_("E70: Empty %s%%[]"));
183EXTERN char e_invalid_character_after_str[]
184 INIT(= N_("E71: Invalid character after %s%%"));
185EXTERN char e_close_error_on_swap_file[]
186 INIT(= N_("E72: Close error on swap file"));
187EXTERN char e_tag_stack_empty[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100188 INIT(= N_("E73: Tag stack empty"));
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000189EXTERN char e_command_too_complex[]
190 INIT(= N_("E74: Command too complex"));
191EXTERN char e_name_too_long[]
192 INIT(= N_("E75: Name too long"));
193EXTERN char e_too_many_brackets[]
194 INIT(= N_("E76: Too many ["));
195EXTERN char e_too_many_file_names[]
196 INIT(= N_("E77: Too many file names"));
Bram Moolenaar40bcec12021-12-05 22:19:27 +0000197EXTERN char e_unknown_mark[]
198 INIT(= N_("E78: Unknown mark"));
199EXTERN char e_cannot_expand_wildcards[]
200 INIT(= N_("E79: Cannot expand wildcards"));
201EXTERN char e_error_while_writing[]
202 INIT(= N_("E80: Error while writing"));
203#ifdef FEAT_EVAL
204EXTERN char e_using_sid_not_in_script_context[]
205 INIT(= N_("E81: Using <SID> not in a script context"));
206#endif
207EXTERN char e_cannot_allocate_any_buffer_exiting[]
208 INIT(= N_("E82: Cannot allocate any buffer, exiting..."));
209EXTERN char e_cannot_allocate_buffer_using_other_one[]
210 INIT(= N_("E83: Cannot allocate buffer, using other one..."));
211EXTERN char e_no_modified_buffer_found[]
212 INIT(= N_("E84: No modified buffer found"));
213EXTERN char e_there_is_no_listed_buffer[]
214 INIT(= N_("E85: There is no listed buffer"));
215EXTERN char e_buffer_nr_does_not_exist[]
216 INIT(= N_("E86: Buffer %ld does not exist"));
217EXTERN char e_cannot_go_beyond_last_buffer[]
218 INIT(= N_("E87: Cannot go beyond last buffer"));
219EXTERN char e_cannot_go_before_first_buffer[]
220 INIT(= N_("E88: Cannot go before first buffer"));
221EXTERN char e_no_write_since_last_change_for_buffer_nr_add_bang_to_override[]
222 INIT(= N_("E89: No write since last change for buffer %d (add ! to override)"));
223EXTERN char e_cannot_unload_last_buffer[]
224 INIT(= N_("E90: Cannot unload last buffer"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000225EXTERN char e_shell_option_is_empty[]
226 INIT(= N_("E91: 'shell' option is empty"));
227EXTERN char e_buffer_nr_not_found[]
228 INIT(= N_("E92: Buffer %d not found"));
229EXTERN char e_more_than_one_match_for_str[]
230 INIT(= N_("E93: More than one match for %s"));
231EXTERN char e_no_matching_buffer_for_str[]
232 INIT(= N_("E94: No matching buffer for %s"));
233EXTERN char e_buffer_with_this_name_already_exists[]
234 INIT(= N_("E95: Buffer with this name already exists"));
235#if defined(FEAT_DIFF)
236EXTERN char e_cannot_diff_more_than_nr_buffers[]
237 INIT(= N_("E96: Cannot diff more than %d buffers"));
238EXTERN char e_cannot_create_diffs[]
239 INIT(= N_("E97: Cannot create diffs"));
240EXTERN char e_cannot_read_diff_output[]
241 INIT(= N_("E98: Cannot read diff output"));
242EXTERN char e_current_buffer_is_not_in_diff_mode[]
243 INIT(= N_("E99: Current buffer is not in diff mode"));
244EXTERN char e_no_other_buffer_in_diff_mode[]
245 INIT(= N_("E100: No other buffer in diff mode"));
246EXTERN char e_more_than_two_buffers_in_diff_mode_dont_know_which_one_to_use[]
247 INIT(= N_("E101: More than two buffers in diff mode, don't know which one to use"));
248EXTERN char e_cant_find_buffer_str[]
249 INIT(= N_("E102: Can't find buffer \"%s\""));
250EXTERN char e_buffer_str_is_not_in_diff_mode[]
251 INIT(= N_("E103: Buffer \"%s\" is not in diff mode"));
252#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000253#ifdef FEAT_DIGRAPHS
Bram Moolenaare1242042021-12-16 20:56:57 +0000254EXTERN char e_escape_not_allowed_in_digraph[]
255 INIT(= N_("E104: Escape not allowed in digraph"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000256#endif
257#ifdef FEAT_KEYMAP
Bram Moolenaare1242042021-12-16 20:56:57 +0000258EXTERN char e_using_loadkeymap_not_in_sourced_file[]
259 INIT(= N_("E105: Using :loadkeymap not in a sourced file"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000260#endif
Bram Moolenaare1242042021-12-16 20:56:57 +0000261// E106 unused
Dominique Pellef85a4242022-01-09 12:49:31 +0000262#ifdef FEAT_EVAL
Bram Moolenaare1242042021-12-16 20:56:57 +0000263EXTERN char e_missing_parenthesis_str[]
264 INIT(= N_("E107: Missing parentheses: %s"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000265EXTERN char e_no_such_variable_str[]
266 INIT(= N_("E108: No such variable: \"%s\""));
267EXTERN char e_missing_colon_after_questionmark[]
268 INIT(= N_("E109: Missing ':' after '?'"));
269EXTERN char e_missing_closing_paren[]
270 INIT(= N_("E110: Missing ')'"));
271EXTERN char e_missing_closing_square_brace[]
272 INIT(= N_("E111: Missing ']'"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000273EXTERN char e_option_name_missing_str[]
274 INIT(= N_("E112: Option name missing: %s"));
275EXTERN char e_unknown_option_str[]
276 INIT(= N_("E113: Unknown option: %s"));
277EXTERN char e_missing_double_quote_str[]
278 INIT(= N_("E114: Missing double quote: %s"));
279EXTERN char e_missing_single_quote_str[]
280 INIT(= N_("E115: Missing single quote: %s"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000281EXTERN char e_invalid_arguments_for_function_str[]
282 INIT(= N_("E116: Invalid arguments for function %s"));
283EXTERN char e_unknown_function_str[]
284 INIT(= N_("E117: Unknown function: %s"));
285EXTERN char e_too_many_arguments_for_function_str[]
286 INIT(= N_("E118: Too many arguments for function: %s"));
287EXTERN char e_not_enough_arguments_for_function_str[]
288 INIT(= N_("E119: Not enough arguments for function: %s"));
289EXTERN char e_using_sid_not_in_script_context_str[]
290 INIT(= N_("E120: Using <SID> not in a script context: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +0200291EXTERN char e_undefined_variable_str[]
292 INIT(= N_("E121: Undefined variable: %s"));
293EXTERN char e_undefined_variable_char_str[]
294 INIT(= N_("E121: Undefined variable: %c:%s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000295EXTERN char e_function_str_already_exists_add_bang_to_replace[]
Bram Moolenaarc553a212021-12-26 20:20:34 +0000296 INIT(= N_("E122: Function %s already exists, add ! to replace it"));
297EXTERN char e_undefined_function_str[]
298 INIT(= N_("E123: Undefined function: %s"));
299EXTERN char e_missing_paren_str[]
300 INIT(= N_("E124: Missing '(': %s"));
301EXTERN char e_illegal_argument_str[]
302 INIT(= N_("E125: Illegal argument: %s"));
303EXTERN char e_missing_endfunction[]
304 INIT(= N_("E126: Missing :endfunction"));
305EXTERN char e_cannot_redefine_function_str_it_is_in_use[]
306 INIT(= N_("E127: Cannot redefine function %s: It is in use"));
307EXTERN char e_function_name_must_start_with_capital_or_s_str[]
308 INIT(= N_("E128: Function name must start with a capital or \"s:\": %s"));
309EXTERN char e_function_name_required[]
310 INIT(= N_("E129: Function name required"));
311// E130 unused
312EXTERN char e_cannot_delete_function_str_it_is_in_use[]
313 INIT(= N_("E131: Cannot delete function %s: It is in use"));
314EXTERN char e_function_call_depth_is_higher_than_macfuncdepth[]
315 INIT(= N_("E132: Function call depth is higher than 'maxfuncdepth'"));
316EXTERN char e_return_not_inside_function[]
317 INIT(= N_("E133: :return not inside a function"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200318#endif
Bram Moolenaarc553a212021-12-26 20:20:34 +0000319EXTERN char e_cannot_move_range_of_lines_into_itself[]
320 INIT(= N_("E134: Cannot move a range of lines into itself"));
321EXTERN char e_filter_autocommands_must_not_change_current_buffer[]
322 INIT(= N_("E135: *Filter* Autocommands must not change current buffer"));
323#if defined(FEAT_VIMINFO)
324EXTERN char e_viminfo_too_many_errors_skipping_rest_of_file[]
325 INIT(= N_("E136: viminfo: Too many errors, skipping rest of file"));
326EXTERN char e_viminfo_file_is_not_writable_str[]
327 INIT(= N_("E137: Viminfo file is not writable: %s"));
328EXTERN char e_cant_write_viminfo_file_str[]
329 INIT(= N_("E138: Can't write viminfo file %s!"));
330#endif
Bram Moolenaareb822a22021-12-31 15:09:27 +0000331EXTERN char e_file_is_loaded_in_another_buffer[]
332 INIT(= N_("E139: File is loaded in another buffer"));
333EXTERN char e_use_bang_to_write_partial_buffer[]
334 INIT(= N_("E140: Use ! to write partial buffer"));
335EXTERN char e_no_file_name_for_buffer_nr[]
336 INIT(= N_("E141: No file name for buffer %ld"));
337EXTERN char e_file_not_written_writing_is_disabled_by_write_option[]
338 INIT(= N_("E142: File not written: Writing is disabled by 'write' option"));
339EXTERN char e_autocommands_unexpectedly_deleted_new_buffer_str[]
340 INIT(= N_("E143: Autocommands unexpectedly deleted new buffer %s"));
341EXTERN char e_non_numeric_argument_to_z[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100342 INIT(= N_("E144: Non-numeric argument to :z"));
Bram Moolenaareb822a22021-12-31 15:09:27 +0000343EXTERN char e_shell_commands_and_some_functionality_not_allowed_in_rvim[]
344 INIT(= N_("E145: Shell commands and some functionality not allowed in rvim"));
345EXTERN char e_regular_expressions_cant_be_delimited_by_letters[]
346 INIT(= N_("E146: Regular expressions can't be delimited by letters"));
347EXTERN char e_cannot_do_global_recursive_with_range[]
348 INIT(= N_("E147: Cannot do :global recursive with a range"));
349EXTERN char e_regular_expression_missing_from_global[]
350 INIT(= N_("E148: Regular expression missing from :global"));
351EXTERN char e_sorry_no_help_for_str[]
352 INIT(= N_("E149: Sorry, no help for %s"));
353EXTERN char e_not_a_directory_str[]
354 INIT(= N_("E150: Not a directory: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000355EXTERN char e_no_match_str_1[]
Bram Moolenaareb822a22021-12-31 15:09:27 +0000356 INIT(= N_("E151: No match: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000357EXTERN char e_cannot_open_str_for_writing_1[]
Bram Moolenaareb822a22021-12-31 15:09:27 +0000358 INIT(= N_("E152: Cannot open %s for writing"));
359EXTERN char e_unable_to_open_str_for_reading[]
360 INIT(= N_("E153: Unable to open %s for reading"));
361EXTERN char e_duplicate_tag_str_in_file_str_str[]
362 INIT(= N_("E154: Duplicate tag \"%s\" in file %s/%s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000363#ifdef FEAT_SIGNS
Bram Moolenaareb822a22021-12-31 15:09:27 +0000364EXTERN char e_unknown_sign_str[]
365 INIT(= N_("E155: Unknown sign: %s"));
366EXTERN char e_missing_sign_name[]
367 INIT(= N_("E156: Missing sign name"));
368EXTERN char e_invalid_sign_id_nr[]
369 INIT(= N_("E157: Invalid sign ID: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000370#endif
371#if defined(FEAT_SIGNS) || defined(FEAT_EVAL)
Bram Moolenaareb822a22021-12-31 15:09:27 +0000372EXTERN char e_invalid_buffer_name_str[]
373 INIT(= N_("E158: Invalid buffer name: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000374#endif
375#ifdef FEAT_SIGNS
Bram Moolenaareb822a22021-12-31 15:09:27 +0000376EXTERN char e_missing_sign_number[]
377 INIT(= N_("E159: Missing sign number"));
378EXTERN char e_unknown_sign_command_str[]
379 INIT(= N_("E160: Unknown sign command: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000380#endif
Bram Moolenaareb822a22021-12-31 15:09:27 +0000381#ifdef FEAT_EVAL
382EXTERN char e_breakpoint_not_found_str[]
383 INIT(= N_("E161: Breakpoint not found: %s"));
384#endif
Bram Moolenaar1a992222021-12-31 17:25:48 +0000385EXTERN char e_no_write_since_last_change_for_buffer_str[]
386 INIT(= N_("E162: No write since last change for buffer \"%s\""));
387EXTERN char e_there_is_only_one_file_to_edit[]
388 INIT(= N_("E163: There is only one file to edit"));
389EXTERN char e_cannot_go_before_first_file[]
390 INIT(= N_("E164: Cannot go before first file"));
391EXTERN char e_cannot_go_beyond_last_file[]
392 INIT(= N_("E165: Cannot go beyond last file"));
393EXTERN char e_cant_open_linked_file_for_writing[]
394 INIT(= N_("E166: Can't open linked file for writing"));
395EXTERN char e_scriptencoding_used_outside_of_sourced_file[]
396 INIT(= N_("E167: :scriptencoding used outside of a sourced file"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000397#ifdef FEAT_EVAL
Bram Moolenaar1a992222021-12-31 17:25:48 +0000398EXTERN char e_finish_used_outside_of_sourced_file[]
399 INIT(= N_("E168: :finish used outside of a sourced file"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000400#endif
Bram Moolenaar1a992222021-12-31 17:25:48 +0000401EXTERN char e_command_too_recursive[]
402 INIT(= N_("E169: Command too recursive"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000403#ifdef FEAT_EVAL
Bram Moolenaar1a992222021-12-31 17:25:48 +0000404EXTERN char e_missing_endwhile[]
405 INIT(= N_("E170: Missing :endwhile"));
406EXTERN char e_missing_endfor[]
407 INIT(= N_("E170: Missing :endfor"));
408EXTERN char e_missing_endif[]
409 INIT(= N_("E171: Missing :endif"));
410EXTERN char e_missing_marker[]
411 INIT(= N_("E172: Missing marker"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000412#endif
Bram Moolenaara1d5f9f2023-05-27 13:40:11 +0100413
414PLURAL_MSG(e_nr_more_file_to_edit, "E173: %d more file to edit",
415 e_nr_more_files_to_edit, "E173: %d more files to edit")
416
Bram Moolenaar1a992222021-12-31 17:25:48 +0000417EXTERN char e_command_already_exists_add_bang_to_replace_it_str[]
418 INIT(= N_("E174: Command already exists: add ! to replace it: %s"));
419EXTERN char e_no_attribute_specified[]
420 INIT(= N_("E175: No attribute specified"));
421EXTERN char e_invalid_number_of_arguments[]
422 INIT(= N_("E176: Invalid number of arguments"));
423EXTERN char e_count_cannot_be_specified_twice[]
424 INIT(= N_("E177: Count cannot be specified twice"));
425EXTERN char e_invalid_default_value_for_count[]
426 INIT(= N_("E178: Invalid default value for count"));
427EXTERN char e_argument_required_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100428 INIT(= N_("E179: Argument required for %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000429EXTERN char e_invalid_complete_value_str[]
430 INIT(= N_("E180: Invalid complete value: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +0000431EXTERN char e_invalid_address_type_value_str[]
432 INIT(= N_("E180: Invalid address type value: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000433EXTERN char e_invalid_attribute_str[]
434 INIT(= N_("E181: Invalid attribute: %s"));
435EXTERN char e_invalid_command_name[]
436 INIT(= N_("E182: Invalid command name"));
437EXTERN char e_user_defined_commands_must_start_with_an_uppercase_letter[]
438 INIT(= N_("E183: User defined commands must start with an uppercase letter"));
Bram Moolenaarbdcba242021-09-12 20:58:02 +0200439EXTERN char e_no_such_user_defined_command_str[]
440 INIT(= N_("E184: No such user-defined command: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000441EXTERN char e_cannot_find_color_scheme_str[]
442 INIT(= N_("E185: Cannot find color scheme '%s'"));
443EXTERN char e_no_previous_directory[]
444 INIT(= N_("E186: No previous directory"));
445EXTERN char e_directory_unknown[]
446 INIT(= N_("E187: Directory unknown"));
447EXTERN char e_obtaining_window_position_not_implemented_for_this_platform[]
448 INIT(= N_("E188: Obtaining window position not implemented for this platform"));
449EXTERN char e_str_exists_add_bang_to_override[]
450 INIT(= N_("E189: \"%s\" exists (add ! to override)"));
451EXTERN char e_cannot_open_str_for_writing_2[]
452 INIT(= N_("E190: Cannot open \"%s\" for writing"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000453EXTERN char e_argument_must_be_letter_or_forward_backward_quote[]
454 INIT(= N_("E191: Argument must be a letter or forward/backward quote"));
455EXTERN char e_recursive_use_of_normal_too_deep[]
456 INIT(= N_("E192: Recursive use of :normal too deep"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000457#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000458EXTERN char e_str_not_inside_function[]
459 INIT(= N_("E193: %s not inside a function"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000460#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000461EXTERN char e_no_alternate_file_name_to_substitute_for_hash[]
462 INIT(= N_("E194: No alternate file name to substitute for '#'"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000463#ifdef FEAT_VIMINFO
Bram Moolenaar6d057012021-12-31 18:49:43 +0000464EXTERN char e_cannot_open_viminfo_file_for_reading[]
465 INIT(= N_("E195: Cannot open viminfo file for reading"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000466#endif
mityu61065042021-07-19 20:07:21 +0200467#ifndef FEAT_DIGRAPHS
468EXTERN char e_no_digraphs_version[]
469 INIT(= N_("E196: No digraphs in this version"));
470#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000471EXTERN char e_cannot_set_language_to_str[]
472 INIT(= N_("E197: Cannot set language to \"%s\""));
473// E198 unused
474EXTERN char e_active_window_or_buffer_deleted[]
475 INIT(= N_("E199: Active window or buffer deleted"));
476EXTERN char e_readpre_autocommands_made_file_unreadable[]
477 INIT(= N_("E200: *ReadPre autocommands made the file unreadable"));
478EXTERN char e_readpre_autocommands_must_not_change_current_buffer[]
479 INIT(= N_("E201: *ReadPre autocommands must not change current buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000480#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000481EXTERN char e_conversion_mad_file_unreadable[]
482 INIT(= N_("E202: Conversion made file unreadable!"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000483#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000484EXTERN char e_autocommands_deleted_or_unloaded_buffer_to_be_written[]
485 INIT(= N_("E203: Autocommands deleted or unloaded buffer to be written"));
486EXTERN char e_autocommands_changed_number_of_lines_in_unexpected_way[]
487 INIT(= N_("E204: Autocommand changed number of lines in unexpected way"));
488EXTERN char e_patchmode_cant_save_original_file[]
489 INIT(= N_("E205: Patchmode: can't save original file"));
490EXTERN char e_patchmode_cant_touch_empty_original_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100491 INIT(= N_("E206: Patchmode: can't touch empty original file"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000492EXTERN char e_cant_delete_backup_file[]
493 INIT(= N_("E207: Can't delete backup file"));
494EXTERN char e_error_writing_to_str[]
495 INIT(= N_("E208: Error writing to \"%s\""));
496EXTERN char e_error_closing_str[]
497 INIT(= N_("E209: Error closing \"%s\""));
498EXTERN char e_error_reading_str[]
499 INIT(= N_("E210: Error reading \"%s\""));
500EXTERN char e_file_str_no_longer_available[]
501 INIT(= N_("E211: File \"%s\" no longer available"));
502EXTERN char e_cant_open_file_for_writing[]
503 INIT(= N_("E212: Can't open file for writing"));
504EXTERN char e_cannot_convert_add_bang_to_write_without_conversion[]
505 INIT(= N_("E213: Cannot convert (add ! to write without conversion)"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000506#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000507EXTERN char e_cant_find_temp_file_for_writing[]
508 INIT(= N_("E214: Can't find temp file for writing"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000509#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000510EXTERN char e_illegal_character_after_star_str[]
511 INIT(= N_("E215: Illegal character after *: %s"));
512EXTERN char e_no_such_event_str[]
513 INIT(= N_("E216: No such event: %s"));
514EXTERN char e_no_such_group_or_event_str[]
515 INIT(= N_("E216: No such group or event: %s"));
516EXTERN char e_cant_execute_autocommands_for_all_events[]
517 INIT(= N_("E217: Can't execute autocommands for ALL events"));
518EXTERN char e_autocommand_nesting_too_deep[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100519 INIT(= N_("E218: Autocommand nesting too deep"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000520EXTERN char e_missing_open_curly[]
521 INIT(= N_("E219: Missing {."));
522EXTERN char e_missing_close_curly[]
523 INIT(= N_("E220: Missing }."));
Dominique Pellef85a4242022-01-09 12:49:31 +0000524#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000525EXTERN char e_marker_cannot_start_with_lower_case_letter[]
526 INIT(= N_("E221: Marker cannot start with lower case letter"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000527#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000528EXTERN char e_add_to_internal_buffer_that_was_already_read_from[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100529 INIT(= "E222: Add to internal buffer that was already read from");
Bram Moolenaar6d057012021-12-31 18:49:43 +0000530EXTERN char e_recursive_mapping[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100531 INIT(= N_("E223: Recursive mapping"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000532EXTERN char e_global_abbreviation_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100533 INIT(= N_("E224: Global abbreviation already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000534EXTERN char e_global_mapping_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100535 INIT(= N_("E225: Global mapping already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000536EXTERN char e_abbreviation_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100537 INIT(= N_("E226: Abbreviation already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000538EXTERN char e_mapping_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100539 INIT(= N_("E227: Mapping already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000540EXTERN char e_makemap_illegal_mode[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100541 INIT(= "E228: makemap: Illegal mode");
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000542#ifdef FEAT_GUI
Bram Moolenaar6d057012021-12-31 18:49:43 +0000543EXTERN char e_cannot_start_the_GUI[]
544 INIT(= N_("E229: Cannot start the GUI"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000545EXTERN char e_cannot_read_from_str[]
546 INIT(= N_("E230: Cannot read from \"%s\""));
547EXTERN char e_guifontwide_invalid[]
548 INIT(= N_("E231: 'guifontwide' invalid"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000549#ifdef FEAT_BEVAL_GUI
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000550EXTERN char e_cannot_create_ballooneval_with_both_message_and_callback[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100551 INIT(= "E232: Cannot create BalloonEval with both message and callback");
Dominique Pellef85a4242022-01-09 12:49:31 +0000552#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000553# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000554EXTERN char e_cannot_open_display[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100555 INIT(= N_("E233: Cannot open display"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000556# endif
557# if defined(FEAT_XFONTSET)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000558EXTERN char e_unknown_fontset_str[]
559 INIT(= N_("E234: Unknown fontset: %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000560# endif
561# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000562 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
563EXTERN char e_unknown_font_str[]
564 INIT(= N_("E235: Unknown font: %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000565# endif
566# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000567EXTERN char e_font_str_is_not_fixed_width[]
568 INIT(= N_("E236: Font \"%s\" is not fixed-width"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000569# endif
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000570#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000571#ifdef MSWIN
572EXTERN char e_printer_selection_failed[]
573 INIT(= N_("E237: Printer selection failed"));
574EXTERN char e_print_error_str[]
575 INIT(= N_("E238: Print error: %s"));
576#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000577#ifdef FEAT_SIGNS
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000578EXTERN char e_invalid_sign_text_str[]
579 INIT(= N_("E239: Invalid sign text: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000580#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000581#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
582EXTERN char e_no_connection_to_x_server[]
583 INIT(= N_("E240: No connection to the X server"));
584#endif
585#ifdef FEAT_CLIENTSERVER
586EXTERN char e_unable_to_send_to_str[]
587 INIT(= N_("E241: Unable to send to %s"));
588#endif
589EXTERN char e_cant_split_window_while_closing_another[]
590 INIT(= N_("E242: Can't split a window while closing another"));
591#if defined(FEAT_GUI_MSWIN) && !defined(FEAT_OLE)
592EXTERN char e_argument_not_supported_str_use_ole_version[]
593 INIT(= N_("E243: Argument not supported: \"-%s\"; Use the OLE version."));
594#endif
595#ifdef MSWIN
596EXTERN char e_illegal_str_name_str_in_font_name_str[]
597 INIT(= N_("E244: Illegal %s name \"%s\" in font name \"%s\""));
598EXTERN char e_illegal_char_nr_in_font_name_str[]
599 INIT(= N_("E245: Illegal char '%c' in font name \"%s\""));
600#endif
601EXTERN char e_filechangedshell_autocommand_deleted_buffer[]
602 INIT(= N_("E246: FileChangedShell autocommand deleted buffer"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000603#ifdef FEAT_CLIENTSERVER
604EXTERN char e_no_registered_server_named_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100605 INIT(= N_("E247: No registered server named \"%s\""));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000606EXTERN char e_failed_to_send_command_to_destination_program[]
607 INIT(= N_("E248: Failed to send command to the destination program"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000608#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000609EXTERN char e_window_layout_changed_unexpectedly[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100610 INIT(= N_("E249: Window layout changed unexpectedly"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000611#ifdef FEAT_XFONTSET
612EXTERN char e_fonts_for_the_following_charsets_are_missing_in_fontset[]
613 INIT(= N_("E250: Fonts for the following charsets are missing in fontset %s:"));
614#endif
615#ifdef FEAT_CLIENTSERVER
616EXTERN char e_vim_instance_registry_property_is_badly_formed_deleted[]
617 INIT(= N_("E251: VIM instance registry property is badly formed. Deleted!"));
618#endif
619#ifdef FEAT_GUI_X11
620EXTERN char e_fontsent_name_str_font_str_is_not_fixed_width[]
621 INIT(= N_("E252: Fontset name: %s - Font '%s' is not fixed-width"));
622EXTERN char e_fontset_name_str[]
623 INIT(= N_("E253: Fontset name: %s"));
624#endif
Drew Vogele30d1022021-10-24 20:35:07 +0100625#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
626EXTERN char e_cannot_allocate_color_str[]
627 INIT(= N_("E254: Cannot allocate color %s"));
628#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +0000629#if defined(FEAT_SIGN_ICONS) && !defined(FEAT_GUI_GTK)
630EXTERN char e_couldnt_read_in_sign_data[]
631 INIT(= N_("E255: Couldn't read in sign data"));
632#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000633// E256 unused
Dominique Pellef85a4242022-01-09 12:49:31 +0000634#ifdef FEAT_CSCOPE
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000635EXTERN char e_cstag_tag_not_founc[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +0100636 INIT(= N_("E257: cstag: Tag not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000637#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000638#ifdef FEAT_CLIENTSERVER
639EXTERN char e_unable_to_send_to_client[]
640 INIT(= N_("E258: Unable to send to client"));
641#endif
642#ifdef FEAT_CSCOPE
643EXTERN char e_no_matches_found_for_cscope_query_str_of_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100644 INIT(= N_("E259: No matches found for cscope query %s of %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000645#endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000646#ifdef FEAT_EVAL
647EXTERN char e_missing_name_after_method[]
648 INIT(= N_("E260: Missing name after ->"));
649#endif
650#ifdef FEAT_CSCOPE
651EXTERN char e_cscope_connection_str_not_founc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100652 INIT(= N_("E261: Cscope connection %s not found"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000653EXTERN char e_error_reading_cscope_connection_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100654 INIT(= N_("E262: Error reading cscope connection %d"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000655#endif
Bram Moolenaar6b1a99d2022-01-02 01:04:09 +0000656#if defined(DYNAMIC_PYTHON) || defined(DYNAMIC_PYTHON3)
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000657EXTERN char e_sorry_this_command_is_disabled_python_library_could_not_be_found[]
658 INIT(= N_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
659#endif
660#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
661EXTERN char e_python_error_initialising_io_object[]
662 INIT(= N_("E264: Python: Error initialising I/O objects"));
663#endif
664#ifdef FEAT_RUBY
665EXTERN char e_dollar_must_be_an_instance_of_string[]
666 INIT(= N_("E265: $_ must be an instance of String"));
667#endif
668#ifdef DYNAMIC_RUBY
669EXTERN char e_sorry_this_command_is_disabled_the_ruby_library_could_not_be_loaded[]
670 INIT(= N_("E266: Sorry, this command is disabled, the Ruby library could not be loaded."));
671#endif
672#ifdef FEAT_RUBY
673EXTERN char e_unexpected_return[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100674 INIT(= N_("E267: Unexpected return"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000675EXTERN char e_unexpected_next[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100676 INIT(= N_("E268: Unexpected next"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000677EXTERN char e_unexpected_break[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100678 INIT(= N_("E269: Unexpected break"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000679EXTERN char e_unexpected_redo[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100680 INIT(= N_("E270: Unexpected redo"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000681EXTERN char e_retry_outside_of_rescue_clause[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100682 INIT(= N_("E271: Retry outside of rescue clause"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000683EXTERN char e_unhandled_exception[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100684 INIT(= N_("E272: Unhandled exception"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000685EXTERN char e_unknown_longjmp_status_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100686 INIT(= N_("E273: Unknown longjmp status %d"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000687#endif
Bram Moolenaar3a846e62022-01-01 16:21:00 +0000688#ifdef FEAT_EVAL
689EXTERN char e_no_white_space_allowed_before_parenthesis[]
690 INIT(= N_("E274: No white space allowed before parenthesis"));
691#endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000692#ifdef FEAT_PROP_POPUP
693EXTERN char e_cannot_add_text_property_to_unloaded_buffer[]
694 INIT(= N_("E275: Cannot add text property to unloaded buffer"));
695#endif
696#ifdef FEAT_EVAL
697EXTERN char e_cannot_use_function_as_method_str[]
698 INIT(= N_("E276: Cannot use function as a method: %s"));
699#endif
700#ifdef FEAT_CLIENTSERVER
701EXTERN char e_unable_to_read_server_reply[]
702 INIT(= N_("E277: Unable to read a server reply"));
703#endif
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000704// E278 unused
Dominique Pellef85a4242022-01-09 12:49:31 +0000705#if defined(FEAT_TERMINAL) && !defined(UNIX) && !defined(MSWIN)
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000706EXTERN char e_sorry_plusplusshell_not_supported_on_this_system[]
707 INIT(= N_("E279: Sorry, ++shell is not supported on this system"));
708#endif
709#ifdef FEAT_TCL
710EXTERN char e_tcl_fatal_error_reflist_corrupt_please_report_this[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100711 INIT(= "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim.org");
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000712#endif
713// E281 unused
714EXTERN char e_cannot_read_from_str_2[]
715 INIT(= N_("E282: Cannot read from \"%s\""));
716EXTERN char e_no_marks_matching_str[]
717 INIT(= N_("E283: No marks matching \"%s\""));
718#ifdef FEAT_XIM
Dominique Pellef85a4242022-01-09 12:49:31 +0000719# ifndef FEAT_GUI_GTK
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000720EXTERN char e_cannot_set_ic_values[]
721 INIT(= N_("E284: Cannot set IC values"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000722# endif
723# ifdef FEAT_GUI_X11
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000724EXTERN char e_failed_to_create_input_context[]
725 INIT(= N_("E285: Failed to create input context"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000726EXTERN char e_failed_to_open_input_method[]
727 INIT(= N_("E286: Failed to open input method"));
728EXTERN char e_warning_could_not_set_destroy_callback_to_im[]
729 INIT(= N_("E287: Warning: Could not set destroy callback to IM"));
730EXTERN char e_input_method_doesnt_support_any_style[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100731 INIT(= N_("E288: Input method doesn't support any style"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000732EXTERN char e_input_method_doesnt_support_my_preedit_type[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100733 INIT(= N_("E289: Input method doesn't support my preedit type"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000734# endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000735#endif
736#ifdef FEAT_SEARCH_EXTRA
737EXTERN char e_list_or_number_required[]
738 INIT(= N_("E290: List or number required"));
739#endif
740// E291 unused
741EXTERN char e_invalid_count_for_del_bytes_nr[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100742 INIT(= "E292: Invalid count for del_bytes(): %ld");
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000743EXTERN char e_block_was_not_locked[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100744 INIT(= "E293: Block was not locked");
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000745EXTERN char e_seek_error_in_swap_file_read[]
746 INIT(= N_("E294: Seek error in swap file read"));
747EXTERN char e_read_error_in_swap_file[]
748 INIT(= N_("E295: Read error in swap file"));
749EXTERN char e_seek_error_in_swap_file_write[]
750 INIT(= N_("E296: Seek error in swap file write"));
751EXTERN char e_write_error_in_swap_file[]
752 INIT(= N_("E297: Write error in swap file"));
753EXTERN char e_didnt_get_block_nr_zero[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100754 INIT(= "E298: Didn't get block nr 0?");
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000755EXTERN char e_didnt_get_block_nr_one[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100756 INIT(= "E298: Didn't get block nr 1?");
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000757EXTERN char e_didnt_get_block_nr_two[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100758 INIT(= "E298: Didn't get block nr 2?");
Bram Moolenaare96eea72022-01-28 21:00:51 +0000759#ifdef FEAT_PERL
760EXTERN char e_perl_evaluation_forbidden_in_sandbox_without_safe_module[]
761 INIT(= N_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
762#endif
Bram Moolenaareaaac012022-01-02 17:00:40 +0000763EXTERN char e_swap_file_already_exists_symlink_attack[]
764 INIT(= N_("E300: Swap file already exists (symlink attack?)"));
765EXTERN char e_oops_lost_the_swap_file[]
766 INIT(= N_("E301: Oops, lost the swap file!!!"));
767EXTERN char e_could_not_rename_swap_file[]
768 INIT(= N_("E302: Could not rename swap file"));
769EXTERN char e_unable_to_open_swap_file_for_str_recovery_impossible[]
770 INIT(= N_("E303: Unable to open swap file for \"%s\", recovery impossible"));
771EXTERN char e_ml_upd_block0_didnt_get_block_zero[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100772 INIT(= "E304: ml_upd_block0(): Didn't get block 0??");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000773EXTERN char e_no_swap_file_found_for_str[]
774 INIT(= N_("E305: No swap file found for %s"));
775EXTERN char e_cannot_open_str[]
776 INIT(= N_("E306: Cannot open %s"));
777EXTERN char e_str_does_not_look_like_vim_swap_file[]
778 INIT(= N_("E307: %s does not look like a Vim swap file"));
779EXTERN char e_warning_original_file_may_have_been_changed[]
780 INIT(= N_("E308: Warning: Original file may have been changed"));
781EXTERN char e_unable_to_read_block_one_from_str[]
782 INIT(= N_("E309: Unable to read block 1 from %s"));
783EXTERN char e_block_one_id_wrong_str_not_swp_file[]
784 INIT(= N_("E310: Block 1 ID wrong (%s not a .swp file?)"));
785EXTERN char e_recovery_interrupted[]
786 INIT(= N_("E311: Recovery Interrupted"));
787EXTERN char e_errors_detected_while_recovering_look_for_lines_starting_with_questions[]
788 INIT(= N_("E312: Errors detected while recovering; look for lines starting with ???"));
789EXTERN char e_cannot_preserve_there_is_no_swap_file[]
790 INIT(= N_("E313: Cannot preserve, there is no swap file"));
791EXTERN char e_preserve_failed[]
792 INIT(= N_("E314: Preserve failed"));
793EXTERN char e_ml_get_invalid_lnum_nr[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100794 INIT(= "E315: ml_get: Invalid lnum: %ld");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000795EXTERN char e_ml_get_cannot_find_line_nr_in_buffer_nr_str[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100796 INIT(= "E316: ml_get: Cannot find line %ld in buffer %d %s");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000797EXTERN char e_pointer_block_id_wrong[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100798 INIT(= "E317: Pointer block id wrong");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000799EXTERN char e_pointer_block_id_wrong_two[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100800 INIT(= "E317: Pointer block id wrong 2");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000801EXTERN char e_pointer_block_id_wrong_three[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100802 INIT(= "E317: Pointer block id wrong 3");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000803EXTERN char e_pointer_block_id_wrong_four[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100804 INIT(= "E317: Pointer block id wrong 4");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000805EXTERN char e_updated_too_many_blocks[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100806 INIT(= "E318: Updated too many blocks?");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000807EXTERN char e_sorry_command_is_not_available_in_this_version[]
808 INIT(= N_("E319: Sorry, the command is not available in this version"));
809EXTERN char e_cannot_find_line_nr[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100810 INIT(= "E320: Cannot find line %ld");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000811EXTERN char e_could_not_reload_str[]
812 INIT(= N_("E321: Could not reload \"%s\""));
813EXTERN char e_line_number_out_of_range_nr_past_the_end[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100814 INIT(= "E322: Line number out of range: %ld past the end");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000815EXTERN char e_line_count_wrong_in_block_nr[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100816 INIT(= "E323: Line count wrong in block %ld");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000817#ifdef FEAT_POSTSCRIPT
818EXTERN char e_cant_open_postscript_output_file[]
819 INIT(= N_("E324: Can't open PostScript output file"));
820#endif
821EXTERN char e_attention[]
822 INIT(= N_("E325: ATTENTION"));
823EXTERN char e_too_many_swap_files_found[]
824 INIT(= N_("E326: Too many swap files found"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000825#ifdef FEAT_MENU
Bram Moolenaareaaac012022-01-02 17:00:40 +0000826EXTERN char_u e_part_of_menu_item_path_is_not_sub_menu[]
827 INIT(= N_("E327: Part of menu-item path is not sub-menu"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +0000828EXTERN char e_menu_only_exists_in_another_mode[]
829 INIT(= N_("E328: Menu only exists in another mode"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000830EXTERN char_u e_no_menu_str[]
831 INIT(= N_("E329: No menu \"%s\""));
Bram Moolenaard88be5b2022-01-04 19:57:55 +0000832EXTERN char e_menu_path_must_not_lead_to_sub_menu[]
Bram Moolenaareaaac012022-01-02 17:00:40 +0000833 INIT(= N_("E330: Menu path must not lead to a sub-menu"));
834EXTERN char e_must_not_add_menu_items_directly_to_menu_bar[]
835 INIT(= N_("E331: Must not add menu items directly to menu bar"));
836EXTERN char e_separator_cannot_be_part_of_menu_path[]
837 INIT(= N_("E332: Separator cannot be part of a menu path"));
838EXTERN char e_menu_path_must_lead_to_menu_item[]
839 INIT(= N_("E333: Menu path must lead to a menu item"));
840EXTERN char e_menu_not_found_str[]
841 INIT(= N_("E334: Menu not found: %s"));
842EXTERN char e_menu_not_defined_for_str_mode[]
843 INIT(= N_("E335: Menu not defined for %s mode"));
844EXTERN char e_menu_path_must_lead_to_sub_menu[]
845 INIT(= N_("E336: Menu path must lead to a sub-menu"));
846EXTERN char e_menu_not_found_check_menu_names[]
847 INIT(= N_("E337: Menu not found - check menu names"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000848#endif
849#ifdef FEAT_BROWSE
Bram Moolenaareaaac012022-01-02 17:00:40 +0000850EXTERN char e_sorry_no_file_browser_in_console_mode[]
851 INIT(= N_("E338: Sorry, no file browser in console mode"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000852#endif
Bram Moolenaareaaac012022-01-02 17:00:40 +0000853EXTERN char e_pattern_too_long[]
854 INIT(= N_("E339: Pattern too long"));
Bram Moolenaar097c5372023-05-24 21:02:24 +0100855EXTERN char e_internal_error_please_report_a_bug[]
856 INIT(= N_("E340: Internal error; if you can reproduce please report a bug"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000857EXTERN char e_internal_error_lalloc_zero[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100858 INIT(= "E341: Internal error: lalloc(0, )");
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000859EXTERN char e_out_of_memory_allocating_nr_bytes[]
860 INIT(= N_("E342: Out of memory! (allocating %lu bytes)"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000861EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[]
862 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."));
863EXTERN char e_cant_find_directory_str_in_cdpath[]
864 INIT(= N_("E344: Can't find directory \"%s\" in cdpath"));
865EXTERN char e_cant_find_file_str_in_path[]
866 INIT(= N_("E345: Can't find file \"%s\" in path"));
867EXTERN char e_no_more_directory_str_found_in_cdpath[]
868 INIT(= N_("E346: No more directory \"%s\" found in cdpath"));
869EXTERN char e_no_more_file_str_found_in_path[]
870 INIT(= N_("E347: No more file \"%s\" found in path"));
871EXTERN char e_no_string_under_cursor[]
872 INIT(= N_("E348: No string under cursor"));
873EXTERN char e_no_identifier_under_cursor[]
874 INIT(= N_("E349: No identifier under cursor"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000875#ifdef FEAT_FOLDING
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000876EXTERN char e_cannot_create_fold_with_current_foldmethod[]
877 INIT(= N_("E350: Cannot create fold with current 'foldmethod'"));
878EXTERN char e_cannot_delete_fold_with_current_foldmethod[]
879 INIT(= N_("E351: Cannot delete fold with current 'foldmethod'"));
880EXTERN char e_cannot_erase_folds_with_current_foldmethod[]
881 INIT(= N_("E352: Cannot erase folds with current 'foldmethod'"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000882#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000883EXTERN char e_nothing_in_register_str[]
884 INIT(= N_("E353: Nothing in register %s"));
885EXTERN char e_invalid_register_name_str[]
886 INIT(= N_("E354: Invalid register name: '%s'"));
887EXTERN char e_unknown_option_str_2[]
888 INIT(= N_("E355: Unknown option: %s"));
889EXTERN char e_get_varp_error[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100890 INIT(= "E356: get_varp ERROR");
Dominique Pellef85a4242022-01-09 12:49:31 +0000891#ifdef FEAT_LANGMAP
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000892EXTERN char e_langmap_matching_character_missing_for_str[]
893 INIT(= N_("E357: 'langmap': Matching character missing for %s"));
894EXTERN char e_langmap_extra_characters_after_semicolon_str[]
895 INIT(= N_("E358: 'langmap': Extra characters after semicolon: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000896#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +0000897#if defined(AMIGA) || defined(MACOS_X) || defined(MSWIN) \
898 || defined(UNIX) || defined(VMS)
899EXTERN char e_screen_mode_setting_not_supported[]
900 INIT(= N_("E359: Screen mode setting not supported"));
901#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000902#ifdef AMIGA
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000903EXTERN char e_cannot_execute_shell_with_f_option[]
904 INIT(= N_("E360: Cannot execute shell with -f option"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000905#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000906// E361 unused
Bram Moolenaar73e28dc2022-09-17 21:08:33 +0100907#if defined(FEAT_EVAL)
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000908EXTERN char e_using_boolean_value_as_float[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000909 INIT(= N_("E362: Using a boolean value as a Float"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000910#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +0000911EXTERN char e_pattern_uses_more_memory_than_maxmempattern[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100912 INIT(= N_("E363: Pattern uses more memory than 'maxmempattern'"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000913#ifdef FEAT_LIBCALL
914EXTERN char e_library_call_failed_for_str[]
915 INIT(= N_("E364: Library call failed for \"%s()\""));
916#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000917#ifdef FEAT_POSTSCRIPT
918EXTERN char e_failed_to_print_postscript_file[]
919 INIT(= N_("E365: Failed to print PostScript file"));
920#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000921#ifdef FEAT_PROP_POPUP
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000922EXTERN char e_not_allowed_to_enter_popup_window[]
923 INIT(= N_("E366: Not allowed to enter a popup window"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000924#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000925EXTERN char e_no_such_group_str[]
926 INIT(= N_("E367: No such group: \"%s\""));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000927#ifdef FEAT_LIBCALL
928EXTERN char e_got_sig_str_in_libcall[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100929 INIT(= N_("E368: Got SIG%s in libcall()"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000930#endif
931EXTERN char e_invalid_item_in_str_brackets[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100932 INIT(= N_("E369: Invalid item in %s%%[]"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000933#ifdef USING_LOAD_LIBRARY
934EXTERN char e_could_not_load_library_str_str[]
935 INIT(= N_("E370: Could not load library %s: %s"));
936#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000937#ifdef FEAT_GUI_MSWIN
938EXTERN char e_command_not_found[]
939 INIT(= N_("E371: Command not found"));
940#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000941#ifdef FEAT_QUICKFIX
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000942EXTERN char e_too_many_chr_in_format_string[]
943 INIT(= N_("E372: Too many %%%c in format string"));
944EXTERN char e_unexpected_chr_in_format_str[]
945 INIT(= N_("E373: Unexpected %%%c in format string"));
946EXTERN char e_missing_rsb_in_format_string[]
947 INIT(= N_("E374: Missing ] in format string"));
948EXTERN char e_unsupported_chr_in_format_string[]
949 INIT(= N_("E375: Unsupported %%%c in format string"));
950EXTERN char e_invalid_chr_in_format_string_prefix[]
951 INIT(= N_("E376: Invalid %%%c in format string prefix"));
952EXTERN char e_invalid_chr_in_format_string[]
953 INIT(= N_("E377: Invalid %%%c in format string"));
954EXTERN char e_errorformat_contains_no_pattern[]
955 INIT(= N_("E378: 'errorformat' contains no pattern"));
956EXTERN char e_missing_or_empty_directory_name[]
957 INIT(= N_("E379: Missing or empty directory name"));
958EXTERN char e_at_bottom_of_quickfix_stack[]
959 INIT(= N_("E380: At bottom of quickfix stack"));
960EXTERN char e_at_top_of_quickfix_stack[]
961 INIT(= N_("E381: At top of quickfix stack"));
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +0100962#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000963EXTERN char e_cannot_write_buftype_option_is_set[]
964 INIT(= N_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000965EXTERN char e_invalid_search_string_str[]
966 INIT(= N_("E383: Invalid search string: %s"));
967EXTERN char e_search_hit_top_without_match_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100968 INIT(= N_("E384: Search hit TOP without match for: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000969EXTERN char e_search_hit_bottom_without_match_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100970 INIT(= N_("E385: Search hit BOTTOM without match for: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000971EXTERN char e_expected_question_or_slash_after_semicolon[]
972 INIT(= N_("E386: Expected '?' or '/' after ';'"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000973#ifdef FEAT_FIND_ID
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000974EXTERN char e_match_is_on_current_line[]
975 INIT(= N_("E387: Match is on current line"));
976EXTERN char e_couldnt_find_definition[]
977 INIT(= N_("E388: Couldn't find definition"));
978EXTERN char e_couldnt_find_pattern[]
979 INIT(= N_("E389: Couldn't find pattern"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000980#endif
981#ifdef FEAT_SYN_HL
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000982EXTERN char e_illegal_argument_str_2[]
983 INIT(= N_("E390: Illegal argument: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +0000984EXTERN char e_no_such_syntax_cluster_str_1[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000985 INIT(= N_("E391: No such syntax cluster: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +0000986EXTERN char e_no_such_syntax_cluster_str_2[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000987 INIT(= N_("E392: No such syntax cluster: %s"));
988EXTERN char e_groupthere_not_accepted_here[]
989 INIT(= N_("E393: group[t]here not accepted here"));
990EXTERN char e_didnt_find_region_item_for_str[]
991 INIT(= N_("E394: Didn't find region item for %s"));
992EXTERN char e_contains_argument_not_accepted_here[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100993 INIT(= N_("E395: Contains argument not accepted here"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000994// E396 unused
995EXTERN char e_filename_required[]
996 INIT(= N_("E397: Filename required"));
997EXTERN char e_missing_equal_str[]
998 INIT(= N_("E398: Missing '=': %s"));
999EXTERN char e_not_enough_arguments_syntax_region_str[]
1000 INIT(= N_("E399: Not enough arguments: syntax region %s"));
1001EXTERN char e_no_cluster_specified[]
1002 INIT(= N_("E400: No cluster specified"));
1003EXTERN char e_pattern_delimiter_not_found_str[]
1004 INIT(= N_("E401: Pattern delimiter not found: %s"));
1005EXTERN char e_garbage_after_pattern_str[]
1006 INIT(= N_("E402: Garbage after pattern: %s"));
1007EXTERN char e_syntax_sync_line_continuations_pattern_specified_twice[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001008 INIT(= N_("E403: syntax sync: Line continuations pattern specified twice"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001009EXTERN char e_illegal_arguments_str[]
1010 INIT(= N_("E404: Illegal arguments: %s"));
1011EXTERN char e_missing_equal_sign_str[]
1012 INIT(= N_("E405: Missing equal sign: %s"));
1013EXTERN char e_empty_argument_str[]
1014 INIT(= N_("E406: Empty argument: %s"));
1015EXTERN char e_str_not_allowed_here[]
1016 INIT(= N_("E407: %s not allowed here"));
1017EXTERN char e_str_must_be_first_in_contains_list[]
1018 INIT(= N_("E408: %s must be first in contains list"));
1019EXTERN char e_unknown_group_name_str[]
1020 INIT(= N_("E409: Unknown group name: %s"));
1021EXTERN char e_invalid_syntax_subcommand_str[]
1022 INIT(= N_("E410: Invalid :syntax subcommand: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001023#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001024EXTERN char e_highlight_group_name_not_found_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001025 INIT(= N_("E411: Highlight group not found: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001026EXTERN char e_not_enough_arguments_highlight_link_str[]
1027 INIT(= N_("E412: Not enough arguments: \":highlight link %s\""));
1028EXTERN char e_too_many_arguments_highlight_link_str[]
1029 INIT(= N_("E413: Too many arguments: \":highlight link %s\""));
1030EXTERN char e_group_has_settings_highlight_link_ignored[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001031 INIT(= N_("E414: Group has settings, highlight link ignored"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001032EXTERN char e_unexpected_equal_sign_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001033 INIT(= N_("E415: Unexpected equal sign: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001034EXTERN char e_missing_equal_sign_str_2[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001035 INIT(= N_("E416: Missing equal sign: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001036EXTERN char e_missing_argument_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001037 INIT(= N_("E417: Missing argument: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001038EXTERN char e_illegal_value_str[]
1039 INIT(= N_("E418: Illegal value: %s"));
Bram Moolenaar80adaa82023-07-07 18:57:40 +01001040EXTERN char e_im_a_teapot[]
1041 INIT(= N_("E418: I'm a teapot"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001042EXTERN char e_fg_color_unknown[]
1043 INIT(= N_("E419: FG color unknown"));
1044EXTERN char e_bg_color_unknown[]
1045 INIT(= N_("E420: BG color unknown"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001046EXTERN char e_color_name_or_number_not_recognized_str[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001047 INIT(= N_("E421: Color name or number not recognized: %s"));
1048EXTERN char e_terminal_code_too_long_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001049 INIT(= N_("E422: Terminal code too long: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001050EXTERN char e_illegal_argument_str_3[]
1051 INIT(= N_("E423: Illegal argument: %s"));
1052EXTERN char e_too_many_different_highlighting_attributes_in_use[]
1053 INIT(= N_("E424: Too many different highlighting attributes in use"));
1054EXTERN char e_cannot_go_before_first_matching_tag[]
1055 INIT(= N_("E425: Cannot go before first matching tag"));
1056EXTERN char e_tag_not_found_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001057 INIT(= N_("E426: Tag not found: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001058EXTERN char e_there_is_only_one_matching_tag[]
1059 INIT(= N_("E427: There is only one matching tag"));
1060EXTERN char e_cannot_go_beyond_last_matching_tag[]
1061 INIT(= N_("E428: Cannot go beyond last matching tag"));
1062EXTERN char e_file_str_does_not_exist[]
1063 INIT(= N_("E429: File \"%s\" does not exist"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001064#ifdef FEAT_EMACS_TAGS
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001065EXTERN char e_tag_file_path_truncated_for_str[]
1066 INIT(= N_("E430: Tag file path truncated for %s\n"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001067#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001068EXTERN char e_format_error_in_tags_file_str[]
1069 INIT(= N_("E431: Format error in tags file \"%s\""));
1070EXTERN char e_tags_file_not_sorted_str[]
1071 INIT(= N_("E432: Tags file not sorted: %s"));
1072EXTERN char e_no_tags_file[]
1073 INIT(= N_("E433: No tags file"));
dundargocc57b5bc2022-11-02 13:30:51 +00001074EXTERN char e_cannot_find_tag_pattern[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001075 INIT(= N_("E434: Can't find tag pattern"));
1076EXTERN char e_couldnt_find_tag_just_guessing[]
1077 INIT(= N_("E435: Couldn't find tag, just guessing!"));
1078EXTERN char e_no_str_entry_in_termcap[]
1079 INIT(= N_("E436: No \"%s\" entry in termcap"));
1080EXTERN char e_terminal_capability_cm_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001081 INIT(= N_("E437: Terminal capability \"cm\" required"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001082EXTERN char e_u_undo_line_numbers_wrong[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001083 INIT(= "E438: u_undo: Line numbers wrong");
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001084EXTERN char e_undo_list_corrupt[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001085 INIT(= "E439: Undo list corrupt");
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001086EXTERN char e_undo_line_missing[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001087 INIT(= "E440: Undo line missing");
Dominique Pellef85a4242022-01-09 12:49:31 +00001088#ifdef FEAT_QUICKFIX
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001089EXTERN char e_there_is_no_preview_window[]
1090 INIT(= N_("E441: There is no preview window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001091#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001092EXTERN char e_cant_split_topleft_and_botright_at_the_same_time[]
1093 INIT(= N_("E442: Can't split topleft and botright at the same time"));
1094EXTERN char e_cannot_rotate_when_another_window_is_split[]
1095 INIT(= N_("E443: Cannot rotate when another window is split"));
1096EXTERN char e_cannot_close_last_window[]
1097 INIT(= N_("E444: Cannot close last window"));
1098EXTERN char e_other_window_contains_changes[]
1099 INIT(= N_("E445: Other window contains changes"));
1100EXTERN char e_no_file_name_under_cursor[]
1101 INIT(= N_("E446: No file name under cursor"));
1102EXTERN char e_cant_find_file_str_in_path_2[]
1103 INIT(= N_("E447: Can't find file \"%s\" in path"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001104#ifdef USING_LOAD_LIBRARY
1105EXTERN char e_could_not_load_library_function_str[]
1106 INIT(= N_("E448: Could not load library function %s"));
1107#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001108#ifdef FEAT_CLIENTSERVER
1109EXTERN char e_invalid_expression_received[]
1110 INIT(= N_("E449: Invalid expression received"));
1111#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001112#ifdef FEAT_PROP_POPUP
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001113EXTERN char e_buffer_number_text_or_list_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001114 INIT(= N_("E450: Buffer number, text or a list required"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001115#endif
1116#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001117EXTERN char e_expected_right_curly_str[]
1118 INIT(= N_("E451: Expected }: %s"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001119EXTERN char e_double_semicolon_in_list_of_variables[]
1120 INIT(= N_("E452: Double ; in list of variables"));
1121#endif
1122EXTERN char e_ul_color_unknown[]
1123 INIT(= N_("E453: UL color unknown"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001124#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001125EXTERN char e_function_list_was_modified[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001126 INIT(= N_("E454: Function list was modified"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001127#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001128#ifdef FEAT_POSTSCRIPT
1129EXTERN char e_error_writing_to_postscript_output_file[]
1130 INIT(= N_("E455: Error writing to PostScript output file"));
1131EXTERN char e_cant_open_file_str_2[]
1132 INIT(= N_("E456: Can't open file \"%s\""));
1133EXTERN char e_cant_find_postscript_resource_file_str_ps[]
1134 INIT(= N_("E456: Can't find PostScript resource file \"%s.ps\""));
1135EXTERN char e_cant_read_postscript_resource_file_str[]
1136 INIT(= N_("E457: Can't read PostScript resource file \"%s\""));
1137#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001138#ifdef FEAT_GUI_X11
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001139EXTERN char e_cannot_allocate_colormap_entry_some_colors_may_be_incorrect[]
1140 INIT(= N_("E458: Cannot allocate colormap entry, some colors may be incorrect"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001141#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001142#if defined(UNIX) || defined(FEAT_SESSION)
1143EXTERN char e_cannot_go_back_to_previous_directory[]
1144 INIT(= N_("E459: Cannot go back to previous directory"));
1145#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001146#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001147EXTERN char e_entries_missing_in_mapset_dict_argument[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001148 INIT(= N_("E460: Entries missing in mapset() dict argument"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001149EXTERN char e_illegal_variable_name_str[]
1150 INIT(= N_("E461: Illegal variable name: %s"));
1151#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001152EXTERN char e_could_not_prepare_for_reloading_str[]
1153 INIT(= N_("E462: Could not prepare for reloading \"%s\""));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001154#ifdef FEAT_NETBEANS_INTG
1155EXTERN char e_region_is_guarded_cannot_modify[]
1156 INIT(= N_("E463: Region is guarded, cannot modify"));
1157#endif
Bram Moolenaard1510ee2021-01-04 16:15:58 +01001158EXTERN char e_ambiguous_use_of_user_defined_command[]
1159 INIT(= N_("E464: Ambiguous use of user-defined command"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001160#ifdef FEAT_EVAL
Bram Moolenaarbed34f02022-01-19 20:48:37 +00001161EXTERN char e_ambiguous_use_of_user_defined_command_str[]
1162 INIT(= N_("E464: Ambiguous use of user-defined command: %s"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001163#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001164EXTERN char e_winsize_requires_two_number_arguments[]
1165 INIT(= N_("E465: :winsize requires two number arguments"));
1166EXTERN char e_winpos_requires_two_number_arguments[]
1167 INIT(= N_("E466: :winpos requires two number arguments"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001168#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001169EXTERN char e_custom_completion_requires_function_argument[]
1170 INIT(= N_("E467: Custom completion requires a function argument"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001171#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001172EXTERN char e_completion_argument_only_allowed_for_custom_completion[]
1173 INIT(= N_("E468: Completion argument only allowed for custom completion"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001174#ifdef FEAT_CSCOPE
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001175EXTERN char e_invalid_cscopequickfix_flag_chr_for_chr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001176 INIT(= N_("E469: Invalid cscopequickfix flag %c for %c"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001177#endif
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001178EXTERN char e_command_aborted[]
1179 INIT(= N_("E470: Command aborted"));
1180EXTERN char e_argument_required[]
1181 INIT(= N_("E471: Argument required"));
1182EXTERN char e_command_failed[]
1183 INIT(= N_("E472: Command failed"));
1184EXTERN char e_internal_error_in_regexp[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001185 INIT(= "E473: Internal error in regexp");
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001186EXTERN char e_invalid_argument[]
1187 INIT(= N_("E474: Invalid argument"));
1188EXTERN char e_invalid_argument_str[]
1189 INIT(= N_("E475: Invalid argument: %s"));
1190EXTERN char e_invalid_value_for_argument_str[]
1191 INIT(= N_("E475: Invalid value for argument %s"));
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01001192#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_PROP_POPUP) || defined(FEAT_EVAL)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001193EXTERN char e_invalid_value_for_argument_str_str[]
1194 INIT(= N_("E475: Invalid value for argument %s: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001195#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02001196EXTERN char e_invalid_command[]
1197 INIT(= N_("E476: Invalid command"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02001198EXTERN char e_invalid_command_str[]
1199 INIT(= N_("E476: Invalid command: %s"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001200#ifdef FEAT_EVAL
Bram Moolenaar552bdca2023-02-17 21:08:50 +00001201EXTERN char e_invalid_command_str_expected_str[]
1202 INIT(= N_("E476: Invalid command: %s, expected %s"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001203#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001204EXTERN char e_no_bang_allowed[]
1205 INIT(= N_("E477: No ! allowed"));
1206EXTERN char e_dont_panic[]
1207 INIT(= N_("E478: Don't panic!"));
1208EXTERN char e_no_match[]
1209 INIT(= N_("E479: No match"));
1210EXTERN char e_no_match_str_2[]
1211 INIT(= N_("E480: No match: %s"));
1212EXTERN char e_no_range_allowed[]
1213 INIT(= N_("E481: No range allowed"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001214EXTERN char e_cant_create_file_str[]
1215 INIT(= N_("E482: Can't create file %s"));
1216EXTERN char e_cant_get_temp_file_name[]
1217 INIT(= N_("E483: Can't get temp file name"));
1218EXTERN char e_cant_open_file_str[]
1219 INIT(= N_("E484: Can't open file %s"));
1220EXTERN char e_cant_read_file_str[]
1221 INIT(= N_("E485: Can't read file %s"));
1222EXTERN char e_pattern_not_found[]
1223 INIT(= N_("E486: Pattern not found"));
1224EXTERN char e_pattern_not_found_str[]
1225 INIT(= N_("E486: Pattern not found: %s"));
1226EXTERN char e_argument_must_be_positive[]
1227 INIT(= N_("E487: Argument must be positive"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001228#ifdef FEAT_PROP_POPUP
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001229EXTERN char e_argument_must_be_positive_str[]
1230 INIT(= N_("E487: Argument must be positive: %s"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001231#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001232EXTERN char e_trailing_characters[]
1233 INIT(= N_("E488: Trailing characters"));
1234EXTERN char e_trailing_characters_str[]
1235 INIT(= N_("E488: Trailing characters: %s"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001236EXTERN char e_no_call_stack_to_substitute_for_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001237 INIT(= N_("E489: No call stack to substitute for \"<stack>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001238#ifdef FEAT_FOLDING
1239EXTERN char e_no_fold_found[]
1240 INIT(= N_("E490: No fold found"));
1241#endif
1242#ifdef FEAT_EVAL
1243EXTERN char e_json_decode_error_at_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001244 INIT(= N_("E491: JSON decode error at '%s'"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001245#endif
1246EXTERN char e_not_an_editor_command[]
1247 INIT(= N_("E492: Not an editor command"));
1248EXTERN char e_backwards_range_given[]
1249 INIT(= N_("E493: Backwards range given"));
1250EXTERN char e_use_w_or_w_gt_gt[]
1251 INIT(= N_("E494: Use w or w>>"));
1252EXTERN char e_no_autocommand_file_name_to_substitute_for_afile[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001253 INIT(= N_("E495: No autocommand file name to substitute for \"<afile>\""));
Bram Moolenaar70e80282023-05-05 22:58:34 +01001254EXTERN char e_no_autocommand_buffer_number_to_substitute_for_abuf[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001255 INIT(= N_("E496: No autocommand buffer number to substitute for \"<abuf>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001256EXTERN char e_no_autocommand_match_name_to_substitute_for_amatch[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001257 INIT(= N_("E497: No autocommand match name to substitute for \"<amatch>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001258EXTERN char e_no_source_file_name_to_substitute_for_sfile[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001259 INIT(= N_("E498: No :source file name to substitute for \"<sfile>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001260EXTERN char e_empty_file_name_for_percent_or_hash_only_works_with_ph[]
K.Takatab5988e32022-01-16 11:25:26 +00001261 // xgettext:no-c-format
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001262 INIT(= N_("E499: Empty file name for '%' or '#', only works with \":p:h\""));
1263EXTERN char e_evaluates_to_an_empty_string[]
1264 INIT(= N_("E500: Evaluates to an empty string"));
1265EXTERN char e_at_end_of_file[]
1266 INIT(= N_("E501: At end-of-file"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001267 // E502
1268EXTERN char e_is_a_directory[]
1269 INIT(= N_("is a directory"));
1270 // E503
1271EXTERN char e_is_not_file_or_writable_device[]
1272 INIT(= N_("is not a file or writable device"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001273EXTERN char e_str_is_not_file_or_writable_device[]
1274 INIT(= N_("E503: \"%s\" is not a file or writable device"));
Bram Moolenaar80adaa82023-07-07 18:57:40 +01001275EXTERN char e_coffee_currently_not_available[]
1276 INIT(= N_("E503: Coffee is currently not available"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001277 // E504
1278EXTERN char e_is_read_only_cannot_override_W_in_cpoptions[]
1279 INIT(= N_("is read-only (cannot override: \"W\" in 'cpoptions')"));
1280 // E505
1281EXTERN char e_is_read_only_add_bang_to_override[]
1282 INIT(= N_("is read-only (add ! to override)"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001283EXTERN char e_str_is_read_only_add_bang_to_override[]
1284 INIT(= N_("E505: \"%s\" is read-only (add ! to override)"));
dundargocc57b5bc2022-11-02 13:30:51 +00001285EXTERN char e_cant_write_to_backup_file_add_bang_to_override[]
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001286 INIT(= N_("E506: Can't write to backup file (add ! to override)"));
1287EXTERN char e_close_error_for_backup_file_add_bang_to_write_anyway[]
1288 INIT(= N_("E507: Close error for backup file (add ! to write anyway)"));
1289EXTERN char e_cant_read_file_for_backup_add_bang_to_write_anyway[]
1290 INIT(= N_("E508: Can't read file for backup (add ! to write anyway)"));
1291EXTERN char e_cannot_create_backup_file_add_bang_to_write_anyway[]
1292 INIT(= N_("E509: Cannot create backup file (add ! to override)"));
1293EXTERN char e_cant_make_backup_file_add_bang_to_write_anyway[]
1294 INIT(= N_("E510: Can't make backup file (add ! to write anyway)"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001295#ifdef FEAT_NETBEANS_INTG
1296EXTERN char e_netbeans_already_connected[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001297 INIT(= N_("E511: NetBeans already connected"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001298#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001299EXTERN char e_close_failed[]
1300 INIT(= N_("E512: Close failed"));
1301EXTERN char e_write_error_conversion_failed_make_fenc_empty_to_override[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001302 INIT(= N_("E513: Write error, conversion failed (make 'fenc' empty to override)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001303EXTERN char e_write_error_conversion_failed_in_line_nr_make_fenc_empty_to_override[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001304 INIT(= N_("E513: Write error, conversion failed in line %ld (make 'fenc' empty to override)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001305EXTERN char e_write_error_file_system_full[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001306 INIT(= N_("E514: Write error (file system full?)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001307EXTERN char e_no_buffers_were_unloaded[]
1308 INIT(= N_("E515: No buffers were unloaded"));
1309EXTERN char e_no_buffers_were_deleted[]
1310 INIT(= N_("E516: No buffers were deleted"));
1311EXTERN char e_no_buffers_were_wiped_out[]
1312 INIT(= N_("E517: No buffers were wiped out"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001313EXTERN char e_unknown_option[]
1314 INIT(= N_("E518: Unknown option"));
1315EXTERN char e_option_not_supported[]
1316 INIT(= N_("E519: Option not supported"));
1317EXTERN char e_not_allowed_in_modeline[]
1318 INIT(= N_("E520: Not allowed in a modeline"));
1319EXTERN char e_number_required_after_equal[]
1320 INIT(= N_("E521: Number required after ="));
1321EXTERN char e_number_required_after_str_equal_str[]
1322 INIT(= N_("E521: Number required: &%s = '%s'"));
1323EXTERN char e_not_found_in_termcap[]
1324 INIT(= N_("E522: Not found in termcap"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001325EXTERN char e_not_allowed_here[]
1326 INIT(= N_("E523: Not allowed here"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001327EXTERN char e_missing_colon[]
1328 INIT(= N_("E524: Missing colon"));
1329EXTERN char e_zero_length_string[]
1330 INIT(= N_("E525: Zero length string"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001331#ifdef FEAT_VIMINFO
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001332EXTERN char e_missing_number_after_angle_str_angle[]
1333 INIT(= N_("E526: Missing number after <%s>"));
1334EXTERN char e_missing_comma[]
1335 INIT(= N_("E527: Missing comma"));
1336EXTERN char e_must_specify_a_value[]
1337 INIT(= N_("E528: Must specify a ' value"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001338#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001339EXTERN char e_cannot_set_term_to_empty_string[]
1340 INIT(= N_("E529: Cannot set 'term' to empty string"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001341#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001342EXTERN char e_cannot_change_term_in_GUI[]
1343 INIT(= N_("E530: Cannot change 'term' in the GUI"));
1344EXTERN char e_use_gui_to_start_GUI[]
1345 INIT(= N_("E531: Use \":gui\" to start the GUI"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001346#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001347#ifdef FEAT_NETBEANS_INTG
1348EXTERN char e_highlighting_color_name_too_long_in_defineAnnoType[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001349 INIT(= N_("E532: Highlighting color name too long in defineAnnoType"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001350#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001351#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001352EXTERN char e_cant_select_wide_font[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001353 INIT(= N_("E533: Can't select wide font"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001354EXTERN char e_invalid_wide_font[]
1355 INIT(= N_("E534: Invalid wide font"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001356#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001357EXTERN char e_illegal_character_after_chr[]
1358 INIT(= N_("E535: Illegal character after <%c>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001359#ifdef FEAT_FOLDING
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001360EXTERN char e_comma_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001361 INIT(= N_("E536: Comma required"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001362EXTERN char e_commentstring_must_be_empty_or_contain_str[]
1363 INIT(= N_("E537: 'commentstring' must be empty or contain %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001364#endif
Bram Moolenaar24d9c052022-03-04 21:34:31 +00001365EXTERN char e_pattern_found_in_every_line_str[]
1366 INIT(= N_("E538: Pattern found in every line: %s"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001367EXTERN char e_illegal_character_str[]
1368 INIT(= N_("E539: Illegal character <%s>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001369#ifdef FEAT_STL_OPT
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001370EXTERN char e_unclosed_expression_sequence[]
1371 INIT(= N_("E540: Unclosed expression sequence"));
1372// E541 unused
1373EXTERN char e_unbalanced_groups[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001374 INIT(= N_("E542: Unbalanced groups"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001375#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001376#ifdef MSWIN
1377EXTERN char e_not_valid_codepage[]
1378 INIT(= N_("E543: Not a valid codepage"));
1379#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001380#ifdef FEAT_KEYMAP
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001381EXTERN char e_keymap_file_not_found[]
1382 INIT(= N_("E544: Keymap file not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001383#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001384#ifdef CURSOR_SHAPE
Bram Moolenaar475d9522022-01-02 21:46:29 +00001385EXTERN char e_missing_colon_2[]
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001386 INIT(= N_("E545: Missing colon"));
1387EXTERN char e_illegal_mode[]
1388 INIT(= N_("E546: Illegal mode"));
1389#endif
1390#ifdef FEAT_MOUSESHAPE
1391EXTERN char e_illegal_mouseshape[]
1392 INIT(= N_("E547: Illegal mouseshape"));
1393#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00001394#ifdef CURSOR_SHAPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001395EXTERN char e_digit_expected[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001396 INIT(= N_("E548: Digit expected"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001397EXTERN char e_illegal_percentage[]
1398 INIT(= N_("E549: Illegal percentage"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001399#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001400#ifdef FEAT_PRINTER
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001401EXTERN char e_missing_colon_3[]
1402 INIT(= N_("E550: Missing colon"));
1403EXTERN char e_illegal_component[]
1404 INIT(= N_("E551: Illegal component"));
1405EXTERN char e_digit_expected_2[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001406 INIT(= N_("E552: Digit expected"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001407#endif
1408#ifdef FEAT_QUICKFIX
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001409EXTERN char e_no_more_items[]
1410 INIT(= N_("E553: No more items"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001411#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001412EXTERN char e_syntax_error_in_str_curlies[]
1413 INIT(= N_("E554: Syntax error in %s{...}"));
1414EXTERN char e_at_bottom_of_tag_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001415 INIT(= N_("E555: At bottom of tag stack"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001416EXTERN char e_at_top_of_tag_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001417 INIT(= N_("E556: At top of tag stack"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001418EXTERN char e_cannot_open_termcap_file[]
1419 INIT(= N_("E557: Cannot open termcap file"));
1420EXTERN char e_terminal_entry_not_found_in_terminfo[]
1421 INIT(= N_("E558: Terminal entry not found in terminfo"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001422#if defined(HAVE_TGETENT) && !defined(TERMINFO)
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001423EXTERN char e_terminal_entry_not_found_in_termcap[]
1424 INIT(= N_("E559: Terminal entry not found in termcap"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001425#endif
1426#ifdef FEAT_CSCOPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001427EXTERN char e_usage_cscope_str[]
1428 INIT(= N_("E560: Usage: cs[cope] %s"));
1429EXTERN char e_unknown_cscope_search_type[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001430 INIT(= N_("E561: Unknown cscope search type"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001431EXTERN char e_usage_cstag_ident[]
1432 INIT(= N_("E562: Usage: cstag <ident>"));
1433EXTERN char e_stat_str_error_nr[]
1434 INIT(= N_("E563: stat(%s) error: %d"));
1435EXTERN char e_str_is_not_directory_or_valid_cscope_database[]
1436 INIT(= N_("E564: %s is not a directory or a valid cscope database"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001437#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001438EXTERN char e_not_allowed_to_change_text_or_change_window[]
1439 INIT(= N_("E565: Not allowed to change text or change window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001440#ifdef FEAT_CSCOPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001441EXTERN char e_could_not_create_cscope_pipes[]
1442 INIT(= N_("E566: Could not create cscope pipes"));
1443EXTERN char e_no_cscope_connections[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001444 INIT(= N_("E567: No cscope connections"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001445EXTERN char e_duplicate_cscope_database_not_added[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001446 INIT(= N_("E568: Duplicate cscope database not added"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001447// E569 unused
1448EXTERN char e_fatal_error_in_cs_manage_matches[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001449 INIT(= "E570: Fatal error in cs_manage_matches");
Dominique Pellef85a4242022-01-09 12:49:31 +00001450#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001451#ifdef DYNAMIC_TCL
1452EXTERN char e_sorry_this_command_is_disabled_tcl_library_could_not_be_loaded[]
1453 INIT(= N_("E571: Sorry, this command is disabled: the Tcl library could not be loaded."));
1454#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001455#ifdef FEAT_TCL
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001456EXTERN char e_exit_code_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001457 INIT(= N_("E572: Exit code %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001458#endif
1459#ifdef FEAT_CLIENTSERVER
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001460EXTERN char e_invalid_server_id_used_str[]
1461 INIT(= N_("E573: Invalid server id used: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001462#endif
1463#ifdef FEAT_VIMINFO
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001464EXTERN char e_unknown_register_type_nr[]
1465 INIT(= N_("E574: Unknown register type %d"));
1466 // E575
1467EXTERN char e_illegal_starting_char[]
1468 INIT(= N_("Illegal starting char"));
1469 // E576
1470EXTERN char e_nonr_missing_gt[]
1471 INIT(= N_("Missing '>'"));
1472 // E577
1473EXTERN char e_illegal_register_name[]
1474 INIT(= N_("Illegal register name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001475#endif
zeertzjqcfe45652022-05-27 17:26:55 +01001476// E578 unused
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001477#ifdef FEAT_EVAL
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001478EXTERN char e_if_nesting_too_deep[]
1479 INIT(= N_("E579: :if nesting too deep"));
1480EXTERN char e_block_nesting_too_deep[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001481 INIT(= N_("E579: Block nesting too deep"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001482EXTERN char e_endif_without_if[]
1483 INIT(= N_("E580: :endif without :if"));
1484EXTERN char e_else_without_if[]
1485 INIT(= N_("E581: :else without :if"));
1486EXTERN char e_elseif_without_if[]
1487 INIT(= N_("E582: :elseif without :if"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001488EXTERN char e_multiple_else[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001489 INIT(= N_("E583: Multiple :else"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001490EXTERN char e_elseif_after_else[]
1491 INIT(= N_("E584: :elseif after :else"));
1492EXTERN char e_while_for_nesting_too_deep[]
1493 INIT(= N_("E585: :while/:for nesting too deep"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001494EXTERN char e_continue_without_while_or_for[]
1495 INIT(= N_("E586: :continue without :while or :for"));
1496EXTERN char e_break_without_while_or_for[]
1497 INIT(= N_("E587: :break without :while or :for"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001498EXTERN char e_endwhile_without_while[]
1499 INIT(= N_("E588: :endwhile without :while"));
1500EXTERN char e_endfor_without_for[]
1501 INIT(= N_("E588: :endfor without :for"));
Bram Moolenaar0f7a5e72022-01-01 16:31:48 +00001502#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001503EXTERN char e_backupext_and_patchmode_are_equal[]
1504 INIT(= N_("E589: 'backupext' and 'patchmode' are equal"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001505#ifdef FEAT_QUICKFIX
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001506EXTERN char e_preview_window_already_exists[]
1507 INIT(= N_("E590: A preview window already exists"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001508#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001509EXTERN char e_winheight_cannot_be_smaller_than_winminheight[]
1510 INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'"));
1511EXTERN char e_winwidth_cannot_be_smaller_than_winminwidth[]
1512 INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001513EXTERN char e_need_at_least_nr_lines[]
1514 INIT(= N_("E593: Need at least %d lines"));
1515EXTERN char e_need_at_least_nr_columns[]
1516 INIT(= N_("E594: Need at least %d columns"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001517#ifdef FEAT_LINEBREAK
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001518EXTERN char e_showbreak_contains_unprintable_or_wide_character[]
1519 INIT(= N_("E595: 'showbreak' contains unprintable or wide character"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001520#endif
1521#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001522EXTERN char e_invalid_fonts[]
1523 INIT(= N_("E596: Invalid font(s)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001524# ifdef FEAT_XFONTSET
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001525EXTERN char e_cant_select_fontset[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001526 INIT(= N_("E597: Can't select fontset"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001527EXTERN char e_invalid_fontset[]
1528 INIT(= N_("E598: Invalid fontset"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001529# endif
1530#endif
1531#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001532EXTERN char e_value_of_imactivatekey_is_invalid[]
1533 INIT(= N_("E599: Value of 'imactivatekey' is invalid"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001534#endif
Bram Moolenaar0f7a5e72022-01-01 16:31:48 +00001535#ifdef FEAT_EVAL
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001536EXTERN char e_missing_endtry[]
1537 INIT(= N_("E600: Missing :endtry"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001538EXTERN char e_try_nesting_too_deep[]
1539 INIT(= N_("E601: :try nesting too deep"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001540EXTERN char e_endtry_without_try[]
1541 INIT(= N_("E602: :endtry without :try"));
1542EXTERN char e_catch_without_try[]
1543 INIT(= N_("E603: :catch without :try"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001544EXTERN char e_catch_after_finally[]
1545 INIT(= N_("E604: :catch after :finally"));
1546EXTERN char e_exception_not_caught_str[]
1547 INIT(= N_("E605: Exception not caught: %s"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001548EXTERN char e_finally_without_try[]
1549 INIT(= N_("E606: :finally without :try"));
1550EXTERN char e_multiple_finally[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001551 INIT(= N_("E607: Multiple :finally"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001552EXTERN char e_cannot_throw_exceptions_with_vim_prefix[]
1553 INIT(= N_("E608: Cannot :throw exceptions with 'Vim' prefix"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001554#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001555#ifdef FEAT_CSCOPE
1556EXTERN char e_cscope_error_str[]
1557 INIT(= N_("E609: Cscope error: %s"));
1558#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001559EXTERN char e_no_argument_to_delete[]
1560 INIT(= N_("E610: No argument to delete"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001561#ifdef FEAT_EVAL
1562EXTERN char e_using_special_as_number[]
1563 INIT(= N_("E611: Using a Special as a Number"));
1564#endif
1565#ifdef FEAT_SIGNS
1566EXTERN char e_too_many_signs_defined[]
1567 INIT(= N_("E612: Too many signs defined"));
1568#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001569#if defined(MSWIN) && defined(FEAT_PRINTER)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001570EXTERN char e_unknown_printer_font_str[]
1571 INIT(= N_("E613: Unknown printer font: %s"));
1572#endif
LemonBoyafe04662023-08-23 21:08:11 +02001573EXTERN char e_class_required[]
1574 INIT(= N_("E614: Class required"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02001575// E615 unused
LemonBoyafe04662023-08-23 21:08:11 +02001576EXTERN char e_object_required_for_argument_nr[]
1577 INIT(= N_("E616: Object required for argument %d"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001578#ifdef FEAT_GUI_GTK
1579EXTERN char e_cannot_be_changed_in_gtk_GUI[]
1580 INIT(= N_("E617: Cannot be changed in the GTK GUI"));
1581#endif
1582#ifdef FEAT_POSTSCRIPT
1583EXTERN char e_file_str_is_not_postscript_resource_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001584 INIT(= N_("E618: File \"%s\" is not a PostScript resource file"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001585EXTERN char e_file_str_is_not_supported_postscript_resource_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001586 INIT(= N_("E619: File \"%s\" is not a supported PostScript resource file"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001587EXTERN char e_unable_to_convert_to_print_encoding_str[]
1588 INIT(= N_("E620: Unable to convert to print encoding \"%s\""));
1589EXTERN char e_str_resource_file_has_wrong_version[]
1590 INIT(= N_("E621: \"%s\" resource file has wrong version"));
1591#endif
1592#ifdef FEAT_CSCOPE
1593EXTERN char e_could_not_fork_for_cscope[]
1594 INIT(= N_("E622: Could not fork for cscope"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001595# ifndef UNIX
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001596EXTERN char e_could_not_spawn_cscope_process[]
1597 INIT(= N_("E623: Could not spawn cscope process"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001598# endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001599#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001600#if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001601EXTERN char e_cant_open_file_str_3[]
1602 INIT(= N_("E624: Can't open file \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00001603#endif
1604#if defined(FEAT_CSCOPE) && !defined(UNIX)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001605EXTERN char e_cannot_open_cscope_database_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001606 INIT(= N_("E625: Cannot open cscope database: %s"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001607EXTERN char e_cannot_get_cscope_database_information[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001608 INIT(= N_("E626: Cannot get cscope database information"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001609#endif
1610#ifdef FEAT_NETBEANS_INTG
1611EXTERN char e_missing_colon_str[]
RestorerZd87dec02023-05-25 20:13:48 +01001612 INIT(= N_("E627: Missing colon: %s"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001613EXTERN char e_missing_bang_or_slash_in_str[]
RestorerZd87dec02023-05-25 20:13:48 +01001614 INIT(= N_("E628: Missing ! or / in: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001615#ifdef NBDEBUG
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001616EXTERN char e_bad_return_from_nb_do_cmd[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001617 INIT(= "E629: Bad return from nb_do_cmd");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001618#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001619#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001620#ifdef FEAT_JOB_CHANNEL
1621EXTERN char e_str_write_while_not_connected[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001622 INIT(= N_("E630: %s(): Write while not connected"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001623EXTERN char e_str_write_failed[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001624 INIT(= N_("E631: %s(): Write failed"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001625#endif
1626#ifdef FEAT_NETBEANS_INTG
1627EXTERN char e_invalid_buffer_identifier_in_getlength[]
RestorerZd87dec02023-05-25 20:13:48 +01001628 INIT(= N_("E632: Invalid buffer identifier in getLength"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001629EXTERN char e_invalid_buffer_identifier_in_gettext[]
RestorerZd87dec02023-05-25 20:13:48 +01001630 INIT(= N_("E633: Invalid buffer identifier in getText"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001631EXTERN char e_invalid_buffer_identifier_in_remove[]
RestorerZd87dec02023-05-25 20:13:48 +01001632 INIT(= N_("E634: Invalid buffer identifier in remove"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001633EXTERN char e_invalid_buffer_identifier_in_insert[]
RestorerZd87dec02023-05-25 20:13:48 +01001634 INIT(= N_("E635: Invalid buffer identifier in insert"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001635EXTERN char e_invalid_buffer_identifier_in_create[]
RestorerZd87dec02023-05-25 20:13:48 +01001636 INIT(= N_("E636: Invalid buffer identifier in create"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001637EXTERN char e_invalid_buffer_identifier_in_startdocumentlisten[]
RestorerZd87dec02023-05-25 20:13:48 +01001638 INIT(= N_("E637: Invalid buffer identifier in startDocumentListen"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001639EXTERN char e_invalid_buffer_identifier_in_stopdocumentlisten[]
RestorerZd87dec02023-05-25 20:13:48 +01001640 INIT(= N_("E638: Invalid buffer identifier in stopDocumentListen"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001641EXTERN char e_invalid_buffer_identifier_in_settitle[]
RestorerZd87dec02023-05-25 20:13:48 +01001642 INIT(= N_("E639: Invalid buffer identifier in setTitle"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001643EXTERN char e_invalid_buffer_identifier_in_initdone[]
RestorerZd87dec02023-05-25 20:13:48 +01001644 INIT(= N_("E640: Invalid buffer identifier in initDone"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001645EXTERN char e_invalid_buffer_identifier_in_setbuffernumber[]
RestorerZd87dec02023-05-25 20:13:48 +01001646 INIT(= N_("E641: Invalid buffer identifier in setBufferNumber"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001647EXTERN char e_file_str_not_found_in_setbuffernumber[]
RestorerZd87dec02023-05-25 20:13:48 +01001648 INIT(= N_("E642: File %s not found in setBufferNumber"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001649EXTERN char e_invalid_buffer_identifier_in_setfullname[]
RestorerZd87dec02023-05-25 20:13:48 +01001650 INIT(= N_("E643: Invalid buffer identifier in setFullName"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001651EXTERN char e_invalid_buffer_identifier_in_editfile[]
RestorerZd87dec02023-05-25 20:13:48 +01001652 INIT(= N_("E644: Invalid buffer identifier in editFile"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001653EXTERN char e_invalid_buffer_identifier_in_setvisible[]
RestorerZd87dec02023-05-25 20:13:48 +01001654 INIT(= N_("E645: Invalid buffer identifier in setVisible"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001655EXTERN char e_invalid_buffer_identifier_in_setmodified[]
RestorerZd87dec02023-05-25 20:13:48 +01001656 INIT(= N_("E646: Invalid buffer identifier in setModified"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001657EXTERN char e_invalid_buffer_identifier_in_setdot[]
RestorerZd87dec02023-05-25 20:13:48 +01001658 INIT(= N_("E647: Invalid buffer identifier in setDot"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001659EXTERN char e_invalid_buffer_identifier_in_close[]
RestorerZd87dec02023-05-25 20:13:48 +01001660 INIT(= N_("E648: Invalid buffer identifier in close"));
Christian Brabandt5c233432023-11-27 20:04:24 +01001661// E649 unused
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001662EXTERN char e_invalid_buffer_identifier_in_defineannotype[]
RestorerZd87dec02023-05-25 20:13:48 +01001663 INIT(= N_("E650: Invalid buffer identifier in defineAnnoType"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001664EXTERN char e_invalid_buffer_identifier_in_addanno[]
RestorerZd87dec02023-05-25 20:13:48 +01001665 INIT(= N_("E651: Invalid buffer identifier in addAnno"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001666EXTERN char e_invalid_buffer_identifier_in_getanno[]
RestorerZd87dec02023-05-25 20:13:48 +01001667 INIT(= N_("E652: Invalid buffer identifier in getAnno"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001668#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001669// E653 unused
1670EXTERN char e_missing_delimiter_after_search_pattern_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001671 INIT(= N_("E654: Missing delimiter after search pattern: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001672#ifdef FEAT_EVAL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001673EXTERN char e_too_many_symbolic_links_cycle[]
1674 INIT(= N_("E655: Too many symbolic links (cycle?)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001675#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001676#ifdef FEAT_NETBEANS_INTG
1677 // E656
1678EXTERN char e_netbeans_disallows_writes_of_unmodified_buffers[]
1679 INIT(= N_("NetBeans disallows writes of unmodified buffers"));
1680 // E657
1681EXTERN char e_partial_writes_disallowed_for_netbeans_buffers[]
1682 INIT(= N_("Partial writes disallowed for NetBeans buffers"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001683EXTERN char e_netbeans_connection_lost_for_buffer_nr[]
1684 INIT(= N_("E658: NetBeans connection lost for buffer %d"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001685#endif
1686#ifdef FEAT_PYTHON
1687EXTERN char e_cannot_invoke_python_recursively[]
1688 INIT(= N_("E659: Cannot invoke Python recursively"));
1689#endif
1690#ifdef FEAT_NETBEANS_INTG
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001691EXTERN char e_cannot_open_netbeans_connection_info_file[]
1692 INIT(= "E660: Cannot open NetBeans connection info file");
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001693#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001694#ifdef FEAT_MULTI_LANG
1695EXTERN char e_sorry_no_str_help_for_str[]
1696 INIT(= N_("E661: Sorry, no '%s' help for %s"));
1697#endif
1698EXTERN char e_at_start_of_changelist[]
1699 INIT(= N_("E662: At start of changelist"));
1700EXTERN char e_at_end_of_changelist[]
1701 INIT(= N_("E663: At end of changelist"));
1702EXTERN char e_changelist_is_empty[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001703 INIT(= N_("E664: Changelist is empty"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001704#ifdef FEAT_GUI
1705EXTERN char e_cannot_start_gui_no_valid_font_found[]
1706 INIT(= N_("E665: Cannot start GUI, no valid font found"));
1707#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001708#ifdef FEAT_EVAL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001709EXTERN char e_compiler_not_supported_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001710 INIT(= N_("E666: Compiler not supported: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001711#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001712#ifdef HAVE_FSYNC
1713EXTERN char e_fsync_failed[]
1714 INIT(= N_("E667: Fsync failed"));
1715#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001716#ifdef FEAT_NETBEANS_INTG
1717EXTERN char e_wrong_access_mode_for_netbeans_connection_info_file_str[]
1718 INIT(= N_("E668: Wrong access mode for NetBeans connection info file: \"%s\""));
1719#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001720EXTERN char e_unprintable_character_in_group_name[]
1721 INIT(= N_("E669: Unprintable character in group name"));
1722EXTERN char e_mix_of_help_file_encodings_within_language_str[]
1723 INIT(= N_("E670: Mix of help file encodings within a language: %s"));
1724#ifdef FEAT_GUI_MSWIN
1725EXTERN char e_cannot_find_window_title_str[]
1726 INIT(= N_("E671: Cannot find window title \"%s\""));
1727EXTERN char e_unable_to_open_window_inside_mdi_application[]
1728 INIT(= N_("E672: Unable to open window inside MDI application"));
1729#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001730#if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT)
Bram Moolenaara6f79292022-01-04 21:30:47 +00001731EXTERN char e_incompatible_multi_byte_encoding_and_character_set[]
1732 INIT(= N_("E673: Incompatible multi-byte encoding and character set"));
1733EXTERN char e_printmbcharset_cannot_be_empty_with_multi_byte_encoding[]
1734 INIT(= N_("E674: printmbcharset cannot be empty with multi-byte encoding."));
1735EXTERN char e_no_default_font_specified_for_multi_byte_printing[]
1736 INIT(= N_("E675: No default font specified for multi-byte printing."));
Dominique Pellef85a4242022-01-09 12:49:31 +00001737#endif
Bram Moolenaar500a1f92022-09-20 11:49:10 +01001738EXTERN char e_no_matching_autocommands_for_buftype_str_buffer[]
1739 INIT(= N_("E676: No matching autocommands for buftype=%s buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001740#ifdef FEAT_SYN_HL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001741EXTERN char e_error_writing_temp_file[]
1742 INIT(= N_("E677: Error writing temp file"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001743#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001744EXTERN char e_invalid_character_after_str_2[]
1745 INIT(= N_("E678: Invalid character after %s%%[dxouU]"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001746#ifdef FEAT_SYN_HL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001747EXTERN char e_recursive_loop_loading_syncolor_vim[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001748 INIT(= N_("E679: Recursive loop loading syncolor.vim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001749#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001750EXTERN char e_buffer_nr_invalid_buffer_number[]
1751 INIT(= N_("E680: <buffer=%d>: invalid buffer number"));
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +01001752#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL)
Bram Moolenaara6f79292022-01-04 21:30:47 +00001753EXTERN char e_buffer_is_not_loaded[]
1754 INIT(= N_("E681: Buffer is not loaded"));
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +01001755#endif
1756#ifdef FEAT_QUICKFIX
Bram Moolenaar74409f62022-01-01 15:58:22 +00001757EXTERN char e_invalid_search_pattern_or_delimiter[]
1758 INIT(= N_("E682: Invalid search pattern or delimiter"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001759EXTERN char e_file_name_missing_or_invalid_pattern[]
1760 INIT(= N_("E683: File name missing or invalid pattern"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001761#endif
Bram Moolenaar096ca732022-01-01 00:55:28 +00001762#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001763EXTERN char e_list_index_out_of_range_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001764 INIT(= N_("E684: List index out of range: %ld"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001765#endif
1766EXTERN char e_internal_error_str[]
1767 INIT(= N_("E685: Internal error: %s"));
1768#ifdef FEAT_EVAL
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001769EXTERN char e_argument_of_str_must_be_list[]
1770 INIT(= N_("E686: Argument of %s must be a List"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001771EXTERN char e_less_targets_than_list_items[]
1772 INIT(= N_("E687: Less targets than List items"));
1773EXTERN char e_more_targets_than_list_items[]
1774 INIT(= N_("E688: More targets than List items"));
Ernie Raelf8da3242023-10-11 21:22:12 +02001775EXTERN char e_index_not_allowed_after_str_str[]
1776 INIT(= N_("E689: Index not allowed after a %s: %s"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001777EXTERN char e_missing_in_after_for[]
1778 INIT(= N_("E690: Missing \"in\" after :for"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001779EXTERN char e_can_only_compare_list_with_list[]
1780 INIT(= N_("E691: Can only compare List with List"));
1781EXTERN char e_invalid_operation_for_list[]
1782 INIT(= N_("E692: Invalid operation for List"));
Ernie Rael2025af12023-12-12 16:58:00 +01001783EXTERN char e_class_or_typealias_required_for_argument_nr[]
1784 INIT(= N_("E693: Class or class typealias required for argument %d"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001785EXTERN char e_invalid_operation_for_funcrefs[]
1786 INIT(= N_("E694: Invalid operation for Funcrefs"));
Bram Moolenaarf47c5a82021-12-19 15:17:21 +00001787EXTERN char e_cannot_index_a_funcref[]
1788 INIT(= N_("E695: Cannot index a Funcref"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001789EXTERN char e_missing_comma_in_list_str[]
1790 INIT(= N_("E696: Missing comma in List: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001791EXTERN char e_missing_end_of_list_rsb_str[]
1792 INIT(= N_("E697: Missing end of List ']': %s"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001793EXTERN char e_variable_nested_too_deep_for_making_copy[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001794 INIT(= N_("E698: Variable nested too deep for making a copy"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001795EXTERN char e_too_many_arguments[]
1796 INIT(= N_("E699: Too many arguments"));
1797EXTERN char e_unknown_function_str_2[]
1798 INIT(= N_("E700: Unknown function: %s"));
1799EXTERN char e_invalid_type_for_len[]
1800 INIT(= N_("E701: Invalid type for len()"));
1801EXTERN char e_sort_compare_function_failed[]
1802 INIT(= N_("E702: Sort compare function failed"));
1803EXTERN char e_using_funcref_as_number[]
1804 INIT(= N_("E703: Using a Funcref as a Number"));
1805EXTERN char e_funcref_variable_name_must_start_with_capital_str[]
1806 INIT(= N_("E704: Funcref variable name must start with a capital: %s"));
1807EXTERN char e_variable_name_conflicts_with_existing_function_str[]
1808 INIT(= N_("E705: Variable name conflicts with existing function: %s"));
zeertzjq4f389e72023-08-17 22:10:40 +02001809EXTERN char e_argument_of_str_must_be_list_string_or_dictionary[]
1810 INIT(= N_("E706: Argument of %s must be a List, String or Dictionary"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001811EXTERN char e_function_name_conflicts_with_variable_str[]
1812 INIT(= N_("E707: Function name conflicts with variable: %s"));
1813EXTERN char e_slice_must_come_last[]
1814 INIT(= N_("E708: [:] must come last"));
1815EXTERN char e_slice_requires_list_or_blob_value[]
1816 INIT(= N_("E709: [:] requires a List or Blob value"));
Bram Moolenaar792f7862020-11-23 08:31:18 +01001817EXTERN char e_list_value_has_more_items_than_targets[]
1818 INIT(= N_("E710: List value has more items than targets"));
1819EXTERN char e_list_value_does_not_have_enough_items[]
1820 INIT(= N_("E711: List value does not have enough items"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001821EXTERN char e_argument_of_str_must_be_list_or_dictionary[]
1822 INIT(= N_("E712: Argument of %s must be a List or Dictionary"));
1823EXTERN char e_cannot_use_empty_key_for_dictionary[]
1824 INIT(= N_("E713: Cannot use empty key for Dictionary"));
1825EXTERN char e_list_required[]
1826 INIT(= N_("E714: List required"));
1827EXTERN char e_dictionary_required[]
1828 INIT(= N_("E715: Dictionary required"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001829EXTERN char e_key_not_present_in_dictionary_str[]
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001830 INIT(= N_("E716: Key not present in Dictionary: \"%s\""));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001831EXTERN char e_dictionary_entry_already_exists[]
1832 INIT(= N_("E717: Dictionary entry already exists"));
1833EXTERN char e_funcref_required[]
1834 INIT(= N_("E718: Funcref required"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02001835EXTERN char e_cannot_slice_dictionary[]
Bram Moolenaar77072282020-09-16 17:55:40 +02001836 INIT(= N_("E719: Cannot slice a Dictionary"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001837EXTERN char e_missing_colon_in_dictionary_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001838 INIT(= N_("E720: Missing colon in Dictionary: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001839EXTERN char e_duplicate_key_in_dictionary_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001840 INIT(= N_("E721: Duplicate key in Dictionary: \"%s\""));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001841EXTERN char e_missing_comma_in_dictionary_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001842 INIT(= N_("E722: Missing comma in Dictionary: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001843EXTERN char e_missing_dict_end_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001844 INIT(= N_("E723: Missing end of Dictionary '}': %s"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001845EXTERN char e_variable_nested_too_deep_for_displaying[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001846 INIT(= N_("E724: Variable nested too deep for displaying"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001847EXTERN char e_calling_dict_function_without_dictionary_str[]
1848 INIT(= N_("E725: Calling dict function without Dictionary: %s"));
1849EXTERN char e_stride_is_zero[]
1850 INIT(= N_("E726: Stride is zero"));
1851EXTERN char e_start_past_end[]
1852 INIT(= N_("E727: Start past end"));
1853EXTERN char e_using_dictionary_as_number[]
1854 INIT(= N_("E728: Using a Dictionary as a Number"));
1855EXTERN char e_using_funcref_as_string[]
1856 INIT(= N_("E729: Using a Funcref as a String"));
1857EXTERN char e_using_list_as_string[]
1858 INIT(= N_("E730: Using a List as a String"));
1859EXTERN char e_using_dictionary_as_string[]
1860 INIT(= N_("E731: Using a Dictionary as a String"));
1861EXTERN char e_using_endfor_with_while[]
1862 INIT(= N_("E732: Using :endfor with :while"));
1863EXTERN char e_using_endwhile_with_for[]
1864 INIT(= N_("E733: Using :endwhile with :for"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001865EXTERN char e_wrong_variable_type_for_str_equal[]
1866 INIT(= N_("E734: Wrong variable type for %s="));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001867EXTERN char e_can_only_compare_dictionary_with_dictionary[]
1868 INIT(= N_("E735: Can only compare Dictionary with Dictionary"));
1869EXTERN char e_invalid_operation_for_dictionary[]
1870 INIT(= N_("E736: Invalid operation for Dictionary"));
1871EXTERN char e_key_already_exists_str[]
1872 INIT(= N_("E737: Key already exists: %s"));
1873EXTERN char e_cant_list_variables_for_str[]
1874 INIT(= N_("E738: Can't list variables for %s"));
1875EXTERN char e_cannot_create_directory_str[]
1876 INIT(= N_("E739: Cannot create directory: %s"));
1877EXTERN char e_too_many_arguments_for_function_str_2[]
1878 INIT(= N_("E740: Too many arguments for function %s"));
Bram Moolenaar71b76852021-12-17 20:15:38 +00001879EXTERN char e_value_is_locked[]
1880 INIT(= N_("E741: Value is locked"));
1881EXTERN char e_value_is_locked_str[]
1882 INIT(= N_("E741: Value is locked: %s"));
1883EXTERN char e_cannot_change_value[]
1884 INIT(= N_("E742: Cannot change value"));
1885EXTERN char e_cannot_change_value_of_str[]
1886 INIT(= N_("E742: Cannot change value of %s"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001887EXTERN char e_variable_nested_too_deep_for_unlock[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001888 INIT(= N_("E743: Variable nested too deep for (un)lock"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001889#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001890#ifdef FEAT_NETBEANS_INTG
1891EXTERN char e_netbeans_does_not_allow_changes_in_read_only_files[]
1892 INIT(= N_("E744: NetBeans does not allow changes in read-only files"));
1893#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001894#ifdef FEAT_EVAL
1895EXTERN char e_using_list_as_number[]
1896 INIT(= N_("E745: Using a List as a Number"));
1897EXTERN char e_function_name_does_not_match_script_file_name_str[]
1898 INIT(= N_("E746: Function name does not match script file name: %s"));
1899#endif
1900EXTERN char e_cannot_change_directory_buffer_is_modified_add_bang_to_override[]
1901 INIT(= N_("E747: Cannot change directory, buffer is modified (add ! to override)"));
1902EXTERN char e_no_previously_used_register[]
1903 INIT(= N_("E748: No previously used register"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001904EXTERN char e_empty_buffer[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001905 INIT(= N_("E749: Empty buffer"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001906#ifdef FEAT_PROFILE
1907EXTERN char e_first_use_profile_start_fname[]
1908 INIT(= N_("E750: First use \":profile start {fname}\""));
1909#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001910#ifdef FEAT_SPELL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001911EXTERN char e_output_file_name_must_not_have_region_name[]
1912 INIT(= N_("E751: Output file name must not have region name"));
1913EXTERN char e_no_previous_spell_replacement[]
1914 INIT(= N_("E752: No previous spell replacement"));
1915EXTERN char e_not_found_str[]
1916 INIT(= N_("E753: Not found: %s"));
1917EXTERN char e_only_up_to_nr_regions_supported[]
1918 INIT(= N_("E754: Only up to %d regions supported"));
1919EXTERN char e_invalid_region_in_str[]
1920 INIT(= N_("E755: Invalid region in %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001921EXTERN char e_spell_checking_is_not_possible[]
1922 INIT(= N_("E756: Spell checking is not possible"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001923EXTERN char e_this_does_not_look_like_spell_file[]
1924 INIT(= N_("E757: This does not look like a spell file"));
1925EXTERN char e_truncated_spell_file[]
1926 INIT(= N_("E758: Truncated spell file"));
1927EXTERN char e_format_error_in_spell_file[]
1928 INIT(= N_("E759: Format error in spell file"));
1929EXTERN char e_no_word_count_in_str[]
1930 INIT(= N_("E760: No word count in %s"));
1931EXTERN char e_format_error_in_affix_file_fol_low_or_upp[]
1932 INIT(= N_("E761: Format error in affix file FOL, LOW or UPP"));
1933EXTERN char e_character_in_fol_low_or_upp_is_out_of_range[]
1934 INIT(= N_("E762: Character in FOL, LOW or UPP is out of range"));
1935EXTERN char e_word_characters_differ_between_spell_files[]
1936 INIT(= N_("E763: Word characters differ between spell files"));
Bram Moolenaare60b3c42022-01-05 20:40:34 +00001937#endif
Martin Tournoijba43e762022-10-13 22:12:15 +01001938#if defined(FEAT_SYN_HL) || defined(FEAT_COMPL_FUNC) || defined(FEAT_SPELL)
Bram Moolenaar74409f62022-01-01 15:58:22 +00001939EXTERN char e_option_str_is_not_set[]
1940 INIT(= N_("E764: Option '%s' is not set"));
1941#endif
Bram Moolenaare60b3c42022-01-05 20:40:34 +00001942#ifdef FEAT_SPELL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001943EXTERN char e_spellfile_does_not_have_nr_entries[]
1944 INIT(= N_("E765: 'spellfile' does not have %d entries"));
1945#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001946#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001947EXTERN char e_insufficient_arguments_for_printf[]
1948 INIT(= N_("E766: Insufficient arguments for printf()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001949#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001950EXTERN char e_too_many_arguments_to_printf[]
1951 INIT(= N_("E767: Too many arguments for printf()"));
1952EXTERN char e_swap_file_exists_str_silent_overrides[]
1953 INIT(= N_("E768: Swap file exists: %s (:silent! overrides)"));
1954EXTERN char e_missing_rsb_after_str_lsb[]
1955 INIT(= N_("E769: Missing ] after %s["));
1956#ifdef FEAT_SPELL
1957EXTERN char e_unsupported_section_in_spell_file[]
1958 INIT(= N_("E770: Unsupported section in spell file"));
1959EXTERN char e_old_spell_file_needs_to_be_updated[]
1960 INIT(= N_("E771: Old spell file, needs to be updated"));
1961EXTERN char e_spell_file_is_for_newer_version_of_vim[]
1962 INIT(= N_("E772: Spell file is for newer version of Vim"));
1963#endif
1964EXTERN char e_symlink_loop_for_str[]
1965 INIT(= N_("E773: Symlink loop for \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00001966#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001967EXTERN char e_operatorfunc_is_empty[]
1968 INIT(= N_("E774: 'operatorfunc' is empty"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001969#else
Bram Moolenaar677658a2022-01-05 16:09:06 +00001970EXTERN char e_eval_feature_not_available[]
1971 INIT(= N_("E775: Eval feature not available"));
1972#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001973#ifdef FEAT_QUICKFIX
1974EXTERN char e_no_location_list[]
1975 INIT(= N_("E776: No location list"));
Bram Moolenaar968443e2022-05-27 21:16:34 +01001976#endif
1977#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001978EXTERN char e_string_or_list_expected[]
1979 INIT(= N_("E777: String or List expected"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001980#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001981#ifdef FEAT_SPELL
1982EXTERN char e_this_does_not_look_like_sug_file_str[]
1983 INIT(= N_("E778: This does not look like a .sug file: %s"));
1984EXTERN char e_old_sug_file_needs_to_be_updated_str[]
1985 INIT(= N_("E779: Old .sug file, needs to be updated: %s"));
1986EXTERN char e_sug_file_is_for_newer_version_of_vim_str[]
1987 INIT(= N_("E780: .sug file is for newer version of Vim: %s"));
1988EXTERN char e_sug_file_doesnt_match_spl_file_str[]
1989 INIT(= N_("E781: .sug file doesn't match .spl file: %s"));
1990EXTERN char e_error_while_reading_sug_file_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001991 INIT(= N_("E782: Error while reading .sug file: %s"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001992EXTERN char e_duplicate_char_in_map_entry[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001993 INIT(= N_("E783: Duplicate char in MAP entry"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001994#endif
1995EXTERN char e_cannot_close_last_tab_page[]
1996 INIT(= N_("E784: Cannot close last tab page"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001997#ifdef FEAT_EVAL
1998# ifdef FEAT_COMPL_FUNC
Bram Moolenaar677658a2022-01-05 16:09:06 +00001999EXTERN char e_complete_can_only_be_used_in_insert_mode[]
2000 INIT(= N_("E785: complete() can only be used in Insert mode"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002001# endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002002EXTERN char e_range_not_allowed[]
2003 INIT(= N_("E786: Range not allowed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002004#endif
2005#ifdef FEAT_DIFF
Bram Moolenaar677658a2022-01-05 16:09:06 +00002006EXTERN char e_buffer_changed_unexpectedly[]
2007 INIT(= N_("E787: Buffer changed unexpectedly"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002008#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002009EXTERN char e_not_allowed_to_edit_another_buffer_now[]
2010 INIT(= N_("E788: Not allowed to edit another buffer now"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002011#ifdef FEAT_SYN_HL
Bram Moolenaar677658a2022-01-05 16:09:06 +00002012EXTERN char e_error_missing_rsb_str[]
2013 INIT(= N_("E789: Missing ']': %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002014#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002015EXTERN char e_undojoin_is_not_allowed_after_undo[]
2016 INIT(= N_("E790: undojoin is not allowed after undo"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002017#ifdef FEAT_KEYMAP
Bram Moolenaar677658a2022-01-05 16:09:06 +00002018EXTERN char e_empty_keymap_entry[]
2019 INIT(= N_("E791: Empty keymap entry"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002020#endif
2021#ifdef FEAT_MENU
Bram Moolenaar677658a2022-01-05 16:09:06 +00002022EXTERN char e_empty_menu_name[]
2023 INIT(= N_("E792: Empty menu name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002024#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002025#ifdef FEAT_DIFF
2026EXTERN char e_no_other_buffer_in_diff_mode_is_modifiable[]
2027 INIT(= N_("E793: No other buffer in diff mode is modifiable"));
2028#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002029#ifdef FEAT_EVAL
Bram Moolenaar71b76852021-12-17 20:15:38 +00002030EXTERN char e_cannot_set_variable_in_sandbox[]
2031 INIT(= N_("E794: Cannot set variable in the sandbox"));
2032EXTERN char e_cannot_set_variable_in_sandbox_str[]
2033 INIT(= N_("E794: Cannot set variable in the sandbox: \"%s\""));
2034EXTERN char e_cannot_delete_variable[]
2035 INIT(= N_("E795: Cannot delete variable"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00002036EXTERN char e_cannot_delete_variable_str[]
2037 INIT(= N_("E795: Cannot delete variable %s"));
K.Takata2da11a42022-09-10 13:03:12 +01002038#endif
2039#ifdef MSWIN
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002040 // E796
2041EXTERN char e_writing_to_device_disabled_with_opendevice_option[]
2042 INIT(= N_("writing to device disabled with 'opendevice' option"));
zeertzjq09f77232021-10-20 17:21:24 +01002043#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002044#ifdef FEAT_SPELL
2045EXTERN char e_spellfilemising_autocommand_deleted_buffer[]
2046 INIT(= N_("E797: SpellFileMissing autocommand deleted buffer"));
2047#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002048#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar677658a2022-01-05 16:09:06 +00002049EXTERN char e_id_is_reserved_for_match_nr[]
2050 INIT(= N_("E798: ID is reserved for \":match\": %d"));
Bram Moolenaarbb8cac52022-01-05 18:16:53 +00002051EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_1[]
2052 INIT(= N_("E799: Invalid ID: %d (must be greater than or equal to 1)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002053#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002054#ifndef FEAT_ARABIC
2055EXTERN char e_arabic_cannot_be_used_not_enabled_at_compile_time[]
2056 INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n"));
2057#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002058#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002059EXTERN char e_id_already_taken_nr[]
2060 INIT(= N_("E801: ID already taken: %d"));
Bram Moolenaarbb8cac52022-01-05 18:16:53 +00002061EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_2[]
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002062 INIT(= N_("E802: Invalid ID: %d (must be greater than or equal to 1)"));
2063EXTERN char e_id_not_found_nr[]
2064 INIT(= N_("E803: ID not found: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002065#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002066#ifdef FEAT_EVAL
2067EXTERN char e_cannot_use_percent_with_float[]
K.Takatab5988e32022-01-16 11:25:26 +00002068 // xgettext:no-c-format
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002069 INIT(= N_("E804: Cannot use '%' with Float"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002070EXTERN char e_using_float_as_number[]
2071 INIT(= N_("E805: Using a Float as a Number"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002072EXTERN char e_using_float_as_string[]
Bram Moolenaardde77a72022-08-23 21:41:15 +01002073 INIT(= N_("E806: Using a Float as a String"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002074EXTERN char e_expected_float_argument_for_printf[]
2075 INIT(= N_("E807: Expected Float argument for printf()"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002076EXTERN char e_number_or_float_required[]
2077 INIT(= N_("E808: Number or Float required"));
2078#endif
2079#ifndef FEAT_EVAL
2080EXTERN char e_hashsmall_is_not_available_without_the_eval_feature[]
2081 INIT(= N_("E809: #< is not available without the +eval feature"));
2082#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002083#ifdef FEAT_DIFF
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002084EXTERN char e_cannot_read_or_write_temp_files[]
2085 INIT(= N_("E810: Cannot read or write temp files"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002086#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002087EXTERN char e_not_allowed_to_change_buffer_information_now[]
2088 INIT(= N_("E811: Not allowed to change buffer information now"));
2089EXTERN char e_autocommands_changed_buffer_or_buffer_name[]
2090 INIT(= N_("E812: Autocommands changed buffer or buffer name"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002091EXTERN char e_cannot_close_autocmd_or_popup_window[]
2092 INIT(= N_("E813: Cannot close autocmd or popup window"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002093EXTERN char e_cannot_close_window_only_autocmd_window_would_remain[]
2094 INIT(= N_("E814: Cannot close window, only autocmd window would remain"));
2095#ifdef FEAT_MZSCHEME
2096EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_libraries_could_not_be_loaded[]
2097 INIT(= N_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded."));
2098#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002099#ifdef FEAT_DIFF
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002100EXTERN char e_cannot_read_patch_output[]
2101 INIT(= N_("E816: Cannot read patch output"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002102#endif
2103#ifdef FEAT_CRYPT
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002104EXTERN char e_blowfish_big_little_endian_use_wrong[]
2105 INIT(= N_("E817: Blowfish big/little endian use wrong"));
2106EXTERN char e_sha256_test_failed[]
2107 INIT(= N_("E818: sha256 test failed"));
2108EXTERN char e_blowfish_test_failed[]
2109 INIT(= N_("E819: Blowfish test failed"));
2110EXTERN char e_sizeof_uint32_isnot_four[]
2111 INIT(= N_("E820: sizeof(uint32_t) != 4"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002112EXTERN char e_file_is_encrypted_with_unknown_method[]
2113 INIT(= N_("E821: File is encrypted with unknown method"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002114#endif
2115#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002116EXTERN char e_cannot_open_undo_file_for_reading_str[]
2117 INIT(= N_("E822: Cannot open undo file for reading: %s"));
2118EXTERN char e_not_an_undo_file_str[]
2119 INIT(= N_("E823: Not an undo file: %s"));
2120EXTERN char e_incompatible_undo_file_str[]
2121 INIT(= N_("E824: Incompatible undo file: %s"));
2122EXTERN char e_corrupted_undo_file_str_str[]
2123 INIT(= N_("E825: Corrupted undo file (%s): %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002124# ifdef FEAT_CRYPT
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002125EXTERN char e_undo_file_decryption_failed[]
2126 INIT(= N_("E826: Undo file decryption failed: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002127# else
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002128EXTERN char e_undo_file_is_encrypted_str[]
2129 INIT(= N_("E827: Undo file is encrypted: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002130# endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002131EXTERN char e_cannot_open_undo_file_for_writing_str[]
2132 INIT(= N_("E828: Cannot open undo file for writing: %s"));
2133EXTERN char e_write_error_in_undo_file_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002134 INIT(= N_("E829: Write error in undo file: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002135#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002136EXTERN char e_undo_number_nr_not_found[]
2137 INIT(= N_("E830: Undo number %ld not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002138#ifdef FEAT_CRYPT
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002139EXTERN char e_bf_key_init_called_with_empty_password[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002140 INIT(= "E831: bf_key_init() called with empty password");
Dominique Pellef85a4242022-01-09 12:49:31 +00002141# ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002142EXTERN char e_non_encrypted_file_has_encrypted_undo_file_str[]
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002143 INIT(= N_("E832: Non-encrypted file has encrypted undo file: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002144# endif
2145#else
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002146EXTERN char e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption[]
2147 INIT(= N_("E833: %s is encrypted and this version of Vim does not support encryption"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002148#endif
zeertzjq94358a12021-10-20 11:01:15 +01002149EXTERN char e_conflicts_with_value_of_listchars[]
2150 INIT(= N_("E834: Conflicts with value of 'listchars'"));
2151EXTERN char e_conflicts_with_value_of_fillchars[]
2152 INIT(= N_("E835: Conflicts with value of 'fillchars'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002153#ifdef DYNAMIC_PYTHON
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002154EXTERN char e_this_vim_cannot_execute_python_after_using_py3[]
2155 INIT(= N_("E836: This Vim cannot execute :python after using :py3"));
2156EXTERN char e_this_vim_cannot_execute_py3_after_using_python[]
2157 INIT(= N_("E837: This Vim cannot execute :py3 after using :python"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002158#endif
2159#if defined(FEAT_NETBEANS_INTG) && defined(FEAT_GUI)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00002160EXTERN char e_netbeans_is_not_supported_with_this_GUI[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002161 INIT(= N_("E838: NetBeans is not supported with this GUI"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00002162#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002163// E839 unused
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002164# ifdef FEAT_COMPL_FUNC
2165EXTERN char e_complete_function_deleted_text[]
2166 INIT(= N_("E840: Completion function deleted text"));
2167# endif
2168EXTERN char e_reserved_name_cannot_be_used_for_user_defined_command[]
2169 INIT(= N_("E841: Reserved name, cannot be used for user defined command"));
2170EXTERN char e_no_line_number_to_use_for_slnum[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002171 INIT(= N_("E842: No line number to use for \"<slnum>\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002172#ifdef FEAT_CRYPT
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002173EXTERN char e_error_while_updating_swap_file_crypt[]
2174 INIT(= N_("E843: Error while updating swap file crypt"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002175#endif
2176#ifdef FEAT_CONCEAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002177EXTERN char e_invalid_cchar_value[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002178 INIT(= N_("E844: Invalid cchar value"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002179#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002180#ifdef FEAT_SPELL
2181EXTERN char e_insufficient_memory_word_list_will_be_incomplete[]
2182 INIT(= N_("E845: Insufficient memory, word list will be incomplete"));
2183#endif
2184EXTERN char e_key_code_not_set[]
2185 INIT(= N_("E846: Key code not set"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002186#ifdef FEAT_SYN_HL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002187EXTERN char e_too_many_syntax_includes[]
2188 INIT(= N_("E847: Too many syntax includes"));
2189EXTERN char e_too_many_syntax_clusters[]
2190 INIT(= N_("E848: Too many syntax clusters"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002191#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002192EXTERN char e_too_many_highlight_and_syntax_groups[]
2193 INIT(= N_("E849: Too many highlight and syntax groups"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002194#ifndef FEAT_CLIPBOARD
2195EXTERN char e_invalid_register_name[]
2196 INIT(= N_("E850: Invalid register name"));
2197#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002198#ifdef FEAT_GUI
2199EXTERN char e_failed_to_create_new_process_for_GUI[]
2200 INIT(= N_("E851: Failed to create a new process for the GUI"));
2201EXTERN char e_the_child_process_failed_to_start_GUI[]
2202 INIT(= N_("E852: The child process failed to start the GUI"));
2203#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002204#ifdef FEAT_EVAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002205EXTERN char e_duplicate_argument_name_str[]
2206 INIT(= N_("E853: Duplicate argument name: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002207#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002208EXTERN char e_path_too_long_for_completion[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002209 INIT(= N_("E854: Path too long for completion"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002210EXTERN char e_autocommands_caused_command_to_abort[]
2211 INIT(= N_("E855: Autocommands caused command to abort"));
zeertzjq09f77232021-10-20 17:21:24 +01002212#ifdef FEAT_EVAL
Bram Moolenaar44d66522020-09-06 22:26:57 +02002213EXTERN char e_assert_fails_second_arg[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002214 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 +00002215EXTERN char e_dictionary_key_str_required[]
2216 INIT(= N_("E857: Dictionary key \"%s\" required"));
2217#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002218#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2219EXTERN char e_eval_did_not_return_valid_python_object[]
2220 INIT(= N_("E858: Eval did not return a valid python object"));
2221EXTERN char e_failed_to_convert_returned_python_object_to_vim_value[]
2222 INIT(= N_("E859: Failed to convert returned python object to a Vim value"));
2223#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002224#ifdef FEAT_PROP_POPUP
Ben Jacksona7704222022-08-20 20:54:51 +01002225EXTERN char e_need_id_and_type_or_types_with_both[]
2226 INIT(= N_("E860: Need 'id' and 'type' or 'types' with 'both'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002227# ifdef FEAT_TERMINAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002228EXTERN char e_cannot_open_second_popup_with_terminal[]
2229 INIT(= N_("E861: Cannot open a second popup with a terminal"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002230# endif
2231#endif
2232#ifdef FEAT_EVAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002233EXTERN char e_cannot_use_g_here[]
2234 INIT(= N_("E862: Cannot use g: here"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002235#endif
2236#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002237EXTERN char e_not_allowed_for_terminal_in_popup_window[]
2238 INIT(= N_("E863: Not allowed for a terminal in a popup window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002239#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002240EXTERN char e_percent_hash_can_only_be_followed_by_zero_one_two_automatic_engine_will_be_used[]
K.Takatab5988e32022-01-16 11:25:26 +00002241 // xgettext:no-c-format
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002242 INIT(= N_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used"));
2243EXTERN char e_nfa_regexp_end_encountered_prematurely[]
2244 INIT(= N_("E865: (NFA) Regexp end encountered prematurely"));
2245EXTERN char e_nfa_regexp_misplaced_chr[]
2246 INIT(= N_("E866: (NFA regexp) Misplaced %c"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002247EXTERN char e_nfa_regexp_unknown_operator_z_chr[]
2248 INIT(= N_("E867: (NFA regexp) Unknown operator '\\z%c'"));
2249EXTERN char e_nfa_regexp_unknown_operator_percent_chr[]
2250 INIT(= N_("E867: (NFA regexp) Unknown operator '\\%%%c'"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002251EXTERN char e_error_building_nfa_with_equivalence_class[]
2252 INIT(= N_("E868: Error building NFA with equivalence class!"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002253EXTERN char e_nfa_regexp_unknown_operator_at_chr[]
2254 INIT(= N_("E869: (NFA regexp) Unknown operator '\\@%c'"));
2255EXTERN char e_nfa_regexp_error_reading_repetition_limits[]
2256 INIT(= N_("E870: (NFA regexp) Error reading repetition limits"));
2257EXTERN char e_nfa_regexp_cant_have_multi_follow_multi[]
2258 INIT(= N_("E871: (NFA regexp) Can't have a multi follow a multi"));
2259EXTERN char e_nfa_regexp_too_many_parens[]
2260 INIT(= N_("E872: (NFA regexp) Too many '('"));
2261EXTERN char e_nfa_regexp_proper_termination_error[]
2262 INIT(= N_("E873: (NFA regexp) proper termination error"));
2263EXTERN char e_nfa_regexp_could_not_pop_stack[]
2264 INIT(= N_("E874: (NFA regexp) Could not pop the stack!"));
2265EXTERN char e_nfa_regexp_while_converting_from_postfix_to_nfa_too_many_stats_left_on_stack[]
2266 INIT(= N_("E875: (NFA regexp) (While converting from postfix to NFA), too many states left on stack"));
2267EXTERN char e_nfa_regexp_not_enough_space_to_store_whole_nfa[]
2268 INIT(= N_("E876: (NFA regexp) Not enough space to store the whole NFA"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002269EXTERN char e_nfa_regexp_invalid_character_class_nr[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002270 INIT(= "E877: (NFA regexp) Invalid character class: %d");
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002271EXTERN char e_nfa_regexp_could_not_allocate_memory_for_branch_traversal[]
2272 INIT(= N_("E878: (NFA regexp) Could not allocate memory for branch traversal!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002273#ifdef FEAT_SYN_HL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002274EXTERN char e_nfa_regexp_too_many_z[]
2275 INIT(= N_("E879: (NFA regexp) Too many \\z("));
Dominique Pellef85a4242022-01-09 12:49:31 +00002276#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002277#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2278EXTERN char e_cant_handle_systemexit_of_python_exception_in_vim[]
2279 INIT(= N_("E880: Can't handle SystemExit of python exception in vim"));
2280#endif
2281EXTERN char e_line_count_changed_unexpectedly[]
2282 INIT(= N_("E881: Line count changed unexpectedly"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002283#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002284EXTERN char e_uniq_compare_function_failed[]
2285 INIT(= N_("E882: Uniq compare function failed"));
2286EXTERN char e_search_pattern_and_expression_register_may_not_contain_two_or_more_lines[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002287 INIT(= N_("E883: Search pattern and expression register may not contain two or more lines"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002288EXTERN char e_function_name_cannot_contain_colon_str[]
2289 INIT(= N_("E884: Function name cannot contain a colon: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002290#endif
2291#ifdef FEAT_SIGNS
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002292EXTERN char e_not_possible_to_change_sign_str[]
2293 INIT(= N_("E885: Not possible to change sign %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002294#endif
2295#ifdef FEAT_VIMINFO
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002296EXTERN char e_cant_rename_viminfo_file_to_str[]
2297 INIT(= N_("E886: Can't rename viminfo file to %s!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002298#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00002299#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002300EXTERN char e_sorry_this_command_is_disabled_python_side_module_could_not_be_loaded[]
2301 INIT(= N_("E887: Sorry, this command is disabled, the Python's site module could not be loaded."));
Dominique Pellee764d1b2023-03-12 21:20:59 +00002302#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002303EXTERN char e_nfa_regexp_cannot_repeat_str[]
2304 INIT(= N_("E888: (NFA regexp) cannot repeat %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002305#ifdef FEAT_PROP_POPUP
2306EXTERN char e_number_required[]
2307 INIT(= N_("E889: Number required"));
2308#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002309#ifdef FEAT_SYN_HL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002310EXTERN char e_trailing_char_after_rsb_str_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002311 INIT(= N_("E890: Trailing char after ']': %s]%s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002312#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00002313#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002314EXTERN char e_using_funcref_as_float[]
2315 INIT(= N_("E891: Using a Funcref as a Float"));
2316EXTERN char e_using_string_as_float[]
2317 INIT(= N_("E892: Using a String as a Float"));
2318EXTERN char e_using_list_as_float[]
2319 INIT(= N_("E893: Using a List as a Float"));
2320EXTERN char e_using_dictionary_as_float[]
2321 INIT(= N_("E894: Using a Dictionary as a Float"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00002322#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002323#ifdef FEAT_MZSCHEME
2324EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_racket_base_module_could_not_be_loaded[]
2325 INIT(= N_("E895: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded."));
2326#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002327#ifdef FEAT_EVAL
2328EXTERN char e_argument_of_str_must_be_list_dictionary_or_blob[]
2329 INIT(= N_("E896: Argument of %s must be a List, Dictionary or Blob"));
2330EXTERN char e_list_or_blob_required[]
2331 INIT(= N_("E897: List or Blob required"));
2332#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002333#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002334EXTERN char e_socket_in_channel_connect[]
2335 INIT(= N_("E898: socket() in channel_connect()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002336#endif
2337#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002338EXTERN char e_argument_of_str_must_be_list_or_blob[]
2339 INIT(= N_("E899: Argument of %s must be a List or Blob"));
2340EXTERN char e_maxdepth_must_be_non_negative_number[]
2341 INIT(= N_("E900: maxdepth must be non-negative number"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002342#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002343#ifdef FEAT_JOB_CHANNEL
2344EXTERN char e_getaddrinfo_in_channel_open_str[]
2345 INIT(= N_("E901: getaddrinfo() in channel_open(): %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002346# ifndef FEAT_IPV6
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002347EXTERN char e_gethostbyname_in_channel_open[]
2348 INIT(= N_("E901: gethostbyname() in channel_open()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002349# endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002350EXTERN char e_cannot_connect_to_port[]
2351 INIT(= N_("E902: Cannot connect to port"));
2352EXTERN char e_received_command_with_non_string_argument[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002353 INIT(= N_("E903: Received command with non-string argument"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002354EXTERN char e_last_argument_for_expr_call_must_be_number[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002355 INIT(= N_("E904: Last argument for expr/call must be a number"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002356EXTERN char e_third_argument_for_call_must_be_list[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002357 INIT(= N_("E904: Third argument for call must be a list"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002358EXTERN char e_received_unknown_command_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002359 INIT(= N_("E905: Received unknown command: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002360EXTERN char e_not_an_open_channel[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002361 INIT(= N_("E906: Not an open channel"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002362#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00002363#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002364EXTERN char e_using_special_value_as_float[]
2365 INIT(= N_("E907: Using a special value as a Float"));
Bram Moolenaar68db9962021-05-09 23:19:22 +02002366EXTERN char e_using_invalid_value_as_string_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002367 INIT(= N_("E908: Using an invalid value as a String: %s"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002368EXTERN char e_cannot_index_special_variable[]
2369 INIT(= N_("E909: Cannot index a special variable"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002370#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002371#ifdef FEAT_JOB_CHANNEL
2372EXTERN char e_using_job_as_number[]
2373 INIT(= N_("E910: Using a Job as a Number"));
2374EXTERN char e_using_job_as_float[]
2375 INIT(= N_("E911: Using a Job as a Float"));
2376EXTERN char e_cannot_use_evalexpr_sendexpr_with_raw_or_nl_channel[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002377 INIT(= N_("E912: Cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002378EXTERN char e_using_channel_as_number[]
2379 INIT(= N_("E913: Using a Channel as a Number"));
2380EXTERN char e_using_channel_as_float[]
2381 INIT(= N_("E914: Using a Channel as a Float"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002382EXTERN char e_in_io_buffer_requires_in_buf_or_in_name_to_be_set[]
2383 INIT(= N_("E915: in_io buffer requires in_buf or in_name to be set"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002384EXTERN char e_not_valid_job[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002385 INIT(= N_("E916: Not a valid job"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002386EXTERN char e_cannot_use_callback_with_str[]
2387 INIT(= N_("E917: Cannot use a callback with %s()"));
2388EXTERN char e_buffer_must_be_loaded_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002389 INIT(= N_("E918: Buffer must be loaded: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002390#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00002391EXTERN char e_directory_not_found_in_str_str[]
2392 INIT(= N_("E919: Directory not found in '%s': \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002393#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002394EXTERN char e_io_file_requires_name_to_be_set[]
2395 INIT(= N_("E920: _io file requires _name to be set"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002396#endif
2397#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002398EXTERN char e_invalid_callback_argument[]
2399 INIT(= N_("E921: Invalid callback argument"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02002400// E922 unused
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002401EXTERN char e_second_argument_of_function_must_be_list_or_dict[]
2402 INIT(= N_("E923: Second argument of function() must be a list or a dict"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002403#endif
2404#ifdef FEAT_QUICKFIX
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002405EXTERN char e_current_window_was_closed[]
2406 INIT(= N_("E924: Current window was closed"));
2407EXTERN char e_current_quickfix_list_was_changed[]
2408 INIT(= N_("E925: Current quickfix list was changed"));
2409EXTERN char e_current_location_list_was_changed[]
2410 INIT(= N_("E926: Current location list was changed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002411#endif
2412#ifdef FEAT_EVAL
2413# ifdef FEAT_QUICKFIX
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002414EXTERN char e_invalid_action_str_1[]
2415 INIT(= N_("E927: Invalid action: '%s'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002416# endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002417EXTERN char e_string_required[]
2418 INIT(= N_("E928: String required"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002419#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002420#ifdef FEAT_VIMINFO
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002421EXTERN char e_too_many_viminfo_temp_files_like_str[]
2422 INIT(= N_("E929: Too many viminfo temp files, like %s!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002423#endif
2424#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002425EXTERN char e_cannot_use_redir_inside_execute[]
2426 INIT(= N_("E930: Cannot use :redir inside execute()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002427#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002428EXTERN char e_buffer_cannot_be_registered[]
2429 INIT(= N_("E931: Buffer cannot be registered"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002430#ifdef FEAT_EVAL
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002431EXTERN char e_closure_function_should_not_be_at_top_level_str[]
Bram Moolenaara6f79292022-01-04 21:30:47 +00002432 INIT(= N_("E932: Closure function should not be at top level: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002433EXTERN char e_function_was_deleted_str[]
2434 INIT(= N_("E933: Function was deleted: %s"));
2435#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002436#ifdef FEAT_SIGNS
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002437EXTERN char e_cannot_jump_to_buffer_that_does_not_have_name[]
2438 INIT(= N_("E934: Cannot jump to a buffer that does not have a name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002439#endif
2440#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002441EXTERN char e_invalid_submatch_number_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002442 INIT(= N_("E935: Invalid submatch number: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002443#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002444EXTERN char e_cannot_delete_current_group[]
2445 INIT(= N_("E936: Cannot delete the current group"));
2446EXTERN char e_attempt_to_delete_buffer_that_is_in_use_str[]
2447 INIT(= N_("E937: Attempt to delete a buffer that is in use: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002448#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002449EXTERN char e_duplicate_key_in_json_str[]
2450 INIT(= N_("E938: Duplicate key in JSON: \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002451#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00002452EXTERN char e_positive_count_required[]
2453 INIT(= N_("E939: Positive count required"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00002454#ifdef FEAT_EVAL
2455EXTERN char e_cannot_lock_or_unlock_variable_str[]
2456 INIT(= N_("E940: Cannot lock or unlock variable %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002457# ifdef FEAT_CLIENTSERVER
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002458EXTERN char e_already_started_server[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002459 INIT(= N_("E941: Already started a server"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002460# else
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002461EXTERN char e_clientserver_feature_not_available[]
2462 INIT(= N_("E942: +clientserver feature not available"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002463# endif
2464#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002465EXTERN char e_command_table_needs_to_be_updated_run_make_cmdidxs[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002466 INIT(= "E943: Command table needs to be updated, run 'make cmdidxs'");
Bram Moolenaar677658a2022-01-05 16:09:06 +00002467EXTERN char e_reverse_range_in_character_class[]
2468 INIT(= N_("E944: Reverse range in character class"));
2469EXTERN char e_range_too_large_in_character_class[]
2470 INIT(= N_("E945: Range too large in character class"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002471#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002472EXTERN char e_cannot_make_terminal_with_running_job_modifiable[]
2473 INIT(= N_("E946: Cannot make a terminal with running job modifiable"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002474EXTERN char e_job_still_running_in_buffer_str[]
2475 INIT(= N_("E947: Job still running in buffer \"%s\""));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002476EXTERN char e_job_still_running[]
2477 INIT(= N_("E948: Job still running"));
2478EXTERN char e_job_still_running_add_bang_to_end_the_job[]
2479 INIT(= N_("E948: Job still running (add ! to end the job)"));
Bram Moolenaar096ca732022-01-01 00:55:28 +00002480#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002481EXTERN char e_file_changed_while_writing[]
2482 INIT(= N_("E949: File changed while writing"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002483EXTERN char e_cannot_convert_between_str_and_str[]
2484 INIT(= N_("E950: Cannot convert between %s and %s"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002485EXTERN char e_percent_value_too_large[]
K.Takatab5988e32022-01-16 11:25:26 +00002486 // xgettext:no-c-format
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002487 INIT(= N_("E951: \\% value too large"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002488#if defined(FEAT_EVAL) && defined(FEAT_QUICKFIX)
Bram Moolenaar74409f62022-01-01 15:58:22 +00002489EXTERN char e_autocommand_caused_recursive_behavior[]
2490 INIT(= N_("E952: Autocommand caused recursive behavior"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002491#endif
2492#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002493EXTERN char e_file_exists_str[]
2494 INIT(= N_("E953: File exists: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002495#endif
2496#if defined(FEAT_TERMGUICOLORS) && defined(FEAT_VTP)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002497EXTERN char e_24_bit_colors_are_not_supported_on_this_environment[]
2498 INIT(= N_("E954: 24-bit colors are not supported on this environment"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002499#endif
2500#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002501EXTERN char e_not_terminal_buffer[]
2502 INIT(= N_("E955: Not a terminal buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002503#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002504EXTERN char e_cannot_use_pattern_recursively[]
2505 INIT(= N_("E956: Cannot use pattern recursively"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002506#ifdef FEAT_EVAL
Bram Moolenaar3a846e62022-01-01 16:21:00 +00002507EXTERN char e_invalid_window_number[]
2508 INIT(= N_("E957: Invalid window number"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002509#endif
2510#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002511EXTERN char e_job_already_finished[]
2512 INIT(= N_("E958: Job already finished"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002513#endif
2514#ifdef FEAT_DIFF
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002515EXTERN char e_invalid_diff_format[]
2516 INIT(= N_("E959: Invalid diff format."));
2517EXTERN char e_problem_creating_internal_diff[]
2518 INIT(= N_("E960: Problem creating the internal diff"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002519#endif
2520#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002521EXTERN char e_no_line_number_to_use_for_sflnum[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002522 INIT(= N_("E961: No line number to use for \"<sflnum>\""));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002523EXTERN char e_invalid_action_str_2[]
2524 INIT(= N_("E962: Invalid action: '%s'"));
zeertzjqedcba962023-09-24 23:13:51 +02002525EXTERN char e_setting_v_str_to_value_with_wrong_type[]
2526 INIT(= N_("E963: Setting v:%s to value with wrong type"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002527#endif
2528#ifdef FEAT_PROP_POPUP
Bram Moolenaar8dac2ac2021-12-27 20:57:06 +00002529EXTERN char_u e_invalid_column_number_nr[]
2530 INIT(= N_("E964: Invalid column number: %ld"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002531EXTERN char e_missing_property_type_name[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002532 INIT(= N_("E965: Missing property type name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002533#endif
2534#ifdef FEAT_EVAL
Bram Moolenaar8dac2ac2021-12-27 20:57:06 +00002535EXTERN char_u e_invalid_line_number_nr[]
2536 INIT(= N_("E966: Invalid line number: %ld"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002537#endif
2538#ifdef FEAT_PROP_POPUP
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002539EXTERN char e_text_property_info_corrupted[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002540 INIT(= "E967: Text property info corrupted");
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002541EXTERN char e_need_at_least_one_of_id_or_type[]
2542 INIT(= N_("E968: Need at least one of 'id' or 'type'"));
2543EXTERN char e_property_type_str_already_defined[]
2544 INIT(= N_("E969: Property type %s already defined"));
2545EXTERN char e_unknown_highlight_group_name_str[]
2546 INIT(= N_("E970: Unknown highlight group name: '%s'"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002547EXTERN char e_property_type_str_does_not_exist[]
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002548 INIT(= N_("E971: Property type %s does not exist"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002549#endif
2550#ifdef FEAT_EVAL
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002551EXTERN char e_blob_value_does_not_have_right_number_of_bytes[]
2552 INIT(= N_("E972: Blob value does not have the right number of bytes"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002553EXTERN char e_blob_literal_should_have_an_even_number_of_hex_characters[]
2554 INIT(= N_("E973: Blob literal should have an even number of hex characters"));
2555EXTERN char e_using_blob_as_number[]
2556 INIT(= N_("E974: Using a Blob as a Number"));
2557EXTERN char e_using_blob_as_float[]
2558 INIT(= N_("E975: Using a Blob as a Float"));
2559EXTERN char e_using_blob_as_string[]
2560 INIT(= N_("E976: Using a Blob as a String"));
2561EXTERN char e_can_only_compare_blob_with_blob[]
2562 INIT(= N_("E977: Can only compare Blob with Blob"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002563EXTERN char e_invalid_operation_for_blob[]
2564 INIT(= N_("E978: Invalid operation for Blob"));
2565EXTERN char e_blob_index_out_of_range_nr[]
2566 INIT(= N_("E979: Blob index out of range: %ld"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002567# ifndef USE_INPUT_BUF
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002568EXTERN char e_lowlevel_input_not_supported[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002569 INIT(= N_("E980: Lowlevel input not supported"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002570# endif
2571#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002572EXTERN char e_command_not_allowed_in_rvim[]
2573 INIT(= N_("E981: Command not allowed in rvim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002574#if defined(FEAT_TERMINAL) && defined(MSWIN)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002575EXTERN char e_conpty_is_not_available[]
2576 INIT(= N_("E982: ConPTY is not available"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002577#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002578EXTERN char e_duplicate_argument_str[]
2579 INIT(= N_("E983: Duplicate argument: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002580EXTERN char e_scriptversion_used_outside_of_sourced_file[]
2581 INIT(= N_("E984: :scriptversion used outside of a sourced file"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002582#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002583EXTERN char e_dot_equal_not_supported_with_script_version_two[]
2584 INIT(= N_("E985: .= is not supported with script version >= 2"));
2585EXTERN char e_cannot_modify_tag_stack_within_tagfunc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002586 INIT(= N_("E986: Cannot modify the tag stack within tagfunc"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002587EXTERN char e_invalid_return_value_from_tagfunc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002588 INIT(= N_("E987: Invalid return value from tagfunc"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002589#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002590#ifdef GUI_MAY_SPAWN
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002591EXTERN char e_gui_cannot_be_used_cannot_execute_gvim_exe[]
2592 INIT(= N_("E988: GUI cannot be used. Cannot execute gvim.exe."));
Dominique Pellef85a4242022-01-09 12:49:31 +00002593#endif
2594#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002595EXTERN char e_non_default_argument_follows_default_argument[]
2596 INIT(= N_("E989: Non-default argument follows default argument"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002597EXTERN char e_missing_end_marker_str[]
2598 INIT(= N_("E990: Missing end marker '%s'"));
2599EXTERN char e_cannot_use_heredoc_here[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002600 INIT(= N_("E991: Cannot use =<< here"));
Bram Moolenaar269dc632022-01-06 11:43:21 +00002601#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002602EXTERN char e_not_allowed_in_modeline_when_modelineexpr_is_off[]
2603 INIT(= N_("E992: Not allowed in a modeline when 'modelineexpr' is off"));
Bram Moolenaar269dc632022-01-06 11:43:21 +00002604#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002605EXTERN char e_window_nr_is_not_popup_window[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002606 INIT(= N_("E993: Window %d is not a popup window"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002607EXTERN char e_not_allowed_in_popup_window[]
2608 INIT(= N_("E994: Not allowed in a popup window"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002609EXTERN char e_cannot_modify_existing_variable[]
2610 INIT(= N_("E995: Cannot modify existing variable"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002611EXTERN char e_cannot_lock_range[]
2612 INIT(= N_("E996: Cannot lock a range"));
2613EXTERN char e_cannot_lock_option[]
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002614 INIT(= N_("E996: Cannot lock an option"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002615EXTERN char e_cannot_lock_list_or_dict[]
2616 INIT(= N_("E996: Cannot lock a list or dict"));
2617EXTERN char e_cannot_lock_environment_variable[]
2618 INIT(= N_("E996: Cannot lock an environment variable"));
2619EXTERN char e_cannot_lock_register[]
2620 INIT(= N_("E996: Cannot lock a register"));
2621#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002622#ifdef FEAT_PROP_POPUP
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002623EXTERN char e_tabpage_not_found_nr[]
2624 INIT(= N_("E997: Tabpage not found: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002625#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002626#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002627EXTERN char e_reduce_of_an_empty_str_with_no_initial_value[]
2628 INIT(= N_("E998: Reduce of an empty %s with no initial value"));
2629#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002630EXTERN char e_scriptversion_not_supported_nr[]
2631 INIT(= N_("E999: scriptversion not supported: %d"));
2632// E1000 unused
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002633#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002634EXTERN char e_variable_not_found_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002635 INIT(= N_("E1001: Variable not found: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002636EXTERN char e_syntax_error_at_str[]
2637 INIT(= N_("E1002: Syntax error at %s"));
2638EXTERN char e_missing_return_value[]
2639 INIT(= N_("E1003: Missing return value"));
Bram Moolenaare7a73e02021-01-01 19:17:55 +01002640EXTERN char e_white_space_required_before_and_after_str_at_str[]
2641 INIT(= N_("E1004: White space required before and after '%s' at \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002642EXTERN char e_too_many_argument_types[]
2643 INIT(= N_("E1005: Too many argument types"));
2644EXTERN char e_str_is_used_as_argument[]
2645 INIT(= N_("E1006: %s is used as an argument"));
2646EXTERN char e_mandatory_argument_after_optional_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002647 INIT(= N_("E1007: Mandatory argument after optional argument"));
Bram Moolenaar62e0e2e2022-08-20 12:07:58 +01002648EXTERN char e_missing_type_after_str[]
2649 INIT(= N_("E1008: Missing <type> after %s"));
2650EXTERN char e_missing_gt_after_type_str[]
2651 INIT(= N_("E1009: Missing > after type: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002652EXTERN char e_type_not_recognized_str[]
2653 INIT(= N_("E1010: Type not recognized: %s"));
2654EXTERN char e_name_too_long_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002655 INIT(= N_("E1011: Name too long: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002656EXTERN char e_type_mismatch_expected_str_but_got_str[]
Bram Moolenaar5e654232020-09-16 15:22:00 +02002657 INIT(= N_("E1012: Type mismatch; expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002658EXTERN char e_type_mismatch_expected_str_but_got_str_in_str[]
2659 INIT(= N_("E1012: Type mismatch; expected %s but got %s in %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002660EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002661 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002662EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str_in_str[]
2663 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s in %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002664EXTERN char e_invalid_key_str[]
2665 INIT(= N_("E1014: Invalid key: %s"));
Bram Moolenaare4984292020-12-13 14:19:25 +01002666EXTERN char e_name_expected_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002667 INIT(= N_("E1015: Name expected: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002668EXTERN char e_cannot_declare_a_scope_variable_str[]
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002669 INIT(= N_("E1016: Cannot declare a %s variable: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002670EXTERN char e_cannot_declare_an_environment_variable_str[]
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002671 INIT(= N_("E1016: Cannot declare an environment variable: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002672EXTERN char e_variable_already_declared_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002673 INIT(= N_("E1017: Variable already declared: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002674EXTERN char e_cannot_assign_to_constant_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002675 INIT(= N_("E1018: Cannot assign to a constant: %s"));
2676EXTERN char e_can_only_concatenate_to_string[]
2677 INIT(= N_("E1019: Can only concatenate to string"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002678EXTERN char e_cannot_use_operator_on_new_variable_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002679 INIT(= N_("E1020: Cannot use an operator on a new variable: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002680EXTERN char e_const_requires_a_value[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002681 INIT(= N_("E1021: Const requires a value"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002682EXTERN char e_type_or_initialization_required[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002683 INIT(= N_("E1022: Type or initialization required"));
Bram Moolenaard70840e2020-08-22 15:06:35 +02002684EXTERN char e_using_number_as_bool_nr[]
Bram Moolenaar239f8d92021-01-17 13:21:20 +01002685 INIT(= N_("E1023: Using a Number as a Bool: %lld"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002686EXTERN char e_using_number_as_string[]
2687 INIT(= N_("E1024: Using a Number as a String"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002688EXTERN char e_using_rcurly_outside_if_block_scope[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002689 INIT(= N_("E1025: Using } outside of a block scope"));
Bram Moolenaar90887842021-07-27 22:35:42 +02002690#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002691EXTERN char e_missing_rcurly[]
2692 INIT(= N_("E1026: Missing }"));
Bram Moolenaar90887842021-07-27 22:35:42 +02002693#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002694EXTERN char e_missing_return_statement[]
2695 INIT(= N_("E1027: Missing return statement"));
Bram Moolenaare13bdec2020-10-16 23:16:47 +02002696EXTERN char e_compiling_def_function_failed[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002697 INIT(= N_("E1028: Compiling :def function failed"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002698EXTERN char e_expected_str_but_got_str[]
2699 INIT(= N_("E1029: Expected %s but got %s"));
Bram Moolenaarea2d4072020-11-12 12:08:51 +01002700EXTERN char e_using_string_as_number_str[]
2701 INIT(= N_("E1030: Using a String as a Number: \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002702EXTERN char e_cannot_use_void_value[]
2703 INIT(= N_("E1031: Cannot use void value"));
2704EXTERN char e_missing_catch_or_finally[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002705 INIT(= N_("E1032: Missing :catch or :finally"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002706EXTERN char e_catch_unreachable_after_catch_all[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002707 INIT(= N_("E1033: Catch unreachable after catch-all"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002708EXTERN char e_cannot_use_reserved_name_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002709 INIT(= N_("E1034: Cannot use reserved name %s"));
2710EXTERN char e_percent_requires_number_arguments[]
K.Takatab5988e32022-01-16 11:25:26 +00002711 // xgettext:no-c-format
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002712 INIT(= N_("E1035: % requires number arguments"));
2713EXTERN char e_char_requires_number_or_float_arguments[]
2714 INIT(= N_("E1036: %c requires number or float arguments"));
2715EXTERN char e_cannot_use_str_with_str[]
2716 INIT(= N_("E1037: Cannot use \"%s\" with %s"));
2717EXTERN char e_vim9script_can_only_be_used_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002718 INIT(= N_("E1038: \"vim9script\" can only be used in a script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002719EXTERN char e_vim9script_must_be_first_command_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002720 INIT(= N_("E1039: \"vim9script\" must be the first command in a script"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002721#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002722EXTERN char e_cannot_use_scriptversion_after_vim9script[]
2723 INIT(= N_("E1040: Cannot use :scriptversion after :vim9script"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002724#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002725EXTERN char e_redefining_script_item_str[]
Bram Moolenaar6d877fe2022-03-21 19:47:31 +00002726 INIT(= N_("E1041: Redefining script item: \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002727EXTERN char e_export_can_only_be_used_in_vim9script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002728 INIT(= N_("E1042: Export can only be used in vim9script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002729EXTERN char e_invalid_command_after_export[]
2730 INIT(= N_("E1043: Invalid command after :export"));
2731EXTERN char e_export_with_invalid_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002732 INIT(= N_("E1044: Export with invalid argument"));
Bram Moolenaarfe6fb262022-01-24 18:16:12 +00002733// E1045 not used
2734// E1046 not used
Bram Moolenaara9e3d562021-09-08 12:31:35 +02002735EXTERN char e_syntax_error_in_import_str[]
2736 INIT(= N_("E1047: Syntax error in import: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002737EXTERN char e_item_not_found_in_script_str[]
2738 INIT(= N_("E1048: Item not found in script: %s"));
2739EXTERN char e_item_not_exported_in_script_str[]
2740 INIT(= N_("E1049: Item not exported in script: %s"));
Bram Moolenaareda29c92022-10-02 12:59:00 +01002741#endif
Bram Moolenaar6e2c2c52020-12-25 19:25:45 +01002742EXTERN char e_colon_required_before_range_str[]
2743 INIT(= N_("E1050: Colon required before a range: %s"));
Bram Moolenaareda29c92022-10-02 12:59:00 +01002744#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002745EXTERN char e_wrong_argument_type_for_plus[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002746 INIT(= N_("E1051: Wrong argument type for +"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002747EXTERN char e_cannot_declare_an_option_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002748 INIT(= N_("E1052: Cannot declare an option: %s"));
2749EXTERN char e_could_not_import_str[]
2750 INIT(= N_("E1053: Could not import \"%s\""));
Bram Moolenaar057e84a2021-02-28 16:55:11 +01002751EXTERN char e_variable_already_declared_in_script_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002752 INIT(= N_("E1054: Variable already declared in the script: %s"));
2753EXTERN char e_missing_name_after_dots[]
2754 INIT(= N_("E1055: Missing name after ..."));
2755EXTERN char e_expected_type_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002756 INIT(= N_("E1056: Expected a type: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002757EXTERN char e_missing_enddef[]
2758 INIT(= N_("E1057: Missing :enddef"));
2759EXTERN char e_function_nesting_too_deep[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002760 INIT(= N_("E1058: Function nesting too deep"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002761EXTERN char e_no_white_space_allowed_before_colon_str[]
2762 INIT(= N_("E1059: No white space allowed before colon: %s"));
2763EXTERN char e_expected_dot_after_name_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002764 INIT(= N_("E1060: Expected dot after name: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002765EXTERN char e_cannot_find_function_str[]
2766 INIT(= N_("E1061: Cannot find function %s"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002767EXTERN char e_cannot_index_number[]
2768 INIT(= N_("E1062: Cannot index a Number"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002769EXTERN char e_type_mismatch_for_v_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002770 INIT(= N_("E1063: Type mismatch for v: variable"));
Bram Moolenaar021ef352021-12-02 20:44:42 +00002771#endif
Bram Moolenaar9ac38122021-12-02 18:42:33 +00002772EXTERN char e_yank_register_changed_while_using_it[]
2773 INIT(= N_("E1064: Yank register changed while using it"));
Bram Moolenaarb2175222022-03-05 20:24:41 +00002774EXTERN char e_command_cannot_be_shortened_str[]
Bram Moolenaar204852a2022-03-05 12:56:44 +00002775 INIT(= N_("E1065: Command cannot be shortened: %s"));
Bram Moolenaar021ef352021-12-02 20:44:42 +00002776#ifdef FEAT_EVAL
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002777EXTERN char e_cannot_declare_a_register_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002778 INIT(= N_("E1066: Cannot declare a register: %s"));
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002779EXTERN char e_separator_mismatch_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002780 INIT(= N_("E1067: Separator mismatch: %s"));
Bram Moolenaarba98fb52021-02-07 18:06:29 +01002781EXTERN char e_no_white_space_allowed_before_str_str[]
2782 INIT(= N_("E1068: No white space allowed before '%s': %s"));
Bram Moolenaarc3fc75d2021-02-07 15:28:09 +01002783EXTERN char e_white_space_required_after_str_str[]
2784 INIT(= N_("E1069: White space required after '%s': %s"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00002785EXTERN char e_invalid_string_for_import_str[]
2786 INIT(= N_("E1071: Invalid string for :import: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002787EXTERN char e_cannot_compare_str_with_str[]
2788 INIT(= N_("E1072: Cannot compare %s with %s"));
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002789EXTERN char e_name_already_defined_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002790 INIT(= N_("E1073: Name already defined: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002791EXTERN char e_no_white_space_allowed_after_dot[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002792 INIT(= N_("E1074: No white space allowed after dot"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002793EXTERN char e_namespace_not_supported_str[]
2794 INIT(= N_("E1075: Namespace not supported: %s"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02002795// E1076 unused (was deleted)
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002796EXTERN char e_missing_argument_type_for_str[]
2797 INIT(= N_("E1077: Missing argument type for %s"));
Bram Moolenaarf0775142022-03-04 20:10:38 +00002798#endif
2799EXTERN char e_invalid_command_nested_did_you_mean_plusplus_nested[]
2800 INIT(= N_("E1078: Invalid command \"nested\", did you mean \"++nested\"?"));
2801#ifdef FEAT_EVAL
Bram Moolenaar0e1574c2022-03-03 17:05:35 +00002802EXTERN char e_cannot_declare_variable_on_command_line[]
2803 INIT(= N_("E1079: Cannot declare a variable on the command line"));
Bram Moolenaar8b716f52022-02-15 21:17:56 +00002804EXTERN char e_invalid_assignment[]
2805 INIT(= N_("E1080: Invalid assignment"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002806EXTERN char e_cannot_unlet_str[]
2807 INIT(= N_("E1081: Cannot unlet %s"));
Bram Moolenaarb5d20392022-02-14 21:42:15 +00002808#endif
Bram Moolenaarbc510062022-02-14 21:19:04 +00002809EXTERN char e_command_modifier_without_command[]
2810 INIT(= N_("E1082: Command modifier without command"));
Bram Moolenaarb5d20392022-02-14 21:42:15 +00002811#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002812EXTERN char e_missing_backtick[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002813 INIT(= N_("E1083: Missing backtick"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002814EXTERN char e_cannot_delete_vim9_script_function_str[]
2815 INIT(= N_("E1084: Cannot delete Vim9 script function %s"));
2816EXTERN char e_not_callable_type_str[]
2817 INIT(= N_("E1085: Not a callable type: %s"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01002818// E1086 unused
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002819EXTERN char e_cannot_use_index_when_declaring_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002820 INIT(= N_("E1087: Cannot use an index when declaring a variable"));
Bram Moolenaar779aeff2022-02-08 19:12:19 +00002821EXTERN char e_script_cannot_import_itself[]
2822 INIT(= N_("E1088: Script cannot import itself"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002823EXTERN char e_unknown_variable_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002824 INIT(= N_("E1089: Unknown variable: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002825EXTERN char e_cannot_assign_to_argument_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002826 INIT(= N_("E1090: Cannot assign to argument %s"));
2827EXTERN char e_function_is_not_compiled_str[]
2828 INIT(= N_("E1091: Function is not compiled: %s"));
Bram Moolenaar5658ca32022-02-03 20:09:19 +00002829EXTERN char e_cannot_nest_redir[]
2830 INIT(= N_("E1092: Cannot nest :redir"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002831EXTERN char e_expected_nr_items_but_got_nr[]
2832 INIT(= N_("E1093: Expected %d items but got %d"));
2833EXTERN char e_import_can_only_be_used_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002834 INIT(= N_("E1094: Import can only be used in a script"));
Bram Moolenaara2c00282023-05-14 22:05:15 +01002835EXTERN char e_unreachable_code_after_str[]
2836 INIT(= N_("E1095: Unreachable code after :%s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002837EXTERN char e_returning_value_in_function_without_return_type[]
2838 INIT(= N_("E1096: Returning a value in a function without a return type"));
2839EXTERN char e_line_incomplete[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002840 INIT(= N_("E1097: Line incomplete"));
Sean Dewar80d73952021-08-04 19:25:54 +02002841EXTERN char e_string_list_or_blob_required[]
2842 INIT(= N_("E1098: String, List or Blob required"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002843EXTERN char e_unknown_error_while_executing_str[]
2844 INIT(= N_("E1099: Unknown error while executing %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002845EXTERN char e_command_not_supported_in_vim9_script_missing_var_str[]
2846 INIT(= N_("E1100: Command not supported in Vim9 script (missing :var?): %s"));
Bram Moolenaara749a422022-02-12 19:52:25 +00002847EXTERN char e_cannot_declare_script_variable_in_function_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002848 INIT(= N_("E1101: Cannot declare a script variable in a function: %s"));
2849EXTERN char e_lambda_function_not_found_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002850 INIT(= N_("E1102: Lambda function not found: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002851EXTERN char e_dictionary_not_set[]
2852 INIT(= N_("E1103: Dictionary not set"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002853EXTERN char e_missing_gt[]
2854 INIT(= N_("E1104: Missing >"));
2855EXTERN char e_cannot_convert_str_to_string[]
2856 INIT(= N_("E1105: Cannot convert %s to string"));
Bram Moolenaara1d5f9f2023-05-27 13:40:11 +01002857
2858PLURAL_MSG(e_one_argument_too_many, "E1106: One argument too many",
2859 e_nr_arguments_too_many, "E1106: %d arguments too many")
2860
Bram Moolenaar56acb092020-08-16 14:48:19 +02002861EXTERN char e_string_list_dict_or_blob_required[]
2862 INIT(= N_("E1107: String, List, Dict or Blob required"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02002863// E1108 unused
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02002864EXTERN char e_list_item_nr_is_not_list[]
2865 INIT(= N_("E1109: List item %d is not a List"));
2866EXTERN char e_list_item_nr_does_not_contain_3_numbers[]
2867 INIT(= N_("E1110: List item %d does not contain 3 numbers"));
2868EXTERN char e_list_item_nr_range_invalid[]
2869 INIT(= N_("E1111: List item %d range invalid"));
2870EXTERN char e_list_item_nr_cell_width_invalid[]
2871 INIT(= N_("E1112: List item %d cell width invalid"));
2872EXTERN char e_overlapping_ranges_for_nr[]
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02002873 INIT(= N_("E1113: Overlapping ranges for 0x%lx"));
K.Takata71933232023-01-20 16:00:55 +00002874EXTERN char e_only_values_of_0x80_and_higher_supported[]
2875 INIT(= N_("E1114: Only values of 0x80 and higher supported"));
Bram Moolenaar44d66522020-09-06 22:26:57 +02002876EXTERN char e_assert_fails_fourth_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002877 INIT(= N_("E1115: \"assert_fails()\" fourth argument must be a number"));
Bram Moolenaar44d66522020-09-06 22:26:57 +02002878EXTERN char e_assert_fails_fifth_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002879 INIT(= N_("E1116: \"assert_fails()\" fifth argument must be a string"));
Bram Moolenaar8b848ca2020-09-10 22:28:01 +02002880EXTERN char e_cannot_use_bang_with_nested_def[]
2881 INIT(= N_("E1117: Cannot use ! with nested :def"));
Bram Moolenaar70c43d82022-01-26 21:01:15 +00002882EXTERN char e_cannot_change_locked_list[]
2883 INIT(= N_("E1118: Cannot change locked list"));
2884EXTERN char e_cannot_change_locked_list_item[]
2885 INIT(= N_("E1119: Cannot change locked list item"));
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02002886EXTERN char e_cannot_change_dict[]
2887 INIT(= N_("E1120: Cannot change dict"));
2888EXTERN char e_cannot_change_dict_item[]
2889 INIT(= N_("E1121: Cannot change dict item"));
Bram Moolenaar916911f2020-09-16 21:41:53 +02002890EXTERN char e_variable_is_locked_str[]
2891 INIT(= N_("E1122: Variable is locked: %s"));
Bram Moolenaar10e4f122020-09-20 22:43:52 +02002892EXTERN char e_missing_comma_before_argument_str[]
2893 INIT(= N_("E1123: Missing comma before argument: %s"));
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002894EXTERN char e_str_cannot_be_used_in_legacy_vim_script[]
2895 INIT(= N_("E1124: \"%s\" cannot be used in legacy Vim script"));
2896EXTERN char e_final_requires_a_value[]
2897 INIT(= N_("E1125: Final requires a value"));
Bram Moolenaarcfcd0112020-09-27 15:19:27 +02002898EXTERN char e_cannot_use_let_in_vim9_script[]
2899 INIT(= N_("E1126: Cannot use :let in Vim9 script"));
Bram Moolenaarc1f00662020-10-03 13:41:53 +02002900EXTERN char e_missing_name_after_dot[]
2901 INIT(= N_("E1127: Missing name after dot"));
Bram Moolenaar9becdf22020-10-10 21:33:48 +02002902EXTERN char e_endblock_without_block[]
2903 INIT(= N_("E1128: } without {"));
Bram Moolenaar1e021e62020-10-16 20:25:23 +02002904EXTERN char e_throw_with_empty_string[]
2905 INIT(= N_("E1129: Throw with empty string"));
Bram Moolenaar1dcae592020-10-19 19:02:42 +02002906EXTERN char e_cannot_add_to_null_list[]
2907 INIT(= N_("E1130: Cannot add to null list"));
Bram Moolenaar80b0e5e2020-10-19 20:45:36 +02002908EXTERN char e_cannot_add_to_null_blob[]
2909 INIT(= N_("E1131: Cannot add to null blob"));
Bram Moolenaar0d90e722020-11-03 18:20:19 +01002910EXTERN char e_missing_function_argument[]
2911 INIT(= N_("E1132: Missing function argument"));
Bram Moolenaar348be7e2020-11-04 11:36:35 +01002912EXTERN char e_cannot_extend_null_dict[]
2913 INIT(= N_("E1133: Cannot extend a null dict"));
2914EXTERN char e_cannot_extend_null_list[]
2915 INIT(= N_("E1134: Cannot extend a null list"));
Bram Moolenaarea2d4072020-11-12 12:08:51 +01002916EXTERN char e_using_string_as_bool_str[]
2917 INIT(= N_("E1135: Using a String as a Bool: \"%s\""));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002918#endif
Bram Moolenaar957cf672020-11-12 14:21:06 +01002919EXTERN char e_cmd_mapping_must_end_with_cr_before_second_cmd[]
Bram Moolenaar806da512021-12-24 19:54:52 +00002920 INIT(= N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>"));
zeertzjq3ab3a862023-05-06 16:22:04 +01002921// E1137 unused
Dominique Pellef85a4242022-01-09 12:49:31 +00002922#ifdef FEAT_EVAL
Bram Moolenaard92cc132020-11-18 17:17:15 +01002923EXTERN char e_using_bool_as_number[]
2924 INIT(= N_("E1138: Using a Bool as a Number"));
Bram Moolenaar2bede172020-11-19 18:53:18 +01002925EXTERN char e_missing_matching_bracket_after_dict_key[]
2926 INIT(= N_("E1139: Missing matching bracket after dict key"));
Bram Moolenaar792f7862020-11-23 08:31:18 +01002927EXTERN char e_for_argument_must_be_sequence_of_lists[]
Bram Moolenaar4d5dfe22021-06-26 13:59:29 +02002928 INIT(= N_("E1140: :for argument must be a sequence of lists"));
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002929EXTERN char e_indexable_type_required[]
2930 INIT(= N_("E1141: Indexable type required"));
Bram Moolenaarb3d83982022-01-27 19:59:47 +00002931EXTERN char e_calling_test_garbagecollect_now_while_v_testing_is_not_set[]
2932 INIT(= N_("E1142: Calling test_garbagecollect_now() while v:testing is not set"));
Bram Moolenaare4984292020-12-13 14:19:25 +01002933EXTERN char e_empty_expression_str[]
Bram Moolenaarb5b94802020-12-13 17:50:20 +01002934 INIT(= N_("E1143: Empty expression: \"%s\""));
Bram Moolenaarb98cec22021-04-25 16:35:55 +02002935EXTERN char e_command_str_not_followed_by_white_space_str[]
2936 INIT(= N_("E1144: Command \"%s\" is not followed by white space: %s"));
Bram Moolenaarb5b94802020-12-13 17:50:20 +01002937EXTERN char e_missing_heredoc_end_marker_str[]
2938 INIT(= N_("E1145: Missing heredoc end marker: %s"));
Bram Moolenaar52c124d2020-12-20 21:43:35 +01002939EXTERN char e_command_not_recognized_str[]
2940 INIT(= N_("E1146: Command not recognized: %s"));
Bram Moolenaar4f5e3972020-12-21 17:30:50 +01002941EXTERN char e_list_not_set[]
2942 INIT(= N_("E1147: List not set"));
2943EXTERN char e_cannot_index_str[]
2944 INIT(= N_("E1148: Cannot index a %s"));
Bram Moolenaar4aab88d2020-12-24 21:56:41 +01002945EXTERN char e_script_variable_invalid_after_reload_in_function_str[]
2946 INIT(= N_("E1149: Script variable is invalid after reload in function %s"));
Bram Moolenaar07a65d22020-12-26 20:09:15 +01002947EXTERN char e_script_variable_type_changed[]
2948 INIT(= N_("E1150: Script variable type changed"));
Bram Moolenaar5178b1b2021-01-01 18:43:51 +01002949EXTERN char e_mismatched_endfunction[]
2950 INIT(= N_("E1151: Mismatched endfunction"));
2951EXTERN char e_mismatched_enddef[]
2952 INIT(= N_("E1152: Mismatched enddef"));
Bram Moolenaar0c357522021-07-18 14:43:43 +02002953EXTERN char e_invalid_operation_for_str[]
2954 INIT(= N_("E1153: Invalid operation for %s"));
Bram Moolenaar99880f92021-01-20 21:23:14 +01002955EXTERN char e_divide_by_zero[]
2956 INIT(= N_("E1154: Divide by zero"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002957#endif
Bram Moolenaar9a046fd2021-01-28 13:47:59 +01002958EXTERN char e_cannot_define_autocommands_for_all_events[]
2959 INIT(= N_("E1155: Cannot define autocommands for ALL events"));
Bram Moolenaar61015162021-01-28 17:56:09 +01002960EXTERN char e_cannot_change_arglist_recursively[]
2961 INIT(= N_("E1156: Cannot change the argument list recursively"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002962#ifdef FEAT_EVAL
Bram Moolenaar0346b792021-01-31 22:18:29 +01002963EXTERN char e_missing_return_type[]
2964 INIT(= N_("E1157: Missing return type"));
Bram Moolenaar3b690062021-02-01 20:14:51 +01002965EXTERN char e_cannot_use_flatten_in_vim9_script[]
Bram Moolenaarfb808622022-01-28 15:01:47 +00002966 INIT(= N_("E1158: Cannot use flatten() in Vim9 script, use flattennew()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002967#endif
Bram Moolenaar983d83f2021-02-07 12:12:43 +01002968EXTERN char e_cannot_split_window_when_closing_buffer[]
2969 INIT(= N_("E1159: Cannot split a window when closing the buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002970#ifdef FEAT_EVAL
Bram Moolenaara5a1ec12021-02-07 16:05:47 +01002971EXTERN char e_cannot_use_default_for_variable_arguments[]
2972 INIT(= N_("E1160: Cannot use a default for variable arguments"));
Bram Moolenaara8530892021-02-08 21:53:09 +01002973EXTERN char e_cannot_json_encode_str[]
2974 INIT(= N_("E1161: Cannot json encode a %s"));
Bram Moolenaar418a29f2021-02-10 22:23:41 +01002975EXTERN char e_register_name_must_be_one_char_str[]
2976 INIT(= N_("E1162: Register name must be one character: %s"));
Bram Moolenaarf785aa12021-02-11 21:19:34 +01002977EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str[]
2978 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002979EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str_in_str[]
2980 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s in %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002981#endif
Bram Moolenaar39f3b142021-02-14 12:57:36 +01002982EXTERN char e_vim9cmd_must_be_followed_by_command[]
2983 INIT(= N_("E1164: vim9cmd must be followed by a command"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002984#ifdef FEAT_EVAL
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002985EXTERN char e_cannot_use_range_with_assignment_str[]
2986 INIT(= N_("E1165: Cannot use a range with an assignment: %s"));
2987EXTERN char e_cannot_use_range_with_dictionary[]
2988 INIT(= N_("E1166: Cannot use a range with a dictionary"));
Bram Moolenaar057e84a2021-02-28 16:55:11 +01002989EXTERN char e_argument_name_shadows_existing_variable_str[]
2990 INIT(= N_("E1167: Argument name shadows existing variable: %s"));
2991EXTERN char e_argument_already_declared_in_script_str[]
2992 INIT(= N_("E1168: Argument already declared in the script: %s"));
Bram Moolenaarfe6fb262022-01-24 18:16:12 +00002993EXTERN char e_expression_too_recursive_str[]
2994 INIT(= N_("E1169: Expression too recursive: %s"));
Bram Moolenaar3f74c0a2022-08-06 18:12:06 +01002995EXTERN char e_cannot_use_hash_curly_to_start_comment[]
2996 INIT(= N_("E1170: Cannot use #{ to start a comment"));
Bram Moolenaar7a6eaa02021-03-21 20:53:29 +01002997EXTERN char e_missing_end_block[]
2998 INIT(= N_("E1171: Missing } after inline function"));
2999EXTERN char e_cannot_use_default_values_in_lambda[]
3000 INIT(= N_("E1172: Cannot use default values in a lambda"));
Bram Moolenaar7473a842021-12-28 17:55:26 +00003001EXTERN char e_text_found_after_str_str[]
3002 INIT(= N_("E1173: Text found after %s: %s"));
Bram Moolenaarf28f2ac2021-03-22 22:21:26 +01003003EXTERN char e_string_required_for_argument_nr[]
3004 INIT(= N_("E1174: String required for argument %d"));
3005EXTERN char e_non_empty_string_required_for_argument_nr[]
Bram Moolenaar3a0f0922021-03-25 22:22:30 +01003006 INIT(= N_("E1175: Non-empty string required for argument %d"));
3007EXTERN char e_misplaced_command_modifier[]
3008 INIT(= N_("E1176: Misplaced command modifier"));
Bram Moolenaar74e54fc2021-03-26 20:41:29 +01003009EXTERN char e_for_loop_on_str_not_supported[]
3010 INIT(= N_("E1177: For loop on %s not supported"));
Bram Moolenaarb2cb6c82021-03-28 20:38:34 +02003011EXTERN char e_cannot_lock_unlock_local_variable[]
3012 INIT(= N_("E1178: Cannot lock or unlock a local variable"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003013#endif
3014#ifdef FEAT_TERMINAL
Bram Moolenaar9ea7e552021-03-29 21:06:04 +02003015EXTERN char e_failed_to_extract_pwd_from_str_check_your_shell_config[]
3016 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 +00003017#endif
3018#ifdef FEAT_EVAL
Bram Moolenaar2a389082021-04-09 20:24:31 +02003019EXTERN char e_variable_arguments_type_must_be_list_str[]
3020 INIT(= N_("E1180: Variable arguments type must be a list: %s"));
Bram Moolenaar962c43b2021-04-10 17:18:09 +02003021EXTERN char e_cannot_use_underscore_here[]
3022 INIT(= N_("E1181: Cannot use an underscore here"));
Bram Moolenaardea5ab02022-02-23 22:12:02 +00003023EXTERN char e_cannot_define_dict_func_in_vim9_script_str[]
3024 INIT(= N_("E1182: Cannot define a dict function in Vim9 script: %s"));
Bram Moolenaar0e3ff192021-04-14 20:35:23 +02003025EXTERN char e_cannot_use_range_with_assignment_operator_str[]
3026 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003027#endif
3028#ifdef FEAT_EVAL
Bram Moolenaar51e93322021-04-17 20:44:56 +02003029EXTERN char e_blob_not_set[]
3030 INIT(= N_("E1184: Blob not set"));
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02003031EXTERN char e_missing_redir_end[]
3032 INIT(= N_("E1185: Missing :redir END"));
Bram Moolenaar68db9962021-05-09 23:19:22 +02003033EXTERN char e_expression_does_not_result_in_value_str[]
3034 INIT(= N_("E1186: Expression does not result in a value: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003035#endif
Christian Brabandt1d3a14e2021-05-29 19:53:50 +02003036EXTERN char e_failed_to_source_defaults[]
3037 INIT(= N_("E1187: Failed to source defaults.vim"));
Martin Tournoij7904fa42022-10-04 16:28:45 +01003038#if defined(FEAT_TERMINAL)
Bram Moolenaare5b44862021-05-30 13:54:03 +02003039EXTERN char e_cannot_open_terminal_from_command_line_window[]
3040 INIT(= N_("E1188: Cannot open a terminal from the command line window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003041#endif
3042#ifdef FEAT_EVAL
Bram Moolenaarc3cb1c92021-06-02 16:47:53 +02003043EXTERN char e_cannot_use_legacy_with_command_str[]
3044 INIT(= N_("E1189: Cannot use :legacy with this command: %s"));
Bram Moolenaara1d5f9f2023-05-27 13:40:11 +01003045
3046PLURAL_MSG(e_one_argument_too_few, "E1190: One argument too few",
3047 e_nr_arguments_too_few, "E1190: %d arguments too few")
3048
Bram Moolenaarb55d6182021-06-08 22:01:53 +02003049EXTERN char e_call_to_function_that_failed_to_compile_str[]
3050 INIT(= N_("E1191: Call to function that failed to compile: %s"));
Bram Moolenaar22db0d52021-06-12 12:16:55 +02003051EXTERN char e_empty_function_name[]
3052 INIT(= N_("E1192: Empty function name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003053#endif
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003054// libsodium
Dominique Pellef85a4242022-01-09 12:49:31 +00003055#ifdef FEAT_CRYPT
3056# ifndef FEAT_SODIUM
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003057EXTERN char e_libsodium_not_built_in[]
3058 INIT(= N_("E1193: cryptmethod xchacha20 not built into this Vim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003059# else
3060# if 0
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003061EXTERN char e_libsodium_cannot_encrypt_header[]
3062 INIT(= N_("E1194: Cannot encrypt header, not enough space"));
3063EXTERN char e_libsodium_cannot_encrypt_buffer[]
3064 INIT(= N_("E1195: Cannot encrypt buffer, not enough space"));
3065EXTERN char e_libsodium_cannot_decrypt_header[]
3066 INIT(= N_("E1196: Cannot decrypt header, not enough space"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003067# endif
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003068EXTERN char e_libsodium_cannot_allocate_buffer[]
3069 INIT(= N_("E1197: Cannot allocate_buffer for encryption"));
3070EXTERN char e_libsodium_decryption_failed_header_incomplete[]
3071 INIT(= N_("E1198: Decryption failed: Header incomplete!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003072# if 0
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003073EXTERN char e_libsodium_cannot_decrypt_buffer[]
3074 INIT(= N_("E1199: Cannot decrypt buffer, not enough space"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003075# endif
Dominique Pellecb54bc62021-06-21 20:15:37 +02003076EXTERN char e_libsodium_decryption_failed[]
Christian Brabandt226b28b2021-06-21 21:08:08 +02003077 INIT(= N_("E1200: Decryption failed!"));
Dominique Pellecb54bc62021-06-21 20:15:37 +02003078EXTERN char e_libsodium_decryption_failed_premature[]
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003079 INIT(= N_("E1201: Decryption failed: pre-mature end of file!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003080# endif
3081#endif
3082#ifdef FEAT_EVAL
Bram Moolenaar22480d12021-06-25 21:31:09 +02003083EXTERN char e_no_white_space_allowed_after_str_str[]
3084 INIT(= N_("E1202: No white space allowed after '%s': %s"));
Ernie Raelf8da3242023-10-11 21:22:12 +02003085EXTERN char e_dot_not_allowed_after_str_str[]
3086 INIT(= N_("E1203: Dot not allowed after a %s: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003087#endif
Bram Moolenaar91ff3d42022-04-04 18:32:32 +01003088EXTERN char e_regexp_number_after_dot_pos_search_chr[]
Bram Moolenaar04db26b2021-07-05 20:15:23 +02003089 INIT(= N_("E1204: No Number allowed after .: '\\%%%c'"));
Bram Moolenaar1594f312021-07-08 16:40:13 +02003090EXTERN char e_no_white_space_allowed_between_option_and[]
3091 INIT(= N_("E1205: No white space allowed between option and"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003092#ifdef FEAT_EVAL
Yegappan Lakshmanan5b739922021-07-10 13:15:41 +02003093EXTERN char e_dict_required_for_argument_nr[]
3094 INIT(= N_("E1206: Dictionary required for argument %d"));
Bram Moolenaarc3235272021-07-10 19:42:03 +02003095EXTERN char e_expression_without_effect_str[]
3096 INIT(= N_("E1207: Expression without an effect: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003097#endif
Bram Moolenaar41a34852021-08-04 16:09:24 +02003098EXTERN char e_complete_used_without_allowing_arguments[]
3099 INIT(= N_("E1208: -complete used without allowing arguments"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003100#ifdef FEAT_EVAL
Bram Moolenaar0f1227f2021-07-11 16:01:58 +02003101EXTERN char e_invalid_value_for_line_number_str[]
3102 INIT(= N_("E1209: Invalid value for a line number: \"%s\""));
Yegappan Lakshmanan1a71d312021-07-15 12:49:58 +02003103EXTERN char e_number_required_for_argument_nr[]
3104 INIT(= N_("E1210: Number required for argument %d"));
Yegappan Lakshmanana9a7c0c2021-07-17 19:11:07 +02003105EXTERN char e_list_required_for_argument_nr[]
3106 INIT(= N_("E1211: List required for argument %d"));
3107EXTERN char e_bool_required_for_argument_nr[]
Bram Moolenaar98c2eae2021-07-19 10:38:49 +02003108 INIT(= N_("E1212: Bool required for argument %d"));
Bram Moolenaar24e93162021-07-18 20:40:33 +02003109EXTERN char e_redefining_imported_item_str[]
Bram Moolenaar60579352021-07-19 21:45:07 +02003110 INIT(= N_("E1213: Redefining imported item \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00003111#endif
Martin Tournoijba43e762022-10-13 22:12:15 +01003112#if defined(FEAT_DIGRAPHS)
mityu61065042021-07-19 20:07:21 +02003113EXTERN char e_digraph_must_be_just_two_characters_str[]
3114 INIT(= N_("E1214: Digraph must be just two characters: %s"));
3115EXTERN char e_digraph_argument_must_be_one_character_str[]
3116 INIT(= N_("E1215: Digraph must be one character: %s"));
h-east29b85712021-07-26 21:54:04 +02003117EXTERN char e_digraph_setlist_argument_must_be_list_of_lists_with_two_items[]
3118 INIT(= N_("E1216: digraph_setlist() argument must be a list of lists with two items"));
mityu61065042021-07-19 20:07:21 +02003119#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00003120#ifdef FEAT_EVAL
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003121# ifdef FEAT_JOB_CHANNEL
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02003122EXTERN char e_chan_or_job_required_for_argument_nr[]
Yegappan Lakshmanan0ad871d2021-07-23 20:37:56 +02003123 INIT(= N_("E1217: Channel or Job required for argument %d"));
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02003124EXTERN char e_job_required_for_argument_nr[]
Yegappan Lakshmanan0ad871d2021-07-23 20:37:56 +02003125 INIT(= N_("E1218: Job required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003126# endif
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003127EXTERN char e_float_or_number_required_for_argument_nr[]
3128 INIT(= N_("E1219: Float or Number required for argument %d"));
3129EXTERN char e_string_or_number_required_for_argument_nr[]
3130 INIT(= N_("E1220: String or Number required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003131# ifdef FEAT_JOB_CHANNEL
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003132EXTERN char e_string_or_blob_required_for_argument_nr[]
3133 INIT(= N_("E1221: String or Blob required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003134# endif
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003135EXTERN char e_string_or_list_required_for_argument_nr[]
3136 INIT(= N_("E1222: String or List required for argument %d"));
3137EXTERN char e_string_or_dict_required_for_argument_nr[]
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003138 INIT(= N_("E1223: String or Dictionary required for argument %d"));
3139EXTERN char e_string_number_or_list_required_for_argument_nr[]
3140 INIT(= N_("E1224: String, Number or List required for argument %d"));
3141EXTERN char e_string_list_or_dict_required_for_argument_nr[]
3142 INIT(= N_("E1225: String, List or Dictionary required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003143EXTERN char e_list_or_blob_required_for_argument_nr[]
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003144 INIT(= N_("E1226: List or Blob required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003145EXTERN char e_list_or_dict_required_for_argument_nr[]
3146 INIT(= N_("E1227: List or Dictionary required for argument %d"));
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003147EXTERN char e_list_dict_or_blob_required_for_argument_nr[]
3148 INIT(= N_("E1228: List, Dictionary or Blob required for argument %d"));
Bram Moolenaard47c3972021-07-28 20:52:13 +02003149EXTERN char e_expected_dictionary_for_using_key_str_but_got_str[]
3150 INIT(= N_("E1229: Expected dictionary for using key \"%s\", but got %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003151#endif
3152#ifdef FEAT_SODIUM
Bram Moolenaar131530a2021-07-29 20:37:49 +02003153EXTERN char e_encryption_sodium_mlock_failed[]
Bram Moolenaar63b91732021-08-05 20:40:03 +02003154 INIT(= N_("E1230: Encryption: sodium_mlock() failed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003155#endif
Bram Moolenaar63b91732021-08-05 20:40:03 +02003156EXTERN char e_cannot_use_bar_to_separate_commands_here_str[]
3157 INIT(= N_("E1231: Cannot use a bar to separate commands here: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003158#ifdef FEAT_EVAL
Bram Moolenaar26735992021-08-08 14:43:22 +02003159EXTERN char e_argument_of_exists_compiled_must_be_literal_string[]
3160 INIT(= N_("E1232: Argument of exists_compiled() must be a literal string"));
3161EXTERN char e_exists_compiled_can_only_be_used_in_def_function[]
3162 INIT(= N_("E1233: exists_compiled() can only be used in a :def function"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003163#endif
Bram Moolenaardd9de502021-08-15 13:49:42 +02003164EXTERN char e_legacy_must_be_followed_by_command[]
3165 INIT(= N_("E1234: legacy must be followed by a command"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003166#ifdef FEAT_EVAL
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003167// E1235 unused
Bram Moolenaard5f400c2022-01-06 21:10:28 +00003168EXTERN char e_cannot_use_str_itself_it_is_imported[]
3169 INIT(= N_("E1236: Cannot use %s itself, it is imported"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003170#endif
Bram Moolenaarbdcba242021-09-12 20:58:02 +02003171EXTERN char e_no_such_user_defined_command_in_current_buffer_str[]
3172 INIT(= N_("E1237: No such user-defined command in current buffer: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003173#ifdef FEAT_EVAL
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +02003174EXTERN char e_blob_required_for_argument_nr[]
3175 INIT(= N_("E1238: Blob required for argument %d"));
3176EXTERN char e_invalid_value_for_blob_nr[]
3177 INIT(= N_("E1239: Invalid value for blob: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003178#endif
Bram Moolenaareeed1c72021-10-10 12:35:17 +01003179EXTERN char e_resulting_text_too_long[]
3180 INIT(= N_("E1240: Resulting text too long"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003181#ifdef FEAT_EVAL
Bram Moolenaar7b829262021-10-13 15:04:34 +01003182EXTERN char e_separator_not_supported_str[]
3183 INIT(= N_("E1241: Separator not supported: %s"));
3184EXTERN char e_no_white_space_allowed_before_separator_str[]
3185 INIT(= N_("E1242: No white space allowed before separator: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003186#endif
3187#ifdef FEAT_GUI_GTK
Dusan Popovic4eeedc02021-10-16 20:52:05 +01003188EXTERN char e_ascii_code_not_in_range[]
3189 INIT(= N_("E1243: ASCII code not in 32-127 range"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003190#endif
3191#ifdef FEAT_EVAL
3192# if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
Drew Vogele30d1022021-10-24 20:35:07 +01003193EXTERN char e_bad_color_string_str[]
3194 INIT(= N_("E1244: Bad color string: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003195# endif
Bram Moolenaarc4492712021-11-22 15:37:15 +00003196EXTERN char e_cannot_expand_sfile_in_vim9_function[]
3197 INIT(= N_("E1245: Cannot expand <sfile> in a Vim9 function"));
Bram Moolenaar04b568b2021-11-22 21:58:41 +00003198EXTERN char e_cannot_find_variable_to_unlock_str[]
3199 INIT(= N_("E1246: Cannot find variable to (un)lock: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003200#endif
Bram Moolenaar03725c52021-11-24 12:17:53 +00003201EXTERN char e_line_number_out_of_range[]
3202 INIT(= N_("E1247: Line number out of range"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003203#ifdef FEAT_EVAL
Bram Moolenaar69c76172021-12-02 16:38:52 +00003204EXTERN char e_closure_called_from_invalid_context[]
3205 INIT(= N_("E1248: Closure called from invalid context"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003206#endif
erw7f7f7aaf2021-12-07 21:29:20 +00003207EXTERN char e_highlight_group_name_too_long[]
3208 INIT(= N_("E1249: Highlight group name too long"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003209#ifdef FEAT_EVAL
rbtnnc479ce02021-12-15 19:14:54 +00003210EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[]
3211 INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob"));
Bram Moolenaar2d877592021-12-16 08:21:09 +00003212EXTERN char e_list_dict_blob_or_string_required_for_argument_nr[]
rbtnn0ccb5842021-12-18 18:33:46 +00003213 INIT(= N_("E1251: List, Dictionary, Blob or String required for argument %d"));
3214EXTERN char e_string_list_or_blob_required_for_argument_nr[]
3215 INIT(= N_("E1252: String, List or Blob required for argument %d"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02003216// E1253 unused
Bram Moolenaara99fb232021-12-20 12:25:03 +00003217EXTERN char e_cannot_use_script_variable_in_for_loop[]
3218 INIT(= N_("E1254: Cannot use script variable in for loop"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003219#endif
Bram Moolenaar806da512021-12-24 19:54:52 +00003220EXTERN char e_cmd_mapping_must_end_with_cr[]
3221 INIT(= N_("E1255: <Cmd> mapping must end with <CR>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003222#ifdef FEAT_EVAL
Bram Moolenaar223d0a62021-12-25 19:29:21 +00003223EXTERN char e_string_or_function_required_for_argument_nr[]
3224 INIT(= N_("E1256: String or function required for argument %d"));
Bram Moolenaar834d4182022-01-07 13:38:24 +00003225EXTERN char e_imported_script_must_use_as_or_end_in_dot_vim_str[]
3226 INIT(= N_("E1257: Imported script must use \"as\" or end in .vim: %s"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00003227EXTERN char e_no_dot_after_imported_name_str[]
3228 INIT(= N_("E1258: No '.' after imported name: %s"));
3229EXTERN char e_missing_name_after_imported_name_str[]
3230 INIT(= N_("E1259: Missing name after imported name: %s"));
3231EXTERN char e_cannot_unlet_imported_item_str[]
3232 INIT(= N_("E1260: Cannot unlet an imported item: %s"));
Bram Moolenaar834d4182022-01-07 13:38:24 +00003233EXTERN char e_cannot_import_dot_vim_without_using_as[]
3234 INIT(= N_("E1261: Cannot import .vim without using \"as\""));
Bram Moolenaar7c24dfd2022-01-08 17:03:55 +00003235EXTERN char e_cannot_import_same_script_twice_str[]
3236 INIT(= N_("E1262: Cannot import the same script twice: %s"));
Bram Moolenaard8fe6d32022-01-30 18:40:44 +00003237EXTERN char e_cannot_use_name_with_hash_in_vim9_script_use_export_instead[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01003238 INIT(= N_("E1263: Cannot use name with # in Vim9 script, use export instead"));
Bram Moolenaardc4451d2022-01-09 21:36:37 +00003239EXTERN char e_autoload_import_cannot_use_absolute_or_relative_path[]
3240 INIT(= N_("E1264: Autoload import cannot use absolute or relative path: %s"));
Bram Moolenaarc665dab2022-01-16 19:38:07 +00003241EXTERN char e_cannot_use_partial_here[]
3242 INIT(= N_("E1265: Cannot use a partial here"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003243#endif
Bram Moolenaar63ff72a2022-02-07 13:54:01 +00003244#if defined(FEAT_PYTHON3) && defined(MSWIN)
3245EXTERN char e_critical_error_in_python3_initialization_check_your_installation[]
3246 INIT(= N_("E1266: Critical error in python3 initialization, check your python3 installation"));
3247#endif
Bram Moolenaar3787f262022-02-07 21:54:01 +00003248#ifdef FEAT_EVAL
3249EXTERN char e_function_name_must_start_with_capital_str[]
3250 INIT(= N_("E1267: Function name must start with a capital: %s"));
Bram Moolenaara749a422022-02-12 19:52:25 +00003251EXTERN char e_cannot_use_s_colon_in_vim9_script_str[]
3252 INIT(= N_("E1268: Cannot use s: in Vim9 script: %s"));
Bram Moolenaar75e27d72022-02-13 13:56:29 +00003253EXTERN char e_cannot_create_vim9_script_variable_in_function_str[]
3254 INIT(= N_("E1269: Cannot create a Vim9 script variable in a function: %s"));
Bram Moolenaar525eba02022-03-05 22:07:32 +00003255#endif
Bram Moolenaar9fb7b422022-03-05 21:13:26 +00003256EXTERN char e_cannot_use_s_backslash_in_vim9_script[]
3257 INIT(= N_("E1270: Cannot use :s\\/sub/ in Vim9 script"));
Bram Moolenaar96923b72022-03-15 15:57:04 +00003258#ifdef FEAT_EVAL
3259EXTERN char e_compiling_closure_without_context_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01003260 INIT(= N_("E1271: Compiling closure without context: %s"));
Bram Moolenaar4c8b5462022-03-16 20:01:39 +00003261EXTERN char e_using_type_not_in_script_context_str[]
3262 INIT(= N_("E1272: Using type not in a script context: %s"));
Bram Moolenaar96923b72022-03-15 15:57:04 +00003263#endif
Bram Moolenaar91ff3d42022-04-04 18:32:32 +01003264EXTERN char e_nfa_regexp_missing_value_in_chr[]
3265 INIT(= N_("E1273: (NFA regexp) missing value in '\\%%%c'"));
LemonBoy6013d002022-04-09 21:42:10 +01003266EXTERN char e_no_script_file_name_to_substitute_for_script[]
3267 INIT(= N_("E1274: No script file name to substitute for \"<script>\""));
Bram Moolenaar8b91e712022-04-17 15:06:35 +01003268#ifdef FEAT_EVAL
3269EXTERN char e_string_or_function_required_for_arrow_parens_expr[]
3270 INIT(= N_("E1275: String or function required for ->(expr)"));
Ernie Rael51d04d12022-05-04 15:40:22 +01003271EXTERN char e_illegal_map_mode_string_str[]
3272 INIT(= N_("E1276: Illegal map mode string: '%s'"));
Bram Moolenaarc9af6172022-05-04 16:46:54 +01003273# if !defined(FEAT_JOB_CHANNEL)
3274EXTERN char e_channel_job_feature_not_available[]
3275 INIT(= N_("E1277: Channel and job feature is not available"));
3276# endif
LemonBoy2eaef102022-05-06 13:14:50 +01003277EXTERN char e_stray_closing_curly_str[]
3278 INIT(= N_("E1278: Stray '}' without a matching '{': %s"));
3279EXTERN char e_missing_close_curly_str[]
3280 INIT(= N_("E1279: Missing '}': %s"));
Bram Moolenaar8b91e712022-04-17 15:06:35 +01003281#endif
Bram Moolenaar7c824682022-05-08 22:32:58 +01003282#ifdef FEAT_SPELL
3283EXTERN char e_illegal_character_in_word[]
3284 INIT(= N_("E1280: Illegal character in word"));
3285#endif
Christian Brabandt360da402022-05-18 15:04:02 +01003286EXTERN char e_atom_engine_must_be_at_start_of_pattern[]
3287 INIT(= N_("E1281: Atom '\\%%#=%c' must be at the start of the pattern"));
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01003288#ifdef FEAT_EVAL
3289EXTERN char e_bitshift_ops_must_be_number[]
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01003290 INIT(= N_("E1282: Bitshift operands must be numbers"));
dundargocc57b5bc2022-11-02 13:30:51 +00003291EXTERN char e_bitshift_ops_must_be_positive[]
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01003292 INIT(= N_("E1283: Bitshift amount must be a positive number"));
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01003293#endif
Bram Moolenaar83bd7a92022-05-29 17:13:24 +01003294#if defined(FEAT_PROP_POPUP)
3295EXTERN char e_argument_1_list_item_nr_dictionary_required[]
3296 INIT(= N_("E1284: Argument 1, list item %d: Dictionary required"));
3297#endif
Paul Ollis65745772022-06-05 16:55:54 +01003298#ifdef FEAT_RELTIME
3299EXTERN char e_could_not_clear_timeout_str[]
3300 INIT(= N_("E1285: Could not clear timeout: %s"));
3301EXTERN char e_could_not_set_timeout_str[]
3302 INIT(= N_("E1286: Could not set timeout: %s"));
Bram Moolenaar08210f82023-04-13 19:15:54 +01003303#ifndef PROF_NSEC
Paul Ollis65745772022-06-05 16:55:54 +01003304EXTERN char e_could_not_set_handler_for_timeout_str[]
3305 INIT(= N_("E1287: Could not set handler for timeout: %s"));
3306EXTERN char e_could_not_reset_handler_for_timeout_str[]
3307 INIT(= N_("E1288: Could not reset handler for timeout: %s"));
3308EXTERN char e_could_not_check_for_pending_sigalrm_str[]
3309 INIT(= N_("E1289: Could not check for pending SIGALRM: %s"));
3310#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00003311#endif
Bram Moolenaar44ddf192022-06-21 22:15:25 +01003312#ifdef FEAT_EVAL
3313EXTERN char e_substitute_nesting_too_deep[]
3314 INIT(= N_("E1290: substitute nesting too deep"));
Yegappan Lakshmanan81a3ff92022-07-23 05:04:16 +01003315EXTERN char e_invalid_argument_nr[]
3316 INIT(= N_("E1291: Invalid argument: %ld"));
Bram Moolenaar44ddf192022-06-21 22:15:25 +01003317#endif
Bram Moolenaarc963ec32022-07-24 20:08:01 +01003318EXTERN char e_cmdline_window_already_open[]
3319 INIT(= N_("E1292: Command-line window is already open"));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003320#ifdef FEAT_PROP_POPUP
3321EXTERN char e_cannot_use_negative_id_after_adding_textprop_with_text[]
Bram Moolenaar34d17732022-07-27 13:18:14 +01003322 INIT(= N_("E1293: Cannot use a negative id after adding a textprop with text"));
Bram Moolenaar82b14c12022-08-10 19:50:47 +01003323EXTERN char e_can_only_use_text_align_when_column_is_zero[]
3324 INIT(= N_("E1294: Can only use text_align when column is zero"));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003325#endif
Ben Jacksona7704222022-08-20 20:54:51 +01003326#ifdef FEAT_PROP_POPUP
3327EXTERN char e_cannot_specify_both_type_and_types[]
3328 INIT(= N_("E1295: Cannot specify both 'type' and 'types'"));
Bram Moolenaarf396ce82022-08-23 18:39:37 +01003329EXTERN char e_can_only_use_left_padding_when_column_is_zero[]
3330 INIT(= N_("E1296: Can only use left padding when column is zero"));
Ben Jacksona7704222022-08-20 20:54:51 +01003331#endif
Bram Moolenaard83392a2022-09-01 12:22:46 +01003332#ifdef FEAT_EVAL
Yegappan Lakshmanan04c4c572022-08-30 19:48:24 +01003333EXTERN char e_non_null_dict_required_for_argument_nr[]
3334 INIT(= N_("E1297: Non-NULL Dictionary required for argument %d"));
Bram Moolenaard83392a2022-09-01 12:22:46 +01003335EXTERN char e_non_null_list_required_for_argument_nr[]
3336 INIT(= N_("E1298: Non-NULL List required for argument %d"));
3337#endif
Bram Moolenaarccfde4d2022-09-05 19:51:13 +01003338EXTERN char e_window_unexpectedly_close_while_searching_for_tags[]
3339 INIT(= N_("E1299: Window unexpectedly closed while searching for tags"));
Bram Moolenaar86d87252022-09-05 21:21:25 +01003340#ifdef FEAT_EVAL
3341EXTERN char e_cannot_use_partial_with_dictionary_for_defer[]
3342 INIT(= N_("E1300: Cannot use a partial with dictionary for :defer"));
Bakudankun375141e2022-09-09 18:46:47 +01003343EXTERN char e_string_number_list_or_blob_required_for_argument_nr[]
3344 INIT(= N_("E1301: String, Number, List or Blob required for argument %d"));
Bram Moolenaar6de22962022-09-09 21:35:36 +01003345EXTERN char e_script_variable_was_deleted[]
3346 INIT(= N_("E1302: Script variable was deleted"));
Bram Moolenaar55e93662022-09-10 13:52:26 +01003347EXTERN char e_custom_list_completion_function_does_not_return_list_but_str[]
3348 INIT(= N_("E1303: Custom list completion function does not return a List but a %s"));
Bram Moolenaar9510d222022-09-11 15:14:05 +01003349EXTERN char e_cannot_use_type_with_this_variable_str[]
3350 INIT(= N_("E1304: Cannot use type with this variable: %s"));
Bram Moolenaar86d87252022-09-05 21:21:25 +01003351#endif
Bram Moolenaarfb593c52022-09-17 18:57:36 +01003352#ifdef FEAT_PROP_POPUP
3353EXTERN char e_cannot_use_length_endcol_and_endlnum_with_text[]
3354 INIT(= N_("E1305: Cannot use \"length\", \"end_col\" and \"end_lnum\" with \"text\""));
3355#endif
Bram Moolenaarcc341812022-09-19 15:54:34 +01003356#ifdef FEAT_EVAL
3357EXTERN char e_loop_nesting_too_deep[]
3358 INIT(= N_("E1306: Loop nesting too deep"));
Bram Moolenaarfa103972022-09-29 19:14:42 +01003359EXTERN char e_argument_nr_trying_to_modify_const_str[]
3360 INIT(= N_("E1307: Argument %d: Trying to modify a const %s"));
Bram Moolenaar86e67172022-10-31 12:24:12 +00003361EXTERN char e_cannot_resize_window_in_another_tab_page[]
3362 INIT(= N_("E1308: Cannot resize a window in another tab page"));
Bram Moolenaarcc341812022-09-19 15:54:34 +01003363#endif
Bram Moolenaarbf533e42022-11-13 20:43:19 +00003364EXTERN char e_cannot_change_mappings_while_listing[]
3365 INIT(= N_("E1309: Cannot change mappings while listing"));
Bram Moolenaar920d3112022-11-13 21:10:02 +00003366#if defined(FEAT_MENU)
3367EXTERN char e_cannot_change_menus_while_listing[]
3368 INIT(= N_("E1310: Cannot change menus while listing"));
3369#endif
Bram Moolenaarcf2594f2022-11-13 23:30:06 +00003370EXTERN char e_cannot_change_user_commands_while_listing[]
3371 INIT(= N_("E1311: Cannot change user commands while listing"));
Bram Moolenaard63a8552022-11-19 11:41:30 +00003372EXTERN char e_not_allowed_to_change_window_layout_in_this_autocmd[]
3373 INIT(= N_("E1312: Not allowed to change the window layout in this autocmd"));
Bram Moolenaaref2c3252022-11-25 16:31:51 +00003374EXTERN char e_not_allowed_to_add_or_remove_entries_str[]
3375 INIT(= N_("E1313: Not allowed to add or remove entries (%s)"));
Bram Moolenaarc1c365c2022-12-04 20:13:24 +00003376#ifdef FEAT_EVAL
3377EXTERN char e_class_name_must_start_with_uppercase_letter_str[]
3378 INIT(= N_("E1314: Class name must start with an uppercase letter: %s"));
Bram Moolenaar554d0312023-01-05 19:59:18 +00003379EXTERN char e_white_space_required_after_name_str[]
3380 INIT(= N_("E1315: White space required after name: %s"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003381EXTERN char e_class_can_only_be_defined_in_vim9_script[]
3382 INIT(= N_("E1316: Class can only be defined in Vim9 script"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003383EXTERN char e_invalid_object_variable_declaration_str[]
3384 INIT(= N_("E1317: Invalid object variable declaration: %s"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003385EXTERN char e_not_valid_command_in_class_str[]
3386 INIT(= N_("E1318: Not a valid command in a class: %s"));
3387EXTERN char e_using_class_as_number[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003388 INIT(= N_("E1319: Using a Class as a Number"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003389EXTERN char e_using_object_as_number[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003390 INIT(= N_("E1320: Using an Object as a Number"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003391EXTERN char e_using_class_as_float[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003392 INIT(= N_("E1321: Using a Class as a Float"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003393EXTERN char e_using_object_as_float[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003394 INIT(= N_("E1322: Using an Object as a Float"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003395EXTERN char e_using_class_as_string[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003396 INIT(= N_("E1323: Using a Class as a String"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003397EXTERN char e_using_object_as_string[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003398 INIT(= N_("E1324: Using an Object as a String"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003399EXTERN char e_method_not_found_on_class_str_str[]
Ernie Raeld4802ec2023-10-20 11:59:00 +02003400 INIT(= N_("E1325: Method \"%s\" not found in class \"%s\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003401EXTERN char e_variable_not_found_on_object_str_str[]
Ernie Raeld4802ec2023-10-20 11:59:00 +02003402 INIT(= N_("E1326: Variable \"%s\" not found in object \"%s\""));
Bram Moolenaarffdaca92022-12-09 21:41:48 +00003403EXTERN char e_object_required_found_str[]
3404 INIT(= N_("E1327: Object required, found %s"));
Bram Moolenaar65b0d162022-12-13 18:43:22 +00003405EXTERN char e_constructor_default_value_must_be_vnone_str[]
3406 INIT(= N_("E1328: Constructor default value must be v:none: %s"));
Doug Kearns74da0ee2023-12-14 20:26:26 +01003407EXTERN char e_invalid_class_variable_declaration_str[]
3408 INIT(= N_("E1329: Invalid class variable declaration: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003409EXTERN char e_invalid_type_for_object_variable_str[]
3410 INIT(= N_("E1330: Invalid type for object variable: %s"));
Yegappan Lakshmanane5437c52023-12-16 14:11:19 +01003411EXTERN char e_public_must_be_followed_by_var_static_final_or_const[]
3412 INIT(= N_("E1331: Public must be followed by \"var\" or \"static\" or \"final\" or \"const\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003413EXTERN char e_public_variable_name_cannot_start_with_underscore_str[]
3414 INIT(= N_("E1332: Public variable name cannot start with underscore: %s"));
Ernie Rael03042a22023-11-11 08:53:32 +01003415EXTERN char e_cannot_access_protected_variable_str[]
3416 INIT(= N_("E1333: Cannot access protected variable \"%s\" in class \"%s\""));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003417// E1334 unused
RestorerZ7fe8f432023-09-24 23:21:24 +02003418EXTERN char e_variable_is_not_writable_str[]
Ernie Rael696270b2023-09-21 16:42:28 +02003419 INIT(= N_("E1335: Variable \"%s\" in class \"%s\" is not writable"));
Bram Moolenaarc1c365c2022-12-04 20:13:24 +00003420#endif
Christian Brabandt9aee8ec2022-12-16 16:41:23 +00003421EXTERN char e_internal_error_shortmess_too_long[]
RestorerZ68ebcee2023-05-31 17:12:14 +01003422 INIT(= "E1336: Internal error: shortmess too long");
Bram Moolenaard505d172022-12-18 21:42:55 +00003423#ifdef FEAT_EVAL
RestorerZ7fe8f432023-09-24 23:21:24 +02003424EXTERN char e_class_variable_str_not_found_in_class_str[]
3425 INIT(= N_("E1337: Class variable \"%s\" not found in class \"%s\""));
Yegappan Lakshmanan00cd1822023-09-18 19:56:49 +02003426// E1338 unused
Bram Moolenaard505d172022-12-18 21:42:55 +00003427#endif
Bram Moolenaar4ce1f992022-12-19 13:31:06 +00003428#ifdef FEAT_PROP_POPUP
3429EXTERN char e_cannot_add_textprop_with_text_after_using_textprop_with_negative_id[]
3430 INIT(= N_("E1339: Cannot add a textprop with text after using a textprop with a negative id"));
3431#endif
Bram Moolenaar993dbc32023-01-01 20:31:30 +00003432#ifdef FEAT_EVAL
3433EXTERN char e_argument_already_declared_in_class_str[]
3434 INIT(= N_("E1340: Argument already declared in the class: %s"));
3435EXTERN char e_variable_already_declared_in_class_str[]
3436 INIT(= N_("E1341: Variable already declared in the class: %s"));
Bram Moolenaar554d0312023-01-05 19:59:18 +00003437EXTERN char e_interface_can_only_be_defined_in_vim9_script[]
3438 INIT(= N_("E1342: Interface can only be defined in Vim9 script"));
3439EXTERN char e_interface_name_must_start_with_uppercase_letter_str[]
3440 INIT(= N_("E1343: Interface name must start with an uppercase letter: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003441EXTERN char e_cannot_initialize_variable_in_interface[]
3442 INIT(= N_("E1344: Cannot initialize a variable in an interface"));
Bram Moolenaar554d0312023-01-05 19:59:18 +00003443EXTERN char e_not_valid_command_in_interface_str[]
3444 INIT(= N_("E1345: Not a valid command in an interface: %s"));
Bram Moolenaar94674f22023-01-06 18:42:20 +00003445EXTERN char e_interface_name_not_found_str[]
3446 INIT(= N_("E1346: Interface name not found: %s"));
3447EXTERN char e_not_valid_interface_str[]
3448 INIT(= N_("E1347: Not a valid interface: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003449EXTERN char e_variable_str_of_interface_str_not_implemented[]
3450 INIT(= N_("E1348: Variable \"%s\" of interface \"%s\" is not implemented"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003451EXTERN char e_method_str_of_interface_str_not_implemented[]
3452 INIT(= N_("E1349: Method \"%s\" of interface \"%s\" is not implemented"));
Bram Moolenaardf8f9472023-01-07 14:51:03 +00003453EXTERN char e_duplicate_implements[]
3454 INIT(= N_("E1350: Duplicate \"implements\""));
3455EXTERN char e_duplicate_interface_after_implements_str[]
3456 INIT(= N_("E1351: Duplicate interface after \"implements\": %s"));
Bram Moolenaar83677162023-01-08 19:54:10 +00003457EXTERN char e_duplicate_extends[]
3458 INIT(= N_("E1352: Duplicate \"extends\""));
3459EXTERN char e_class_name_not_found_str[]
3460 INIT(= N_("E1353: Class name not found: %s"));
3461EXTERN char e_cannot_extend_str[]
3462 INIT(= N_("E1354: Cannot extend %s"));
Bram Moolenaar58b40092023-01-11 15:59:05 +00003463EXTERN char e_duplicate_function_str[]
3464 INIT(= N_("E1355: Duplicate function: %s"));
3465EXTERN char e_super_must_be_followed_by_dot[]
3466 INIT(= N_("E1356: \"super\" must be followed by a dot"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003467EXTERN char e_using_super_not_in_class_method[]
3468 INIT(= N_("E1357: Using \"super\" not in a class method"));
Bram Moolenaar6aa09372023-01-11 17:59:38 +00003469EXTERN char e_using_super_not_in_child_class[]
3470 INIT(= N_("E1358: Using \"super\" not in a child class"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003471EXTERN char e_cannot_define_new_method_in_abstract_class[]
3472 INIT(= N_("E1359: Cannot define a \"new\" method in an abstract class"));
Bram Moolenaar552bdca2023-02-17 21:08:50 +00003473EXTERN char e_using_null_object[]
3474 INIT(= N_("E1360: Using a null object"));
Bram Moolenaar993dbc32023-01-01 20:31:30 +00003475#endif
Bram Moolenaar5b9f5722023-02-19 20:49:38 +00003476EXTERN char e_cannot_use_color_none_did_you_mean_none[]
3477 INIT(= N_("E1361: Cannot use color \"none\", did you mean \"NONE\"?"));
Bram Moolenaarc4e1b862023-02-26 18:58:23 +00003478#ifdef FEAT_EVAL
3479EXTERN char e_cannot_use_non_null_object[]
3480 INIT(= N_("E1362: Cannot use a non-null object"));
Ernie Raelf77a7f72023-03-03 15:05:30 +00003481EXTERN char e_incomplete_type[]
3482 INIT(= N_("E1363: Incomplete type"));
Bram Moolenaarc4e1b862023-02-26 18:58:23 +00003483#endif
Bram Moolenaarb67ba032023-04-22 21:14:26 +01003484EXTERN char e_warning_pointer_block_corrupted[]
3485 INIT(= N_("E1364: Warning: Pointer block corrupted"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003486#ifdef FEAT_EVAL
RestorerZ7fe8f432023-09-24 23:21:24 +02003487EXTERN char e_cannot_use_a_return_type_with_new_method[]
3488 INIT(= N_("E1365: Cannot use a return type with the \"new\" method"));
Ernie Rael03042a22023-11-11 08:53:32 +01003489EXTERN char e_cannot_access_protected_method_str[]
3490 INIT(= N_("E1366: Cannot access protected method: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003491EXTERN char e_variable_str_of_interface_str_has_different_access[]
3492 INIT(= N_("E1367: Access level of variable \"%s\" of interface \"%s\" is different"));
Yegappan Lakshmanane5437c52023-12-16 14:11:19 +01003493EXTERN char e_static_must_be_followed_by_var_def_final_or_const[]
3494 INIT(= N_("E1368: Static must be followed by \"var\" or \"def\" or \"final\" or \"const\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003495EXTERN char e_duplicate_variable_str[]
3496 INIT(= N_("E1369: Duplicate variable: %s"));
3497EXTERN char e_cannot_define_new_method_as_static[]
3498 INIT(= N_("E1370: Cannot define a \"new\" method as static"));
Yegappan Lakshmananef9e3f82023-11-02 20:43:57 +01003499EXTERN char e_abstract_must_be_followed_by_def[]
3500 INIT(= N_("E1371: Abstract must be followed by \"def\""));
Yegappan Lakshmanan7bcd25c2023-09-08 19:27:51 +02003501EXTERN char e_abstract_method_in_concrete_class[]
3502 INIT(= N_("E1372: Abstract method \"%s\" cannot be defined in a concrete class"));
3503EXTERN char e_abstract_method_str_not_found[]
3504 INIT(= N_("E1373: Abstract method \"%s\" is not implemented"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003505EXTERN char e_class_variable_str_accessible_only_inside_class_str[]
3506 INIT(= N_("E1374: Class variable \"%s\" accessible only inside class \"%s\""));
3507EXTERN char e_class_variable_str_accessible_only_using_class_str[]
3508 INIT(= N_("E1375: Class variable \"%s\" accessible only using class \"%s\""));
3509EXTERN char e_object_variable_str_accessible_only_using_object_str[]
3510 INIT(= N_("E1376: Object variable \"%s\" accessible only using class \"%s\" object"));
Yegappan Lakshmananc30a90d2023-09-15 20:14:55 +02003511EXTERN char e_method_str_of_class_str_has_different_access[]
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003512 INIT(= N_("E1377: Access level of method \"%s\" is different in class \"%s\""));
Yegappan Lakshmanan00cd1822023-09-18 19:56:49 +02003513EXTERN char e_static_member_not_supported_in_interface[]
3514 INIT(= N_("E1378: Static member not supported in an interface"));
Ernie Rael03042a22023-11-11 08:53:32 +01003515EXTERN char e_protected_variable_not_supported_in_interface[]
3516 INIT(= N_("E1379: Protected variable not supported in an interface"));
3517EXTERN char e_protected_method_not_supported_in_interface[]
3518 INIT(= N_("E1380: Protected method not supported in an interface"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003519EXTERN char e_interface_cannot_use_implements[]
3520 INIT(= N_("E1381: Interface cannot use \"implements\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003521EXTERN char e_variable_str_type_mismatch_expected_str_but_got_str[]
3522 INIT(= N_("E1382: Variable \"%s\": type mismatch, expected %s but got %s"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003523EXTERN char e_method_str_type_mismatch_expected_str_but_got_str[]
3524 INIT(= N_("E1383: Method \"%s\": type mismatch, expected %s but got %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003525EXTERN char e_class_method_str_accessible_only_inside_class_str[]
3526 INIT(= N_("E1384: Class method \"%s\" accessible only inside class \"%s\""));
3527EXTERN char e_class_method_str_accessible_only_using_class_str[]
3528 INIT(= N_("E1385: Class method \"%s\" accessible only using class \"%s\""));
3529EXTERN char e_object_method_str_accessible_only_using_object_str[]
3530 INIT(= N_("E1386: Object method \"%s\" accessible only using class \"%s\" object"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02003531EXTERN char e_public_variable_not_supported_in_interface[]
Yegappan Lakshmanan2dede3d2023-09-27 19:02:01 +02003532 INIT(= N_("E1387: Public variable not supported in an interface"));
3533EXTERN char e_public_keyword_not_supported_for_method[]
3534 INIT(= N_("E1388: Public keyword not supported for a method"));
3535EXTERN char e_missing_name_after_implements[]
3536 INIT(= N_("E1389: Missing name after implements"));
h-eastdb385522023-09-28 22:18:19 +02003537EXTERN char e_cannot_use_an_object_variable_except_with_the_new_method_str[]
3538 INIT(= N_("E1390: Cannot use an object variable \"this.%s\" except with the \"new\" method"));
Ernie Raelee865f32023-09-29 19:53:55 +02003539EXTERN char e_cannot_lock_object_variable_str[]
3540 INIT(= N_("E1391: Cannot (un)lock variable \"%s\" in class \"%s\""));
3541EXTERN char e_cannot_lock_class_variable_str[]
3542 INIT(= N_("E1392: Cannot (un)lock class variable \"%s\" in class \"%s\""));
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003543EXTERN char e_type_can_only_be_defined_in_vim9_script[]
3544 INIT(= N_("E1393: Type can only be defined in Vim9 script"));
3545EXTERN char e_type_name_must_start_with_uppercase_letter_str[]
3546 INIT(= N_("E1394: Type name must start with an uppercase letter: %s"));
Yegappan Lakshmananfeaccd22023-10-28 15:53:55 +02003547EXTERN char e_cannot_modify_typealias[]
3548 INIT(= N_("E1395: Type alias \"%s\" cannot be modified"));
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003549EXTERN char e_typealias_already_exists_for_str[]
3550 INIT(= N_("E1396: Type alias \"%s\" already exists"));
3551EXTERN char e_missing_typealias_name[]
3552 INIT(= N_("E1397: Missing type alias name"));
3553EXTERN char e_missing_typealias_type[]
3554 INIT(= N_("E1398: Missing type alias type"));
3555EXTERN char e_type_can_only_be_used_in_script[]
3556 INIT(= N_("E1399: Type can only be used in a script"));
Yegappan Lakshmananfeaccd22023-10-28 15:53:55 +02003557EXTERN char e_using_typealias_as_number[]
3558 INIT(= N_("E1400: Using type alias \"%s\" as a Number"));
3559EXTERN char e_using_typealias_as_float[]
3560 INIT(= N_("E1401: Using type alias \"%s\" as a Float"));
3561EXTERN char e_using_typealias_as_string[]
3562 INIT(= N_("E1402: Using type alias \"%s\" as a String"));
Ernie Rael9ed53752023-12-11 17:40:46 +01003563EXTERN char e_using_typealias_as_value_str[]
Yegappan Lakshmananfeaccd22023-10-28 15:53:55 +02003564 INIT(= N_("E1403: Type alias \"%s\" cannot be used as a value"));
Yegappan Lakshmanan2b358ad2023-11-02 20:57:32 +01003565EXTERN char e_abstract_cannot_be_used_in_interface[]
3566 INIT(= N_("E1404: Abstract cannot be used in an interface"));
Ernie Rael9ed53752023-12-11 17:40:46 +01003567EXTERN char e_using_class_as_value_str[]
Ernie Rael2025af12023-12-12 16:58:00 +01003568 INIT(= N_("E1405: Class \"%s\" cannot be used as a value"));
Ernie Rael9ed53752023-12-11 17:40:46 +01003569EXTERN char e_using_class_as_var_val[]
Ernie Rael2025af12023-12-12 16:58:00 +01003570 INIT(= N_("E1406: Cannot use a Class as a variable or value"));
Ernie Rael9ed53752023-12-11 17:40:46 +01003571EXTERN char e_using_typealias_as_var_val[]
Ernie Rael2025af12023-12-12 16:58:00 +01003572 INIT(= N_("E1407: Cannot use a Typealias as a variable or value"));
Yegappan Lakshmanane5437c52023-12-16 14:11:19 +01003573EXTERN char e_final_variable_not_supported_in_interface[]
3574 INIT(= N_("E1408: Final variable not supported in an interface"));
3575EXTERN char e_cannot_change_readonly_variable_str_in_class_str[]
3576 INIT(= N_("E1409: Cannot change read-only variable \"%s\" in class \"%s\""));
3577EXTERN char e_const_variable_not_supported_in_interface[]
3578 INIT(= N_("E1410: Const variable not supported in an interface"));
Ernie Rael5e133152023-12-19 22:15:27 +01003579EXTERN char e_missing_dot_after_object_str[]
3580 INIT(= N_("E1411: Missing dot after object \"%s\""));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003581#endif
Ernie Rael5e133152023-12-19 22:15:27 +01003582// E1412 - E1499 unused (reserved for Vim9 class support)
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003583EXTERN char e_cannot_mix_positional_and_non_positional_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003584 INIT(= N_("E1500: Cannot mix positional and non-positional arguments: %s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003585EXTERN char e_fmt_arg_nr_unused_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003586 INIT(= N_("E1501: format argument %d unused in $-style format: %s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003587EXTERN char e_positional_num_field_spec_reused_str_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003588 INIT(= N_("E1502: Positional argument %d used as field width reused as different type: %s/%s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003589EXTERN char e_positional_nr_out_of_bounds_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003590 INIT(= N_("E1503: Positional argument %d out of bounds: %s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003591EXTERN char e_positional_arg_num_type_inconsistent_str_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003592 INIT(= N_("E1504: Positional argument %d type used inconsistently: %s/%s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003593EXTERN char e_invalid_format_specifier_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003594 INIT(= N_("E1505: Invalid format specifier: %s"));
Christian Brabandte085dfd2023-09-30 12:49:18 +02003595EXTERN char e_xattr_erange[]
3596 INIT(= N_("E1506: Buffer too small to copy xattr value or key"));
Christ van Willegenea746f92023-10-05 20:48:36 +02003597EXTERN char e_aptypes_is_null_nr_str[]
3598 INIT(= "E1507: Internal error: ap_types or ap_types[idx] is NULL: %d: %s");
Christian Brabandte085dfd2023-09-30 12:49:18 +02003599EXTERN char e_xattr_e2big[]
zeertzjq7ece0362023-10-01 09:07:14 +02003600 INIT(= N_("E1508: Size of the extended attribute value is larger than the maximum size allowed"));
Christian Brabandte085dfd2023-09-30 12:49:18 +02003601EXTERN char e_xattr_other[]
Viktor Szépedbf749b2023-10-16 09:53:37 +02003602 INIT(= N_("E1509: Error occurred when reading or writing extended attribute"));
Christian Brabandt9198c1f2023-10-26 21:29:32 +02003603EXTERN char e_val_too_large[]
3604 INIT(= N_("E1510: Value too large: %s"));