blob: d8b1ff68f07aa9144184d5d9d5885bf94424a41f [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
Dominique Pellef85a4242022-01-09 12:49:31 +0000261#ifdef FEAT_EVAL
Yegappan Lakshmananfa378352024-02-01 22:05:27 +0100262EXTERN char e_unsupported_diff_output_format_str[]
263 INIT(= N_("E106: Unsupported diff output format: %s"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000264EXTERN char e_missing_parenthesis_str[]
265 INIT(= N_("E107: Missing parentheses: %s"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000266EXTERN char e_no_such_variable_str[]
267 INIT(= N_("E108: No such variable: \"%s\""));
268EXTERN char e_missing_colon_after_questionmark[]
269 INIT(= N_("E109: Missing ':' after '?'"));
270EXTERN char e_missing_closing_paren[]
271 INIT(= N_("E110: Missing ')'"));
272EXTERN char e_missing_closing_square_brace[]
273 INIT(= N_("E111: Missing ']'"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000274EXTERN char e_option_name_missing_str[]
275 INIT(= N_("E112: Option name missing: %s"));
276EXTERN char e_unknown_option_str[]
277 INIT(= N_("E113: Unknown option: %s"));
278EXTERN char e_missing_double_quote_str[]
279 INIT(= N_("E114: Missing double quote: %s"));
280EXTERN char e_missing_single_quote_str[]
281 INIT(= N_("E115: Missing single quote: %s"));
Bram Moolenaare1242042021-12-16 20:56:57 +0000282EXTERN char e_invalid_arguments_for_function_str[]
283 INIT(= N_("E116: Invalid arguments for function %s"));
284EXTERN char e_unknown_function_str[]
285 INIT(= N_("E117: Unknown function: %s"));
286EXTERN char e_too_many_arguments_for_function_str[]
287 INIT(= N_("E118: Too many arguments for function: %s"));
288EXTERN char e_not_enough_arguments_for_function_str[]
289 INIT(= N_("E119: Not enough arguments for function: %s"));
290EXTERN char e_using_sid_not_in_script_context_str[]
291 INIT(= N_("E120: Using <SID> not in a script context: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +0200292EXTERN char e_undefined_variable_str[]
293 INIT(= N_("E121: Undefined variable: %s"));
294EXTERN char e_undefined_variable_char_str[]
295 INIT(= N_("E121: Undefined variable: %c:%s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000296EXTERN char e_function_str_already_exists_add_bang_to_replace[]
Bram Moolenaarc553a212021-12-26 20:20:34 +0000297 INIT(= N_("E122: Function %s already exists, add ! to replace it"));
298EXTERN char e_undefined_function_str[]
299 INIT(= N_("E123: Undefined function: %s"));
300EXTERN char e_missing_paren_str[]
301 INIT(= N_("E124: Missing '(': %s"));
302EXTERN char e_illegal_argument_str[]
303 INIT(= N_("E125: Illegal argument: %s"));
304EXTERN char e_missing_endfunction[]
305 INIT(= N_("E126: Missing :endfunction"));
306EXTERN char e_cannot_redefine_function_str_it_is_in_use[]
307 INIT(= N_("E127: Cannot redefine function %s: It is in use"));
308EXTERN char e_function_name_must_start_with_capital_or_s_str[]
309 INIT(= N_("E128: Function name must start with a capital or \"s:\": %s"));
310EXTERN char e_function_name_required[]
311 INIT(= N_("E129: Function name required"));
312// E130 unused
313EXTERN char e_cannot_delete_function_str_it_is_in_use[]
314 INIT(= N_("E131: Cannot delete function %s: It is in use"));
315EXTERN char e_function_call_depth_is_higher_than_macfuncdepth[]
316 INIT(= N_("E132: Function call depth is higher than 'maxfuncdepth'"));
317EXTERN char e_return_not_inside_function[]
318 INIT(= N_("E133: :return not inside a function"));
Bram Moolenaard8e44472021-07-21 22:20:33 +0200319#endif
Bram Moolenaarc553a212021-12-26 20:20:34 +0000320EXTERN char e_cannot_move_range_of_lines_into_itself[]
321 INIT(= N_("E134: Cannot move a range of lines into itself"));
322EXTERN char e_filter_autocommands_must_not_change_current_buffer[]
323 INIT(= N_("E135: *Filter* Autocommands must not change current buffer"));
324#if defined(FEAT_VIMINFO)
325EXTERN char e_viminfo_too_many_errors_skipping_rest_of_file[]
326 INIT(= N_("E136: viminfo: Too many errors, skipping rest of file"));
327EXTERN char e_viminfo_file_is_not_writable_str[]
328 INIT(= N_("E137: Viminfo file is not writable: %s"));
329EXTERN char e_cant_write_viminfo_file_str[]
330 INIT(= N_("E138: Can't write viminfo file %s!"));
331#endif
Bram Moolenaareb822a22021-12-31 15:09:27 +0000332EXTERN char e_file_is_loaded_in_another_buffer[]
333 INIT(= N_("E139: File is loaded in another buffer"));
334EXTERN char e_use_bang_to_write_partial_buffer[]
335 INIT(= N_("E140: Use ! to write partial buffer"));
336EXTERN char e_no_file_name_for_buffer_nr[]
337 INIT(= N_("E141: No file name for buffer %ld"));
338EXTERN char e_file_not_written_writing_is_disabled_by_write_option[]
339 INIT(= N_("E142: File not written: Writing is disabled by 'write' option"));
340EXTERN char e_autocommands_unexpectedly_deleted_new_buffer_str[]
341 INIT(= N_("E143: Autocommands unexpectedly deleted new buffer %s"));
342EXTERN char e_non_numeric_argument_to_z[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100343 INIT(= N_("E144: Non-numeric argument to :z"));
Bram Moolenaareb822a22021-12-31 15:09:27 +0000344EXTERN char e_shell_commands_and_some_functionality_not_allowed_in_rvim[]
345 INIT(= N_("E145: Shell commands and some functionality not allowed in rvim"));
346EXTERN char e_regular_expressions_cant_be_delimited_by_letters[]
347 INIT(= N_("E146: Regular expressions can't be delimited by letters"));
348EXTERN char e_cannot_do_global_recursive_with_range[]
349 INIT(= N_("E147: Cannot do :global recursive with a range"));
350EXTERN char e_regular_expression_missing_from_global[]
351 INIT(= N_("E148: Regular expression missing from :global"));
352EXTERN char e_sorry_no_help_for_str[]
353 INIT(= N_("E149: Sorry, no help for %s"));
354EXTERN char e_not_a_directory_str[]
355 INIT(= N_("E150: Not a directory: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000356EXTERN char e_no_match_str_1[]
Bram Moolenaareb822a22021-12-31 15:09:27 +0000357 INIT(= N_("E151: No match: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000358EXTERN char e_cannot_open_str_for_writing_1[]
Bram Moolenaareb822a22021-12-31 15:09:27 +0000359 INIT(= N_("E152: Cannot open %s for writing"));
360EXTERN char e_unable_to_open_str_for_reading[]
361 INIT(= N_("E153: Unable to open %s for reading"));
362EXTERN char e_duplicate_tag_str_in_file_str_str[]
363 INIT(= N_("E154: Duplicate tag \"%s\" in file %s/%s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000364#ifdef FEAT_SIGNS
Bram Moolenaareb822a22021-12-31 15:09:27 +0000365EXTERN char e_unknown_sign_str[]
366 INIT(= N_("E155: Unknown sign: %s"));
367EXTERN char e_missing_sign_name[]
368 INIT(= N_("E156: Missing sign name"));
369EXTERN char e_invalid_sign_id_nr[]
370 INIT(= N_("E157: Invalid sign ID: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000371#endif
372#if defined(FEAT_SIGNS) || defined(FEAT_EVAL)
Bram Moolenaareb822a22021-12-31 15:09:27 +0000373EXTERN char e_invalid_buffer_name_str[]
374 INIT(= N_("E158: Invalid buffer name: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000375#endif
376#ifdef FEAT_SIGNS
Bram Moolenaareb822a22021-12-31 15:09:27 +0000377EXTERN char e_missing_sign_number[]
378 INIT(= N_("E159: Missing sign number"));
379EXTERN char e_unknown_sign_command_str[]
380 INIT(= N_("E160: Unknown sign command: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000381#endif
Bram Moolenaareb822a22021-12-31 15:09:27 +0000382#ifdef FEAT_EVAL
383EXTERN char e_breakpoint_not_found_str[]
384 INIT(= N_("E161: Breakpoint not found: %s"));
385#endif
Bram Moolenaar1a992222021-12-31 17:25:48 +0000386EXTERN char e_no_write_since_last_change_for_buffer_str[]
387 INIT(= N_("E162: No write since last change for buffer \"%s\""));
388EXTERN char e_there_is_only_one_file_to_edit[]
389 INIT(= N_("E163: There is only one file to edit"));
390EXTERN char e_cannot_go_before_first_file[]
391 INIT(= N_("E164: Cannot go before first file"));
392EXTERN char e_cannot_go_beyond_last_file[]
393 INIT(= N_("E165: Cannot go beyond last file"));
394EXTERN char e_cant_open_linked_file_for_writing[]
395 INIT(= N_("E166: Can't open linked file for writing"));
396EXTERN char e_scriptencoding_used_outside_of_sourced_file[]
397 INIT(= N_("E167: :scriptencoding used outside of a sourced file"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000398#ifdef FEAT_EVAL
Bram Moolenaar1a992222021-12-31 17:25:48 +0000399EXTERN char e_finish_used_outside_of_sourced_file[]
400 INIT(= N_("E168: :finish used outside of a sourced file"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000401#endif
Bram Moolenaar1a992222021-12-31 17:25:48 +0000402EXTERN char e_command_too_recursive[]
403 INIT(= N_("E169: Command too recursive"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000404#ifdef FEAT_EVAL
Bram Moolenaar1a992222021-12-31 17:25:48 +0000405EXTERN char e_missing_endwhile[]
406 INIT(= N_("E170: Missing :endwhile"));
407EXTERN char e_missing_endfor[]
408 INIT(= N_("E170: Missing :endfor"));
409EXTERN char e_missing_endif[]
410 INIT(= N_("E171: Missing :endif"));
411EXTERN char e_missing_marker[]
412 INIT(= N_("E172: Missing marker"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000413#endif
Bram Moolenaara1d5f9f2023-05-27 13:40:11 +0100414
415PLURAL_MSG(e_nr_more_file_to_edit, "E173: %d more file to edit",
416 e_nr_more_files_to_edit, "E173: %d more files to edit")
417
Bram Moolenaar1a992222021-12-31 17:25:48 +0000418EXTERN char e_command_already_exists_add_bang_to_replace_it_str[]
419 INIT(= N_("E174: Command already exists: add ! to replace it: %s"));
420EXTERN char e_no_attribute_specified[]
421 INIT(= N_("E175: No attribute specified"));
422EXTERN char e_invalid_number_of_arguments[]
423 INIT(= N_("E176: Invalid number of arguments"));
424EXTERN char e_count_cannot_be_specified_twice[]
425 INIT(= N_("E177: Count cannot be specified twice"));
426EXTERN char e_invalid_default_value_for_count[]
427 INIT(= N_("E178: Invalid default value for count"));
428EXTERN char e_argument_required_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100429 INIT(= N_("E179: Argument required for %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000430EXTERN char e_invalid_complete_value_str[]
431 INIT(= N_("E180: Invalid complete value: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +0000432EXTERN char e_invalid_address_type_value_str[]
433 INIT(= N_("E180: Invalid address type value: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000434EXTERN char e_invalid_attribute_str[]
435 INIT(= N_("E181: Invalid attribute: %s"));
436EXTERN char e_invalid_command_name[]
437 INIT(= N_("E182: Invalid command name"));
438EXTERN char e_user_defined_commands_must_start_with_an_uppercase_letter[]
439 INIT(= N_("E183: User defined commands must start with an uppercase letter"));
Bram Moolenaarbdcba242021-09-12 20:58:02 +0200440EXTERN char e_no_such_user_defined_command_str[]
441 INIT(= N_("E184: No such user-defined command: %s"));
Bram Moolenaar1a992222021-12-31 17:25:48 +0000442EXTERN char e_cannot_find_color_scheme_str[]
443 INIT(= N_("E185: Cannot find color scheme '%s'"));
444EXTERN char e_no_previous_directory[]
445 INIT(= N_("E186: No previous directory"));
446EXTERN char e_directory_unknown[]
447 INIT(= N_("E187: Directory unknown"));
448EXTERN char e_obtaining_window_position_not_implemented_for_this_platform[]
449 INIT(= N_("E188: Obtaining window position not implemented for this platform"));
450EXTERN char e_str_exists_add_bang_to_override[]
451 INIT(= N_("E189: \"%s\" exists (add ! to override)"));
452EXTERN char e_cannot_open_str_for_writing_2[]
453 INIT(= N_("E190: Cannot open \"%s\" for writing"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000454EXTERN char e_argument_must_be_letter_or_forward_backward_quote[]
455 INIT(= N_("E191: Argument must be a letter or forward/backward quote"));
456EXTERN char e_recursive_use_of_normal_too_deep[]
457 INIT(= N_("E192: Recursive use of :normal too deep"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000458#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000459EXTERN char e_str_not_inside_function[]
460 INIT(= N_("E193: %s not inside a function"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000461#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000462EXTERN char e_no_alternate_file_name_to_substitute_for_hash[]
463 INIT(= N_("E194: No alternate file name to substitute for '#'"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000464#ifdef FEAT_VIMINFO
Bram Moolenaar6d057012021-12-31 18:49:43 +0000465EXTERN char e_cannot_open_viminfo_file_for_reading[]
466 INIT(= N_("E195: Cannot open viminfo file for reading"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000467#endif
mityu61065042021-07-19 20:07:21 +0200468#ifndef FEAT_DIGRAPHS
469EXTERN char e_no_digraphs_version[]
470 INIT(= N_("E196: No digraphs in this version"));
471#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000472EXTERN char e_cannot_set_language_to_str[]
473 INIT(= N_("E197: Cannot set language to \"%s\""));
474// E198 unused
Sean Dewar43b395e2023-08-16 16:17:31 +0100475EXTERN char e_active_window_or_buffer_changed_or_deleted[]
476 INIT(= N_("E199: Active window or buffer changed or deleted"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000477EXTERN char e_readpre_autocommands_made_file_unreadable[]
478 INIT(= N_("E200: *ReadPre autocommands made the file unreadable"));
479EXTERN char e_readpre_autocommands_must_not_change_current_buffer[]
480 INIT(= N_("E201: *ReadPre autocommands must not change current buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000481#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000482EXTERN char e_conversion_mad_file_unreadable[]
483 INIT(= N_("E202: Conversion made file unreadable!"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000484#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000485EXTERN char e_autocommands_deleted_or_unloaded_buffer_to_be_written[]
486 INIT(= N_("E203: Autocommands deleted or unloaded buffer to be written"));
487EXTERN char e_autocommands_changed_number_of_lines_in_unexpected_way[]
488 INIT(= N_("E204: Autocommand changed number of lines in unexpected way"));
489EXTERN char e_patchmode_cant_save_original_file[]
490 INIT(= N_("E205: Patchmode: can't save original file"));
491EXTERN char e_patchmode_cant_touch_empty_original_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100492 INIT(= N_("E206: Patchmode: can't touch empty original file"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000493EXTERN char e_cant_delete_backup_file[]
494 INIT(= N_("E207: Can't delete backup file"));
495EXTERN char e_error_writing_to_str[]
496 INIT(= N_("E208: Error writing to \"%s\""));
497EXTERN char e_error_closing_str[]
498 INIT(= N_("E209: Error closing \"%s\""));
499EXTERN char e_error_reading_str[]
500 INIT(= N_("E210: Error reading \"%s\""));
501EXTERN char e_file_str_no_longer_available[]
502 INIT(= N_("E211: File \"%s\" no longer available"));
503EXTERN char e_cant_open_file_for_writing[]
504 INIT(= N_("E212: Can't open file for writing"));
505EXTERN char e_cannot_convert_add_bang_to_write_without_conversion[]
506 INIT(= N_("E213: Cannot convert (add ! to write without conversion)"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000507#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000508EXTERN char e_cant_find_temp_file_for_writing[]
509 INIT(= N_("E214: Can't find temp file for writing"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000510#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000511EXTERN char e_illegal_character_after_star_str[]
512 INIT(= N_("E215: Illegal character after *: %s"));
513EXTERN char e_no_such_event_str[]
514 INIT(= N_("E216: No such event: %s"));
515EXTERN char e_no_such_group_or_event_str[]
516 INIT(= N_("E216: No such group or event: %s"));
517EXTERN char e_cant_execute_autocommands_for_all_events[]
518 INIT(= N_("E217: Can't execute autocommands for ALL events"));
519EXTERN char e_autocommand_nesting_too_deep[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100520 INIT(= N_("E218: Autocommand nesting too deep"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000521EXTERN char e_missing_open_curly[]
522 INIT(= N_("E219: Missing {."));
523EXTERN char e_missing_close_curly[]
524 INIT(= N_("E220: Missing }."));
Dominique Pellef85a4242022-01-09 12:49:31 +0000525#ifdef FEAT_EVAL
Bram Moolenaar6d057012021-12-31 18:49:43 +0000526EXTERN char e_marker_cannot_start_with_lower_case_letter[]
527 INIT(= N_("E221: Marker cannot start with lower case letter"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000528#endif
Bram Moolenaar6d057012021-12-31 18:49:43 +0000529EXTERN char e_add_to_internal_buffer_that_was_already_read_from[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100530 INIT(= "E222: Add to internal buffer that was already read from");
Bram Moolenaar6d057012021-12-31 18:49:43 +0000531EXTERN char e_recursive_mapping[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100532 INIT(= N_("E223: Recursive mapping"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000533EXTERN char e_global_abbreviation_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100534 INIT(= N_("E224: Global abbreviation already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000535EXTERN char e_global_mapping_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100536 INIT(= N_("E225: Global mapping already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000537EXTERN char e_abbreviation_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100538 INIT(= N_("E226: Abbreviation already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000539EXTERN char e_mapping_already_exists_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100540 INIT(= N_("E227: Mapping already exists for %s"));
Bram Moolenaar6d057012021-12-31 18:49:43 +0000541EXTERN char e_makemap_illegal_mode[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100542 INIT(= "E228: makemap: Illegal mode");
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000543#ifdef FEAT_GUI
Bram Moolenaar6d057012021-12-31 18:49:43 +0000544EXTERN char e_cannot_start_the_GUI[]
545 INIT(= N_("E229: Cannot start the GUI"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000546EXTERN char e_cannot_read_from_str[]
547 INIT(= N_("E230: Cannot read from \"%s\""));
548EXTERN char e_guifontwide_invalid[]
549 INIT(= N_("E231: 'guifontwide' invalid"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000550#ifdef FEAT_BEVAL_GUI
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000551EXTERN char e_cannot_create_ballooneval_with_both_message_and_callback[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100552 INIT(= "E232: Cannot create BalloonEval with both message and callback");
Dominique Pellef85a4242022-01-09 12:49:31 +0000553#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000554# if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000555EXTERN char e_cannot_open_display[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100556 INIT(= N_("E233: Cannot open display"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000557# endif
558# if defined(FEAT_XFONTSET)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000559EXTERN char e_unknown_fontset_str[]
560 INIT(= N_("E234: Unknown fontset: %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000561# endif
562# if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000563 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU)
564EXTERN char e_unknown_font_str[]
565 INIT(= N_("E235: Unknown font: %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000566# endif
567# if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000568EXTERN char e_font_str_is_not_fixed_width[]
569 INIT(= N_("E236: Font \"%s\" is not fixed-width"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000570# endif
Bram Moolenaar436b5ad2021-12-31 22:49:24 +0000571#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000572#ifdef MSWIN
573EXTERN char e_printer_selection_failed[]
574 INIT(= N_("E237: Printer selection failed"));
575EXTERN char e_print_error_str[]
576 INIT(= N_("E238: Print error: %s"));
577#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000578#ifdef FEAT_SIGNS
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000579EXTERN char e_invalid_sign_text_str[]
580 INIT(= N_("E239: Invalid sign text: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000581#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000582#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
583EXTERN char e_no_connection_to_x_server[]
584 INIT(= N_("E240: No connection to the X server"));
585#endif
586#ifdef FEAT_CLIENTSERVER
587EXTERN char e_unable_to_send_to_str[]
588 INIT(= N_("E241: Unable to send to %s"));
589#endif
590EXTERN char e_cant_split_window_while_closing_another[]
591 INIT(= N_("E242: Can't split a window while closing another"));
592#if defined(FEAT_GUI_MSWIN) && !defined(FEAT_OLE)
593EXTERN char e_argument_not_supported_str_use_ole_version[]
594 INIT(= N_("E243: Argument not supported: \"-%s\"; Use the OLE version."));
595#endif
596#ifdef MSWIN
597EXTERN char e_illegal_str_name_str_in_font_name_str[]
598 INIT(= N_("E244: Illegal %s name \"%s\" in font name \"%s\""));
599EXTERN char e_illegal_char_nr_in_font_name_str[]
600 INIT(= N_("E245: Illegal char '%c' in font name \"%s\""));
601#endif
602EXTERN char e_filechangedshell_autocommand_deleted_buffer[]
603 INIT(= N_("E246: FileChangedShell autocommand deleted buffer"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000604#ifdef FEAT_CLIENTSERVER
605EXTERN char e_no_registered_server_named_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100606 INIT(= N_("E247: No registered server named \"%s\""));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000607EXTERN char e_failed_to_send_command_to_destination_program[]
608 INIT(= N_("E248: Failed to send command to the destination program"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000609#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000610EXTERN char e_window_layout_changed_unexpectedly[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100611 INIT(= N_("E249: Window layout changed unexpectedly"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000612#ifdef FEAT_XFONTSET
613EXTERN char e_fonts_for_the_following_charsets_are_missing_in_fontset[]
614 INIT(= N_("E250: Fonts for the following charsets are missing in fontset %s:"));
615#endif
616#ifdef FEAT_CLIENTSERVER
617EXTERN char e_vim_instance_registry_property_is_badly_formed_deleted[]
618 INIT(= N_("E251: VIM instance registry property is badly formed. Deleted!"));
619#endif
620#ifdef FEAT_GUI_X11
621EXTERN char e_fontsent_name_str_font_str_is_not_fixed_width[]
622 INIT(= N_("E252: Fontset name: %s - Font '%s' is not fixed-width"));
623EXTERN char e_fontset_name_str[]
624 INIT(= N_("E253: Fontset name: %s"));
625#endif
Drew Vogele30d1022021-10-24 20:35:07 +0100626#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
627EXTERN char e_cannot_allocate_color_str[]
628 INIT(= N_("E254: Cannot allocate color %s"));
629#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +0000630#if defined(FEAT_SIGN_ICONS) && !defined(FEAT_GUI_GTK)
631EXTERN char e_couldnt_read_in_sign_data[]
632 INIT(= N_("E255: Couldn't read in sign data"));
633#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000634// E256 unused
Dominique Pellef85a4242022-01-09 12:49:31 +0000635#ifdef FEAT_CSCOPE
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000636EXTERN char e_cstag_tag_not_founc[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +0100637 INIT(= N_("E257: cstag: Tag not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000638#endif
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000639#ifdef FEAT_CLIENTSERVER
640EXTERN char e_unable_to_send_to_client[]
641 INIT(= N_("E258: Unable to send to client"));
642#endif
643#ifdef FEAT_CSCOPE
644EXTERN char e_no_matches_found_for_cscope_query_str_of_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100645 INIT(= N_("E259: No matches found for cscope query %s of %s"));
Bram Moolenaarcbadefe2022-01-01 19:33:50 +0000646#endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000647#ifdef FEAT_EVAL
648EXTERN char e_missing_name_after_method[]
649 INIT(= N_("E260: Missing name after ->"));
650#endif
651#ifdef FEAT_CSCOPE
652EXTERN char e_cscope_connection_str_not_founc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100653 INIT(= N_("E261: Cscope connection %s not found"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000654EXTERN char e_error_reading_cscope_connection_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100655 INIT(= N_("E262: Error reading cscope connection %d"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000656#endif
Bram Moolenaar6b1a99d2022-01-02 01:04:09 +0000657#if defined(DYNAMIC_PYTHON) || defined(DYNAMIC_PYTHON3)
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000658EXTERN char e_sorry_this_command_is_disabled_python_library_could_not_be_found[]
659 INIT(= N_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
660#endif
661#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
662EXTERN char e_python_error_initialising_io_object[]
663 INIT(= N_("E264: Python: Error initialising I/O objects"));
664#endif
665#ifdef FEAT_RUBY
666EXTERN char e_dollar_must_be_an_instance_of_string[]
667 INIT(= N_("E265: $_ must be an instance of String"));
668#endif
669#ifdef DYNAMIC_RUBY
670EXTERN char e_sorry_this_command_is_disabled_the_ruby_library_could_not_be_loaded[]
671 INIT(= N_("E266: Sorry, this command is disabled, the Ruby library could not be loaded."));
672#endif
673#ifdef FEAT_RUBY
674EXTERN char e_unexpected_return[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100675 INIT(= N_("E267: Unexpected return"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000676EXTERN char e_unexpected_next[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100677 INIT(= N_("E268: Unexpected next"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000678EXTERN char e_unexpected_break[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100679 INIT(= N_("E269: Unexpected break"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000680EXTERN char e_unexpected_redo[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100681 INIT(= N_("E270: Unexpected redo"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000682EXTERN char e_retry_outside_of_rescue_clause[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100683 INIT(= N_("E271: Retry outside of rescue clause"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000684EXTERN char e_unhandled_exception[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100685 INIT(= N_("E272: Unhandled exception"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000686EXTERN char e_unknown_longjmp_status_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100687 INIT(= N_("E273: Unknown longjmp status %d"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000688#endif
Bram Moolenaar3a846e62022-01-01 16:21:00 +0000689#ifdef FEAT_EVAL
690EXTERN char e_no_white_space_allowed_before_parenthesis[]
691 INIT(= N_("E274: No white space allowed before parenthesis"));
692#endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000693#ifdef FEAT_PROP_POPUP
694EXTERN char e_cannot_add_text_property_to_unloaded_buffer[]
695 INIT(= N_("E275: Cannot add text property to unloaded buffer"));
696#endif
697#ifdef FEAT_EVAL
698EXTERN char e_cannot_use_function_as_method_str[]
699 INIT(= N_("E276: Cannot use function as a method: %s"));
700#endif
701#ifdef FEAT_CLIENTSERVER
702EXTERN char e_unable_to_read_server_reply[]
703 INIT(= N_("E277: Unable to read a server reply"));
704#endif
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000705// E278 unused
Dominique Pellef85a4242022-01-09 12:49:31 +0000706#if defined(FEAT_TERMINAL) && !defined(UNIX) && !defined(MSWIN)
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000707EXTERN char e_sorry_plusplusshell_not_supported_on_this_system[]
708 INIT(= N_("E279: Sorry, ++shell is not supported on this system"));
709#endif
710#ifdef FEAT_TCL
711EXTERN char e_tcl_fatal_error_reflist_corrupt_please_report_this[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100712 INIT(= "E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim.org");
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000713#endif
714// E281 unused
715EXTERN char e_cannot_read_from_str_2[]
716 INIT(= N_("E282: Cannot read from \"%s\""));
717EXTERN char e_no_marks_matching_str[]
718 INIT(= N_("E283: No marks matching \"%s\""));
719#ifdef FEAT_XIM
Dominique Pellef85a4242022-01-09 12:49:31 +0000720# ifndef FEAT_GUI_GTK
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000721EXTERN char e_cannot_set_ic_values[]
722 INIT(= N_("E284: Cannot set IC values"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000723# endif
724# ifdef FEAT_GUI_X11
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000725EXTERN char e_failed_to_create_input_context[]
726 INIT(= N_("E285: Failed to create input context"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000727EXTERN char e_failed_to_open_input_method[]
728 INIT(= N_("E286: Failed to open input method"));
729EXTERN char e_warning_could_not_set_destroy_callback_to_im[]
730 INIT(= N_("E287: Warning: Could not set destroy callback to IM"));
731EXTERN char e_input_method_doesnt_support_any_style[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100732 INIT(= N_("E288: Input method doesn't support any style"));
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000733EXTERN char e_input_method_doesnt_support_my_preedit_type[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100734 INIT(= N_("E289: Input method doesn't support my preedit type"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000735# endif
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000736#endif
737#ifdef FEAT_SEARCH_EXTRA
738EXTERN char e_list_or_number_required[]
739 INIT(= N_("E290: List or number required"));
740#endif
741// E291 unused
742EXTERN char e_invalid_count_for_del_bytes_nr[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100743 INIT(= "E292: Invalid count for del_bytes(): %ld");
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000744EXTERN char e_block_was_not_locked[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100745 INIT(= "E293: Block was not locked");
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000746EXTERN char e_seek_error_in_swap_file_read[]
747 INIT(= N_("E294: Seek error in swap file read"));
748EXTERN char e_read_error_in_swap_file[]
749 INIT(= N_("E295: Read error in swap file"));
750EXTERN char e_seek_error_in_swap_file_write[]
751 INIT(= N_("E296: Seek error in swap file write"));
752EXTERN char e_write_error_in_swap_file[]
753 INIT(= N_("E297: Write error in swap file"));
754EXTERN char e_didnt_get_block_nr_zero[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100755 INIT(= "E298: Didn't get block nr 0?");
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000756EXTERN char e_didnt_get_block_nr_one[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100757 INIT(= "E298: Didn't get block nr 1?");
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000758EXTERN char e_didnt_get_block_nr_two[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100759 INIT(= "E298: Didn't get block nr 2?");
Bram Moolenaare96eea72022-01-28 21:00:51 +0000760#ifdef FEAT_PERL
761EXTERN char e_perl_evaluation_forbidden_in_sandbox_without_safe_module[]
762 INIT(= N_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
763#endif
Bram Moolenaareaaac012022-01-02 17:00:40 +0000764EXTERN char e_swap_file_already_exists_symlink_attack[]
765 INIT(= N_("E300: Swap file already exists (symlink attack?)"));
766EXTERN char e_oops_lost_the_swap_file[]
767 INIT(= N_("E301: Oops, lost the swap file!!!"));
768EXTERN char e_could_not_rename_swap_file[]
769 INIT(= N_("E302: Could not rename swap file"));
770EXTERN char e_unable_to_open_swap_file_for_str_recovery_impossible[]
771 INIT(= N_("E303: Unable to open swap file for \"%s\", recovery impossible"));
772EXTERN char e_ml_upd_block0_didnt_get_block_zero[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100773 INIT(= "E304: ml_upd_block0(): Didn't get block 0??");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000774EXTERN char e_no_swap_file_found_for_str[]
775 INIT(= N_("E305: No swap file found for %s"));
776EXTERN char e_cannot_open_str[]
777 INIT(= N_("E306: Cannot open %s"));
778EXTERN char e_str_does_not_look_like_vim_swap_file[]
779 INIT(= N_("E307: %s does not look like a Vim swap file"));
780EXTERN char e_warning_original_file_may_have_been_changed[]
781 INIT(= N_("E308: Warning: Original file may have been changed"));
782EXTERN char e_unable_to_read_block_one_from_str[]
783 INIT(= N_("E309: Unable to read block 1 from %s"));
784EXTERN char e_block_one_id_wrong_str_not_swp_file[]
785 INIT(= N_("E310: Block 1 ID wrong (%s not a .swp file?)"));
786EXTERN char e_recovery_interrupted[]
787 INIT(= N_("E311: Recovery Interrupted"));
788EXTERN char e_errors_detected_while_recovering_look_for_lines_starting_with_questions[]
789 INIT(= N_("E312: Errors detected while recovering; look for lines starting with ???"));
790EXTERN char e_cannot_preserve_there_is_no_swap_file[]
791 INIT(= N_("E313: Cannot preserve, there is no swap file"));
792EXTERN char e_preserve_failed[]
793 INIT(= N_("E314: Preserve failed"));
794EXTERN char e_ml_get_invalid_lnum_nr[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100795 INIT(= "E315: ml_get: Invalid lnum: %ld");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000796EXTERN char e_ml_get_cannot_find_line_nr_in_buffer_nr_str[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100797 INIT(= "E316: ml_get: Cannot find line %ld in buffer %d %s");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000798EXTERN char e_pointer_block_id_wrong[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100799 INIT(= "E317: Pointer block id wrong");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000800EXTERN char e_pointer_block_id_wrong_two[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100801 INIT(= "E317: Pointer block id wrong 2");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000802EXTERN char e_pointer_block_id_wrong_three[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100803 INIT(= "E317: Pointer block id wrong 3");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000804EXTERN char e_pointer_block_id_wrong_four[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100805 INIT(= "E317: Pointer block id wrong 4");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000806EXTERN char e_updated_too_many_blocks[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100807 INIT(= "E318: Updated too many blocks?");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000808EXTERN char e_sorry_command_is_not_available_in_this_version[]
809 INIT(= N_("E319: Sorry, the command is not available in this version"));
810EXTERN char e_cannot_find_line_nr[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100811 INIT(= "E320: Cannot find line %ld");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000812EXTERN char e_could_not_reload_str[]
813 INIT(= N_("E321: Could not reload \"%s\""));
814EXTERN char e_line_number_out_of_range_nr_past_the_end[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100815 INIT(= "E322: Line number out of range: %ld past the end");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000816EXTERN char e_line_count_wrong_in_block_nr[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100817 INIT(= "E323: Line count wrong in block %ld");
Bram Moolenaareaaac012022-01-02 17:00:40 +0000818#ifdef FEAT_POSTSCRIPT
819EXTERN char e_cant_open_postscript_output_file[]
820 INIT(= N_("E324: Can't open PostScript output file"));
821#endif
822EXTERN char e_attention[]
823 INIT(= N_("E325: ATTENTION"));
824EXTERN char e_too_many_swap_files_found[]
825 INIT(= N_("E326: Too many swap files found"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000826#ifdef FEAT_MENU
Bram Moolenaareaaac012022-01-02 17:00:40 +0000827EXTERN char_u e_part_of_menu_item_path_is_not_sub_menu[]
828 INIT(= N_("E327: Part of menu-item path is not sub-menu"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +0000829EXTERN char e_menu_only_exists_in_another_mode[]
830 INIT(= N_("E328: Menu only exists in another mode"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000831EXTERN char_u e_no_menu_str[]
832 INIT(= N_("E329: No menu \"%s\""));
Bram Moolenaard88be5b2022-01-04 19:57:55 +0000833EXTERN char e_menu_path_must_not_lead_to_sub_menu[]
Bram Moolenaareaaac012022-01-02 17:00:40 +0000834 INIT(= N_("E330: Menu path must not lead to a sub-menu"));
835EXTERN char e_must_not_add_menu_items_directly_to_menu_bar[]
836 INIT(= N_("E331: Must not add menu items directly to menu bar"));
837EXTERN char e_separator_cannot_be_part_of_menu_path[]
838 INIT(= N_("E332: Separator cannot be part of a menu path"));
839EXTERN char e_menu_path_must_lead_to_menu_item[]
840 INIT(= N_("E333: Menu path must lead to a menu item"));
841EXTERN char e_menu_not_found_str[]
842 INIT(= N_("E334: Menu not found: %s"));
843EXTERN char e_menu_not_defined_for_str_mode[]
844 INIT(= N_("E335: Menu not defined for %s mode"));
845EXTERN char e_menu_path_must_lead_to_sub_menu[]
846 INIT(= N_("E336: Menu path must lead to a sub-menu"));
847EXTERN char e_menu_not_found_check_menu_names[]
848 INIT(= N_("E337: Menu not found - check menu names"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000849#endif
850#ifdef FEAT_BROWSE
Bram Moolenaareaaac012022-01-02 17:00:40 +0000851EXTERN char e_sorry_no_file_browser_in_console_mode[]
852 INIT(= N_("E338: Sorry, no file browser in console mode"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000853#endif
Bram Moolenaareaaac012022-01-02 17:00:40 +0000854EXTERN char e_pattern_too_long[]
855 INIT(= N_("E339: Pattern too long"));
Bram Moolenaar097c5372023-05-24 21:02:24 +0100856EXTERN char e_internal_error_please_report_a_bug[]
857 INIT(= N_("E340: Internal error; if you can reproduce please report a bug"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000858EXTERN char e_internal_error_lalloc_zero[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100859 INIT(= "E341: Internal error: lalloc(0, )");
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000860EXTERN char e_out_of_memory_allocating_nr_bytes[]
861 INIT(= N_("E342: Out of memory! (allocating %lu bytes)"));
Bram Moolenaareaaac012022-01-02 17:00:40 +0000862EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[]
863 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."));
864EXTERN char e_cant_find_directory_str_in_cdpath[]
865 INIT(= N_("E344: Can't find directory \"%s\" in cdpath"));
866EXTERN char e_cant_find_file_str_in_path[]
867 INIT(= N_("E345: Can't find file \"%s\" in path"));
868EXTERN char e_no_more_directory_str_found_in_cdpath[]
869 INIT(= N_("E346: No more directory \"%s\" found in cdpath"));
870EXTERN char e_no_more_file_str_found_in_path[]
871 INIT(= N_("E347: No more file \"%s\" found in path"));
872EXTERN char e_no_string_under_cursor[]
873 INIT(= N_("E348: No string under cursor"));
874EXTERN char e_no_identifier_under_cursor[]
875 INIT(= N_("E349: No identifier under cursor"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000876#ifdef FEAT_FOLDING
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000877EXTERN char e_cannot_create_fold_with_current_foldmethod[]
878 INIT(= N_("E350: Cannot create fold with current 'foldmethod'"));
879EXTERN char e_cannot_delete_fold_with_current_foldmethod[]
880 INIT(= N_("E351: Cannot delete fold with current 'foldmethod'"));
881EXTERN char e_cannot_erase_folds_with_current_foldmethod[]
882 INIT(= N_("E352: Cannot erase folds with current 'foldmethod'"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000883#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000884EXTERN char e_nothing_in_register_str[]
885 INIT(= N_("E353: Nothing in register %s"));
886EXTERN char e_invalid_register_name_str[]
887 INIT(= N_("E354: Invalid register name: '%s'"));
888EXTERN char e_unknown_option_str_2[]
889 INIT(= N_("E355: Unknown option: %s"));
890EXTERN char e_get_varp_error[]
RestorerZ68ebcee2023-05-31 17:12:14 +0100891 INIT(= "E356: get_varp ERROR");
Dominique Pellef85a4242022-01-09 12:49:31 +0000892#ifdef FEAT_LANGMAP
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000893EXTERN char e_langmap_matching_character_missing_for_str[]
894 INIT(= N_("E357: 'langmap': Matching character missing for %s"));
895EXTERN char e_langmap_extra_characters_after_semicolon_str[]
896 INIT(= N_("E358: 'langmap': Extra characters after semicolon: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000897#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +0000898#if defined(AMIGA) || defined(MACOS_X) || defined(MSWIN) \
899 || defined(UNIX) || defined(VMS)
900EXTERN char e_screen_mode_setting_not_supported[]
901 INIT(= N_("E359: Screen mode setting not supported"));
902#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000903#ifdef AMIGA
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000904EXTERN char e_cannot_execute_shell_with_f_option[]
905 INIT(= N_("E360: Cannot execute shell with -f option"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000906#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000907// E361 unused
Bram Moolenaar73e28dc2022-09-17 21:08:33 +0100908#if defined(FEAT_EVAL)
Bram Moolenaarb2810f12022-01-08 21:38:52 +0000909EXTERN char e_using_boolean_value_as_float[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000910 INIT(= N_("E362: Using a boolean value as a Float"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000911#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +0000912EXTERN char e_pattern_uses_more_memory_than_maxmempattern[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100913 INIT(= N_("E363: Pattern uses more memory than 'maxmempattern'"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000914#ifdef FEAT_LIBCALL
915EXTERN char e_library_call_failed_for_str[]
916 INIT(= N_("E364: Library call failed for \"%s()\""));
917#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000918#ifdef FEAT_POSTSCRIPT
919EXTERN char e_failed_to_print_postscript_file[]
920 INIT(= N_("E365: Failed to print PostScript file"));
921#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000922#ifdef FEAT_PROP_POPUP
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000923EXTERN char e_not_allowed_to_enter_popup_window[]
924 INIT(= N_("E366: Not allowed to enter a popup window"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000925#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000926EXTERN char e_no_such_group_str[]
927 INIT(= N_("E367: No such group: \"%s\""));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000928#ifdef FEAT_LIBCALL
929EXTERN char e_got_sig_str_in_libcall[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100930 INIT(= N_("E368: Got SIG%s in libcall()"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000931#endif
932EXTERN char e_invalid_item_in_str_brackets[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100933 INIT(= N_("E369: Invalid item in %s%%[]"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000934#ifdef USING_LOAD_LIBRARY
935EXTERN char e_could_not_load_library_str_str[]
936 INIT(= N_("E370: Could not load library %s: %s"));
937#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000938#ifdef FEAT_GUI_MSWIN
939EXTERN char e_command_not_found[]
940 INIT(= N_("E371: Command not found"));
941#endif
Dominique Pellef85a4242022-01-09 12:49:31 +0000942#ifdef FEAT_QUICKFIX
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000943EXTERN char e_too_many_chr_in_format_string[]
944 INIT(= N_("E372: Too many %%%c in format string"));
945EXTERN char e_unexpected_chr_in_format_str[]
946 INIT(= N_("E373: Unexpected %%%c in format string"));
947EXTERN char e_missing_rsb_in_format_string[]
948 INIT(= N_("E374: Missing ] in format string"));
949EXTERN char e_unsupported_chr_in_format_string[]
950 INIT(= N_("E375: Unsupported %%%c in format string"));
951EXTERN char e_invalid_chr_in_format_string_prefix[]
952 INIT(= N_("E376: Invalid %%%c in format string prefix"));
953EXTERN char e_invalid_chr_in_format_string[]
954 INIT(= N_("E377: Invalid %%%c in format string"));
955EXTERN char e_errorformat_contains_no_pattern[]
956 INIT(= N_("E378: 'errorformat' contains no pattern"));
957EXTERN char e_missing_or_empty_directory_name[]
958 INIT(= N_("E379: Missing or empty directory name"));
959EXTERN char e_at_bottom_of_quickfix_stack[]
960 INIT(= N_("E380: At bottom of quickfix stack"));
961EXTERN char e_at_top_of_quickfix_stack[]
962 INIT(= N_("E381: At top of quickfix stack"));
Bram Moolenaar6d4b2f52022-08-25 15:11:15 +0100963#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +0000964EXTERN char e_cannot_write_buftype_option_is_set[]
965 INIT(= N_("E382: Cannot write, 'buftype' option is set"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000966EXTERN char e_invalid_search_string_str[]
967 INIT(= N_("E383: Invalid search string: %s"));
968EXTERN char e_search_hit_top_without_match_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100969 INIT(= N_("E384: Search hit TOP without match for: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000970EXTERN char e_search_hit_bottom_without_match_for_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100971 INIT(= N_("E385: Search hit BOTTOM without match for: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000972EXTERN char e_expected_question_or_slash_after_semicolon[]
973 INIT(= N_("E386: Expected '?' or '/' after ';'"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000974#ifdef FEAT_FIND_ID
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000975EXTERN char e_match_is_on_current_line[]
976 INIT(= N_("E387: Match is on current line"));
977EXTERN char e_couldnt_find_definition[]
978 INIT(= N_("E388: Couldn't find definition"));
979EXTERN char e_couldnt_find_pattern[]
980 INIT(= N_("E389: Couldn't find pattern"));
Dominique Pellef85a4242022-01-09 12:49:31 +0000981#endif
982#ifdef FEAT_SYN_HL
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000983EXTERN char e_illegal_argument_str_2[]
984 INIT(= N_("E390: Illegal argument: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +0000985EXTERN char e_no_such_syntax_cluster_str_1[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000986 INIT(= N_("E391: No such syntax cluster: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +0000987EXTERN char e_no_such_syntax_cluster_str_2[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000988 INIT(= N_("E392: No such syntax cluster: %s"));
989EXTERN char e_groupthere_not_accepted_here[]
990 INIT(= N_("E393: group[t]here not accepted here"));
991EXTERN char e_didnt_find_region_item_for_str[]
992 INIT(= N_("E394: Didn't find region item for %s"));
993EXTERN char e_contains_argument_not_accepted_here[]
Bram Moolenaarcf030572022-05-06 16:18:41 +0100994 INIT(= N_("E395: Contains argument not accepted here"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +0000995// E396 unused
996EXTERN char e_filename_required[]
997 INIT(= N_("E397: Filename required"));
998EXTERN char e_missing_equal_str[]
999 INIT(= N_("E398: Missing '=': %s"));
1000EXTERN char e_not_enough_arguments_syntax_region_str[]
1001 INIT(= N_("E399: Not enough arguments: syntax region %s"));
1002EXTERN char e_no_cluster_specified[]
1003 INIT(= N_("E400: No cluster specified"));
1004EXTERN char e_pattern_delimiter_not_found_str[]
1005 INIT(= N_("E401: Pattern delimiter not found: %s"));
1006EXTERN char e_garbage_after_pattern_str[]
1007 INIT(= N_("E402: Garbage after pattern: %s"));
1008EXTERN char e_syntax_sync_line_continuations_pattern_specified_twice[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001009 INIT(= N_("E403: syntax sync: Line continuations pattern specified twice"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001010EXTERN char e_illegal_arguments_str[]
1011 INIT(= N_("E404: Illegal arguments: %s"));
1012EXTERN char e_missing_equal_sign_str[]
1013 INIT(= N_("E405: Missing equal sign: %s"));
1014EXTERN char e_empty_argument_str[]
1015 INIT(= N_("E406: Empty argument: %s"));
1016EXTERN char e_str_not_allowed_here[]
1017 INIT(= N_("E407: %s not allowed here"));
1018EXTERN char e_str_must_be_first_in_contains_list[]
1019 INIT(= N_("E408: %s must be first in contains list"));
1020EXTERN char e_unknown_group_name_str[]
1021 INIT(= N_("E409: Unknown group name: %s"));
1022EXTERN char e_invalid_syntax_subcommand_str[]
1023 INIT(= N_("E410: Invalid :syntax subcommand: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001024#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001025EXTERN char e_highlight_group_name_not_found_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001026 INIT(= N_("E411: Highlight group not found: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001027EXTERN char e_not_enough_arguments_highlight_link_str[]
1028 INIT(= N_("E412: Not enough arguments: \":highlight link %s\""));
1029EXTERN char e_too_many_arguments_highlight_link_str[]
1030 INIT(= N_("E413: Too many arguments: \":highlight link %s\""));
1031EXTERN char e_group_has_settings_highlight_link_ignored[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001032 INIT(= N_("E414: Group has settings, highlight link ignored"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001033EXTERN char e_unexpected_equal_sign_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001034 INIT(= N_("E415: Unexpected equal sign: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001035EXTERN char e_missing_equal_sign_str_2[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001036 INIT(= N_("E416: Missing equal sign: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001037EXTERN char e_missing_argument_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001038 INIT(= N_("E417: Missing argument: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001039EXTERN char e_illegal_value_str[]
1040 INIT(= N_("E418: Illegal value: %s"));
Dominique Pellé1165f782024-07-18 20:40:28 +02001041#ifdef FEAT_EVAL
Bram Moolenaar80adaa82023-07-07 18:57:40 +01001042EXTERN char e_im_a_teapot[]
1043 INIT(= N_("E418: I'm a teapot"));
Dominique Pellé1165f782024-07-18 20:40:28 +02001044#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001045EXTERN char e_fg_color_unknown[]
1046 INIT(= N_("E419: FG color unknown"));
1047EXTERN char e_bg_color_unknown[]
1048 INIT(= N_("E420: BG color unknown"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001049EXTERN char e_color_name_or_number_not_recognized_str[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001050 INIT(= N_("E421: Color name or number not recognized: %s"));
1051EXTERN char e_terminal_code_too_long_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001052 INIT(= N_("E422: Terminal code too long: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001053EXTERN char e_illegal_argument_str_3[]
1054 INIT(= N_("E423: Illegal argument: %s"));
1055EXTERN char e_too_many_different_highlighting_attributes_in_use[]
1056 INIT(= N_("E424: Too many different highlighting attributes in use"));
1057EXTERN char e_cannot_go_before_first_matching_tag[]
1058 INIT(= N_("E425: Cannot go before first matching tag"));
1059EXTERN char e_tag_not_found_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001060 INIT(= N_("E426: Tag not found: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001061EXTERN char e_there_is_only_one_matching_tag[]
1062 INIT(= N_("E427: There is only one matching tag"));
1063EXTERN char e_cannot_go_beyond_last_matching_tag[]
1064 INIT(= N_("E428: Cannot go beyond last matching tag"));
1065EXTERN char e_file_str_does_not_exist[]
1066 INIT(= N_("E429: File \"%s\" does not exist"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001067#ifdef FEAT_EMACS_TAGS
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001068EXTERN char e_tag_file_path_truncated_for_str[]
1069 INIT(= N_("E430: Tag file path truncated for %s\n"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001070#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001071EXTERN char e_format_error_in_tags_file_str[]
1072 INIT(= N_("E431: Format error in tags file \"%s\""));
1073EXTERN char e_tags_file_not_sorted_str[]
1074 INIT(= N_("E432: Tags file not sorted: %s"));
1075EXTERN char e_no_tags_file[]
1076 INIT(= N_("E433: No tags file"));
dundargocc57b5bc2022-11-02 13:30:51 +00001077EXTERN char e_cannot_find_tag_pattern[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001078 INIT(= N_("E434: Can't find tag pattern"));
1079EXTERN char e_couldnt_find_tag_just_guessing[]
1080 INIT(= N_("E435: Couldn't find tag, just guessing!"));
1081EXTERN char e_no_str_entry_in_termcap[]
1082 INIT(= N_("E436: No \"%s\" entry in termcap"));
1083EXTERN char e_terminal_capability_cm_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001084 INIT(= N_("E437: Terminal capability \"cm\" required"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001085EXTERN char e_u_undo_line_numbers_wrong[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001086 INIT(= "E438: u_undo: Line numbers wrong");
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001087EXTERN char e_undo_list_corrupt[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001088 INIT(= "E439: Undo list corrupt");
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001089EXTERN char e_undo_line_missing[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001090 INIT(= "E440: Undo line missing");
Dominique Pellef85a4242022-01-09 12:49:31 +00001091#ifdef FEAT_QUICKFIX
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001092EXTERN char e_there_is_no_preview_window[]
1093 INIT(= N_("E441: There is no preview window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001094#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001095EXTERN char e_cant_split_topleft_and_botright_at_the_same_time[]
1096 INIT(= N_("E442: Can't split topleft and botright at the same time"));
1097EXTERN char e_cannot_rotate_when_another_window_is_split[]
1098 INIT(= N_("E443: Cannot rotate when another window is split"));
1099EXTERN char e_cannot_close_last_window[]
1100 INIT(= N_("E444: Cannot close last window"));
1101EXTERN char e_other_window_contains_changes[]
1102 INIT(= N_("E445: Other window contains changes"));
1103EXTERN char e_no_file_name_under_cursor[]
1104 INIT(= N_("E446: No file name under cursor"));
1105EXTERN char e_cant_find_file_str_in_path_2[]
1106 INIT(= N_("E447: Can't find file \"%s\" in path"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001107#ifdef USING_LOAD_LIBRARY
1108EXTERN char e_could_not_load_library_function_str[]
1109 INIT(= N_("E448: Could not load library function %s"));
1110#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001111#ifdef FEAT_CLIENTSERVER
1112EXTERN char e_invalid_expression_received[]
1113 INIT(= N_("E449: Invalid expression received"));
1114#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001115#ifdef FEAT_PROP_POPUP
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001116EXTERN char e_buffer_number_text_or_list_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001117 INIT(= N_("E450: Buffer number, text or a list required"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001118#endif
1119#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001120EXTERN char e_expected_right_curly_str[]
1121 INIT(= N_("E451: Expected }: %s"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001122EXTERN char e_double_semicolon_in_list_of_variables[]
1123 INIT(= N_("E452: Double ; in list of variables"));
1124#endif
1125EXTERN char e_ul_color_unknown[]
1126 INIT(= N_("E453: UL color unknown"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001127#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001128EXTERN char e_function_list_was_modified[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001129 INIT(= N_("E454: Function list was modified"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001130#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001131#ifdef FEAT_POSTSCRIPT
1132EXTERN char e_error_writing_to_postscript_output_file[]
1133 INIT(= N_("E455: Error writing to PostScript output file"));
1134EXTERN char e_cant_open_file_str_2[]
1135 INIT(= N_("E456: Can't open file \"%s\""));
1136EXTERN char e_cant_find_postscript_resource_file_str_ps[]
1137 INIT(= N_("E456: Can't find PostScript resource file \"%s.ps\""));
1138EXTERN char e_cant_read_postscript_resource_file_str[]
1139 INIT(= N_("E457: Can't read PostScript resource file \"%s\""));
1140#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001141#ifdef FEAT_GUI_X11
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001142EXTERN char e_cannot_allocate_colormap_entry_some_colors_may_be_incorrect[]
1143 INIT(= N_("E458: Cannot allocate colormap entry, some colors may be incorrect"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001144#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001145#if defined(UNIX) || defined(FEAT_SESSION)
1146EXTERN char e_cannot_go_back_to_previous_directory[]
1147 INIT(= N_("E459: Cannot go back to previous directory"));
1148#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001149#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001150EXTERN char e_entries_missing_in_mapset_dict_argument[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001151 INIT(= N_("E460: Entries missing in mapset() dict argument"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001152EXTERN char e_illegal_variable_name_str[]
1153 INIT(= N_("E461: Illegal variable name: %s"));
1154#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001155EXTERN char e_could_not_prepare_for_reloading_str[]
1156 INIT(= N_("E462: Could not prepare for reloading \"%s\""));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001157#ifdef FEAT_NETBEANS_INTG
1158EXTERN char e_region_is_guarded_cannot_modify[]
1159 INIT(= N_("E463: Region is guarded, cannot modify"));
1160#endif
Bram Moolenaard1510ee2021-01-04 16:15:58 +01001161EXTERN char e_ambiguous_use_of_user_defined_command[]
1162 INIT(= N_("E464: Ambiguous use of user-defined command"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001163#ifdef FEAT_EVAL
Bram Moolenaarbed34f02022-01-19 20:48:37 +00001164EXTERN char e_ambiguous_use_of_user_defined_command_str[]
1165 INIT(= N_("E464: Ambiguous use of user-defined command: %s"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001166#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001167EXTERN char e_winsize_requires_two_number_arguments[]
1168 INIT(= N_("E465: :winsize requires two number arguments"));
1169EXTERN char e_winpos_requires_two_number_arguments[]
1170 INIT(= N_("E466: :winpos requires two number arguments"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001171#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001172EXTERN char e_custom_completion_requires_function_argument[]
1173 INIT(= N_("E467: Custom completion requires a function argument"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001174#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001175EXTERN char e_completion_argument_only_allowed_for_custom_completion[]
1176 INIT(= N_("E468: Completion argument only allowed for custom completion"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001177#ifdef FEAT_CSCOPE
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001178EXTERN char e_invalid_cscopequickfix_flag_chr_for_chr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001179 INIT(= N_("E469: Invalid cscopequickfix flag %c for %c"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001180#endif
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001181EXTERN char e_command_aborted[]
1182 INIT(= N_("E470: Command aborted"));
1183EXTERN char e_argument_required[]
1184 INIT(= N_("E471: Argument required"));
1185EXTERN char e_command_failed[]
1186 INIT(= N_("E472: Command failed"));
1187EXTERN char e_internal_error_in_regexp[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001188 INIT(= "E473: Internal error in regexp");
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001189EXTERN char e_invalid_argument[]
1190 INIT(= N_("E474: Invalid argument"));
1191EXTERN char e_invalid_argument_str[]
1192 INIT(= N_("E475: Invalid argument: %s"));
1193EXTERN char e_invalid_value_for_argument_str[]
1194 INIT(= N_("E475: Invalid value for argument %s"));
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01001195#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_PROP_POPUP) || defined(FEAT_EVAL)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001196EXTERN char e_invalid_value_for_argument_str_str[]
1197 INIT(= N_("E475: Invalid value for argument %s: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001198#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02001199EXTERN char e_invalid_command[]
1200 INIT(= N_("E476: Invalid command"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02001201EXTERN char e_invalid_command_str[]
1202 INIT(= N_("E476: Invalid command: %s"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001203#ifdef FEAT_EVAL
Bram Moolenaar552bdca2023-02-17 21:08:50 +00001204EXTERN char e_invalid_command_str_expected_str[]
1205 INIT(= N_("E476: Invalid command: %s, expected %s"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001206#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001207EXTERN char e_no_bang_allowed[]
1208 INIT(= N_("E477: No ! allowed"));
1209EXTERN char e_dont_panic[]
1210 INIT(= N_("E478: Don't panic!"));
1211EXTERN char e_no_match[]
1212 INIT(= N_("E479: No match"));
1213EXTERN char e_no_match_str_2[]
1214 INIT(= N_("E480: No match: %s"));
1215EXTERN char e_no_range_allowed[]
1216 INIT(= N_("E481: No range allowed"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001217EXTERN char e_cant_create_file_str[]
1218 INIT(= N_("E482: Can't create file %s"));
1219EXTERN char e_cant_get_temp_file_name[]
1220 INIT(= N_("E483: Can't get temp file name"));
1221EXTERN char e_cant_open_file_str[]
1222 INIT(= N_("E484: Can't open file %s"));
1223EXTERN char e_cant_read_file_str[]
1224 INIT(= N_("E485: Can't read file %s"));
1225EXTERN char e_pattern_not_found[]
1226 INIT(= N_("E486: Pattern not found"));
1227EXTERN char e_pattern_not_found_str[]
1228 INIT(= N_("E486: Pattern not found: %s"));
1229EXTERN char e_argument_must_be_positive[]
1230 INIT(= N_("E487: Argument must be positive"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001231#ifdef FEAT_PROP_POPUP
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001232EXTERN char e_argument_must_be_positive_str[]
1233 INIT(= N_("E487: Argument must be positive: %s"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001234#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001235EXTERN char e_trailing_characters[]
1236 INIT(= N_("E488: Trailing characters"));
1237EXTERN char e_trailing_characters_str[]
1238 INIT(= N_("E488: Trailing characters: %s"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001239EXTERN char e_no_call_stack_to_substitute_for_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001240 INIT(= N_("E489: No call stack to substitute for \"<stack>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001241#ifdef FEAT_FOLDING
1242EXTERN char e_no_fold_found[]
1243 INIT(= N_("E490: No fold found"));
1244#endif
1245#ifdef FEAT_EVAL
1246EXTERN char e_json_decode_error_at_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001247 INIT(= N_("E491: JSON decode error at '%s'"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001248#endif
1249EXTERN char e_not_an_editor_command[]
1250 INIT(= N_("E492: Not an editor command"));
1251EXTERN char e_backwards_range_given[]
1252 INIT(= N_("E493: Backwards range given"));
1253EXTERN char e_use_w_or_w_gt_gt[]
1254 INIT(= N_("E494: Use w or w>>"));
1255EXTERN char e_no_autocommand_file_name_to_substitute_for_afile[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001256 INIT(= N_("E495: No autocommand file name to substitute for \"<afile>\""));
Bram Moolenaar70e80282023-05-05 22:58:34 +01001257EXTERN char e_no_autocommand_buffer_number_to_substitute_for_abuf[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001258 INIT(= N_("E496: No autocommand buffer number to substitute for \"<abuf>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001259EXTERN char e_no_autocommand_match_name_to_substitute_for_amatch[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001260 INIT(= N_("E497: No autocommand match name to substitute for \"<amatch>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001261EXTERN char e_no_source_file_name_to_substitute_for_sfile[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001262 INIT(= N_("E498: No :source file name to substitute for \"<sfile>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001263EXTERN char e_empty_file_name_for_percent_or_hash_only_works_with_ph[]
K.Takatab5988e32022-01-16 11:25:26 +00001264 // xgettext:no-c-format
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001265 INIT(= N_("E499: Empty file name for '%' or '#', only works with \":p:h\""));
1266EXTERN char e_evaluates_to_an_empty_string[]
1267 INIT(= N_("E500: Evaluates to an empty string"));
1268EXTERN char e_at_end_of_file[]
1269 INIT(= N_("E501: At end-of-file"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001270 // E502
1271EXTERN char e_is_a_directory[]
1272 INIT(= N_("is a directory"));
1273 // E503
1274EXTERN char e_is_not_file_or_writable_device[]
1275 INIT(= N_("is not a file or writable device"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001276EXTERN char e_str_is_not_file_or_writable_device[]
1277 INIT(= N_("E503: \"%s\" is not a file or writable device"));
Dominique Pellé1165f782024-07-18 20:40:28 +02001278#ifdef FEAT_EVAL
Bram Moolenaar80adaa82023-07-07 18:57:40 +01001279EXTERN char e_coffee_currently_not_available[]
1280 INIT(= N_("E503: Coffee is currently not available"));
Dominique Pellé1165f782024-07-18 20:40:28 +02001281#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001282 // E504
1283EXTERN char e_is_read_only_cannot_override_W_in_cpoptions[]
1284 INIT(= N_("is read-only (cannot override: \"W\" in 'cpoptions')"));
1285 // E505
1286EXTERN char e_is_read_only_add_bang_to_override[]
1287 INIT(= N_("is read-only (add ! to override)"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001288EXTERN char e_str_is_read_only_add_bang_to_override[]
1289 INIT(= N_("E505: \"%s\" is read-only (add ! to override)"));
dundargocc57b5bc2022-11-02 13:30:51 +00001290EXTERN char e_cant_write_to_backup_file_add_bang_to_override[]
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001291 INIT(= N_("E506: Can't write to backup file (add ! to override)"));
1292EXTERN char e_close_error_for_backup_file_add_bang_to_write_anyway[]
1293 INIT(= N_("E507: Close error for backup file (add ! to write anyway)"));
1294EXTERN char e_cant_read_file_for_backup_add_bang_to_write_anyway[]
1295 INIT(= N_("E508: Can't read file for backup (add ! to write anyway)"));
1296EXTERN char e_cannot_create_backup_file_add_bang_to_write_anyway[]
1297 INIT(= N_("E509: Cannot create backup file (add ! to override)"));
1298EXTERN char e_cant_make_backup_file_add_bang_to_write_anyway[]
1299 INIT(= N_("E510: Can't make backup file (add ! to write anyway)"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001300#ifdef FEAT_NETBEANS_INTG
1301EXTERN char e_netbeans_already_connected[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001302 INIT(= N_("E511: NetBeans already connected"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001303#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001304EXTERN char e_close_failed[]
1305 INIT(= N_("E512: Close failed"));
1306EXTERN char e_write_error_conversion_failed_make_fenc_empty_to_override[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001307 INIT(= N_("E513: Write error, conversion failed (make 'fenc' empty to override)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001308EXTERN char e_write_error_conversion_failed_in_line_nr_make_fenc_empty_to_override[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001309 INIT(= N_("E513: Write error, conversion failed in line %ld (make 'fenc' empty to override)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001310EXTERN char e_write_error_file_system_full[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001311 INIT(= N_("E514: Write error (file system full?)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001312EXTERN char e_no_buffers_were_unloaded[]
1313 INIT(= N_("E515: No buffers were unloaded"));
1314EXTERN char e_no_buffers_were_deleted[]
1315 INIT(= N_("E516: No buffers were deleted"));
1316EXTERN char e_no_buffers_were_wiped_out[]
1317 INIT(= N_("E517: No buffers were wiped out"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001318EXTERN char e_unknown_option[]
1319 INIT(= N_("E518: Unknown option"));
1320EXTERN char e_option_not_supported[]
1321 INIT(= N_("E519: Option not supported"));
1322EXTERN char e_not_allowed_in_modeline[]
1323 INIT(= N_("E520: Not allowed in a modeline"));
1324EXTERN char e_number_required_after_equal[]
1325 INIT(= N_("E521: Number required after ="));
1326EXTERN char e_number_required_after_str_equal_str[]
1327 INIT(= N_("E521: Number required: &%s = '%s'"));
1328EXTERN char e_not_found_in_termcap[]
1329 INIT(= N_("E522: Not found in termcap"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001330EXTERN char e_not_allowed_here[]
1331 INIT(= N_("E523: Not allowed here"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001332EXTERN char e_missing_colon[]
1333 INIT(= N_("E524: Missing colon"));
1334EXTERN char e_zero_length_string[]
1335 INIT(= N_("E525: Zero length string"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001336#ifdef FEAT_VIMINFO
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001337EXTERN char e_missing_number_after_angle_str_angle[]
1338 INIT(= N_("E526: Missing number after <%s>"));
1339EXTERN char e_missing_comma[]
1340 INIT(= N_("E527: Missing comma"));
1341EXTERN char e_must_specify_a_value[]
1342 INIT(= N_("E528: Must specify a ' value"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001343#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001344EXTERN char e_cannot_set_term_to_empty_string[]
1345 INIT(= N_("E529: Cannot set 'term' to empty string"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001346#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001347EXTERN char e_cannot_change_term_in_GUI[]
1348 INIT(= N_("E530: Cannot change 'term' in the GUI"));
1349EXTERN char e_use_gui_to_start_GUI[]
1350 INIT(= N_("E531: Use \":gui\" to start the GUI"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001351#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001352#ifdef FEAT_NETBEANS_INTG
1353EXTERN char e_highlighting_color_name_too_long_in_defineAnnoType[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001354 INIT(= N_("E532: Highlighting color name too long in defineAnnoType"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001355#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001356#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001357EXTERN char e_cant_select_wide_font[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001358 INIT(= N_("E533: Can't select wide font"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001359EXTERN char e_invalid_wide_font[]
1360 INIT(= N_("E534: Invalid wide font"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001361#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001362EXTERN char e_illegal_character_after_chr[]
1363 INIT(= N_("E535: Illegal character after <%c>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001364#ifdef FEAT_FOLDING
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001365EXTERN char e_comma_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001366 INIT(= N_("E536: Comma required"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001367EXTERN char e_commentstring_must_be_empty_or_contain_str[]
1368 INIT(= N_("E537: 'commentstring' must be empty or contain %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001369#endif
Bram Moolenaar24d9c052022-03-04 21:34:31 +00001370EXTERN char e_pattern_found_in_every_line_str[]
1371 INIT(= N_("E538: Pattern found in every line: %s"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001372EXTERN char e_illegal_character_str[]
1373 INIT(= N_("E539: Illegal character <%s>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001374#ifdef FEAT_STL_OPT
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001375EXTERN char e_unclosed_expression_sequence[]
1376 INIT(= N_("E540: Unclosed expression sequence"));
1377// E541 unused
1378EXTERN char e_unbalanced_groups[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001379 INIT(= N_("E542: Unbalanced groups"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001380#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001381#ifdef MSWIN
1382EXTERN char e_not_valid_codepage[]
1383 INIT(= N_("E543: Not a valid codepage"));
1384#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001385#ifdef FEAT_KEYMAP
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001386EXTERN char e_keymap_file_not_found[]
1387 INIT(= N_("E544: Keymap file not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001388#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001389#ifdef CURSOR_SHAPE
Bram Moolenaar475d9522022-01-02 21:46:29 +00001390EXTERN char e_missing_colon_2[]
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001391 INIT(= N_("E545: Missing colon"));
1392EXTERN char e_illegal_mode[]
1393 INIT(= N_("E546: Illegal mode"));
1394#endif
1395#ifdef FEAT_MOUSESHAPE
1396EXTERN char e_illegal_mouseshape[]
1397 INIT(= N_("E547: Illegal mouseshape"));
1398#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00001399#ifdef CURSOR_SHAPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001400EXTERN char e_digit_expected[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001401 INIT(= N_("E548: Digit expected"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001402EXTERN char e_illegal_percentage[]
1403 INIT(= N_("E549: Illegal percentage"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001404#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001405#ifdef FEAT_PRINTER
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001406EXTERN char e_missing_colon_3[]
1407 INIT(= N_("E550: Missing colon"));
1408EXTERN char e_illegal_component[]
1409 INIT(= N_("E551: Illegal component"));
1410EXTERN char e_digit_expected_2[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001411 INIT(= N_("E552: Digit expected"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001412#endif
1413#ifdef FEAT_QUICKFIX
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001414EXTERN char e_no_more_items[]
1415 INIT(= N_("E553: No more items"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001416#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001417EXTERN char e_syntax_error_in_str_curlies[]
1418 INIT(= N_("E554: Syntax error in %s{...}"));
1419EXTERN char e_at_bottom_of_tag_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001420 INIT(= N_("E555: At bottom of tag stack"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001421EXTERN char e_at_top_of_tag_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001422 INIT(= N_("E556: At top of tag stack"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001423EXTERN char e_cannot_open_termcap_file[]
1424 INIT(= N_("E557: Cannot open termcap file"));
1425EXTERN char e_terminal_entry_not_found_in_terminfo[]
1426 INIT(= N_("E558: Terminal entry not found in terminfo"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001427#if defined(HAVE_TGETENT) && !defined(TERMINFO)
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001428EXTERN char e_terminal_entry_not_found_in_termcap[]
1429 INIT(= N_("E559: Terminal entry not found in termcap"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001430#endif
1431#ifdef FEAT_CSCOPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001432EXTERN char e_usage_cscope_str[]
1433 INIT(= N_("E560: Usage: cs[cope] %s"));
1434EXTERN char e_unknown_cscope_search_type[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001435 INIT(= N_("E561: Unknown cscope search type"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001436EXTERN char e_usage_cstag_ident[]
1437 INIT(= N_("E562: Usage: cstag <ident>"));
1438EXTERN char e_stat_str_error_nr[]
1439 INIT(= N_("E563: stat(%s) error: %d"));
1440EXTERN char e_str_is_not_directory_or_valid_cscope_database[]
1441 INIT(= N_("E564: %s is not a directory or a valid cscope database"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001442#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001443EXTERN char e_not_allowed_to_change_text_or_change_window[]
1444 INIT(= N_("E565: Not allowed to change text or change window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001445#ifdef FEAT_CSCOPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001446EXTERN char e_could_not_create_cscope_pipes[]
1447 INIT(= N_("E566: Could not create cscope pipes"));
1448EXTERN char e_no_cscope_connections[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001449 INIT(= N_("E567: No cscope connections"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001450EXTERN char e_duplicate_cscope_database_not_added[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001451 INIT(= N_("E568: Duplicate cscope database not added"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001452// E569 unused
1453EXTERN char e_fatal_error_in_cs_manage_matches[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001454 INIT(= "E570: Fatal error in cs_manage_matches");
Dominique Pellef85a4242022-01-09 12:49:31 +00001455#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001456#ifdef DYNAMIC_TCL
1457EXTERN char e_sorry_this_command_is_disabled_tcl_library_could_not_be_loaded[]
1458 INIT(= N_("E571: Sorry, this command is disabled: the Tcl library could not be loaded."));
1459#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001460#ifdef FEAT_TCL
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001461EXTERN char e_exit_code_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001462 INIT(= N_("E572: Exit code %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001463#endif
1464#ifdef FEAT_CLIENTSERVER
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001465EXTERN char e_invalid_server_id_used_str[]
1466 INIT(= N_("E573: Invalid server id used: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001467#endif
1468#ifdef FEAT_VIMINFO
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001469EXTERN char e_unknown_register_type_nr[]
1470 INIT(= N_("E574: Unknown register type %d"));
1471 // E575
1472EXTERN char e_illegal_starting_char[]
1473 INIT(= N_("Illegal starting char"));
1474 // E576
1475EXTERN char e_nonr_missing_gt[]
1476 INIT(= N_("Missing '>'"));
1477 // E577
1478EXTERN char e_illegal_register_name[]
1479 INIT(= N_("Illegal register name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001480#endif
zeertzjqcfe45652022-05-27 17:26:55 +01001481// E578 unused
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001482#ifdef FEAT_EVAL
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001483EXTERN char e_if_nesting_too_deep[]
1484 INIT(= N_("E579: :if nesting too deep"));
1485EXTERN char e_block_nesting_too_deep[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001486 INIT(= N_("E579: Block nesting too deep"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001487EXTERN char e_endif_without_if[]
1488 INIT(= N_("E580: :endif without :if"));
1489EXTERN char e_else_without_if[]
1490 INIT(= N_("E581: :else without :if"));
1491EXTERN char e_elseif_without_if[]
1492 INIT(= N_("E582: :elseif without :if"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001493EXTERN char e_multiple_else[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001494 INIT(= N_("E583: Multiple :else"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001495EXTERN char e_elseif_after_else[]
1496 INIT(= N_("E584: :elseif after :else"));
1497EXTERN char e_while_for_nesting_too_deep[]
1498 INIT(= N_("E585: :while/:for nesting too deep"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001499EXTERN char e_continue_without_while_or_for[]
1500 INIT(= N_("E586: :continue without :while or :for"));
1501EXTERN char e_break_without_while_or_for[]
1502 INIT(= N_("E587: :break without :while or :for"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001503EXTERN char e_endwhile_without_while[]
1504 INIT(= N_("E588: :endwhile without :while"));
1505EXTERN char e_endfor_without_for[]
1506 INIT(= N_("E588: :endfor without :for"));
Bram Moolenaar0f7a5e72022-01-01 16:31:48 +00001507#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001508EXTERN char e_backupext_and_patchmode_are_equal[]
1509 INIT(= N_("E589: 'backupext' and 'patchmode' are equal"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001510#ifdef FEAT_QUICKFIX
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001511EXTERN char e_preview_window_already_exists[]
1512 INIT(= N_("E590: A preview window already exists"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001513#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001514EXTERN char e_winheight_cannot_be_smaller_than_winminheight[]
1515 INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'"));
1516EXTERN char e_winwidth_cannot_be_smaller_than_winminwidth[]
1517 INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001518EXTERN char e_need_at_least_nr_lines[]
1519 INIT(= N_("E593: Need at least %d lines"));
1520EXTERN char e_need_at_least_nr_columns[]
1521 INIT(= N_("E594: Need at least %d columns"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001522#ifdef FEAT_LINEBREAK
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001523EXTERN char e_showbreak_contains_unprintable_or_wide_character[]
1524 INIT(= N_("E595: 'showbreak' contains unprintable or wide character"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001525#endif
1526#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001527EXTERN char e_invalid_fonts[]
1528 INIT(= N_("E596: Invalid font(s)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001529# ifdef FEAT_XFONTSET
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001530EXTERN char e_cant_select_fontset[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001531 INIT(= N_("E597: Can't select fontset"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001532EXTERN char e_invalid_fontset[]
1533 INIT(= N_("E598: Invalid fontset"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001534# endif
1535#endif
1536#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001537EXTERN char e_value_of_imactivatekey_is_invalid[]
1538 INIT(= N_("E599: Value of 'imactivatekey' is invalid"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001539#endif
Bram Moolenaar0f7a5e72022-01-01 16:31:48 +00001540#ifdef FEAT_EVAL
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001541EXTERN char e_missing_endtry[]
1542 INIT(= N_("E600: Missing :endtry"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001543EXTERN char e_try_nesting_too_deep[]
1544 INIT(= N_("E601: :try nesting too deep"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001545EXTERN char e_endtry_without_try[]
1546 INIT(= N_("E602: :endtry without :try"));
1547EXTERN char e_catch_without_try[]
1548 INIT(= N_("E603: :catch without :try"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001549EXTERN char e_catch_after_finally[]
1550 INIT(= N_("E604: :catch after :finally"));
1551EXTERN char e_exception_not_caught_str[]
1552 INIT(= N_("E605: Exception not caught: %s"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001553EXTERN char e_finally_without_try[]
1554 INIT(= N_("E606: :finally without :try"));
1555EXTERN char e_multiple_finally[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001556 INIT(= N_("E607: Multiple :finally"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001557EXTERN char e_cannot_throw_exceptions_with_vim_prefix[]
1558 INIT(= N_("E608: Cannot :throw exceptions with 'Vim' prefix"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001559#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001560#ifdef FEAT_CSCOPE
1561EXTERN char e_cscope_error_str[]
1562 INIT(= N_("E609: Cscope error: %s"));
1563#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001564EXTERN char e_no_argument_to_delete[]
1565 INIT(= N_("E610: No argument to delete"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001566#ifdef FEAT_EVAL
1567EXTERN char e_using_special_as_number[]
1568 INIT(= N_("E611: Using a Special as a Number"));
1569#endif
1570#ifdef FEAT_SIGNS
1571EXTERN char e_too_many_signs_defined[]
1572 INIT(= N_("E612: Too many signs defined"));
1573#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001574#if defined(MSWIN) && defined(FEAT_PRINTER)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001575EXTERN char e_unknown_printer_font_str[]
1576 INIT(= N_("E613: Unknown printer font: %s"));
1577#endif
Dominique Pellé1165f782024-07-18 20:40:28 +02001578// E614 unused (deleted)
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02001579// E615 unused
Dominique Pellé1165f782024-07-18 20:40:28 +02001580#ifdef FEAT_EVAL
LemonBoyafe04662023-08-23 21:08:11 +02001581EXTERN char e_object_required_for_argument_nr[]
1582 INIT(= N_("E616: Object required for argument %d"));
Dominique Pellé1165f782024-07-18 20:40:28 +02001583#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001584#ifdef FEAT_GUI_GTK
1585EXTERN char e_cannot_be_changed_in_gtk_GUI[]
1586 INIT(= N_("E617: Cannot be changed in the GTK GUI"));
1587#endif
1588#ifdef FEAT_POSTSCRIPT
1589EXTERN char e_file_str_is_not_postscript_resource_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001590 INIT(= N_("E618: File \"%s\" is not a PostScript resource file"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001591EXTERN char e_file_str_is_not_supported_postscript_resource_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001592 INIT(= N_("E619: File \"%s\" is not a supported PostScript resource file"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001593EXTERN char e_unable_to_convert_to_print_encoding_str[]
1594 INIT(= N_("E620: Unable to convert to print encoding \"%s\""));
1595EXTERN char e_str_resource_file_has_wrong_version[]
1596 INIT(= N_("E621: \"%s\" resource file has wrong version"));
1597#endif
1598#ifdef FEAT_CSCOPE
1599EXTERN char e_could_not_fork_for_cscope[]
1600 INIT(= N_("E622: Could not fork for cscope"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001601# ifndef UNIX
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001602EXTERN char e_could_not_spawn_cscope_process[]
1603 INIT(= N_("E623: Could not spawn cscope process"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001604# endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001605#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001606#if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001607EXTERN char e_cant_open_file_str_3[]
1608 INIT(= N_("E624: Can't open file \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00001609#endif
1610#if defined(FEAT_CSCOPE) && !defined(UNIX)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001611EXTERN char e_cannot_open_cscope_database_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001612 INIT(= N_("E625: Cannot open cscope database: %s"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001613EXTERN char e_cannot_get_cscope_database_information[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001614 INIT(= N_("E626: Cannot get cscope database information"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001615#endif
1616#ifdef FEAT_NETBEANS_INTG
1617EXTERN char e_missing_colon_str[]
RestorerZd87dec02023-05-25 20:13:48 +01001618 INIT(= N_("E627: Missing colon: %s"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001619EXTERN char e_missing_bang_or_slash_in_str[]
RestorerZd87dec02023-05-25 20:13:48 +01001620 INIT(= N_("E628: Missing ! or / in: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001621#ifdef NBDEBUG
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001622EXTERN char e_bad_return_from_nb_do_cmd[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001623 INIT(= "E629: Bad return from nb_do_cmd");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001624#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001625#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001626#ifdef FEAT_JOB_CHANNEL
1627EXTERN char e_str_write_while_not_connected[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001628 INIT(= N_("E630: %s(): Write while not connected"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001629EXTERN char e_str_write_failed[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001630 INIT(= N_("E631: %s(): Write failed"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001631#endif
1632#ifdef FEAT_NETBEANS_INTG
1633EXTERN char e_invalid_buffer_identifier_in_getlength[]
RestorerZd87dec02023-05-25 20:13:48 +01001634 INIT(= N_("E632: Invalid buffer identifier in getLength"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001635EXTERN char e_invalid_buffer_identifier_in_gettext[]
RestorerZd87dec02023-05-25 20:13:48 +01001636 INIT(= N_("E633: Invalid buffer identifier in getText"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001637EXTERN char e_invalid_buffer_identifier_in_remove[]
RestorerZd87dec02023-05-25 20:13:48 +01001638 INIT(= N_("E634: Invalid buffer identifier in remove"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001639EXTERN char e_invalid_buffer_identifier_in_insert[]
RestorerZd87dec02023-05-25 20:13:48 +01001640 INIT(= N_("E635: Invalid buffer identifier in insert"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001641EXTERN char e_invalid_buffer_identifier_in_create[]
RestorerZd87dec02023-05-25 20:13:48 +01001642 INIT(= N_("E636: Invalid buffer identifier in create"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001643EXTERN char e_invalid_buffer_identifier_in_startdocumentlisten[]
RestorerZd87dec02023-05-25 20:13:48 +01001644 INIT(= N_("E637: Invalid buffer identifier in startDocumentListen"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001645EXTERN char e_invalid_buffer_identifier_in_stopdocumentlisten[]
RestorerZd87dec02023-05-25 20:13:48 +01001646 INIT(= N_("E638: Invalid buffer identifier in stopDocumentListen"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001647EXTERN char e_invalid_buffer_identifier_in_settitle[]
RestorerZd87dec02023-05-25 20:13:48 +01001648 INIT(= N_("E639: Invalid buffer identifier in setTitle"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001649EXTERN char e_invalid_buffer_identifier_in_initdone[]
RestorerZd87dec02023-05-25 20:13:48 +01001650 INIT(= N_("E640: Invalid buffer identifier in initDone"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001651EXTERN char e_invalid_buffer_identifier_in_setbuffernumber[]
RestorerZd87dec02023-05-25 20:13:48 +01001652 INIT(= N_("E641: Invalid buffer identifier in setBufferNumber"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001653EXTERN char e_file_str_not_found_in_setbuffernumber[]
RestorerZd87dec02023-05-25 20:13:48 +01001654 INIT(= N_("E642: File %s not found in setBufferNumber"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001655EXTERN char e_invalid_buffer_identifier_in_setfullname[]
RestorerZd87dec02023-05-25 20:13:48 +01001656 INIT(= N_("E643: Invalid buffer identifier in setFullName"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001657EXTERN char e_invalid_buffer_identifier_in_editfile[]
RestorerZd87dec02023-05-25 20:13:48 +01001658 INIT(= N_("E644: Invalid buffer identifier in editFile"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001659EXTERN char e_invalid_buffer_identifier_in_setvisible[]
RestorerZd87dec02023-05-25 20:13:48 +01001660 INIT(= N_("E645: Invalid buffer identifier in setVisible"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001661EXTERN char e_invalid_buffer_identifier_in_setmodified[]
RestorerZd87dec02023-05-25 20:13:48 +01001662 INIT(= N_("E646: Invalid buffer identifier in setModified"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001663EXTERN char e_invalid_buffer_identifier_in_setdot[]
RestorerZd87dec02023-05-25 20:13:48 +01001664 INIT(= N_("E647: Invalid buffer identifier in setDot"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001665EXTERN char e_invalid_buffer_identifier_in_close[]
RestorerZd87dec02023-05-25 20:13:48 +01001666 INIT(= N_("E648: Invalid buffer identifier in close"));
Christian Brabandt5c233432023-11-27 20:04:24 +01001667// E649 unused
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001668EXTERN char e_invalid_buffer_identifier_in_defineannotype[]
RestorerZd87dec02023-05-25 20:13:48 +01001669 INIT(= N_("E650: Invalid buffer identifier in defineAnnoType"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001670EXTERN char e_invalid_buffer_identifier_in_addanno[]
RestorerZd87dec02023-05-25 20:13:48 +01001671 INIT(= N_("E651: Invalid buffer identifier in addAnno"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001672EXTERN char e_invalid_buffer_identifier_in_getanno[]
RestorerZd87dec02023-05-25 20:13:48 +01001673 INIT(= N_("E652: Invalid buffer identifier in getAnno"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001674#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001675// E653 unused
1676EXTERN char e_missing_delimiter_after_search_pattern_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001677 INIT(= N_("E654: Missing delimiter after search pattern: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001678#ifdef FEAT_EVAL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001679EXTERN char e_too_many_symbolic_links_cycle[]
1680 INIT(= N_("E655: Too many symbolic links (cycle?)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001681#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001682#ifdef FEAT_NETBEANS_INTG
1683 // E656
1684EXTERN char e_netbeans_disallows_writes_of_unmodified_buffers[]
1685 INIT(= N_("NetBeans disallows writes of unmodified buffers"));
1686 // E657
1687EXTERN char e_partial_writes_disallowed_for_netbeans_buffers[]
1688 INIT(= N_("Partial writes disallowed for NetBeans buffers"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001689EXTERN char e_netbeans_connection_lost_for_buffer_nr[]
1690 INIT(= N_("E658: NetBeans connection lost for buffer %d"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001691#endif
1692#ifdef FEAT_PYTHON
1693EXTERN char e_cannot_invoke_python_recursively[]
1694 INIT(= N_("E659: Cannot invoke Python recursively"));
1695#endif
1696#ifdef FEAT_NETBEANS_INTG
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001697EXTERN char e_cannot_open_netbeans_connection_info_file[]
1698 INIT(= "E660: Cannot open NetBeans connection info file");
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001699#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001700#ifdef FEAT_MULTI_LANG
1701EXTERN char e_sorry_no_str_help_for_str[]
1702 INIT(= N_("E661: Sorry, no '%s' help for %s"));
1703#endif
1704EXTERN char e_at_start_of_changelist[]
1705 INIT(= N_("E662: At start of changelist"));
1706EXTERN char e_at_end_of_changelist[]
1707 INIT(= N_("E663: At end of changelist"));
1708EXTERN char e_changelist_is_empty[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001709 INIT(= N_("E664: Changelist is empty"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001710#ifdef FEAT_GUI
1711EXTERN char e_cannot_start_gui_no_valid_font_found[]
1712 INIT(= N_("E665: Cannot start GUI, no valid font found"));
1713#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001714#ifdef FEAT_EVAL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001715EXTERN char e_compiler_not_supported_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001716 INIT(= N_("E666: Compiler not supported: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001717#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001718#ifdef HAVE_FSYNC
1719EXTERN char e_fsync_failed[]
1720 INIT(= N_("E667: Fsync failed"));
1721#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001722#ifdef FEAT_NETBEANS_INTG
1723EXTERN char e_wrong_access_mode_for_netbeans_connection_info_file_str[]
1724 INIT(= N_("E668: Wrong access mode for NetBeans connection info file: \"%s\""));
1725#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001726EXTERN char e_unprintable_character_in_group_name[]
1727 INIT(= N_("E669: Unprintable character in group name"));
1728EXTERN char e_mix_of_help_file_encodings_within_language_str[]
1729 INIT(= N_("E670: Mix of help file encodings within a language: %s"));
1730#ifdef FEAT_GUI_MSWIN
1731EXTERN char e_cannot_find_window_title_str[]
1732 INIT(= N_("E671: Cannot find window title \"%s\""));
1733EXTERN char e_unable_to_open_window_inside_mdi_application[]
1734 INIT(= N_("E672: Unable to open window inside MDI application"));
1735#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001736#if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT)
Bram Moolenaara6f79292022-01-04 21:30:47 +00001737EXTERN char e_incompatible_multi_byte_encoding_and_character_set[]
1738 INIT(= N_("E673: Incompatible multi-byte encoding and character set"));
1739EXTERN char e_printmbcharset_cannot_be_empty_with_multi_byte_encoding[]
1740 INIT(= N_("E674: printmbcharset cannot be empty with multi-byte encoding."));
1741EXTERN char e_no_default_font_specified_for_multi_byte_printing[]
1742 INIT(= N_("E675: No default font specified for multi-byte printing."));
Dominique Pellef85a4242022-01-09 12:49:31 +00001743#endif
Bram Moolenaar500a1f92022-09-20 11:49:10 +01001744EXTERN char e_no_matching_autocommands_for_buftype_str_buffer[]
1745 INIT(= N_("E676: No matching autocommands for buftype=%s buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001746#ifdef FEAT_SYN_HL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001747EXTERN char e_error_writing_temp_file[]
1748 INIT(= N_("E677: Error writing temp file"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001749#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001750EXTERN char e_invalid_character_after_str_2[]
1751 INIT(= N_("E678: Invalid character after %s%%[dxouU]"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001752#ifdef FEAT_SYN_HL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001753EXTERN char e_recursive_loop_loading_syncolor_vim[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001754 INIT(= N_("E679: Recursive loop loading syncolor.vim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001755#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001756EXTERN char e_buffer_nr_invalid_buffer_number[]
1757 INIT(= N_("E680: <buffer=%d>: invalid buffer number"));
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +01001758#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL)
Bram Moolenaara6f79292022-01-04 21:30:47 +00001759EXTERN char e_buffer_is_not_loaded[]
1760 INIT(= N_("E681: Buffer is not loaded"));
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +01001761#endif
1762#ifdef FEAT_QUICKFIX
Bram Moolenaar74409f62022-01-01 15:58:22 +00001763EXTERN char e_invalid_search_pattern_or_delimiter[]
1764 INIT(= N_("E682: Invalid search pattern or delimiter"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001765EXTERN char e_file_name_missing_or_invalid_pattern[]
1766 INIT(= N_("E683: File name missing or invalid pattern"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001767#endif
Bram Moolenaar096ca732022-01-01 00:55:28 +00001768#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001769EXTERN char e_list_index_out_of_range_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001770 INIT(= N_("E684: List index out of range: %ld"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001771#endif
1772EXTERN char e_internal_error_str[]
1773 INIT(= N_("E685: Internal error: %s"));
1774#ifdef FEAT_EVAL
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001775EXTERN char e_argument_of_str_must_be_list[]
1776 INIT(= N_("E686: Argument of %s must be a List"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001777EXTERN char e_less_targets_than_list_items[]
1778 INIT(= N_("E687: Less targets than List items"));
1779EXTERN char e_more_targets_than_list_items[]
1780 INIT(= N_("E688: More targets than List items"));
Ernie Raelf8da3242023-10-11 21:22:12 +02001781EXTERN char e_index_not_allowed_after_str_str[]
1782 INIT(= N_("E689: Index not allowed after a %s: %s"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001783EXTERN char e_missing_in_after_for[]
1784 INIT(= N_("E690: Missing \"in\" after :for"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001785EXTERN char e_can_only_compare_list_with_list[]
1786 INIT(= N_("E691: Can only compare List with List"));
1787EXTERN char e_invalid_operation_for_list[]
1788 INIT(= N_("E692: Invalid operation for List"));
Ernie Rael2025af12023-12-12 16:58:00 +01001789EXTERN char e_class_or_typealias_required_for_argument_nr[]
1790 INIT(= N_("E693: Class or class typealias required for argument %d"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001791EXTERN char e_invalid_operation_for_funcrefs[]
1792 INIT(= N_("E694: Invalid operation for Funcrefs"));
Bram Moolenaarf47c5a82021-12-19 15:17:21 +00001793EXTERN char e_cannot_index_a_funcref[]
1794 INIT(= N_("E695: Cannot index a Funcref"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001795EXTERN char e_missing_comma_in_list_str[]
1796 INIT(= N_("E696: Missing comma in List: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001797EXTERN char e_missing_end_of_list_rsb_str[]
1798 INIT(= N_("E697: Missing end of List ']': %s"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001799EXTERN char e_variable_nested_too_deep_for_making_copy[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001800 INIT(= N_("E698: Variable nested too deep for making a copy"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001801EXTERN char e_too_many_arguments[]
1802 INIT(= N_("E699: Too many arguments"));
1803EXTERN char e_unknown_function_str_2[]
1804 INIT(= N_("E700: Unknown function: %s"));
1805EXTERN char e_invalid_type_for_len[]
1806 INIT(= N_("E701: Invalid type for len()"));
1807EXTERN char e_sort_compare_function_failed[]
1808 INIT(= N_("E702: Sort compare function failed"));
1809EXTERN char e_using_funcref_as_number[]
1810 INIT(= N_("E703: Using a Funcref as a Number"));
1811EXTERN char e_funcref_variable_name_must_start_with_capital_str[]
1812 INIT(= N_("E704: Funcref variable name must start with a capital: %s"));
1813EXTERN char e_variable_name_conflicts_with_existing_function_str[]
1814 INIT(= N_("E705: Variable name conflicts with existing function: %s"));
zeertzjq4f389e72023-08-17 22:10:40 +02001815EXTERN char e_argument_of_str_must_be_list_string_or_dictionary[]
1816 INIT(= N_("E706: Argument of %s must be a List, String or Dictionary"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001817EXTERN char e_function_name_conflicts_with_variable_str[]
1818 INIT(= N_("E707: Function name conflicts with variable: %s"));
1819EXTERN char e_slice_must_come_last[]
1820 INIT(= N_("E708: [:] must come last"));
1821EXTERN char e_slice_requires_list_or_blob_value[]
1822 INIT(= N_("E709: [:] requires a List or Blob value"));
Bram Moolenaar792f7862020-11-23 08:31:18 +01001823EXTERN char e_list_value_has_more_items_than_targets[]
1824 INIT(= N_("E710: List value has more items than targets"));
1825EXTERN char e_list_value_does_not_have_enough_items[]
1826 INIT(= N_("E711: List value does not have enough items"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001827EXTERN char e_argument_of_str_must_be_list_or_dictionary[]
1828 INIT(= N_("E712: Argument of %s must be a List or Dictionary"));
1829EXTERN char e_cannot_use_empty_key_for_dictionary[]
1830 INIT(= N_("E713: Cannot use empty key for Dictionary"));
1831EXTERN char e_list_required[]
1832 INIT(= N_("E714: List required"));
1833EXTERN char e_dictionary_required[]
1834 INIT(= N_("E715: Dictionary required"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001835EXTERN char e_key_not_present_in_dictionary_str[]
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001836 INIT(= N_("E716: Key not present in Dictionary: \"%s\""));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001837EXTERN char e_dictionary_entry_already_exists[]
1838 INIT(= N_("E717: Dictionary entry already exists"));
1839EXTERN char e_funcref_required[]
1840 INIT(= N_("E718: Funcref required"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02001841EXTERN char e_cannot_slice_dictionary[]
Bram Moolenaar77072282020-09-16 17:55:40 +02001842 INIT(= N_("E719: Cannot slice a Dictionary"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001843EXTERN char e_missing_colon_in_dictionary_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001844 INIT(= N_("E720: Missing colon in Dictionary: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001845EXTERN char e_duplicate_key_in_dictionary_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001846 INIT(= N_("E721: Duplicate key in Dictionary: \"%s\""));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001847EXTERN char e_missing_comma_in_dictionary_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001848 INIT(= N_("E722: Missing comma in Dictionary: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001849EXTERN char e_missing_dict_end_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001850 INIT(= N_("E723: Missing end of Dictionary '}': %s"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001851EXTERN char e_variable_nested_too_deep_for_displaying[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001852 INIT(= N_("E724: Variable nested too deep for displaying"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001853EXTERN char e_calling_dict_function_without_dictionary_str[]
1854 INIT(= N_("E725: Calling dict function without Dictionary: %s"));
1855EXTERN char e_stride_is_zero[]
1856 INIT(= N_("E726: Stride is zero"));
1857EXTERN char e_start_past_end[]
1858 INIT(= N_("E727: Start past end"));
1859EXTERN char e_using_dictionary_as_number[]
1860 INIT(= N_("E728: Using a Dictionary as a Number"));
1861EXTERN char e_using_funcref_as_string[]
1862 INIT(= N_("E729: Using a Funcref as a String"));
1863EXTERN char e_using_list_as_string[]
1864 INIT(= N_("E730: Using a List as a String"));
1865EXTERN char e_using_dictionary_as_string[]
1866 INIT(= N_("E731: Using a Dictionary as a String"));
1867EXTERN char e_using_endfor_with_while[]
1868 INIT(= N_("E732: Using :endfor with :while"));
1869EXTERN char e_using_endwhile_with_for[]
1870 INIT(= N_("E733: Using :endwhile with :for"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001871EXTERN char e_wrong_variable_type_for_str_equal[]
1872 INIT(= N_("E734: Wrong variable type for %s="));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001873EXTERN char e_can_only_compare_dictionary_with_dictionary[]
1874 INIT(= N_("E735: Can only compare Dictionary with Dictionary"));
1875EXTERN char e_invalid_operation_for_dictionary[]
1876 INIT(= N_("E736: Invalid operation for Dictionary"));
1877EXTERN char e_key_already_exists_str[]
1878 INIT(= N_("E737: Key already exists: %s"));
1879EXTERN char e_cant_list_variables_for_str[]
1880 INIT(= N_("E738: Can't list variables for %s"));
1881EXTERN char e_cannot_create_directory_str[]
1882 INIT(= N_("E739: Cannot create directory: %s"));
1883EXTERN char e_too_many_arguments_for_function_str_2[]
1884 INIT(= N_("E740: Too many arguments for function %s"));
Bram Moolenaar71b76852021-12-17 20:15:38 +00001885EXTERN char e_value_is_locked[]
1886 INIT(= N_("E741: Value is locked"));
1887EXTERN char e_value_is_locked_str[]
1888 INIT(= N_("E741: Value is locked: %s"));
1889EXTERN char e_cannot_change_value[]
1890 INIT(= N_("E742: Cannot change value"));
1891EXTERN char e_cannot_change_value_of_str[]
1892 INIT(= N_("E742: Cannot change value of %s"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001893EXTERN char e_variable_nested_too_deep_for_unlock[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001894 INIT(= N_("E743: Variable nested too deep for (un)lock"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001895#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001896#ifdef FEAT_NETBEANS_INTG
1897EXTERN char e_netbeans_does_not_allow_changes_in_read_only_files[]
1898 INIT(= N_("E744: NetBeans does not allow changes in read-only files"));
1899#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001900#ifdef FEAT_EVAL
1901EXTERN char e_using_list_as_number[]
1902 INIT(= N_("E745: Using a List as a Number"));
1903EXTERN char e_function_name_does_not_match_script_file_name_str[]
1904 INIT(= N_("E746: Function name does not match script file name: %s"));
1905#endif
1906EXTERN char e_cannot_change_directory_buffer_is_modified_add_bang_to_override[]
1907 INIT(= N_("E747: Cannot change directory, buffer is modified (add ! to override)"));
1908EXTERN char e_no_previously_used_register[]
1909 INIT(= N_("E748: No previously used register"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001910EXTERN char e_empty_buffer[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001911 INIT(= N_("E749: Empty buffer"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001912#ifdef FEAT_PROFILE
1913EXTERN char e_first_use_profile_start_fname[]
1914 INIT(= N_("E750: First use \":profile start {fname}\""));
1915#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001916#ifdef FEAT_SPELL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001917EXTERN char e_output_file_name_must_not_have_region_name[]
1918 INIT(= N_("E751: Output file name must not have region name"));
1919EXTERN char e_no_previous_spell_replacement[]
1920 INIT(= N_("E752: No previous spell replacement"));
1921EXTERN char e_not_found_str[]
1922 INIT(= N_("E753: Not found: %s"));
1923EXTERN char e_only_up_to_nr_regions_supported[]
1924 INIT(= N_("E754: Only up to %d regions supported"));
1925EXTERN char e_invalid_region_in_str[]
1926 INIT(= N_("E755: Invalid region in %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001927EXTERN char e_spell_checking_is_not_possible[]
1928 INIT(= N_("E756: Spell checking is not possible"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001929EXTERN char e_this_does_not_look_like_spell_file[]
1930 INIT(= N_("E757: This does not look like a spell file"));
1931EXTERN char e_truncated_spell_file[]
1932 INIT(= N_("E758: Truncated spell file"));
1933EXTERN char e_format_error_in_spell_file[]
1934 INIT(= N_("E759: Format error in spell file"));
1935EXTERN char e_no_word_count_in_str[]
1936 INIT(= N_("E760: No word count in %s"));
1937EXTERN char e_format_error_in_affix_file_fol_low_or_upp[]
1938 INIT(= N_("E761: Format error in affix file FOL, LOW or UPP"));
1939EXTERN char e_character_in_fol_low_or_upp_is_out_of_range[]
1940 INIT(= N_("E762: Character in FOL, LOW or UPP is out of range"));
1941EXTERN char e_word_characters_differ_between_spell_files[]
1942 INIT(= N_("E763: Word characters differ between spell files"));
Bram Moolenaare60b3c42022-01-05 20:40:34 +00001943#endif
Martin Tournoijba43e762022-10-13 22:12:15 +01001944#if defined(FEAT_SYN_HL) || defined(FEAT_COMPL_FUNC) || defined(FEAT_SPELL)
Bram Moolenaar74409f62022-01-01 15:58:22 +00001945EXTERN char e_option_str_is_not_set[]
1946 INIT(= N_("E764: Option '%s' is not set"));
1947#endif
Bram Moolenaare60b3c42022-01-05 20:40:34 +00001948#ifdef FEAT_SPELL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001949EXTERN char e_spellfile_does_not_have_nr_entries[]
1950 INIT(= N_("E765: 'spellfile' does not have %d entries"));
1951#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001952#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001953EXTERN char e_insufficient_arguments_for_printf[]
1954 INIT(= N_("E766: Insufficient arguments for printf()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001955#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001956EXTERN char e_too_many_arguments_to_printf[]
1957 INIT(= N_("E767: Too many arguments for printf()"));
1958EXTERN char e_swap_file_exists_str_silent_overrides[]
1959 INIT(= N_("E768: Swap file exists: %s (:silent! overrides)"));
1960EXTERN char e_missing_rsb_after_str_lsb[]
1961 INIT(= N_("E769: Missing ] after %s["));
1962#ifdef FEAT_SPELL
1963EXTERN char e_unsupported_section_in_spell_file[]
1964 INIT(= N_("E770: Unsupported section in spell file"));
1965EXTERN char e_old_spell_file_needs_to_be_updated[]
1966 INIT(= N_("E771: Old spell file, needs to be updated"));
1967EXTERN char e_spell_file_is_for_newer_version_of_vim[]
1968 INIT(= N_("E772: Spell file is for newer version of Vim"));
1969#endif
1970EXTERN char e_symlink_loop_for_str[]
1971 INIT(= N_("E773: Symlink loop for \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00001972#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001973EXTERN char e_operatorfunc_is_empty[]
1974 INIT(= N_("E774: 'operatorfunc' is empty"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001975#else
Bram Moolenaar677658a2022-01-05 16:09:06 +00001976EXTERN char e_eval_feature_not_available[]
1977 INIT(= N_("E775: Eval feature not available"));
1978#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001979#ifdef FEAT_QUICKFIX
1980EXTERN char e_no_location_list[]
1981 INIT(= N_("E776: No location list"));
Bram Moolenaar968443e2022-05-27 21:16:34 +01001982#endif
1983#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001984EXTERN char e_string_or_list_expected[]
1985 INIT(= N_("E777: String or List expected"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001986#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001987#ifdef FEAT_SPELL
1988EXTERN char e_this_does_not_look_like_sug_file_str[]
1989 INIT(= N_("E778: This does not look like a .sug file: %s"));
1990EXTERN char e_old_sug_file_needs_to_be_updated_str[]
1991 INIT(= N_("E779: Old .sug file, needs to be updated: %s"));
1992EXTERN char e_sug_file_is_for_newer_version_of_vim_str[]
1993 INIT(= N_("E780: .sug file is for newer version of Vim: %s"));
1994EXTERN char e_sug_file_doesnt_match_spl_file_str[]
1995 INIT(= N_("E781: .sug file doesn't match .spl file: %s"));
1996EXTERN char e_error_while_reading_sug_file_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001997 INIT(= N_("E782: Error while reading .sug file: %s"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001998EXTERN char e_duplicate_char_in_map_entry[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001999 INIT(= N_("E783: Duplicate char in MAP entry"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00002000#endif
2001EXTERN char e_cannot_close_last_tab_page[]
2002 INIT(= N_("E784: Cannot close last tab page"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002003#ifdef FEAT_EVAL
2004# ifdef FEAT_COMPL_FUNC
Bram Moolenaar677658a2022-01-05 16:09:06 +00002005EXTERN char e_complete_can_only_be_used_in_insert_mode[]
2006 INIT(= N_("E785: complete() can only be used in Insert mode"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002007# endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002008EXTERN char e_range_not_allowed[]
2009 INIT(= N_("E786: Range not allowed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002010#endif
2011#ifdef FEAT_DIFF
Bram Moolenaar677658a2022-01-05 16:09:06 +00002012EXTERN char e_buffer_changed_unexpectedly[]
2013 INIT(= N_("E787: Buffer changed unexpectedly"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002014#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002015EXTERN char e_not_allowed_to_edit_another_buffer_now[]
2016 INIT(= N_("E788: Not allowed to edit another buffer now"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002017#ifdef FEAT_SYN_HL
Bram Moolenaar677658a2022-01-05 16:09:06 +00002018EXTERN char e_error_missing_rsb_str[]
2019 INIT(= N_("E789: Missing ']': %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002020#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002021EXTERN char e_undojoin_is_not_allowed_after_undo[]
2022 INIT(= N_("E790: undojoin is not allowed after undo"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002023#ifdef FEAT_KEYMAP
Bram Moolenaar677658a2022-01-05 16:09:06 +00002024EXTERN char e_empty_keymap_entry[]
2025 INIT(= N_("E791: Empty keymap entry"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002026#endif
2027#ifdef FEAT_MENU
Bram Moolenaar677658a2022-01-05 16:09:06 +00002028EXTERN char e_empty_menu_name[]
2029 INIT(= N_("E792: Empty menu name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002030#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002031#ifdef FEAT_DIFF
2032EXTERN char e_no_other_buffer_in_diff_mode_is_modifiable[]
2033 INIT(= N_("E793: No other buffer in diff mode is modifiable"));
2034#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002035#ifdef FEAT_EVAL
Bram Moolenaar71b76852021-12-17 20:15:38 +00002036EXTERN char e_cannot_set_variable_in_sandbox[]
2037 INIT(= N_("E794: Cannot set variable in the sandbox"));
2038EXTERN char e_cannot_set_variable_in_sandbox_str[]
2039 INIT(= N_("E794: Cannot set variable in the sandbox: \"%s\""));
2040EXTERN char e_cannot_delete_variable[]
2041 INIT(= N_("E795: Cannot delete variable"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00002042EXTERN char e_cannot_delete_variable_str[]
2043 INIT(= N_("E795: Cannot delete variable %s"));
K.Takata2da11a42022-09-10 13:03:12 +01002044#endif
2045#ifdef MSWIN
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002046 // E796
2047EXTERN char e_writing_to_device_disabled_with_opendevice_option[]
2048 INIT(= N_("writing to device disabled with 'opendevice' option"));
zeertzjq09f77232021-10-20 17:21:24 +01002049#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002050#ifdef FEAT_SPELL
2051EXTERN char e_spellfilemising_autocommand_deleted_buffer[]
2052 INIT(= N_("E797: SpellFileMissing autocommand deleted buffer"));
2053#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002054#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar677658a2022-01-05 16:09:06 +00002055EXTERN char e_id_is_reserved_for_match_nr[]
2056 INIT(= N_("E798: ID is reserved for \":match\": %d"));
Bram Moolenaarbb8cac52022-01-05 18:16:53 +00002057EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_1[]
2058 INIT(= N_("E799: Invalid ID: %d (must be greater than or equal to 1)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002059#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002060#ifndef FEAT_ARABIC
2061EXTERN char e_arabic_cannot_be_used_not_enabled_at_compile_time[]
2062 INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n"));
2063#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002064#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002065EXTERN char e_id_already_taken_nr[]
2066 INIT(= N_("E801: ID already taken: %d"));
Bram Moolenaarbb8cac52022-01-05 18:16:53 +00002067EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_2[]
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002068 INIT(= N_("E802: Invalid ID: %d (must be greater than or equal to 1)"));
2069EXTERN char e_id_not_found_nr[]
2070 INIT(= N_("E803: ID not found: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002071#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002072#ifdef FEAT_EVAL
2073EXTERN char e_cannot_use_percent_with_float[]
K.Takatab5988e32022-01-16 11:25:26 +00002074 // xgettext:no-c-format
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002075 INIT(= N_("E804: Cannot use '%' with Float"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002076EXTERN char e_using_float_as_number[]
2077 INIT(= N_("E805: Using a Float as a Number"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002078EXTERN char e_using_float_as_string[]
Bram Moolenaardde77a72022-08-23 21:41:15 +01002079 INIT(= N_("E806: Using a Float as a String"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002080EXTERN char e_expected_float_argument_for_printf[]
2081 INIT(= N_("E807: Expected Float argument for printf()"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002082EXTERN char e_number_or_float_required[]
2083 INIT(= N_("E808: Number or Float required"));
2084#endif
2085#ifndef FEAT_EVAL
2086EXTERN char e_hashsmall_is_not_available_without_the_eval_feature[]
2087 INIT(= N_("E809: #< is not available without the +eval feature"));
2088#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002089#ifdef FEAT_DIFF
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002090EXTERN char e_cannot_read_or_write_temp_files[]
2091 INIT(= N_("E810: Cannot read or write temp files"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002092#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002093EXTERN char e_not_allowed_to_change_buffer_information_now[]
2094 INIT(= N_("E811: Not allowed to change buffer information now"));
2095EXTERN char e_autocommands_changed_buffer_or_buffer_name[]
2096 INIT(= N_("E812: Autocommands changed buffer or buffer name"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002097EXTERN char e_cannot_close_autocmd_or_popup_window[]
2098 INIT(= N_("E813: Cannot close autocmd or popup window"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002099EXTERN char e_cannot_close_window_only_autocmd_window_would_remain[]
2100 INIT(= N_("E814: Cannot close window, only autocmd window would remain"));
2101#ifdef FEAT_MZSCHEME
2102EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_libraries_could_not_be_loaded[]
2103 INIT(= N_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded."));
2104#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002105#ifdef FEAT_DIFF
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002106EXTERN char e_cannot_read_patch_output[]
2107 INIT(= N_("E816: Cannot read patch output"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002108#endif
2109#ifdef FEAT_CRYPT
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002110EXTERN char e_blowfish_big_little_endian_use_wrong[]
2111 INIT(= N_("E817: Blowfish big/little endian use wrong"));
2112EXTERN char e_sha256_test_failed[]
2113 INIT(= N_("E818: sha256 test failed"));
2114EXTERN char e_blowfish_test_failed[]
2115 INIT(= N_("E819: Blowfish test failed"));
2116EXTERN char e_sizeof_uint32_isnot_four[]
2117 INIT(= N_("E820: sizeof(uint32_t) != 4"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002118EXTERN char e_file_is_encrypted_with_unknown_method[]
2119 INIT(= N_("E821: File is encrypted with unknown method"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002120#endif
2121#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002122EXTERN char e_cannot_open_undo_file_for_reading_str[]
2123 INIT(= N_("E822: Cannot open undo file for reading: %s"));
2124EXTERN char e_not_an_undo_file_str[]
2125 INIT(= N_("E823: Not an undo file: %s"));
2126EXTERN char e_incompatible_undo_file_str[]
2127 INIT(= N_("E824: Incompatible undo file: %s"));
2128EXTERN char e_corrupted_undo_file_str_str[]
2129 INIT(= N_("E825: Corrupted undo file (%s): %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002130# ifdef FEAT_CRYPT
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002131EXTERN char e_undo_file_decryption_failed[]
2132 INIT(= N_("E826: Undo file decryption failed: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002133# else
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002134EXTERN char e_undo_file_is_encrypted_str[]
2135 INIT(= N_("E827: Undo file is encrypted: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002136# endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002137EXTERN char e_cannot_open_undo_file_for_writing_str[]
2138 INIT(= N_("E828: Cannot open undo file for writing: %s"));
2139EXTERN char e_write_error_in_undo_file_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002140 INIT(= N_("E829: Write error in undo file: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002141#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002142EXTERN char e_undo_number_nr_not_found[]
2143 INIT(= N_("E830: Undo number %ld not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002144#ifdef FEAT_CRYPT
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002145EXTERN char e_bf_key_init_called_with_empty_password[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002146 INIT(= "E831: bf_key_init() called with empty password");
Dominique Pellef85a4242022-01-09 12:49:31 +00002147# ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002148EXTERN char e_non_encrypted_file_has_encrypted_undo_file_str[]
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002149 INIT(= N_("E832: Non-encrypted file has encrypted undo file: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002150# endif
2151#else
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002152EXTERN char e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption[]
2153 INIT(= N_("E833: %s is encrypted and this version of Vim does not support encryption"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002154#endif
zeertzjq94358a12021-10-20 11:01:15 +01002155EXTERN char e_conflicts_with_value_of_listchars[]
2156 INIT(= N_("E834: Conflicts with value of 'listchars'"));
2157EXTERN char e_conflicts_with_value_of_fillchars[]
2158 INIT(= N_("E835: Conflicts with value of 'fillchars'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002159#ifdef DYNAMIC_PYTHON
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002160EXTERN char e_this_vim_cannot_execute_python_after_using_py3[]
2161 INIT(= N_("E836: This Vim cannot execute :python after using :py3"));
2162EXTERN char e_this_vim_cannot_execute_py3_after_using_python[]
2163 INIT(= N_("E837: This Vim cannot execute :py3 after using :python"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002164#endif
2165#if defined(FEAT_NETBEANS_INTG) && defined(FEAT_GUI)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00002166EXTERN char e_netbeans_is_not_supported_with_this_GUI[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002167 INIT(= N_("E838: NetBeans is not supported with this GUI"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00002168#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002169// E839 unused
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002170# ifdef FEAT_COMPL_FUNC
2171EXTERN char e_complete_function_deleted_text[]
2172 INIT(= N_("E840: Completion function deleted text"));
2173# endif
2174EXTERN char e_reserved_name_cannot_be_used_for_user_defined_command[]
2175 INIT(= N_("E841: Reserved name, cannot be used for user defined command"));
2176EXTERN char e_no_line_number_to_use_for_slnum[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002177 INIT(= N_("E842: No line number to use for \"<slnum>\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002178#ifdef FEAT_CRYPT
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002179EXTERN char e_error_while_updating_swap_file_crypt[]
2180 INIT(= N_("E843: Error while updating swap file crypt"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002181#endif
2182#ifdef FEAT_CONCEAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002183EXTERN char e_invalid_cchar_value[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002184 INIT(= N_("E844: Invalid cchar value"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002185#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002186#ifdef FEAT_SPELL
2187EXTERN char e_insufficient_memory_word_list_will_be_incomplete[]
2188 INIT(= N_("E845: Insufficient memory, word list will be incomplete"));
2189#endif
2190EXTERN char e_key_code_not_set[]
2191 INIT(= N_("E846: Key code not set"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002192#ifdef FEAT_SYN_HL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002193EXTERN char e_too_many_syntax_includes[]
2194 INIT(= N_("E847: Too many syntax includes"));
2195EXTERN char e_too_many_syntax_clusters[]
2196 INIT(= N_("E848: Too many syntax clusters"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002197#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002198EXTERN char e_too_many_highlight_and_syntax_groups[]
2199 INIT(= N_("E849: Too many highlight and syntax groups"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002200#ifndef FEAT_CLIPBOARD
2201EXTERN char e_invalid_register_name[]
2202 INIT(= N_("E850: Invalid register name"));
2203#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002204#ifdef FEAT_GUI
2205EXTERN char e_failed_to_create_new_process_for_GUI[]
2206 INIT(= N_("E851: Failed to create a new process for the GUI"));
2207EXTERN char e_the_child_process_failed_to_start_GUI[]
2208 INIT(= N_("E852: The child process failed to start the GUI"));
2209#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002210#ifdef FEAT_EVAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002211EXTERN char e_duplicate_argument_name_str[]
2212 INIT(= N_("E853: Duplicate argument name: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002213#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002214EXTERN char e_path_too_long_for_completion[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002215 INIT(= N_("E854: Path too long for completion"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002216EXTERN char e_autocommands_caused_command_to_abort[]
2217 INIT(= N_("E855: Autocommands caused command to abort"));
zeertzjq09f77232021-10-20 17:21:24 +01002218#ifdef FEAT_EVAL
Bram Moolenaar44d66522020-09-06 22:26:57 +02002219EXTERN char e_assert_fails_second_arg[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002220 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 +00002221EXTERN char e_dictionary_key_str_required[]
2222 INIT(= N_("E857: Dictionary key \"%s\" required"));
2223#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002224#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2225EXTERN char e_eval_did_not_return_valid_python_object[]
2226 INIT(= N_("E858: Eval did not return a valid python object"));
2227EXTERN char e_failed_to_convert_returned_python_object_to_vim_value[]
2228 INIT(= N_("E859: Failed to convert returned python object to a Vim value"));
2229#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002230#ifdef FEAT_PROP_POPUP
Ben Jacksona7704222022-08-20 20:54:51 +01002231EXTERN char e_need_id_and_type_or_types_with_both[]
2232 INIT(= N_("E860: Need 'id' and 'type' or 'types' with 'both'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002233# ifdef FEAT_TERMINAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002234EXTERN char e_cannot_open_second_popup_with_terminal[]
2235 INIT(= N_("E861: Cannot open a second popup with a terminal"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002236# endif
2237#endif
2238#ifdef FEAT_EVAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002239EXTERN char e_cannot_use_g_here[]
2240 INIT(= N_("E862: Cannot use g: here"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002241#endif
2242#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002243EXTERN char e_not_allowed_for_terminal_in_popup_window[]
2244 INIT(= N_("E863: Not allowed for a terminal in a popup window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002245#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002246EXTERN char e_percent_hash_can_only_be_followed_by_zero_one_two_automatic_engine_will_be_used[]
K.Takatab5988e32022-01-16 11:25:26 +00002247 // xgettext:no-c-format
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002248 INIT(= N_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used"));
2249EXTERN char e_nfa_regexp_end_encountered_prematurely[]
2250 INIT(= N_("E865: (NFA) Regexp end encountered prematurely"));
2251EXTERN char e_nfa_regexp_misplaced_chr[]
2252 INIT(= N_("E866: (NFA regexp) Misplaced %c"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002253EXTERN char e_nfa_regexp_unknown_operator_z_chr[]
2254 INIT(= N_("E867: (NFA regexp) Unknown operator '\\z%c'"));
2255EXTERN char e_nfa_regexp_unknown_operator_percent_chr[]
2256 INIT(= N_("E867: (NFA regexp) Unknown operator '\\%%%c'"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002257EXTERN char e_error_building_nfa_with_equivalence_class[]
2258 INIT(= N_("E868: Error building NFA with equivalence class!"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002259EXTERN char e_nfa_regexp_unknown_operator_at_chr[]
2260 INIT(= N_("E869: (NFA regexp) Unknown operator '\\@%c'"));
2261EXTERN char e_nfa_regexp_error_reading_repetition_limits[]
2262 INIT(= N_("E870: (NFA regexp) Error reading repetition limits"));
2263EXTERN char e_nfa_regexp_cant_have_multi_follow_multi[]
2264 INIT(= N_("E871: (NFA regexp) Can't have a multi follow a multi"));
2265EXTERN char e_nfa_regexp_too_many_parens[]
2266 INIT(= N_("E872: (NFA regexp) Too many '('"));
2267EXTERN char e_nfa_regexp_proper_termination_error[]
2268 INIT(= N_("E873: (NFA regexp) proper termination error"));
2269EXTERN char e_nfa_regexp_could_not_pop_stack[]
2270 INIT(= N_("E874: (NFA regexp) Could not pop the stack!"));
2271EXTERN char e_nfa_regexp_while_converting_from_postfix_to_nfa_too_many_stats_left_on_stack[]
2272 INIT(= N_("E875: (NFA regexp) (While converting from postfix to NFA), too many states left on stack"));
2273EXTERN char e_nfa_regexp_not_enough_space_to_store_whole_nfa[]
2274 INIT(= N_("E876: (NFA regexp) Not enough space to store the whole NFA"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002275EXTERN char e_nfa_regexp_invalid_character_class_nr[]
Christian Brabandtb64cec22024-03-31 17:52:56 +02002276 INIT(= N_("E877: (NFA regexp) Invalid character class: %d"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002277EXTERN char e_nfa_regexp_could_not_allocate_memory_for_branch_traversal[]
2278 INIT(= N_("E878: (NFA regexp) Could not allocate memory for branch traversal!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002279#ifdef FEAT_SYN_HL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002280EXTERN char e_nfa_regexp_too_many_z[]
2281 INIT(= N_("E879: (NFA regexp) Too many \\z("));
Dominique Pellef85a4242022-01-09 12:49:31 +00002282#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002283#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2284EXTERN char e_cant_handle_systemexit_of_python_exception_in_vim[]
2285 INIT(= N_("E880: Can't handle SystemExit of python exception in vim"));
2286#endif
2287EXTERN char e_line_count_changed_unexpectedly[]
2288 INIT(= N_("E881: Line count changed unexpectedly"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002289#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002290EXTERN char e_uniq_compare_function_failed[]
2291 INIT(= N_("E882: Uniq compare function failed"));
2292EXTERN char e_search_pattern_and_expression_register_may_not_contain_two_or_more_lines[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002293 INIT(= N_("E883: Search pattern and expression register may not contain two or more lines"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002294EXTERN char e_function_name_cannot_contain_colon_str[]
2295 INIT(= N_("E884: Function name cannot contain a colon: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002296#endif
2297#ifdef FEAT_SIGNS
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002298EXTERN char e_not_possible_to_change_sign_str[]
2299 INIT(= N_("E885: Not possible to change sign %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002300#endif
2301#ifdef FEAT_VIMINFO
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002302EXTERN char e_cant_rename_viminfo_file_to_str[]
2303 INIT(= N_("E886: Can't rename viminfo file to %s!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002304#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00002305#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002306EXTERN char e_sorry_this_command_is_disabled_python_side_module_could_not_be_loaded[]
2307 INIT(= N_("E887: Sorry, this command is disabled, the Python's site module could not be loaded."));
Dominique Pellee764d1b2023-03-12 21:20:59 +00002308#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002309EXTERN char e_nfa_regexp_cannot_repeat_str[]
2310 INIT(= N_("E888: (NFA regexp) cannot repeat %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002311#ifdef FEAT_PROP_POPUP
2312EXTERN char e_number_required[]
2313 INIT(= N_("E889: Number required"));
2314#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002315#ifdef FEAT_SYN_HL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002316EXTERN char e_trailing_char_after_rsb_str_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002317 INIT(= N_("E890: Trailing char after ']': %s]%s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002318#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00002319#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002320EXTERN char e_using_funcref_as_float[]
2321 INIT(= N_("E891: Using a Funcref as a Float"));
2322EXTERN char e_using_string_as_float[]
2323 INIT(= N_("E892: Using a String as a Float"));
2324EXTERN char e_using_list_as_float[]
2325 INIT(= N_("E893: Using a List as a Float"));
2326EXTERN char e_using_dictionary_as_float[]
2327 INIT(= N_("E894: Using a Dictionary as a Float"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00002328#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002329#ifdef FEAT_MZSCHEME
2330EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_racket_base_module_could_not_be_loaded[]
2331 INIT(= N_("E895: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded."));
2332#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002333#ifdef FEAT_EVAL
2334EXTERN char e_argument_of_str_must_be_list_dictionary_or_blob[]
2335 INIT(= N_("E896: Argument of %s must be a List, Dictionary or Blob"));
2336EXTERN char e_list_or_blob_required[]
2337 INIT(= N_("E897: List or Blob required"));
2338#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002339#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002340EXTERN char e_socket_in_channel_connect[]
2341 INIT(= N_("E898: socket() in channel_connect()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002342#endif
2343#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002344EXTERN char e_argument_of_str_must_be_list_or_blob[]
2345 INIT(= N_("E899: Argument of %s must be a List or Blob"));
2346EXTERN char e_maxdepth_must_be_non_negative_number[]
2347 INIT(= N_("E900: maxdepth must be non-negative number"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002348#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002349#ifdef FEAT_JOB_CHANNEL
2350EXTERN char e_getaddrinfo_in_channel_open_str[]
2351 INIT(= N_("E901: getaddrinfo() in channel_open(): %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002352# ifndef FEAT_IPV6
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002353EXTERN char e_gethostbyname_in_channel_open[]
2354 INIT(= N_("E901: gethostbyname() in channel_open()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002355# endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002356EXTERN char e_cannot_connect_to_port[]
2357 INIT(= N_("E902: Cannot connect to port"));
2358EXTERN char e_received_command_with_non_string_argument[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002359 INIT(= N_("E903: Received command with non-string argument"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002360EXTERN char e_last_argument_for_expr_call_must_be_number[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002361 INIT(= N_("E904: Last argument for expr/call must be a number"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002362EXTERN char e_third_argument_for_call_must_be_list[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002363 INIT(= N_("E904: Third argument for call must be a list"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002364EXTERN char e_received_unknown_command_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002365 INIT(= N_("E905: Received unknown command: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002366EXTERN char e_not_an_open_channel[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002367 INIT(= N_("E906: Not an open channel"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002368#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00002369#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002370EXTERN char e_using_special_value_as_float[]
2371 INIT(= N_("E907: Using a special value as a Float"));
Bram Moolenaar68db9962021-05-09 23:19:22 +02002372EXTERN char e_using_invalid_value_as_string_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002373 INIT(= N_("E908: Using an invalid value as a String: %s"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002374EXTERN char e_cannot_index_special_variable[]
2375 INIT(= N_("E909: Cannot index a special variable"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002376#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002377#ifdef FEAT_JOB_CHANNEL
2378EXTERN char e_using_job_as_number[]
2379 INIT(= N_("E910: Using a Job as a Number"));
2380EXTERN char e_using_job_as_float[]
2381 INIT(= N_("E911: Using a Job as a Float"));
2382EXTERN char e_cannot_use_evalexpr_sendexpr_with_raw_or_nl_channel[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002383 INIT(= N_("E912: Cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002384EXTERN char e_using_channel_as_number[]
2385 INIT(= N_("E913: Using a Channel as a Number"));
2386EXTERN char e_using_channel_as_float[]
2387 INIT(= N_("E914: Using a Channel as a Float"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002388EXTERN char e_in_io_buffer_requires_in_buf_or_in_name_to_be_set[]
2389 INIT(= N_("E915: in_io buffer requires in_buf or in_name to be set"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002390EXTERN char e_not_valid_job[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002391 INIT(= N_("E916: Not a valid job"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002392EXTERN char e_cannot_use_callback_with_str[]
2393 INIT(= N_("E917: Cannot use a callback with %s()"));
2394EXTERN char e_buffer_must_be_loaded_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002395 INIT(= N_("E918: Buffer must be loaded: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002396#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00002397EXTERN char e_directory_not_found_in_str_str[]
2398 INIT(= N_("E919: Directory not found in '%s': \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002399#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002400EXTERN char e_io_file_requires_name_to_be_set[]
2401 INIT(= N_("E920: _io file requires _name to be set"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002402#endif
2403#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002404EXTERN char e_invalid_callback_argument[]
2405 INIT(= N_("E921: Invalid callback argument"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02002406// E922 unused
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002407EXTERN char e_second_argument_of_function_must_be_list_or_dict[]
2408 INIT(= N_("E923: Second argument of function() must be a list or a dict"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002409#endif
2410#ifdef FEAT_QUICKFIX
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002411EXTERN char e_current_window_was_closed[]
2412 INIT(= N_("E924: Current window was closed"));
2413EXTERN char e_current_quickfix_list_was_changed[]
2414 INIT(= N_("E925: Current quickfix list was changed"));
2415EXTERN char e_current_location_list_was_changed[]
2416 INIT(= N_("E926: Current location list was changed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002417#endif
2418#ifdef FEAT_EVAL
2419# ifdef FEAT_QUICKFIX
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002420EXTERN char e_invalid_action_str_1[]
2421 INIT(= N_("E927: Invalid action: '%s'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002422# endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002423EXTERN char e_string_required[]
2424 INIT(= N_("E928: String required"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002425#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002426#ifdef FEAT_VIMINFO
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002427EXTERN char e_too_many_viminfo_temp_files_like_str[]
2428 INIT(= N_("E929: Too many viminfo temp files, like %s!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002429#endif
2430#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002431EXTERN char e_cannot_use_redir_inside_execute[]
2432 INIT(= N_("E930: Cannot use :redir inside execute()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002433#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002434EXTERN char e_buffer_cannot_be_registered[]
2435 INIT(= N_("E931: Buffer cannot be registered"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002436#ifdef FEAT_EVAL
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002437EXTERN char e_closure_function_should_not_be_at_top_level_str[]
Bram Moolenaara6f79292022-01-04 21:30:47 +00002438 INIT(= N_("E932: Closure function should not be at top level: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002439EXTERN char e_function_was_deleted_str[]
2440 INIT(= N_("E933: Function was deleted: %s"));
2441#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002442#ifdef FEAT_SIGNS
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002443EXTERN char e_cannot_jump_to_buffer_that_does_not_have_name[]
2444 INIT(= N_("E934: Cannot jump to a buffer that does not have a name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002445#endif
2446#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002447EXTERN char e_invalid_submatch_number_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002448 INIT(= N_("E935: Invalid submatch number: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002449#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002450EXTERN char e_cannot_delete_current_group[]
2451 INIT(= N_("E936: Cannot delete the current group"));
2452EXTERN char e_attempt_to_delete_buffer_that_is_in_use_str[]
2453 INIT(= N_("E937: Attempt to delete a buffer that is in use: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002454#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002455EXTERN char e_duplicate_key_in_json_str[]
2456 INIT(= N_("E938: Duplicate key in JSON: \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002457#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00002458EXTERN char e_positive_count_required[]
2459 INIT(= N_("E939: Positive count required"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00002460#ifdef FEAT_EVAL
2461EXTERN char e_cannot_lock_or_unlock_variable_str[]
2462 INIT(= N_("E940: Cannot lock or unlock variable %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002463# ifdef FEAT_CLIENTSERVER
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002464EXTERN char e_already_started_server[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002465 INIT(= N_("E941: Already started a server"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002466# else
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002467EXTERN char e_clientserver_feature_not_available[]
2468 INIT(= N_("E942: +clientserver feature not available"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002469# endif
2470#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002471EXTERN char e_command_table_needs_to_be_updated_run_make_cmdidxs[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002472 INIT(= "E943: Command table needs to be updated, run 'make cmdidxs'");
Bram Moolenaar677658a2022-01-05 16:09:06 +00002473EXTERN char e_reverse_range_in_character_class[]
2474 INIT(= N_("E944: Reverse range in character class"));
2475EXTERN char e_range_too_large_in_character_class[]
2476 INIT(= N_("E945: Range too large in character class"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002477#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002478EXTERN char e_cannot_make_terminal_with_running_job_modifiable[]
2479 INIT(= N_("E946: Cannot make a terminal with running job modifiable"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002480EXTERN char e_job_still_running_in_buffer_str[]
2481 INIT(= N_("E947: Job still running in buffer \"%s\""));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002482EXTERN char e_job_still_running[]
2483 INIT(= N_("E948: Job still running"));
2484EXTERN char e_job_still_running_add_bang_to_end_the_job[]
2485 INIT(= N_("E948: Job still running (add ! to end the job)"));
Bram Moolenaar096ca732022-01-01 00:55:28 +00002486#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002487EXTERN char e_file_changed_while_writing[]
2488 INIT(= N_("E949: File changed while writing"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002489EXTERN char e_cannot_convert_between_str_and_str[]
2490 INIT(= N_("E950: Cannot convert between %s and %s"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002491EXTERN char e_percent_value_too_large[]
K.Takatab5988e32022-01-16 11:25:26 +00002492 // xgettext:no-c-format
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002493 INIT(= N_("E951: \\% value too large"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002494#if defined(FEAT_EVAL) && defined(FEAT_QUICKFIX)
Bram Moolenaar74409f62022-01-01 15:58:22 +00002495EXTERN char e_autocommand_caused_recursive_behavior[]
2496 INIT(= N_("E952: Autocommand caused recursive behavior"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002497#endif
2498#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002499EXTERN char e_file_exists_str[]
2500 INIT(= N_("E953: File exists: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002501#endif
2502#if defined(FEAT_TERMGUICOLORS) && defined(FEAT_VTP)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002503EXTERN char e_24_bit_colors_are_not_supported_on_this_environment[]
2504 INIT(= N_("E954: 24-bit colors are not supported on this environment"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002505#endif
2506#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002507EXTERN char e_not_terminal_buffer[]
2508 INIT(= N_("E955: Not a terminal buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002509#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002510EXTERN char e_cannot_use_pattern_recursively[]
2511 INIT(= N_("E956: Cannot use pattern recursively"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002512#ifdef FEAT_EVAL
Bram Moolenaar3a846e62022-01-01 16:21:00 +00002513EXTERN char e_invalid_window_number[]
2514 INIT(= N_("E957: Invalid window number"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002515#endif
2516#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002517EXTERN char e_job_already_finished[]
2518 INIT(= N_("E958: Job already finished"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002519#endif
2520#ifdef FEAT_DIFF
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002521EXTERN char e_invalid_diff_format[]
2522 INIT(= N_("E959: Invalid diff format."));
2523EXTERN char e_problem_creating_internal_diff[]
2524 INIT(= N_("E960: Problem creating the internal diff"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002525#endif
2526#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002527EXTERN char e_no_line_number_to_use_for_sflnum[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002528 INIT(= N_("E961: No line number to use for \"<sflnum>\""));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002529EXTERN char e_invalid_action_str_2[]
2530 INIT(= N_("E962: Invalid action: '%s'"));
zeertzjqedcba962023-09-24 23:13:51 +02002531EXTERN char e_setting_v_str_to_value_with_wrong_type[]
2532 INIT(= N_("E963: Setting v:%s to value with wrong type"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002533#endif
zeertzjq26dd09a2024-03-10 15:46:58 +01002534#if defined(FEAT_PROP_POPUP) || defined(FEAT_EVAL)
Bram Moolenaar8dac2ac2021-12-27 20:57:06 +00002535EXTERN char_u e_invalid_column_number_nr[]
2536 INIT(= N_("E964: Invalid column number: %ld"));
zeertzjq26dd09a2024-03-10 15:46:58 +01002537#endif
2538#ifdef FEAT_PROP_POPUP
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002539EXTERN char e_missing_property_type_name[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002540 INIT(= N_("E965: Missing property type name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002541#endif
2542#ifdef FEAT_EVAL
Bram Moolenaar8dac2ac2021-12-27 20:57:06 +00002543EXTERN char_u e_invalid_line_number_nr[]
2544 INIT(= N_("E966: Invalid line number: %ld"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002545#endif
2546#ifdef FEAT_PROP_POPUP
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002547EXTERN char e_text_property_info_corrupted[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002548 INIT(= "E967: Text property info corrupted");
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002549EXTERN char e_need_at_least_one_of_id_or_type[]
2550 INIT(= N_("E968: Need at least one of 'id' or 'type'"));
2551EXTERN char e_property_type_str_already_defined[]
2552 INIT(= N_("E969: Property type %s already defined"));
2553EXTERN char e_unknown_highlight_group_name_str[]
2554 INIT(= N_("E970: Unknown highlight group name: '%s'"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002555EXTERN char e_property_type_str_does_not_exist[]
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002556 INIT(= N_("E971: Property type %s does not exist"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002557#endif
2558#ifdef FEAT_EVAL
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002559EXTERN char e_blob_value_does_not_have_right_number_of_bytes[]
2560 INIT(= N_("E972: Blob value does not have the right number of bytes"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002561EXTERN char e_blob_literal_should_have_an_even_number_of_hex_characters[]
2562 INIT(= N_("E973: Blob literal should have an even number of hex characters"));
2563EXTERN char e_using_blob_as_number[]
2564 INIT(= N_("E974: Using a Blob as a Number"));
2565EXTERN char e_using_blob_as_float[]
2566 INIT(= N_("E975: Using a Blob as a Float"));
2567EXTERN char e_using_blob_as_string[]
2568 INIT(= N_("E976: Using a Blob as a String"));
2569EXTERN char e_can_only_compare_blob_with_blob[]
2570 INIT(= N_("E977: Can only compare Blob with Blob"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002571EXTERN char e_invalid_operation_for_blob[]
2572 INIT(= N_("E978: Invalid operation for Blob"));
2573EXTERN char e_blob_index_out_of_range_nr[]
2574 INIT(= N_("E979: Blob index out of range: %ld"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002575# ifndef USE_INPUT_BUF
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002576EXTERN char e_lowlevel_input_not_supported[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002577 INIT(= N_("E980: Lowlevel input not supported"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002578# endif
2579#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002580EXTERN char e_command_not_allowed_in_rvim[]
2581 INIT(= N_("E981: Command not allowed in rvim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002582#if defined(FEAT_TERMINAL) && defined(MSWIN)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002583EXTERN char e_conpty_is_not_available[]
2584 INIT(= N_("E982: ConPTY is not available"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002585#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002586EXTERN char e_duplicate_argument_str[]
2587 INIT(= N_("E983: Duplicate argument: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002588EXTERN char e_scriptversion_used_outside_of_sourced_file[]
2589 INIT(= N_("E984: :scriptversion used outside of a sourced file"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002590#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002591EXTERN char e_dot_equal_not_supported_with_script_version_two[]
2592 INIT(= N_("E985: .= is not supported with script version >= 2"));
2593EXTERN char e_cannot_modify_tag_stack_within_tagfunc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002594 INIT(= N_("E986: Cannot modify the tag stack within tagfunc"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002595EXTERN char e_invalid_return_value_from_tagfunc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002596 INIT(= N_("E987: Invalid return value from tagfunc"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002597#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002598#ifdef GUI_MAY_SPAWN
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002599EXTERN char e_gui_cannot_be_used_cannot_execute_gvim_exe[]
2600 INIT(= N_("E988: GUI cannot be used. Cannot execute gvim.exe."));
Dominique Pellef85a4242022-01-09 12:49:31 +00002601#endif
2602#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002603EXTERN char e_non_default_argument_follows_default_argument[]
2604 INIT(= N_("E989: Non-default argument follows default argument"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002605EXTERN char e_missing_end_marker_str[]
2606 INIT(= N_("E990: Missing end marker '%s'"));
2607EXTERN char e_cannot_use_heredoc_here[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002608 INIT(= N_("E991: Cannot use =<< here"));
Bram Moolenaar269dc632022-01-06 11:43:21 +00002609#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002610EXTERN char e_not_allowed_in_modeline_when_modelineexpr_is_off[]
2611 INIT(= N_("E992: Not allowed in a modeline when 'modelineexpr' is off"));
Bram Moolenaar269dc632022-01-06 11:43:21 +00002612#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002613EXTERN char e_window_nr_is_not_popup_window[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002614 INIT(= N_("E993: Window %d is not a popup window"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002615EXTERN char e_not_allowed_in_popup_window[]
2616 INIT(= N_("E994: Not allowed in a popup window"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002617EXTERN char e_cannot_modify_existing_variable[]
2618 INIT(= N_("E995: Cannot modify existing variable"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002619EXTERN char e_cannot_lock_range[]
2620 INIT(= N_("E996: Cannot lock a range"));
2621EXTERN char e_cannot_lock_option[]
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002622 INIT(= N_("E996: Cannot lock an option"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002623EXTERN char e_cannot_lock_list_or_dict[]
2624 INIT(= N_("E996: Cannot lock a list or dict"));
2625EXTERN char e_cannot_lock_environment_variable[]
2626 INIT(= N_("E996: Cannot lock an environment variable"));
2627EXTERN char e_cannot_lock_register[]
2628 INIT(= N_("E996: Cannot lock a register"));
2629#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002630#ifdef FEAT_PROP_POPUP
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002631EXTERN char e_tabpage_not_found_nr[]
2632 INIT(= N_("E997: Tabpage not found: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002633#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002634#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002635EXTERN char e_reduce_of_an_empty_str_with_no_initial_value[]
2636 INIT(= N_("E998: Reduce of an empty %s with no initial value"));
2637#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002638EXTERN char e_scriptversion_not_supported_nr[]
2639 INIT(= N_("E999: scriptversion not supported: %d"));
2640// E1000 unused
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002641#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002642EXTERN char e_variable_not_found_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002643 INIT(= N_("E1001: Variable not found: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002644EXTERN char e_syntax_error_at_str[]
2645 INIT(= N_("E1002: Syntax error at %s"));
2646EXTERN char e_missing_return_value[]
2647 INIT(= N_("E1003: Missing return value"));
Bram Moolenaare7a73e02021-01-01 19:17:55 +01002648EXTERN char e_white_space_required_before_and_after_str_at_str[]
2649 INIT(= N_("E1004: White space required before and after '%s' at \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002650EXTERN char e_too_many_argument_types[]
2651 INIT(= N_("E1005: Too many argument types"));
2652EXTERN char e_str_is_used_as_argument[]
2653 INIT(= N_("E1006: %s is used as an argument"));
2654EXTERN char e_mandatory_argument_after_optional_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002655 INIT(= N_("E1007: Mandatory argument after optional argument"));
Bram Moolenaar62e0e2e2022-08-20 12:07:58 +01002656EXTERN char e_missing_type_after_str[]
2657 INIT(= N_("E1008: Missing <type> after %s"));
2658EXTERN char e_missing_gt_after_type_str[]
2659 INIT(= N_("E1009: Missing > after type: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002660EXTERN char e_type_not_recognized_str[]
2661 INIT(= N_("E1010: Type not recognized: %s"));
2662EXTERN char e_name_too_long_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002663 INIT(= N_("E1011: Name too long: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002664EXTERN char e_type_mismatch_expected_str_but_got_str[]
Bram Moolenaar5e654232020-09-16 15:22:00 +02002665 INIT(= N_("E1012: Type mismatch; expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002666EXTERN char e_type_mismatch_expected_str_but_got_str_in_str[]
2667 INIT(= N_("E1012: Type mismatch; expected %s but got %s in %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002668EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002669 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002670EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str_in_str[]
2671 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s in %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002672EXTERN char e_invalid_key_str[]
2673 INIT(= N_("E1014: Invalid key: %s"));
Bram Moolenaare4984292020-12-13 14:19:25 +01002674EXTERN char e_name_expected_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002675 INIT(= N_("E1015: Name expected: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002676EXTERN char e_cannot_declare_a_scope_variable_str[]
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002677 INIT(= N_("E1016: Cannot declare a %s variable: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002678EXTERN char e_cannot_declare_an_environment_variable_str[]
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002679 INIT(= N_("E1016: Cannot declare an environment variable: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002680EXTERN char e_variable_already_declared_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002681 INIT(= N_("E1017: Variable already declared: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002682EXTERN char e_cannot_assign_to_constant_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002683 INIT(= N_("E1018: Cannot assign to a constant: %s"));
2684EXTERN char e_can_only_concatenate_to_string[]
2685 INIT(= N_("E1019: Can only concatenate to string"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002686EXTERN char e_cannot_use_operator_on_new_variable_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002687 INIT(= N_("E1020: Cannot use an operator on a new variable: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002688EXTERN char e_const_requires_a_value[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002689 INIT(= N_("E1021: Const requires a value"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002690EXTERN char e_type_or_initialization_required[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002691 INIT(= N_("E1022: Type or initialization required"));
Bram Moolenaard70840e2020-08-22 15:06:35 +02002692EXTERN char e_using_number_as_bool_nr[]
Bram Moolenaar239f8d92021-01-17 13:21:20 +01002693 INIT(= N_("E1023: Using a Number as a Bool: %lld"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002694EXTERN char e_using_number_as_string[]
2695 INIT(= N_("E1024: Using a Number as a String"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002696EXTERN char e_using_rcurly_outside_if_block_scope[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002697 INIT(= N_("E1025: Using } outside of a block scope"));
Bram Moolenaar90887842021-07-27 22:35:42 +02002698#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002699EXTERN char e_missing_rcurly[]
2700 INIT(= N_("E1026: Missing }"));
Bram Moolenaar90887842021-07-27 22:35:42 +02002701#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002702EXTERN char e_missing_return_statement[]
2703 INIT(= N_("E1027: Missing return statement"));
Bram Moolenaare13bdec2020-10-16 23:16:47 +02002704EXTERN char e_compiling_def_function_failed[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002705 INIT(= N_("E1028: Compiling :def function failed"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002706EXTERN char e_expected_str_but_got_str[]
2707 INIT(= N_("E1029: Expected %s but got %s"));
Bram Moolenaarea2d4072020-11-12 12:08:51 +01002708EXTERN char e_using_string_as_number_str[]
2709 INIT(= N_("E1030: Using a String as a Number: \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002710EXTERN char e_cannot_use_void_value[]
2711 INIT(= N_("E1031: Cannot use void value"));
2712EXTERN char e_missing_catch_or_finally[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002713 INIT(= N_("E1032: Missing :catch or :finally"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002714EXTERN char e_catch_unreachable_after_catch_all[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002715 INIT(= N_("E1033: Catch unreachable after catch-all"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002716EXTERN char e_cannot_use_reserved_name_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002717 INIT(= N_("E1034: Cannot use reserved name %s"));
2718EXTERN char e_percent_requires_number_arguments[]
K.Takatab5988e32022-01-16 11:25:26 +00002719 // xgettext:no-c-format
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002720 INIT(= N_("E1035: % requires number arguments"));
2721EXTERN char e_char_requires_number_or_float_arguments[]
2722 INIT(= N_("E1036: %c requires number or float arguments"));
2723EXTERN char e_cannot_use_str_with_str[]
2724 INIT(= N_("E1037: Cannot use \"%s\" with %s"));
2725EXTERN char e_vim9script_can_only_be_used_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002726 INIT(= N_("E1038: \"vim9script\" can only be used in a script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002727EXTERN char e_vim9script_must_be_first_command_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002728 INIT(= N_("E1039: \"vim9script\" must be the first command in a script"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002729#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002730EXTERN char e_cannot_use_scriptversion_after_vim9script[]
2731 INIT(= N_("E1040: Cannot use :scriptversion after :vim9script"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002732#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002733EXTERN char e_redefining_script_item_str[]
Bram Moolenaar6d877fe2022-03-21 19:47:31 +00002734 INIT(= N_("E1041: Redefining script item: \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002735EXTERN char e_export_can_only_be_used_in_vim9script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002736 INIT(= N_("E1042: Export can only be used in vim9script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002737EXTERN char e_invalid_command_after_export[]
2738 INIT(= N_("E1043: Invalid command after :export"));
2739EXTERN char e_export_with_invalid_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002740 INIT(= N_("E1044: Export with invalid argument"));
Christian Brabandtd9a1f262025-01-21 22:17:50 +01002741// E1045 not used
Bram Moolenaarfe6fb262022-01-24 18:16:12 +00002742// E1046 not used
Bram Moolenaara9e3d562021-09-08 12:31:35 +02002743EXTERN char e_syntax_error_in_import_str[]
2744 INIT(= N_("E1047: Syntax error in import: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002745EXTERN char e_item_not_found_in_script_str[]
2746 INIT(= N_("E1048: Item not found in script: %s"));
2747EXTERN char e_item_not_exported_in_script_str[]
2748 INIT(= N_("E1049: Item not exported in script: %s"));
Bram Moolenaareda29c92022-10-02 12:59:00 +01002749#endif
Bram Moolenaar6e2c2c52020-12-25 19:25:45 +01002750EXTERN char e_colon_required_before_range_str[]
2751 INIT(= N_("E1050: Colon required before a range: %s"));
Bram Moolenaareda29c92022-10-02 12:59:00 +01002752#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002753EXTERN char e_wrong_argument_type_for_plus[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002754 INIT(= N_("E1051: Wrong argument type for +"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002755EXTERN char e_cannot_declare_an_option_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002756 INIT(= N_("E1052: Cannot declare an option: %s"));
2757EXTERN char e_could_not_import_str[]
2758 INIT(= N_("E1053: Could not import \"%s\""));
Bram Moolenaar057e84a2021-02-28 16:55:11 +01002759EXTERN char e_variable_already_declared_in_script_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002760 INIT(= N_("E1054: Variable already declared in the script: %s"));
2761EXTERN char e_missing_name_after_dots[]
2762 INIT(= N_("E1055: Missing name after ..."));
2763EXTERN char e_expected_type_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002764 INIT(= N_("E1056: Expected a type: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002765EXTERN char e_missing_enddef[]
2766 INIT(= N_("E1057: Missing :enddef"));
2767EXTERN char e_function_nesting_too_deep[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002768 INIT(= N_("E1058: Function nesting too deep"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002769EXTERN char e_no_white_space_allowed_before_colon_str[]
2770 INIT(= N_("E1059: No white space allowed before colon: %s"));
2771EXTERN char e_expected_dot_after_name_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002772 INIT(= N_("E1060: Expected dot after name: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002773EXTERN char e_cannot_find_function_str[]
2774 INIT(= N_("E1061: Cannot find function %s"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002775EXTERN char e_cannot_index_number[]
2776 INIT(= N_("E1062: Cannot index a Number"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002777EXTERN char e_type_mismatch_for_v_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002778 INIT(= N_("E1063: Type mismatch for v: variable"));
Bram Moolenaar021ef352021-12-02 20:44:42 +00002779#endif
Bram Moolenaar9ac38122021-12-02 18:42:33 +00002780EXTERN char e_yank_register_changed_while_using_it[]
2781 INIT(= N_("E1064: Yank register changed while using it"));
Bram Moolenaarb2175222022-03-05 20:24:41 +00002782EXTERN char e_command_cannot_be_shortened_str[]
Bram Moolenaar204852a2022-03-05 12:56:44 +00002783 INIT(= N_("E1065: Command cannot be shortened: %s"));
Bram Moolenaar021ef352021-12-02 20:44:42 +00002784#ifdef FEAT_EVAL
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002785EXTERN char e_cannot_declare_a_register_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002786 INIT(= N_("E1066: Cannot declare a register: %s"));
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002787EXTERN char e_separator_mismatch_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002788 INIT(= N_("E1067: Separator mismatch: %s"));
Bram Moolenaarba98fb52021-02-07 18:06:29 +01002789EXTERN char e_no_white_space_allowed_before_str_str[]
2790 INIT(= N_("E1068: No white space allowed before '%s': %s"));
Bram Moolenaarc3fc75d2021-02-07 15:28:09 +01002791EXTERN char e_white_space_required_after_str_str[]
2792 INIT(= N_("E1069: White space required after '%s': %s"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00002793EXTERN char e_invalid_string_for_import_str[]
2794 INIT(= N_("E1071: Invalid string for :import: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002795EXTERN char e_cannot_compare_str_with_str[]
2796 INIT(= N_("E1072: Cannot compare %s with %s"));
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002797EXTERN char e_name_already_defined_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002798 INIT(= N_("E1073: Name already defined: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002799EXTERN char e_no_white_space_allowed_after_dot[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002800 INIT(= N_("E1074: No white space allowed after dot"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002801EXTERN char e_namespace_not_supported_str[]
2802 INIT(= N_("E1075: Namespace not supported: %s"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02002803// E1076 unused (was deleted)
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002804EXTERN char e_missing_argument_type_for_str[]
2805 INIT(= N_("E1077: Missing argument type for %s"));
Bram Moolenaarf0775142022-03-04 20:10:38 +00002806#endif
2807EXTERN char e_invalid_command_nested_did_you_mean_plusplus_nested[]
2808 INIT(= N_("E1078: Invalid command \"nested\", did you mean \"++nested\"?"));
2809#ifdef FEAT_EVAL
Bram Moolenaar0e1574c2022-03-03 17:05:35 +00002810EXTERN char e_cannot_declare_variable_on_command_line[]
2811 INIT(= N_("E1079: Cannot declare a variable on the command line"));
Bram Moolenaar8b716f52022-02-15 21:17:56 +00002812EXTERN char e_invalid_assignment[]
2813 INIT(= N_("E1080: Invalid assignment"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002814EXTERN char e_cannot_unlet_str[]
2815 INIT(= N_("E1081: Cannot unlet %s"));
Bram Moolenaarb5d20392022-02-14 21:42:15 +00002816#endif
Bram Moolenaarbc510062022-02-14 21:19:04 +00002817EXTERN char e_command_modifier_without_command[]
2818 INIT(= N_("E1082: Command modifier without command"));
Bram Moolenaarb5d20392022-02-14 21:42:15 +00002819#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002820EXTERN char e_missing_backtick[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002821 INIT(= N_("E1083: Missing backtick"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002822EXTERN char e_cannot_delete_vim9_script_function_str[]
2823 INIT(= N_("E1084: Cannot delete Vim9 script function %s"));
2824EXTERN char e_not_callable_type_str[]
2825 INIT(= N_("E1085: Not a callable type: %s"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01002826// E1086 unused
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002827EXTERN char e_cannot_use_index_when_declaring_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002828 INIT(= N_("E1087: Cannot use an index when declaring a variable"));
Bram Moolenaar779aeff2022-02-08 19:12:19 +00002829EXTERN char e_script_cannot_import_itself[]
2830 INIT(= N_("E1088: Script cannot import itself"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002831EXTERN char e_unknown_variable_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002832 INIT(= N_("E1089: Unknown variable: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002833EXTERN char e_cannot_assign_to_argument_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002834 INIT(= N_("E1090: Cannot assign to argument %s"));
2835EXTERN char e_function_is_not_compiled_str[]
2836 INIT(= N_("E1091: Function is not compiled: %s"));
Bram Moolenaar5658ca32022-02-03 20:09:19 +00002837EXTERN char e_cannot_nest_redir[]
2838 INIT(= N_("E1092: Cannot nest :redir"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002839EXTERN char e_expected_nr_items_but_got_nr[]
2840 INIT(= N_("E1093: Expected %d items but got %d"));
2841EXTERN char e_import_can_only_be_used_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002842 INIT(= N_("E1094: Import can only be used in a script"));
Bram Moolenaara2c00282023-05-14 22:05:15 +01002843EXTERN char e_unreachable_code_after_str[]
2844 INIT(= N_("E1095: Unreachable code after :%s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002845EXTERN char e_returning_value_in_function_without_return_type[]
2846 INIT(= N_("E1096: Returning a value in a function without a return type"));
2847EXTERN char e_line_incomplete[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002848 INIT(= N_("E1097: Line incomplete"));
Sean Dewar80d73952021-08-04 19:25:54 +02002849EXTERN char e_string_list_or_blob_required[]
2850 INIT(= N_("E1098: String, List or Blob required"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002851EXTERN char e_unknown_error_while_executing_str[]
2852 INIT(= N_("E1099: Unknown error while executing %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002853EXTERN char e_command_not_supported_in_vim9_script_missing_var_str[]
2854 INIT(= N_("E1100: Command not supported in Vim9 script (missing :var?): %s"));
Bram Moolenaara749a422022-02-12 19:52:25 +00002855EXTERN char e_cannot_declare_script_variable_in_function_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002856 INIT(= N_("E1101: Cannot declare a script variable in a function: %s"));
2857EXTERN char e_lambda_function_not_found_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002858 INIT(= N_("E1102: Lambda function not found: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002859EXTERN char e_dictionary_not_set[]
2860 INIT(= N_("E1103: Dictionary not set"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002861EXTERN char e_missing_gt[]
2862 INIT(= N_("E1104: Missing >"));
2863EXTERN char e_cannot_convert_str_to_string[]
2864 INIT(= N_("E1105: Cannot convert %s to string"));
Bram Moolenaara1d5f9f2023-05-27 13:40:11 +01002865
2866PLURAL_MSG(e_one_argument_too_many, "E1106: One argument too many",
2867 e_nr_arguments_too_many, "E1106: %d arguments too many")
2868
Bram Moolenaar56acb092020-08-16 14:48:19 +02002869EXTERN char e_string_list_dict_or_blob_required[]
2870 INIT(= N_("E1107: String, List, Dict or Blob required"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02002871// E1108 unused
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02002872EXTERN char e_list_item_nr_is_not_list[]
2873 INIT(= N_("E1109: List item %d is not a List"));
2874EXTERN char e_list_item_nr_does_not_contain_3_numbers[]
2875 INIT(= N_("E1110: List item %d does not contain 3 numbers"));
2876EXTERN char e_list_item_nr_range_invalid[]
2877 INIT(= N_("E1111: List item %d range invalid"));
2878EXTERN char e_list_item_nr_cell_width_invalid[]
2879 INIT(= N_("E1112: List item %d cell width invalid"));
2880EXTERN char e_overlapping_ranges_for_nr[]
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02002881 INIT(= N_("E1113: Overlapping ranges for 0x%lx"));
K.Takata71933232023-01-20 16:00:55 +00002882EXTERN char e_only_values_of_0x80_and_higher_supported[]
2883 INIT(= N_("E1114: Only values of 0x80 and higher supported"));
Bram Moolenaar44d66522020-09-06 22:26:57 +02002884EXTERN char e_assert_fails_fourth_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002885 INIT(= N_("E1115: \"assert_fails()\" fourth argument must be a number"));
Bram Moolenaar44d66522020-09-06 22:26:57 +02002886EXTERN char e_assert_fails_fifth_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002887 INIT(= N_("E1116: \"assert_fails()\" fifth argument must be a string"));
Bram Moolenaar8b848ca2020-09-10 22:28:01 +02002888EXTERN char e_cannot_use_bang_with_nested_def[]
2889 INIT(= N_("E1117: Cannot use ! with nested :def"));
Bram Moolenaar70c43d82022-01-26 21:01:15 +00002890EXTERN char e_cannot_change_locked_list[]
2891 INIT(= N_("E1118: Cannot change locked list"));
2892EXTERN char e_cannot_change_locked_list_item[]
2893 INIT(= N_("E1119: Cannot change locked list item"));
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02002894EXTERN char e_cannot_change_dict[]
2895 INIT(= N_("E1120: Cannot change dict"));
2896EXTERN char e_cannot_change_dict_item[]
2897 INIT(= N_("E1121: Cannot change dict item"));
Bram Moolenaar916911f2020-09-16 21:41:53 +02002898EXTERN char e_variable_is_locked_str[]
2899 INIT(= N_("E1122: Variable is locked: %s"));
Bram Moolenaar10e4f122020-09-20 22:43:52 +02002900EXTERN char e_missing_comma_before_argument_str[]
2901 INIT(= N_("E1123: Missing comma before argument: %s"));
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002902EXTERN char e_str_cannot_be_used_in_legacy_vim_script[]
2903 INIT(= N_("E1124: \"%s\" cannot be used in legacy Vim script"));
2904EXTERN char e_final_requires_a_value[]
2905 INIT(= N_("E1125: Final requires a value"));
Bram Moolenaarcfcd0112020-09-27 15:19:27 +02002906EXTERN char e_cannot_use_let_in_vim9_script[]
2907 INIT(= N_("E1126: Cannot use :let in Vim9 script"));
Bram Moolenaarc1f00662020-10-03 13:41:53 +02002908EXTERN char e_missing_name_after_dot[]
2909 INIT(= N_("E1127: Missing name after dot"));
Bram Moolenaar9becdf22020-10-10 21:33:48 +02002910EXTERN char e_endblock_without_block[]
2911 INIT(= N_("E1128: } without {"));
Bram Moolenaar1e021e62020-10-16 20:25:23 +02002912EXTERN char e_throw_with_empty_string[]
2913 INIT(= N_("E1129: Throw with empty string"));
Bram Moolenaar1dcae592020-10-19 19:02:42 +02002914EXTERN char e_cannot_add_to_null_list[]
2915 INIT(= N_("E1130: Cannot add to null list"));
Bram Moolenaar80b0e5e2020-10-19 20:45:36 +02002916EXTERN char e_cannot_add_to_null_blob[]
2917 INIT(= N_("E1131: Cannot add to null blob"));
Bram Moolenaar0d90e722020-11-03 18:20:19 +01002918EXTERN char e_missing_function_argument[]
2919 INIT(= N_("E1132: Missing function argument"));
Bram Moolenaar348be7e2020-11-04 11:36:35 +01002920EXTERN char e_cannot_extend_null_dict[]
2921 INIT(= N_("E1133: Cannot extend a null dict"));
2922EXTERN char e_cannot_extend_null_list[]
2923 INIT(= N_("E1134: Cannot extend a null list"));
Bram Moolenaarea2d4072020-11-12 12:08:51 +01002924EXTERN char e_using_string_as_bool_str[]
2925 INIT(= N_("E1135: Using a String as a Bool: \"%s\""));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002926#endif
Bram Moolenaar957cf672020-11-12 14:21:06 +01002927EXTERN char e_cmd_mapping_must_end_with_cr_before_second_cmd[]
Bram Moolenaar806da512021-12-24 19:54:52 +00002928 INIT(= N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>"));
zeertzjq3ab3a862023-05-06 16:22:04 +01002929// E1137 unused
Dominique Pellef85a4242022-01-09 12:49:31 +00002930#ifdef FEAT_EVAL
Bram Moolenaard92cc132020-11-18 17:17:15 +01002931EXTERN char e_using_bool_as_number[]
2932 INIT(= N_("E1138: Using a Bool as a Number"));
Bram Moolenaar2bede172020-11-19 18:53:18 +01002933EXTERN char e_missing_matching_bracket_after_dict_key[]
2934 INIT(= N_("E1139: Missing matching bracket after dict key"));
Bram Moolenaar792f7862020-11-23 08:31:18 +01002935EXTERN char e_for_argument_must_be_sequence_of_lists[]
Bram Moolenaar4d5dfe22021-06-26 13:59:29 +02002936 INIT(= N_("E1140: :for argument must be a sequence of lists"));
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002937EXTERN char e_indexable_type_required[]
2938 INIT(= N_("E1141: Indexable type required"));
Bram Moolenaarb3d83982022-01-27 19:59:47 +00002939EXTERN char e_calling_test_garbagecollect_now_while_v_testing_is_not_set[]
2940 INIT(= N_("E1142: Calling test_garbagecollect_now() while v:testing is not set"));
Bram Moolenaare4984292020-12-13 14:19:25 +01002941EXTERN char e_empty_expression_str[]
Bram Moolenaarb5b94802020-12-13 17:50:20 +01002942 INIT(= N_("E1143: Empty expression: \"%s\""));
Bram Moolenaarb98cec22021-04-25 16:35:55 +02002943EXTERN char e_command_str_not_followed_by_white_space_str[]
2944 INIT(= N_("E1144: Command \"%s\" is not followed by white space: %s"));
Bram Moolenaarb5b94802020-12-13 17:50:20 +01002945EXTERN char e_missing_heredoc_end_marker_str[]
2946 INIT(= N_("E1145: Missing heredoc end marker: %s"));
Bram Moolenaar52c124d2020-12-20 21:43:35 +01002947EXTERN char e_command_not_recognized_str[]
2948 INIT(= N_("E1146: Command not recognized: %s"));
Bram Moolenaar4f5e3972020-12-21 17:30:50 +01002949EXTERN char e_list_not_set[]
2950 INIT(= N_("E1147: List not set"));
2951EXTERN char e_cannot_index_str[]
2952 INIT(= N_("E1148: Cannot index a %s"));
Bram Moolenaar4aab88d2020-12-24 21:56:41 +01002953EXTERN char e_script_variable_invalid_after_reload_in_function_str[]
2954 INIT(= N_("E1149: Script variable is invalid after reload in function %s"));
Bram Moolenaar07a65d22020-12-26 20:09:15 +01002955EXTERN char e_script_variable_type_changed[]
2956 INIT(= N_("E1150: Script variable type changed"));
Bram Moolenaar5178b1b2021-01-01 18:43:51 +01002957EXTERN char e_mismatched_endfunction[]
2958 INIT(= N_("E1151: Mismatched endfunction"));
2959EXTERN char e_mismatched_enddef[]
2960 INIT(= N_("E1152: Mismatched enddef"));
Bram Moolenaar0c357522021-07-18 14:43:43 +02002961EXTERN char e_invalid_operation_for_str[]
2962 INIT(= N_("E1153: Invalid operation for %s"));
Bram Moolenaar99880f92021-01-20 21:23:14 +01002963EXTERN char e_divide_by_zero[]
2964 INIT(= N_("E1154: Divide by zero"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002965#endif
Bram Moolenaar9a046fd2021-01-28 13:47:59 +01002966EXTERN char e_cannot_define_autocommands_for_all_events[]
2967 INIT(= N_("E1155: Cannot define autocommands for ALL events"));
Bram Moolenaar61015162021-01-28 17:56:09 +01002968EXTERN char e_cannot_change_arglist_recursively[]
2969 INIT(= N_("E1156: Cannot change the argument list recursively"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002970#ifdef FEAT_EVAL
Bram Moolenaar0346b792021-01-31 22:18:29 +01002971EXTERN char e_missing_return_type[]
2972 INIT(= N_("E1157: Missing return type"));
Bram Moolenaar3b690062021-02-01 20:14:51 +01002973EXTERN char e_cannot_use_flatten_in_vim9_script[]
Bram Moolenaarfb808622022-01-28 15:01:47 +00002974 INIT(= N_("E1158: Cannot use flatten() in Vim9 script, use flattennew()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002975#endif
Bram Moolenaar983d83f2021-02-07 12:12:43 +01002976EXTERN char e_cannot_split_window_when_closing_buffer[]
2977 INIT(= N_("E1159: Cannot split a window when closing the buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002978#ifdef FEAT_EVAL
Bram Moolenaara5a1ec12021-02-07 16:05:47 +01002979EXTERN char e_cannot_use_default_for_variable_arguments[]
2980 INIT(= N_("E1160: Cannot use a default for variable arguments"));
Bram Moolenaara8530892021-02-08 21:53:09 +01002981EXTERN char e_cannot_json_encode_str[]
2982 INIT(= N_("E1161: Cannot json encode a %s"));
Bram Moolenaar418a29f2021-02-10 22:23:41 +01002983EXTERN char e_register_name_must_be_one_char_str[]
2984 INIT(= N_("E1162: Register name must be one character: %s"));
Bram Moolenaarf785aa12021-02-11 21:19:34 +01002985EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str[]
2986 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002987EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str_in_str[]
2988 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s in %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002989#endif
Bram Moolenaar39f3b142021-02-14 12:57:36 +01002990EXTERN char e_vim9cmd_must_be_followed_by_command[]
2991 INIT(= N_("E1164: vim9cmd must be followed by a command"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002992#ifdef FEAT_EVAL
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002993EXTERN char e_cannot_use_range_with_assignment_str[]
2994 INIT(= N_("E1165: Cannot use a range with an assignment: %s"));
2995EXTERN char e_cannot_use_range_with_dictionary[]
2996 INIT(= N_("E1166: Cannot use a range with a dictionary"));
Bram Moolenaar057e84a2021-02-28 16:55:11 +01002997EXTERN char e_argument_name_shadows_existing_variable_str[]
2998 INIT(= N_("E1167: Argument name shadows existing variable: %s"));
2999EXTERN char e_argument_already_declared_in_script_str[]
3000 INIT(= N_("E1168: Argument already declared in the script: %s"));
Bram Moolenaarfe6fb262022-01-24 18:16:12 +00003001EXTERN char e_expression_too_recursive_str[]
3002 INIT(= N_("E1169: Expression too recursive: %s"));
Bram Moolenaar3f74c0a2022-08-06 18:12:06 +01003003EXTERN char e_cannot_use_hash_curly_to_start_comment[]
3004 INIT(= N_("E1170: Cannot use #{ to start a comment"));
Bram Moolenaar7a6eaa02021-03-21 20:53:29 +01003005EXTERN char e_missing_end_block[]
3006 INIT(= N_("E1171: Missing } after inline function"));
3007EXTERN char e_cannot_use_default_values_in_lambda[]
3008 INIT(= N_("E1172: Cannot use default values in a lambda"));
Bram Moolenaar7473a842021-12-28 17:55:26 +00003009EXTERN char e_text_found_after_str_str[]
3010 INIT(= N_("E1173: Text found after %s: %s"));
Bram Moolenaarf28f2ac2021-03-22 22:21:26 +01003011EXTERN char e_string_required_for_argument_nr[]
3012 INIT(= N_("E1174: String required for argument %d"));
3013EXTERN char e_non_empty_string_required_for_argument_nr[]
Bram Moolenaar3a0f0922021-03-25 22:22:30 +01003014 INIT(= N_("E1175: Non-empty string required for argument %d"));
3015EXTERN char e_misplaced_command_modifier[]
3016 INIT(= N_("E1176: Misplaced command modifier"));
Bram Moolenaar74e54fc2021-03-26 20:41:29 +01003017EXTERN char e_for_loop_on_str_not_supported[]
3018 INIT(= N_("E1177: For loop on %s not supported"));
Bram Moolenaarb2cb6c82021-03-28 20:38:34 +02003019EXTERN char e_cannot_lock_unlock_local_variable[]
3020 INIT(= N_("E1178: Cannot lock or unlock a local variable"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003021#endif
3022#ifdef FEAT_TERMINAL
Bram Moolenaar9ea7e552021-03-29 21:06:04 +02003023EXTERN char e_failed_to_extract_pwd_from_str_check_your_shell_config[]
3024 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 +00003025#endif
3026#ifdef FEAT_EVAL
Bram Moolenaar2a389082021-04-09 20:24:31 +02003027EXTERN char e_variable_arguments_type_must_be_list_str[]
3028 INIT(= N_("E1180: Variable arguments type must be a list: %s"));
Bram Moolenaar962c43b2021-04-10 17:18:09 +02003029EXTERN char e_cannot_use_underscore_here[]
3030 INIT(= N_("E1181: Cannot use an underscore here"));
Bram Moolenaardea5ab02022-02-23 22:12:02 +00003031EXTERN char e_cannot_define_dict_func_in_vim9_script_str[]
3032 INIT(= N_("E1182: Cannot define a dict function in Vim9 script: %s"));
Bram Moolenaar0e3ff192021-04-14 20:35:23 +02003033EXTERN char e_cannot_use_range_with_assignment_operator_str[]
3034 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003035#endif
3036#ifdef FEAT_EVAL
Bram Moolenaar51e93322021-04-17 20:44:56 +02003037EXTERN char e_blob_not_set[]
3038 INIT(= N_("E1184: Blob not set"));
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02003039EXTERN char e_missing_redir_end[]
3040 INIT(= N_("E1185: Missing :redir END"));
Bram Moolenaar68db9962021-05-09 23:19:22 +02003041EXTERN char e_expression_does_not_result_in_value_str[]
3042 INIT(= N_("E1186: Expression does not result in a value: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003043#endif
Christian Brabandt1d3a14e2021-05-29 19:53:50 +02003044EXTERN char e_failed_to_source_defaults[]
3045 INIT(= N_("E1187: Failed to source defaults.vim"));
Martin Tournoij7904fa42022-10-04 16:28:45 +01003046#if defined(FEAT_TERMINAL)
Bram Moolenaare5b44862021-05-30 13:54:03 +02003047EXTERN char e_cannot_open_terminal_from_command_line_window[]
3048 INIT(= N_("E1188: Cannot open a terminal from the command line window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003049#endif
3050#ifdef FEAT_EVAL
Bram Moolenaarc3cb1c92021-06-02 16:47:53 +02003051EXTERN char e_cannot_use_legacy_with_command_str[]
3052 INIT(= N_("E1189: Cannot use :legacy with this command: %s"));
Bram Moolenaara1d5f9f2023-05-27 13:40:11 +01003053
3054PLURAL_MSG(e_one_argument_too_few, "E1190: One argument too few",
3055 e_nr_arguments_too_few, "E1190: %d arguments too few")
3056
Bram Moolenaarb55d6182021-06-08 22:01:53 +02003057EXTERN char e_call_to_function_that_failed_to_compile_str[]
3058 INIT(= N_("E1191: Call to function that failed to compile: %s"));
Bram Moolenaar22db0d52021-06-12 12:16:55 +02003059EXTERN char e_empty_function_name[]
3060 INIT(= N_("E1192: Empty function name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003061#endif
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003062// libsodium
Dominique Pellef85a4242022-01-09 12:49:31 +00003063#ifdef FEAT_CRYPT
3064# ifndef FEAT_SODIUM
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003065EXTERN char e_libsodium_not_built_in[]
3066 INIT(= N_("E1193: cryptmethod xchacha20 not built into this Vim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003067# else
3068# if 0
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003069EXTERN char e_libsodium_cannot_encrypt_header[]
3070 INIT(= N_("E1194: Cannot encrypt header, not enough space"));
3071EXTERN char e_libsodium_cannot_encrypt_buffer[]
3072 INIT(= N_("E1195: Cannot encrypt buffer, not enough space"));
3073EXTERN char e_libsodium_cannot_decrypt_header[]
3074 INIT(= N_("E1196: Cannot decrypt header, not enough space"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003075# endif
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003076EXTERN char e_libsodium_cannot_allocate_buffer[]
3077 INIT(= N_("E1197: Cannot allocate_buffer for encryption"));
3078EXTERN char e_libsodium_decryption_failed_header_incomplete[]
3079 INIT(= N_("E1198: Decryption failed: Header incomplete!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003080# if 0
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003081EXTERN char e_libsodium_cannot_decrypt_buffer[]
3082 INIT(= N_("E1199: Cannot decrypt buffer, not enough space"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003083# endif
Dominique Pellecb54bc62021-06-21 20:15:37 +02003084EXTERN char e_libsodium_decryption_failed[]
Christian Brabandt226b28b2021-06-21 21:08:08 +02003085 INIT(= N_("E1200: Decryption failed!"));
Dominique Pellecb54bc62021-06-21 20:15:37 +02003086EXTERN char e_libsodium_decryption_failed_premature[]
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003087 INIT(= N_("E1201: Decryption failed: pre-mature end of file!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003088# endif
3089#endif
3090#ifdef FEAT_EVAL
Bram Moolenaar22480d12021-06-25 21:31:09 +02003091EXTERN char e_no_white_space_allowed_after_str_str[]
3092 INIT(= N_("E1202: No white space allowed after '%s': %s"));
Ernie Raelf8da3242023-10-11 21:22:12 +02003093EXTERN char e_dot_not_allowed_after_str_str[]
3094 INIT(= N_("E1203: Dot not allowed after a %s: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003095#endif
Bram Moolenaar91ff3d42022-04-04 18:32:32 +01003096EXTERN char e_regexp_number_after_dot_pos_search_chr[]
Bram Moolenaar04db26b2021-07-05 20:15:23 +02003097 INIT(= N_("E1204: No Number allowed after .: '\\%%%c'"));
Bram Moolenaar1594f312021-07-08 16:40:13 +02003098EXTERN char e_no_white_space_allowed_between_option_and[]
3099 INIT(= N_("E1205: No white space allowed between option and"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003100#ifdef FEAT_EVAL
Yegappan Lakshmanan5b739922021-07-10 13:15:41 +02003101EXTERN char e_dict_required_for_argument_nr[]
3102 INIT(= N_("E1206: Dictionary required for argument %d"));
Bram Moolenaarc3235272021-07-10 19:42:03 +02003103EXTERN char e_expression_without_effect_str[]
3104 INIT(= N_("E1207: Expression without an effect: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003105#endif
Bram Moolenaar41a34852021-08-04 16:09:24 +02003106EXTERN char e_complete_used_without_allowing_arguments[]
3107 INIT(= N_("E1208: -complete used without allowing arguments"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003108#ifdef FEAT_EVAL
Bram Moolenaar0f1227f2021-07-11 16:01:58 +02003109EXTERN char e_invalid_value_for_line_number_str[]
3110 INIT(= N_("E1209: Invalid value for a line number: \"%s\""));
Yegappan Lakshmanan1a71d312021-07-15 12:49:58 +02003111EXTERN char e_number_required_for_argument_nr[]
3112 INIT(= N_("E1210: Number required for argument %d"));
Yegappan Lakshmanana9a7c0c2021-07-17 19:11:07 +02003113EXTERN char e_list_required_for_argument_nr[]
3114 INIT(= N_("E1211: List required for argument %d"));
3115EXTERN char e_bool_required_for_argument_nr[]
Bram Moolenaar98c2eae2021-07-19 10:38:49 +02003116 INIT(= N_("E1212: Bool required for argument %d"));
Bram Moolenaar24e93162021-07-18 20:40:33 +02003117EXTERN char e_redefining_imported_item_str[]
Bram Moolenaar60579352021-07-19 21:45:07 +02003118 INIT(= N_("E1213: Redefining imported item \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00003119#endif
Martin Tournoijba43e762022-10-13 22:12:15 +01003120#if defined(FEAT_DIGRAPHS)
mityu61065042021-07-19 20:07:21 +02003121EXTERN char e_digraph_must_be_just_two_characters_str[]
3122 INIT(= N_("E1214: Digraph must be just two characters: %s"));
3123EXTERN char e_digraph_argument_must_be_one_character_str[]
3124 INIT(= N_("E1215: Digraph must be one character: %s"));
h-east29b85712021-07-26 21:54:04 +02003125EXTERN char e_digraph_setlist_argument_must_be_list_of_lists_with_two_items[]
3126 INIT(= N_("E1216: digraph_setlist() argument must be a list of lists with two items"));
mityu61065042021-07-19 20:07:21 +02003127#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00003128#ifdef FEAT_EVAL
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003129# ifdef FEAT_JOB_CHANNEL
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02003130EXTERN char e_chan_or_job_required_for_argument_nr[]
Yegappan Lakshmanan0ad871d2021-07-23 20:37:56 +02003131 INIT(= N_("E1217: Channel or Job required for argument %d"));
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02003132EXTERN char e_job_required_for_argument_nr[]
Yegappan Lakshmanan0ad871d2021-07-23 20:37:56 +02003133 INIT(= N_("E1218: Job required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003134# endif
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003135EXTERN char e_float_or_number_required_for_argument_nr[]
3136 INIT(= N_("E1219: Float or Number required for argument %d"));
3137EXTERN char e_string_or_number_required_for_argument_nr[]
3138 INIT(= N_("E1220: String or Number required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003139# ifdef FEAT_JOB_CHANNEL
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003140EXTERN char e_string_or_blob_required_for_argument_nr[]
3141 INIT(= N_("E1221: String or Blob required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003142# endif
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003143EXTERN char e_string_or_list_required_for_argument_nr[]
3144 INIT(= N_("E1222: String or List required for argument %d"));
3145EXTERN char e_string_or_dict_required_for_argument_nr[]
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003146 INIT(= N_("E1223: String or Dictionary required for argument %d"));
3147EXTERN char e_string_number_or_list_required_for_argument_nr[]
3148 INIT(= N_("E1224: String, Number or List required for argument %d"));
3149EXTERN char e_string_list_or_dict_required_for_argument_nr[]
3150 INIT(= N_("E1225: String, List or Dictionary required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003151EXTERN char e_list_or_blob_required_for_argument_nr[]
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003152 INIT(= N_("E1226: List or Blob required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003153EXTERN char e_list_or_dict_required_for_argument_nr[]
3154 INIT(= N_("E1227: List or Dictionary required for argument %d"));
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003155EXTERN char e_list_dict_or_blob_required_for_argument_nr[]
3156 INIT(= N_("E1228: List, Dictionary or Blob required for argument %d"));
Bram Moolenaard47c3972021-07-28 20:52:13 +02003157EXTERN char e_expected_dictionary_for_using_key_str_but_got_str[]
3158 INIT(= N_("E1229: Expected dictionary for using key \"%s\", but got %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003159#endif
3160#ifdef FEAT_SODIUM
Bram Moolenaar131530a2021-07-29 20:37:49 +02003161EXTERN char e_encryption_sodium_mlock_failed[]
Bram Moolenaar63b91732021-08-05 20:40:03 +02003162 INIT(= N_("E1230: Encryption: sodium_mlock() failed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003163#endif
Bram Moolenaar63b91732021-08-05 20:40:03 +02003164EXTERN char e_cannot_use_bar_to_separate_commands_here_str[]
3165 INIT(= N_("E1231: Cannot use a bar to separate commands here: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003166#ifdef FEAT_EVAL
Bram Moolenaar26735992021-08-08 14:43:22 +02003167EXTERN char e_argument_of_exists_compiled_must_be_literal_string[]
3168 INIT(= N_("E1232: Argument of exists_compiled() must be a literal string"));
3169EXTERN char e_exists_compiled_can_only_be_used_in_def_function[]
3170 INIT(= N_("E1233: exists_compiled() can only be used in a :def function"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003171#endif
Bram Moolenaardd9de502021-08-15 13:49:42 +02003172EXTERN char e_legacy_must_be_followed_by_command[]
3173 INIT(= N_("E1234: legacy must be followed by a command"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003174#ifdef FEAT_EVAL
zeertzjqe0a2ab32025-02-02 09:14:35 +01003175EXTERN char e_bool_or_number_required_for_argument_nr[]
3176 INIT(= N_("E1235: Bool or Number required for argument %d"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00003177EXTERN char e_cannot_use_str_itself_it_is_imported[]
3178 INIT(= N_("E1236: Cannot use %s itself, it is imported"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003179#endif
Bram Moolenaarbdcba242021-09-12 20:58:02 +02003180EXTERN char e_no_such_user_defined_command_in_current_buffer_str[]
3181 INIT(= N_("E1237: No such user-defined command in current buffer: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003182#ifdef FEAT_EVAL
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +02003183EXTERN char e_blob_required_for_argument_nr[]
3184 INIT(= N_("E1238: Blob required for argument %d"));
3185EXTERN char e_invalid_value_for_blob_nr[]
3186 INIT(= N_("E1239: Invalid value for blob: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003187#endif
Bram Moolenaareeed1c72021-10-10 12:35:17 +01003188EXTERN char e_resulting_text_too_long[]
3189 INIT(= N_("E1240: Resulting text too long"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003190#ifdef FEAT_EVAL
Bram Moolenaar7b829262021-10-13 15:04:34 +01003191EXTERN char e_separator_not_supported_str[]
3192 INIT(= N_("E1241: Separator not supported: %s"));
3193EXTERN char e_no_white_space_allowed_before_separator_str[]
3194 INIT(= N_("E1242: No white space allowed before separator: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003195#endif
Erik S. V. Jansson8b1e7492024-02-24 14:26:52 +01003196#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN)
Dusan Popovic4eeedc02021-10-16 20:52:05 +01003197EXTERN char e_ascii_code_not_in_range[]
3198 INIT(= N_("E1243: ASCII code not in 32-127 range"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003199#endif
3200#ifdef FEAT_EVAL
3201# if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
Drew Vogele30d1022021-10-24 20:35:07 +01003202EXTERN char e_bad_color_string_str[]
3203 INIT(= N_("E1244: Bad color string: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003204# endif
Bram Moolenaarc4492712021-11-22 15:37:15 +00003205EXTERN char e_cannot_expand_sfile_in_vim9_function[]
3206 INIT(= N_("E1245: Cannot expand <sfile> in a Vim9 function"));
Bram Moolenaar04b568b2021-11-22 21:58:41 +00003207EXTERN char e_cannot_find_variable_to_unlock_str[]
3208 INIT(= N_("E1246: Cannot find variable to (un)lock: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003209#endif
Bram Moolenaar03725c52021-11-24 12:17:53 +00003210EXTERN char e_line_number_out_of_range[]
3211 INIT(= N_("E1247: Line number out of range"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003212#ifdef FEAT_EVAL
Bram Moolenaar69c76172021-12-02 16:38:52 +00003213EXTERN char e_closure_called_from_invalid_context[]
3214 INIT(= N_("E1248: Closure called from invalid context"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003215#endif
erw7f7f7aaf2021-12-07 21:29:20 +00003216EXTERN char e_highlight_group_name_too_long[]
3217 INIT(= N_("E1249: Highlight group name too long"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003218#ifdef FEAT_EVAL
rbtnnc479ce02021-12-15 19:14:54 +00003219EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[]
3220 INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob"));
Bram Moolenaar2d877592021-12-16 08:21:09 +00003221EXTERN char e_list_dict_blob_or_string_required_for_argument_nr[]
rbtnn0ccb5842021-12-18 18:33:46 +00003222 INIT(= N_("E1251: List, Dictionary, Blob or String required for argument %d"));
3223EXTERN char e_string_list_or_blob_required_for_argument_nr[]
3224 INIT(= N_("E1252: String, List or Blob required for argument %d"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02003225// E1253 unused
Bram Moolenaara99fb232021-12-20 12:25:03 +00003226EXTERN char e_cannot_use_script_variable_in_for_loop[]
3227 INIT(= N_("E1254: Cannot use script variable in for loop"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003228#endif
Bram Moolenaar806da512021-12-24 19:54:52 +00003229EXTERN char e_cmd_mapping_must_end_with_cr[]
3230 INIT(= N_("E1255: <Cmd> mapping must end with <CR>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003231#ifdef FEAT_EVAL
Bram Moolenaar223d0a62021-12-25 19:29:21 +00003232EXTERN char e_string_or_function_required_for_argument_nr[]
3233 INIT(= N_("E1256: String or function required for argument %d"));
Bram Moolenaar834d4182022-01-07 13:38:24 +00003234EXTERN char e_imported_script_must_use_as_or_end_in_dot_vim_str[]
3235 INIT(= N_("E1257: Imported script must use \"as\" or end in .vim: %s"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00003236EXTERN char e_no_dot_after_imported_name_str[]
3237 INIT(= N_("E1258: No '.' after imported name: %s"));
3238EXTERN char e_missing_name_after_imported_name_str[]
3239 INIT(= N_("E1259: Missing name after imported name: %s"));
3240EXTERN char e_cannot_unlet_imported_item_str[]
3241 INIT(= N_("E1260: Cannot unlet an imported item: %s"));
Bram Moolenaar834d4182022-01-07 13:38:24 +00003242EXTERN char e_cannot_import_dot_vim_without_using_as[]
3243 INIT(= N_("E1261: Cannot import .vim without using \"as\""));
Bram Moolenaar7c24dfd2022-01-08 17:03:55 +00003244EXTERN char e_cannot_import_same_script_twice_str[]
3245 INIT(= N_("E1262: Cannot import the same script twice: %s"));
Bram Moolenaard8fe6d32022-01-30 18:40:44 +00003246EXTERN char e_cannot_use_name_with_hash_in_vim9_script_use_export_instead[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01003247 INIT(= N_("E1263: Cannot use name with # in Vim9 script, use export instead"));
Bram Moolenaardc4451d2022-01-09 21:36:37 +00003248EXTERN char e_autoload_import_cannot_use_absolute_or_relative_path[]
3249 INIT(= N_("E1264: Autoload import cannot use absolute or relative path: %s"));
Bram Moolenaarc665dab2022-01-16 19:38:07 +00003250EXTERN char e_cannot_use_partial_here[]
3251 INIT(= N_("E1265: Cannot use a partial here"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003252#endif
Bram Moolenaar63ff72a2022-02-07 13:54:01 +00003253#if defined(FEAT_PYTHON3) && defined(MSWIN)
3254EXTERN char e_critical_error_in_python3_initialization_check_your_installation[]
3255 INIT(= N_("E1266: Critical error in python3 initialization, check your python3 installation"));
3256#endif
Bram Moolenaar3787f262022-02-07 21:54:01 +00003257#ifdef FEAT_EVAL
3258EXTERN char e_function_name_must_start_with_capital_str[]
3259 INIT(= N_("E1267: Function name must start with a capital: %s"));
Bram Moolenaara749a422022-02-12 19:52:25 +00003260EXTERN char e_cannot_use_s_colon_in_vim9_script_str[]
3261 INIT(= N_("E1268: Cannot use s: in Vim9 script: %s"));
Bram Moolenaar75e27d72022-02-13 13:56:29 +00003262EXTERN char e_cannot_create_vim9_script_variable_in_function_str[]
3263 INIT(= N_("E1269: Cannot create a Vim9 script variable in a function: %s"));
Bram Moolenaar525eba02022-03-05 22:07:32 +00003264#endif
Bram Moolenaar9fb7b422022-03-05 21:13:26 +00003265EXTERN char e_cannot_use_s_backslash_in_vim9_script[]
3266 INIT(= N_("E1270: Cannot use :s\\/sub/ in Vim9 script"));
Bram Moolenaar96923b72022-03-15 15:57:04 +00003267#ifdef FEAT_EVAL
3268EXTERN char e_compiling_closure_without_context_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01003269 INIT(= N_("E1271: Compiling closure without context: %s"));
Bram Moolenaar4c8b5462022-03-16 20:01:39 +00003270EXTERN char e_using_type_not_in_script_context_str[]
3271 INIT(= N_("E1272: Using type not in a script context: %s"));
Bram Moolenaar96923b72022-03-15 15:57:04 +00003272#endif
Bram Moolenaar91ff3d42022-04-04 18:32:32 +01003273EXTERN char e_nfa_regexp_missing_value_in_chr[]
3274 INIT(= N_("E1273: (NFA regexp) missing value in '\\%%%c'"));
LemonBoy6013d002022-04-09 21:42:10 +01003275EXTERN char e_no_script_file_name_to_substitute_for_script[]
3276 INIT(= N_("E1274: No script file name to substitute for \"<script>\""));
Bram Moolenaar8b91e712022-04-17 15:06:35 +01003277#ifdef FEAT_EVAL
3278EXTERN char e_string_or_function_required_for_arrow_parens_expr[]
3279 INIT(= N_("E1275: String or function required for ->(expr)"));
Ernie Rael51d04d12022-05-04 15:40:22 +01003280EXTERN char e_illegal_map_mode_string_str[]
3281 INIT(= N_("E1276: Illegal map mode string: '%s'"));
Bram Moolenaarc9af6172022-05-04 16:46:54 +01003282# if !defined(FEAT_JOB_CHANNEL)
3283EXTERN char e_channel_job_feature_not_available[]
3284 INIT(= N_("E1277: Channel and job feature is not available"));
3285# endif
LemonBoy2eaef102022-05-06 13:14:50 +01003286EXTERN char e_stray_closing_curly_str[]
3287 INIT(= N_("E1278: Stray '}' without a matching '{': %s"));
3288EXTERN char e_missing_close_curly_str[]
3289 INIT(= N_("E1279: Missing '}': %s"));
Bram Moolenaar8b91e712022-04-17 15:06:35 +01003290#endif
Bram Moolenaar7c824682022-05-08 22:32:58 +01003291#ifdef FEAT_SPELL
3292EXTERN char e_illegal_character_in_word[]
3293 INIT(= N_("E1280: Illegal character in word"));
3294#endif
Christian Brabandt360da402022-05-18 15:04:02 +01003295EXTERN char e_atom_engine_must_be_at_start_of_pattern[]
3296 INIT(= N_("E1281: Atom '\\%%#=%c' must be at the start of the pattern"));
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01003297#ifdef FEAT_EVAL
3298EXTERN char e_bitshift_ops_must_be_number[]
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01003299 INIT(= N_("E1282: Bitshift operands must be numbers"));
dundargocc57b5bc2022-11-02 13:30:51 +00003300EXTERN char e_bitshift_ops_must_be_positive[]
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01003301 INIT(= N_("E1283: Bitshift amount must be a positive number"));
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01003302#endif
Bram Moolenaar83bd7a92022-05-29 17:13:24 +01003303#if defined(FEAT_PROP_POPUP)
3304EXTERN char e_argument_1_list_item_nr_dictionary_required[]
3305 INIT(= N_("E1284: Argument 1, list item %d: Dictionary required"));
3306#endif
Paul Ollis65745772022-06-05 16:55:54 +01003307#ifdef FEAT_RELTIME
3308EXTERN char e_could_not_clear_timeout_str[]
3309 INIT(= N_("E1285: Could not clear timeout: %s"));
3310EXTERN char e_could_not_set_timeout_str[]
3311 INIT(= N_("E1286: Could not set timeout: %s"));
Bram Moolenaar08210f82023-04-13 19:15:54 +01003312#ifndef PROF_NSEC
Paul Ollis65745772022-06-05 16:55:54 +01003313EXTERN char e_could_not_set_handler_for_timeout_str[]
3314 INIT(= N_("E1287: Could not set handler for timeout: %s"));
3315EXTERN char e_could_not_reset_handler_for_timeout_str[]
3316 INIT(= N_("E1288: Could not reset handler for timeout: %s"));
3317EXTERN char e_could_not_check_for_pending_sigalrm_str[]
3318 INIT(= N_("E1289: Could not check for pending SIGALRM: %s"));
3319#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00003320#endif
Bram Moolenaar44ddf192022-06-21 22:15:25 +01003321#ifdef FEAT_EVAL
3322EXTERN char e_substitute_nesting_too_deep[]
3323 INIT(= N_("E1290: substitute nesting too deep"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003324# ifdef MSWIN
Yegappan Lakshmanan81a3ff92022-07-23 05:04:16 +01003325EXTERN char e_invalid_argument_nr[]
3326 INIT(= N_("E1291: Invalid argument: %ld"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003327# endif
Bram Moolenaar44ddf192022-06-21 22:15:25 +01003328#endif
Bram Moolenaarc963ec32022-07-24 20:08:01 +01003329EXTERN char e_cmdline_window_already_open[]
3330 INIT(= N_("E1292: Command-line window is already open"));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003331#ifdef FEAT_PROP_POPUP
3332EXTERN char e_cannot_use_negative_id_after_adding_textprop_with_text[]
Bram Moolenaar34d17732022-07-27 13:18:14 +01003333 INIT(= N_("E1293: Cannot use a negative id after adding a textprop with text"));
Bram Moolenaar82b14c12022-08-10 19:50:47 +01003334EXTERN char e_can_only_use_text_align_when_column_is_zero[]
3335 INIT(= N_("E1294: Can only use text_align when column is zero"));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003336#endif
Ben Jacksona7704222022-08-20 20:54:51 +01003337#ifdef FEAT_PROP_POPUP
3338EXTERN char e_cannot_specify_both_type_and_types[]
3339 INIT(= N_("E1295: Cannot specify both 'type' and 'types'"));
Bram Moolenaarf396ce82022-08-23 18:39:37 +01003340EXTERN char e_can_only_use_left_padding_when_column_is_zero[]
3341 INIT(= N_("E1296: Can only use left padding when column is zero"));
Ben Jacksona7704222022-08-20 20:54:51 +01003342#endif
Bram Moolenaard83392a2022-09-01 12:22:46 +01003343#ifdef FEAT_EVAL
Yegappan Lakshmanan04c4c572022-08-30 19:48:24 +01003344EXTERN char e_non_null_dict_required_for_argument_nr[]
3345 INIT(= N_("E1297: Non-NULL Dictionary required for argument %d"));
Bram Moolenaard83392a2022-09-01 12:22:46 +01003346EXTERN char e_non_null_list_required_for_argument_nr[]
3347 INIT(= N_("E1298: Non-NULL List required for argument %d"));
3348#endif
Bram Moolenaarccfde4d2022-09-05 19:51:13 +01003349EXTERN char e_window_unexpectedly_close_while_searching_for_tags[]
3350 INIT(= N_("E1299: Window unexpectedly closed while searching for tags"));
Bram Moolenaar86d87252022-09-05 21:21:25 +01003351#ifdef FEAT_EVAL
3352EXTERN char e_cannot_use_partial_with_dictionary_for_defer[]
3353 INIT(= N_("E1300: Cannot use a partial with dictionary for :defer"));
Bakudankun375141e2022-09-09 18:46:47 +01003354EXTERN char e_string_number_list_or_blob_required_for_argument_nr[]
3355 INIT(= N_("E1301: String, Number, List or Blob required for argument %d"));
Bram Moolenaar6de22962022-09-09 21:35:36 +01003356EXTERN char e_script_variable_was_deleted[]
3357 INIT(= N_("E1302: Script variable was deleted"));
Bram Moolenaar55e93662022-09-10 13:52:26 +01003358EXTERN char e_custom_list_completion_function_does_not_return_list_but_str[]
3359 INIT(= N_("E1303: Custom list completion function does not return a List but a %s"));
Bram Moolenaar9510d222022-09-11 15:14:05 +01003360EXTERN char e_cannot_use_type_with_this_variable_str[]
3361 INIT(= N_("E1304: Cannot use type with this variable: %s"));
Bram Moolenaar86d87252022-09-05 21:21:25 +01003362#endif
Bram Moolenaarfb593c52022-09-17 18:57:36 +01003363#ifdef FEAT_PROP_POPUP
3364EXTERN char e_cannot_use_length_endcol_and_endlnum_with_text[]
3365 INIT(= N_("E1305: Cannot use \"length\", \"end_col\" and \"end_lnum\" with \"text\""));
3366#endif
Bram Moolenaarcc341812022-09-19 15:54:34 +01003367#ifdef FEAT_EVAL
3368EXTERN char e_loop_nesting_too_deep[]
3369 INIT(= N_("E1306: Loop nesting too deep"));
Bram Moolenaarfa103972022-09-29 19:14:42 +01003370EXTERN char e_argument_nr_trying_to_modify_const_str[]
3371 INIT(= N_("E1307: Argument %d: Trying to modify a const %s"));
Bram Moolenaar86e67172022-10-31 12:24:12 +00003372EXTERN char e_cannot_resize_window_in_another_tab_page[]
3373 INIT(= N_("E1308: Cannot resize a window in another tab page"));
Bram Moolenaarcc341812022-09-19 15:54:34 +01003374#endif
Bram Moolenaarbf533e42022-11-13 20:43:19 +00003375EXTERN char e_cannot_change_mappings_while_listing[]
3376 INIT(= N_("E1309: Cannot change mappings while listing"));
Bram Moolenaar920d3112022-11-13 21:10:02 +00003377#if defined(FEAT_MENU)
3378EXTERN char e_cannot_change_menus_while_listing[]
3379 INIT(= N_("E1310: Cannot change menus while listing"));
3380#endif
Bram Moolenaarcf2594f2022-11-13 23:30:06 +00003381EXTERN char e_cannot_change_user_commands_while_listing[]
3382 INIT(= N_("E1311: Cannot change user commands while listing"));
Bram Moolenaard63a8552022-11-19 11:41:30 +00003383EXTERN char e_not_allowed_to_change_window_layout_in_this_autocmd[]
3384 INIT(= N_("E1312: Not allowed to change the window layout in this autocmd"));
Bram Moolenaaref2c3252022-11-25 16:31:51 +00003385EXTERN char e_not_allowed_to_add_or_remove_entries_str[]
3386 INIT(= N_("E1313: Not allowed to add or remove entries (%s)"));
Bram Moolenaarc1c365c2022-12-04 20:13:24 +00003387#ifdef FEAT_EVAL
3388EXTERN char e_class_name_must_start_with_uppercase_letter_str[]
3389 INIT(= N_("E1314: Class name must start with an uppercase letter: %s"));
Bram Moolenaar554d0312023-01-05 19:59:18 +00003390EXTERN char e_white_space_required_after_name_str[]
3391 INIT(= N_("E1315: White space required after name: %s"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003392EXTERN char e_class_can_only_be_defined_in_vim9_script[]
3393 INIT(= N_("E1316: Class can only be defined in Vim9 script"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003394EXTERN char e_invalid_object_variable_declaration_str[]
3395 INIT(= N_("E1317: Invalid object variable declaration: %s"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003396EXTERN char e_not_valid_command_in_class_str[]
3397 INIT(= N_("E1318: Not a valid command in a class: %s"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003398// E1319 unused
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003399EXTERN char e_using_object_as_number[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003400 INIT(= N_("E1320: Using an Object as a Number"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003401// E1321 unused
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003402EXTERN char e_using_object_as_float[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003403 INIT(= N_("E1322: Using an Object as a Float"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003404// E1323 unused
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003405EXTERN char e_using_object_as_string[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003406 INIT(= N_("E1324: Using an Object as a String"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003407EXTERN char e_method_not_found_on_class_str_str[]
Ernie Raeld4802ec2023-10-20 11:59:00 +02003408 INIT(= N_("E1325: Method \"%s\" not found in class \"%s\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003409EXTERN char e_variable_not_found_on_object_str_str[]
Ernie Raeld4802ec2023-10-20 11:59:00 +02003410 INIT(= N_("E1326: Variable \"%s\" not found in object \"%s\""));
Bram Moolenaarffdaca92022-12-09 21:41:48 +00003411EXTERN char e_object_required_found_str[]
3412 INIT(= N_("E1327: Object required, found %s"));
Bram Moolenaar65b0d162022-12-13 18:43:22 +00003413EXTERN char e_constructor_default_value_must_be_vnone_str[]
3414 INIT(= N_("E1328: Constructor default value must be v:none: %s"));
Doug Kearns74da0ee2023-12-14 20:26:26 +01003415EXTERN char e_invalid_class_variable_declaration_str[]
3416 INIT(= N_("E1329: Invalid class variable declaration: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003417EXTERN char e_invalid_type_for_object_variable_str[]
3418 INIT(= N_("E1330: Invalid type for object variable: %s"));
Yegappan Lakshmanane5437c52023-12-16 14:11:19 +01003419EXTERN char e_public_must_be_followed_by_var_static_final_or_const[]
Yegappan Lakshmananc51578f2024-04-13 17:58:09 +02003420 INIT(= N_("E1331: public must be followed by \"var\" or \"static\" or \"final\" or \"const\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003421EXTERN char e_public_variable_name_cannot_start_with_underscore_str[]
Yegappan Lakshmananc51578f2024-04-13 17:58:09 +02003422 INIT(= N_("E1332: public variable name cannot start with underscore: %s"));
Ernie Rael03042a22023-11-11 08:53:32 +01003423EXTERN char e_cannot_access_protected_variable_str[]
3424 INIT(= N_("E1333: Cannot access protected variable \"%s\" in class \"%s\""));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003425// E1334 unused
RestorerZ7fe8f432023-09-24 23:21:24 +02003426EXTERN char e_variable_is_not_writable_str[]
Ernie Rael696270b2023-09-21 16:42:28 +02003427 INIT(= N_("E1335: Variable \"%s\" in class \"%s\" is not writable"));
Bram Moolenaarc1c365c2022-12-04 20:13:24 +00003428#endif
Christian Brabandt9aee8ec2022-12-16 16:41:23 +00003429EXTERN char e_internal_error_shortmess_too_long[]
RestorerZ68ebcee2023-05-31 17:12:14 +01003430 INIT(= "E1336: Internal error: shortmess too long");
Bram Moolenaard505d172022-12-18 21:42:55 +00003431#ifdef FEAT_EVAL
RestorerZ7fe8f432023-09-24 23:21:24 +02003432EXTERN char e_class_variable_str_not_found_in_class_str[]
3433 INIT(= N_("E1337: Class variable \"%s\" not found in class \"%s\""));
Yegappan Lakshmanan00cd1822023-09-18 19:56:49 +02003434// E1338 unused
Bram Moolenaard505d172022-12-18 21:42:55 +00003435#endif
Bram Moolenaar4ce1f992022-12-19 13:31:06 +00003436#ifdef FEAT_PROP_POPUP
3437EXTERN char e_cannot_add_textprop_with_text_after_using_textprop_with_negative_id[]
3438 INIT(= N_("E1339: Cannot add a textprop with text after using a textprop with a negative id"));
3439#endif
Bram Moolenaar993dbc32023-01-01 20:31:30 +00003440#ifdef FEAT_EVAL
3441EXTERN char e_argument_already_declared_in_class_str[]
3442 INIT(= N_("E1340: Argument already declared in the class: %s"));
3443EXTERN char e_variable_already_declared_in_class_str[]
3444 INIT(= N_("E1341: Variable already declared in the class: %s"));
Bram Moolenaar554d0312023-01-05 19:59:18 +00003445EXTERN char e_interface_can_only_be_defined_in_vim9_script[]
3446 INIT(= N_("E1342: Interface can only be defined in Vim9 script"));
3447EXTERN char e_interface_name_must_start_with_uppercase_letter_str[]
3448 INIT(= N_("E1343: Interface name must start with an uppercase letter: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003449EXTERN char e_cannot_initialize_variable_in_interface[]
3450 INIT(= N_("E1344: Cannot initialize a variable in an interface"));
Bram Moolenaar554d0312023-01-05 19:59:18 +00003451EXTERN char e_not_valid_command_in_interface_str[]
3452 INIT(= N_("E1345: Not a valid command in an interface: %s"));
Bram Moolenaar94674f22023-01-06 18:42:20 +00003453EXTERN char e_interface_name_not_found_str[]
3454 INIT(= N_("E1346: Interface name not found: %s"));
3455EXTERN char e_not_valid_interface_str[]
3456 INIT(= N_("E1347: Not a valid interface: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003457EXTERN char e_variable_str_of_interface_str_not_implemented[]
3458 INIT(= N_("E1348: Variable \"%s\" of interface \"%s\" is not implemented"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003459EXTERN char e_method_str_of_interface_str_not_implemented[]
3460 INIT(= N_("E1349: Method \"%s\" of interface \"%s\" is not implemented"));
Bram Moolenaardf8f9472023-01-07 14:51:03 +00003461EXTERN char e_duplicate_implements[]
3462 INIT(= N_("E1350: Duplicate \"implements\""));
3463EXTERN char e_duplicate_interface_after_implements_str[]
3464 INIT(= N_("E1351: Duplicate interface after \"implements\": %s"));
Bram Moolenaar83677162023-01-08 19:54:10 +00003465EXTERN char e_duplicate_extends[]
3466 INIT(= N_("E1352: Duplicate \"extends\""));
3467EXTERN char e_class_name_not_found_str[]
3468 INIT(= N_("E1353: Class name not found: %s"));
3469EXTERN char e_cannot_extend_str[]
3470 INIT(= N_("E1354: Cannot extend %s"));
Bram Moolenaar58b40092023-01-11 15:59:05 +00003471EXTERN char e_duplicate_function_str[]
3472 INIT(= N_("E1355: Duplicate function: %s"));
3473EXTERN char e_super_must_be_followed_by_dot[]
3474 INIT(= N_("E1356: \"super\" must be followed by a dot"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003475EXTERN char e_using_super_not_in_class_method[]
3476 INIT(= N_("E1357: Using \"super\" not in a class method"));
Bram Moolenaar6aa09372023-01-11 17:59:38 +00003477EXTERN char e_using_super_not_in_child_class[]
3478 INIT(= N_("E1358: Using \"super\" not in a child class"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003479EXTERN char e_cannot_define_new_method_in_abstract_class[]
3480 INIT(= N_("E1359: Cannot define a \"new\" method in an abstract class"));
Bram Moolenaar552bdca2023-02-17 21:08:50 +00003481EXTERN char e_using_null_object[]
3482 INIT(= N_("E1360: Using a null object"));
Bram Moolenaar993dbc32023-01-01 20:31:30 +00003483#endif
Bram Moolenaar5b9f5722023-02-19 20:49:38 +00003484EXTERN char e_cannot_use_color_none_did_you_mean_none[]
3485 INIT(= N_("E1361: Cannot use color \"none\", did you mean \"NONE\"?"));
Bram Moolenaarc4e1b862023-02-26 18:58:23 +00003486#ifdef FEAT_EVAL
3487EXTERN char e_cannot_use_non_null_object[]
3488 INIT(= N_("E1362: Cannot use a non-null object"));
Ernie Raelf77a7f72023-03-03 15:05:30 +00003489EXTERN char e_incomplete_type[]
3490 INIT(= N_("E1363: Incomplete type"));
Bram Moolenaarc4e1b862023-02-26 18:58:23 +00003491#endif
Bram Moolenaarb67ba032023-04-22 21:14:26 +01003492EXTERN char e_warning_pointer_block_corrupted[]
3493 INIT(= N_("E1364: Warning: Pointer block corrupted"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003494#ifdef FEAT_EVAL
RestorerZ7fe8f432023-09-24 23:21:24 +02003495EXTERN char e_cannot_use_a_return_type_with_new_method[]
3496 INIT(= N_("E1365: Cannot use a return type with the \"new\" method"));
Ernie Rael03042a22023-11-11 08:53:32 +01003497EXTERN char e_cannot_access_protected_method_str[]
3498 INIT(= N_("E1366: Cannot access protected method: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003499EXTERN char e_variable_str_of_interface_str_has_different_access[]
3500 INIT(= N_("E1367: Access level of variable \"%s\" of interface \"%s\" is different"));
Yegappan Lakshmanane5437c52023-12-16 14:11:19 +01003501EXTERN char e_static_must_be_followed_by_var_def_final_or_const[]
3502 INIT(= N_("E1368: Static must be followed by \"var\" or \"def\" or \"final\" or \"const\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003503EXTERN char e_duplicate_variable_str[]
3504 INIT(= N_("E1369: Duplicate variable: %s"));
3505EXTERN char e_cannot_define_new_method_as_static[]
3506 INIT(= N_("E1370: Cannot define a \"new\" method as static"));
Yegappan Lakshmananef9e3f82023-11-02 20:43:57 +01003507EXTERN char e_abstract_must_be_followed_by_def[]
3508 INIT(= N_("E1371: Abstract must be followed by \"def\""));
Yegappan Lakshmanan7bcd25c2023-09-08 19:27:51 +02003509EXTERN char e_abstract_method_in_concrete_class[]
3510 INIT(= N_("E1372: Abstract method \"%s\" cannot be defined in a concrete class"));
3511EXTERN char e_abstract_method_str_not_found[]
3512 INIT(= N_("E1373: Abstract method \"%s\" is not implemented"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003513EXTERN char e_class_variable_str_accessible_only_inside_class_str[]
3514 INIT(= N_("E1374: Class variable \"%s\" accessible only inside class \"%s\""));
3515EXTERN char e_class_variable_str_accessible_only_using_class_str[]
3516 INIT(= N_("E1375: Class variable \"%s\" accessible only using class \"%s\""));
3517EXTERN char e_object_variable_str_accessible_only_using_object_str[]
3518 INIT(= N_("E1376: Object variable \"%s\" accessible only using class \"%s\" object"));
Yegappan Lakshmananc30a90d2023-09-15 20:14:55 +02003519EXTERN char e_method_str_of_class_str_has_different_access[]
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003520 INIT(= N_("E1377: Access level of method \"%s\" is different in class \"%s\""));
Yegappan Lakshmanan00cd1822023-09-18 19:56:49 +02003521EXTERN char e_static_member_not_supported_in_interface[]
3522 INIT(= N_("E1378: Static member not supported in an interface"));
Ernie Rael03042a22023-11-11 08:53:32 +01003523EXTERN char e_protected_variable_not_supported_in_interface[]
3524 INIT(= N_("E1379: Protected variable not supported in an interface"));
3525EXTERN char e_protected_method_not_supported_in_interface[]
3526 INIT(= N_("E1380: Protected method not supported in an interface"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003527EXTERN char e_interface_cannot_use_implements[]
3528 INIT(= N_("E1381: Interface cannot use \"implements\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003529EXTERN char e_variable_str_type_mismatch_expected_str_but_got_str[]
3530 INIT(= N_("E1382: Variable \"%s\": type mismatch, expected %s but got %s"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003531EXTERN char e_method_str_type_mismatch_expected_str_but_got_str[]
3532 INIT(= N_("E1383: Method \"%s\": type mismatch, expected %s but got %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003533EXTERN char e_class_method_str_accessible_only_inside_class_str[]
3534 INIT(= N_("E1384: Class method \"%s\" accessible only inside class \"%s\""));
3535EXTERN char e_class_method_str_accessible_only_using_class_str[]
3536 INIT(= N_("E1385: Class method \"%s\" accessible only using class \"%s\""));
3537EXTERN char e_object_method_str_accessible_only_using_object_str[]
3538 INIT(= N_("E1386: Object method \"%s\" accessible only using class \"%s\" object"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02003539EXTERN char e_public_variable_not_supported_in_interface[]
Yegappan Lakshmananc51578f2024-04-13 17:58:09 +02003540 INIT(= N_("E1387: public variable not supported in an interface"));
Yegappan Lakshmanan2dede3d2023-09-27 19:02:01 +02003541EXTERN char e_public_keyword_not_supported_for_method[]
Yegappan Lakshmananc51578f2024-04-13 17:58:09 +02003542 INIT(= N_("E1388: public keyword not supported for a method"));
Yegappan Lakshmanan2dede3d2023-09-27 19:02:01 +02003543EXTERN char e_missing_name_after_implements[]
3544 INIT(= N_("E1389: Missing name after implements"));
h-eastdb385522023-09-28 22:18:19 +02003545EXTERN char e_cannot_use_an_object_variable_except_with_the_new_method_str[]
3546 INIT(= N_("E1390: Cannot use an object variable \"this.%s\" except with the \"new\" method"));
Ernie Raelee865f32023-09-29 19:53:55 +02003547EXTERN char e_cannot_lock_object_variable_str[]
3548 INIT(= N_("E1391: Cannot (un)lock variable \"%s\" in class \"%s\""));
3549EXTERN char e_cannot_lock_class_variable_str[]
3550 INIT(= N_("E1392: Cannot (un)lock class variable \"%s\" in class \"%s\""));
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003551EXTERN char e_type_can_only_be_defined_in_vim9_script[]
3552 INIT(= N_("E1393: Type can only be defined in Vim9 script"));
3553EXTERN char e_type_name_must_start_with_uppercase_letter_str[]
3554 INIT(= N_("E1394: Type name must start with an uppercase letter: %s"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003555// E1395 unused
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003556EXTERN char e_typealias_already_exists_for_str[]
3557 INIT(= N_("E1396: Type alias \"%s\" already exists"));
3558EXTERN char e_missing_typealias_name[]
3559 INIT(= N_("E1397: Missing type alias name"));
3560EXTERN char e_missing_typealias_type[]
3561 INIT(= N_("E1398: Missing type alias type"));
3562EXTERN char e_type_can_only_be_used_in_script[]
3563 INIT(= N_("E1399: Type can only be used in a script"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003564// E1400 unused
3565// E1401 unused
3566// E1402 unused
Ernie Rael9ed53752023-12-11 17:40:46 +01003567EXTERN char e_using_typealias_as_value_str[]
Yegappan Lakshmananfeaccd22023-10-28 15:53:55 +02003568 INIT(= N_("E1403: Type alias \"%s\" cannot be used as a value"));
Yegappan Lakshmanan2b358ad2023-11-02 20:57:32 +01003569EXTERN char e_abstract_cannot_be_used_in_interface[]
3570 INIT(= N_("E1404: Abstract cannot be used in an interface"));
Ernie Rael9ed53752023-12-11 17:40:46 +01003571EXTERN char e_using_class_as_value_str[]
Ernie Rael2025af12023-12-12 16:58:00 +01003572 INIT(= N_("E1405: Class \"%s\" cannot be used as a value"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003573// E1406 unused
Ernie Rael9ed53752023-12-11 17:40:46 +01003574EXTERN char e_using_typealias_as_var_val[]
Ernie Rael2025af12023-12-12 16:58:00 +01003575 INIT(= N_("E1407: Cannot use a Typealias as a variable or value"));
Yegappan Lakshmanane5437c52023-12-16 14:11:19 +01003576EXTERN char e_final_variable_not_supported_in_interface[]
3577 INIT(= N_("E1408: Final variable not supported in an interface"));
3578EXTERN char e_cannot_change_readonly_variable_str_in_class_str[]
3579 INIT(= N_("E1409: Cannot change read-only variable \"%s\" in class \"%s\""));
3580EXTERN char e_const_variable_not_supported_in_interface[]
3581 INIT(= N_("E1410: Const variable not supported in an interface"));
Ernie Rael5e133152023-12-19 22:15:27 +01003582EXTERN char e_missing_dot_after_object_str[]
3583 INIT(= N_("E1411: Missing dot after object \"%s\""));
Yegappan Lakshmanand3eae7b2024-03-03 16:26:58 +01003584EXTERN char e_builtin_object_method_str_not_supported[]
3585 INIT(= N_("E1412: Builtin object method \"%s\" not supported"));
3586EXTERN char e_builtin_class_method_not_supported[]
3587 INIT(= N_("E1413: Builtin class method not supported"));
Yegappan Lakshmanan3164cf82024-03-28 10:36:42 +01003588EXTERN char e_enum_can_only_be_defined_in_vim9_script[]
3589 INIT(= N_("E1414: Enum can only be defined in Vim9 script"));
3590EXTERN char e_enum_name_must_start_with_uppercase_letter_str[]
3591 INIT(= N_("E1415: Enum name must start with an uppercase letter: %s"));
3592EXTERN char e_enum_cannot_extend_class[]
3593 INIT(= N_("E1416: Enum cannot extend a class or enum"));
3594EXTERN char e_abstract_cannot_be_used_in_enum[]
3595 INIT(= N_("E1417: Abstract cannot be used in an Enum"));
3596EXTERN char e_invalid_enum_value_declaration_str[]
3597 INIT(= N_("E1418: Invalid enum value declaration: %s"));
3598EXTERN char e_not_valid_command_in_enum_str[]
3599 INIT(= N_("E1419: Not a valid command in an Enum: %s"));
3600EXTERN char e_missing_endenum[]
3601 INIT(= N_("E1420: Missing :endenum"));
3602EXTERN char e_using_enum_as_value_str[]
3603 INIT(= N_("E1421: Enum \"%s\" cannot be used as a value"));
3604EXTERN char e_enum_value_str_not_found_in_enum_str[]
3605 INIT(= N_("E1422: Enum value \"%s\" not found in enum \"%s\""));
3606EXTERN char e_enumvalue_str_cannot_be_modified[]
3607 INIT(= N_("E1423: Enum value \"%s.%s\" cannot be modified"));
3608EXTERN char e_using_enum_str_as_number[]
3609 INIT(= N_("E1424: Using an Enum \"%s\" as a Number"));
3610EXTERN char e_using_enum_str_as_string[]
3611 INIT(= N_("E1425: Using an Enum \"%s\" as a String"));
3612EXTERN char e_enum_str_ordinal_cannot_be_modified[]
3613 INIT(= N_("E1426: Enum \"%s\" ordinal value cannot be modified"));
3614EXTERN char e_enum_str_name_cannot_be_modified[]
3615 INIT(= N_("E1427: Enum \"%s\" name cannot be modified"));
3616EXTERN char e_duplicate_enum_str[]
3617 INIT(= N_("E1428: Duplicate enum value: %s"));
Yegappan Lakshmananc51578f2024-04-13 17:58:09 +02003618EXTERN char e_class_can_only_be_used_in_script[]
3619 INIT(= N_("E1429: Class can only be used in a script"));
Yegappan Lakshmananb04af4c2025-01-03 10:50:08 +01003620EXTERN char e_uninitialized_object_var_reference[]
3621 INIT(= N_("E1430: Uninitialized object variable '%s' referenced"));
Ernie Raelbce60c42025-01-19 10:03:00 +01003622EXTERN char e_abstract_method_str_direct[]
3623 INIT(= N_("E1431: Abstract method \"%s\" in class \"%s\" cannot be accessed directly"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003624#endif
Ernie Raelbce60c42025-01-19 10:03:00 +01003625// E1432 - E1499 unused (reserved for Vim9 class support)
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003626EXTERN char e_cannot_mix_positional_and_non_positional_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003627 INIT(= N_("E1500: Cannot mix positional and non-positional arguments: %s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003628EXTERN char e_fmt_arg_nr_unused_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003629 INIT(= N_("E1501: format argument %d unused in $-style format: %s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003630EXTERN char e_positional_num_field_spec_reused_str_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003631 INIT(= N_("E1502: Positional argument %d used as field width reused as different type: %s/%s"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003632#ifdef FEAT_EVAL
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003633EXTERN char e_positional_nr_out_of_bounds_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003634 INIT(= N_("E1503: Positional argument %d out of bounds: %s"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003635#endif
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003636EXTERN char e_positional_arg_num_type_inconsistent_str_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003637 INIT(= N_("E1504: Positional argument %d type used inconsistently: %s/%s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003638EXTERN char e_invalid_format_specifier_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003639 INIT(= N_("E1505: Invalid format specifier: %s"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003640#ifdef FEAT_XATTR
Christian Brabandte085dfd2023-09-30 12:49:18 +02003641EXTERN char e_xattr_erange[]
3642 INIT(= N_("E1506: Buffer too small to copy xattr value or key"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003643#endif
Christ van Willegenea746f92023-10-05 20:48:36 +02003644EXTERN char e_aptypes_is_null_nr_str[]
3645 INIT(= "E1507: Internal error: ap_types or ap_types[idx] is NULL: %d: %s");
Dominique Pellé1165f782024-07-18 20:40:28 +02003646#ifdef FEAT_XATTR
Christian Brabandte085dfd2023-09-30 12:49:18 +02003647EXTERN char e_xattr_e2big[]
zeertzjq7ece0362023-10-01 09:07:14 +02003648 INIT(= N_("E1508: Size of the extended attribute value is larger than the maximum size allowed"));
Christian Brabandte085dfd2023-09-30 12:49:18 +02003649EXTERN char e_xattr_other[]
Viktor Szépedbf749b2023-10-16 09:53:37 +02003650 INIT(= N_("E1509: Error occurred when reading or writing extended attribute"));
Dominique Pellé1165f782024-07-18 20:40:28 +02003651#endif
Christian Brabandt9198c1f2023-10-26 21:29:32 +02003652EXTERN char e_val_too_large[]
3653 INIT(= N_("E1510: Value too large: %s"));
zeertzjq6a8d2e12024-01-17 20:54:49 +01003654EXTERN char e_wrong_number_of_characters_for_field_str[]
3655 INIT(= N_("E1511: Wrong number of characters for field \"%s\""));
3656EXTERN char e_wrong_character_width_for_field_str[]
3657 INIT(= N_("E1512: Wrong character width for field \"%s\""));
Colin Kennedy21570352024-03-03 16:16:47 +01003658EXTERN char e_winfixbuf_cannot_go_to_buffer[]
Christian Brabandt0a32b882024-03-13 20:59:27 +01003659 INIT(= N_("E1513: Cannot switch buffer. 'winfixbuf' is enabled"));
Yegappan Lakshmanana13f3a42024-11-02 18:40:10 +01003660EXTERN char e_invalid_return_type_from_findfunc[]
3661 INIT(= N_("E1514: 'findfunc' did not return a List type"));
Yegappan Lakshmanan1aefe1d2025-01-14 17:29:42 +01003662EXTERN char e_str_encoding_failed[]
3663 INIT(= N_("E1515: Unable to convert %s '%s' encoding"));