blob: dd2bc95b76a9d69bd516ad03049e2f68d81925cf [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"));
Bram Moolenaar80adaa82023-07-07 18:57:40 +01001041EXTERN char e_im_a_teapot[]
1042 INIT(= N_("E418: I'm a teapot"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001043EXTERN char e_fg_color_unknown[]
1044 INIT(= N_("E419: FG color unknown"));
1045EXTERN char e_bg_color_unknown[]
1046 INIT(= N_("E420: BG color unknown"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001047EXTERN char e_color_name_or_number_not_recognized_str[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001048 INIT(= N_("E421: Color name or number not recognized: %s"));
1049EXTERN char e_terminal_code_too_long_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001050 INIT(= N_("E422: Terminal code too long: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001051EXTERN char e_illegal_argument_str_3[]
1052 INIT(= N_("E423: Illegal argument: %s"));
1053EXTERN char e_too_many_different_highlighting_attributes_in_use[]
1054 INIT(= N_("E424: Too many different highlighting attributes in use"));
1055EXTERN char e_cannot_go_before_first_matching_tag[]
1056 INIT(= N_("E425: Cannot go before first matching tag"));
1057EXTERN char e_tag_not_found_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001058 INIT(= N_("E426: Tag not found: %s"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001059EXTERN char e_there_is_only_one_matching_tag[]
1060 INIT(= N_("E427: There is only one matching tag"));
1061EXTERN char e_cannot_go_beyond_last_matching_tag[]
1062 INIT(= N_("E428: Cannot go beyond last matching tag"));
1063EXTERN char e_file_str_does_not_exist[]
1064 INIT(= N_("E429: File \"%s\" does not exist"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001065#ifdef FEAT_EMACS_TAGS
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001066EXTERN char e_tag_file_path_truncated_for_str[]
1067 INIT(= N_("E430: Tag file path truncated for %s\n"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001068#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001069EXTERN char e_format_error_in_tags_file_str[]
1070 INIT(= N_("E431: Format error in tags file \"%s\""));
1071EXTERN char e_tags_file_not_sorted_str[]
1072 INIT(= N_("E432: Tags file not sorted: %s"));
1073EXTERN char e_no_tags_file[]
1074 INIT(= N_("E433: No tags file"));
dundargocc57b5bc2022-11-02 13:30:51 +00001075EXTERN char e_cannot_find_tag_pattern[]
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001076 INIT(= N_("E434: Can't find tag pattern"));
1077EXTERN char e_couldnt_find_tag_just_guessing[]
1078 INIT(= N_("E435: Couldn't find tag, just guessing!"));
1079EXTERN char e_no_str_entry_in_termcap[]
1080 INIT(= N_("E436: No \"%s\" entry in termcap"));
1081EXTERN char e_terminal_capability_cm_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001082 INIT(= N_("E437: Terminal capability \"cm\" required"));
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001083EXTERN char e_u_undo_line_numbers_wrong[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001084 INIT(= "E438: u_undo: Line numbers wrong");
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001085EXTERN char e_undo_list_corrupt[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001086 INIT(= "E439: Undo list corrupt");
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001087EXTERN char e_undo_line_missing[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001088 INIT(= "E440: Undo line missing");
Dominique Pellef85a4242022-01-09 12:49:31 +00001089#ifdef FEAT_QUICKFIX
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001090EXTERN char e_there_is_no_preview_window[]
1091 INIT(= N_("E441: There is no preview window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001092#endif
Bram Moolenaarac78dd42022-01-02 19:25:26 +00001093EXTERN char e_cant_split_topleft_and_botright_at_the_same_time[]
1094 INIT(= N_("E442: Can't split topleft and botright at the same time"));
1095EXTERN char e_cannot_rotate_when_another_window_is_split[]
1096 INIT(= N_("E443: Cannot rotate when another window is split"));
1097EXTERN char e_cannot_close_last_window[]
1098 INIT(= N_("E444: Cannot close last window"));
1099EXTERN char e_other_window_contains_changes[]
1100 INIT(= N_("E445: Other window contains changes"));
1101EXTERN char e_no_file_name_under_cursor[]
1102 INIT(= N_("E446: No file name under cursor"));
1103EXTERN char e_cant_find_file_str_in_path_2[]
1104 INIT(= N_("E447: Can't find file \"%s\" in path"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001105#ifdef USING_LOAD_LIBRARY
1106EXTERN char e_could_not_load_library_function_str[]
1107 INIT(= N_("E448: Could not load library function %s"));
1108#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001109#ifdef FEAT_CLIENTSERVER
1110EXTERN char e_invalid_expression_received[]
1111 INIT(= N_("E449: Invalid expression received"));
1112#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001113#ifdef FEAT_PROP_POPUP
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001114EXTERN char e_buffer_number_text_or_list_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001115 INIT(= N_("E450: Buffer number, text or a list required"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001116#endif
1117#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001118EXTERN char e_expected_right_curly_str[]
1119 INIT(= N_("E451: Expected }: %s"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001120EXTERN char e_double_semicolon_in_list_of_variables[]
1121 INIT(= N_("E452: Double ; in list of variables"));
1122#endif
1123EXTERN char e_ul_color_unknown[]
1124 INIT(= N_("E453: UL color unknown"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001125#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001126EXTERN char e_function_list_was_modified[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001127 INIT(= N_("E454: Function list was modified"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001128#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001129#ifdef FEAT_POSTSCRIPT
1130EXTERN char e_error_writing_to_postscript_output_file[]
1131 INIT(= N_("E455: Error writing to PostScript output file"));
1132EXTERN char e_cant_open_file_str_2[]
1133 INIT(= N_("E456: Can't open file \"%s\""));
1134EXTERN char e_cant_find_postscript_resource_file_str_ps[]
1135 INIT(= N_("E456: Can't find PostScript resource file \"%s.ps\""));
1136EXTERN char e_cant_read_postscript_resource_file_str[]
1137 INIT(= N_("E457: Can't read PostScript resource file \"%s\""));
1138#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001139#ifdef FEAT_GUI_X11
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001140EXTERN char e_cannot_allocate_colormap_entry_some_colors_may_be_incorrect[]
1141 INIT(= N_("E458: Cannot allocate colormap entry, some colors may be incorrect"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001142#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001143#if defined(UNIX) || defined(FEAT_SESSION)
1144EXTERN char e_cannot_go_back_to_previous_directory[]
1145 INIT(= N_("E459: Cannot go back to previous directory"));
1146#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001147#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001148EXTERN char e_entries_missing_in_mapset_dict_argument[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001149 INIT(= N_("E460: Entries missing in mapset() dict argument"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001150EXTERN char e_illegal_variable_name_str[]
1151 INIT(= N_("E461: Illegal variable name: %s"));
1152#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001153EXTERN char e_could_not_prepare_for_reloading_str[]
1154 INIT(= N_("E462: Could not prepare for reloading \"%s\""));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001155#ifdef FEAT_NETBEANS_INTG
1156EXTERN char e_region_is_guarded_cannot_modify[]
1157 INIT(= N_("E463: Region is guarded, cannot modify"));
1158#endif
Bram Moolenaard1510ee2021-01-04 16:15:58 +01001159EXTERN char e_ambiguous_use_of_user_defined_command[]
1160 INIT(= N_("E464: Ambiguous use of user-defined command"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001161#ifdef FEAT_EVAL
Bram Moolenaarbed34f02022-01-19 20:48:37 +00001162EXTERN char e_ambiguous_use_of_user_defined_command_str[]
1163 INIT(= N_("E464: Ambiguous use of user-defined command: %s"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01001164#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001165EXTERN char e_winsize_requires_two_number_arguments[]
1166 INIT(= N_("E465: :winsize requires two number arguments"));
1167EXTERN char e_winpos_requires_two_number_arguments[]
1168 INIT(= N_("E466: :winpos requires two number arguments"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001169#ifdef FEAT_EVAL
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001170EXTERN char e_custom_completion_requires_function_argument[]
1171 INIT(= N_("E467: Custom completion requires a function argument"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001172#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001173EXTERN char e_completion_argument_only_allowed_for_custom_completion[]
1174 INIT(= N_("E468: Completion argument only allowed for custom completion"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001175#ifdef FEAT_CSCOPE
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001176EXTERN char e_invalid_cscopequickfix_flag_chr_for_chr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001177 INIT(= N_("E469: Invalid cscopequickfix flag %c for %c"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001178#endif
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001179EXTERN char e_command_aborted[]
1180 INIT(= N_("E470: Command aborted"));
1181EXTERN char e_argument_required[]
1182 INIT(= N_("E471: Argument required"));
1183EXTERN char e_command_failed[]
1184 INIT(= N_("E472: Command failed"));
1185EXTERN char e_internal_error_in_regexp[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001186 INIT(= "E473: Internal error in regexp");
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001187EXTERN char e_invalid_argument[]
1188 INIT(= N_("E474: Invalid argument"));
1189EXTERN char e_invalid_argument_str[]
1190 INIT(= N_("E475: Invalid argument: %s"));
1191EXTERN char e_invalid_value_for_argument_str[]
1192 INIT(= N_("E475: Invalid value for argument %s"));
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01001193#if defined(FEAT_JOB_CHANNEL) || defined(FEAT_PROP_POPUP) || defined(FEAT_EVAL)
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001194EXTERN char e_invalid_value_for_argument_str_str[]
1195 INIT(= N_("E475: Invalid value for argument %s: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001196#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02001197EXTERN char e_invalid_command[]
1198 INIT(= N_("E476: Invalid command"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02001199EXTERN char e_invalid_command_str[]
1200 INIT(= N_("E476: Invalid command: %s"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001201#ifdef FEAT_EVAL
Bram Moolenaar552bdca2023-02-17 21:08:50 +00001202EXTERN char e_invalid_command_str_expected_str[]
1203 INIT(= N_("E476: Invalid command: %s, expected %s"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001204#endif
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001205EXTERN char e_no_bang_allowed[]
1206 INIT(= N_("E477: No ! allowed"));
1207EXTERN char e_dont_panic[]
1208 INIT(= N_("E478: Don't panic!"));
1209EXTERN char e_no_match[]
1210 INIT(= N_("E479: No match"));
1211EXTERN char e_no_match_str_2[]
1212 INIT(= N_("E480: No match: %s"));
1213EXTERN char e_no_range_allowed[]
1214 INIT(= N_("E481: No range allowed"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001215EXTERN char e_cant_create_file_str[]
1216 INIT(= N_("E482: Can't create file %s"));
1217EXTERN char e_cant_get_temp_file_name[]
1218 INIT(= N_("E483: Can't get temp file name"));
1219EXTERN char e_cant_open_file_str[]
1220 INIT(= N_("E484: Can't open file %s"));
1221EXTERN char e_cant_read_file_str[]
1222 INIT(= N_("E485: Can't read file %s"));
1223EXTERN char e_pattern_not_found[]
1224 INIT(= N_("E486: Pattern not found"));
1225EXTERN char e_pattern_not_found_str[]
1226 INIT(= N_("E486: Pattern not found: %s"));
1227EXTERN char e_argument_must_be_positive[]
1228 INIT(= N_("E487: Argument must be positive"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001229#ifdef FEAT_PROP_POPUP
Bram Moolenaarf396ce82022-08-23 18:39:37 +01001230EXTERN char e_argument_must_be_positive_str[]
1231 INIT(= N_("E487: Argument must be positive: %s"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001232#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001233EXTERN char e_trailing_characters[]
1234 INIT(= N_("E488: Trailing characters"));
1235EXTERN char e_trailing_characters_str[]
1236 INIT(= N_("E488: Trailing characters: %s"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001237EXTERN char e_no_call_stack_to_substitute_for_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001238 INIT(= N_("E489: No call stack to substitute for \"<stack>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001239#ifdef FEAT_FOLDING
1240EXTERN char e_no_fold_found[]
1241 INIT(= N_("E490: No fold found"));
1242#endif
1243#ifdef FEAT_EVAL
1244EXTERN char e_json_decode_error_at_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001245 INIT(= N_("E491: JSON decode error at '%s'"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001246#endif
1247EXTERN char e_not_an_editor_command[]
1248 INIT(= N_("E492: Not an editor command"));
1249EXTERN char e_backwards_range_given[]
1250 INIT(= N_("E493: Backwards range given"));
1251EXTERN char e_use_w_or_w_gt_gt[]
1252 INIT(= N_("E494: Use w or w>>"));
1253EXTERN char e_no_autocommand_file_name_to_substitute_for_afile[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001254 INIT(= N_("E495: No autocommand file name to substitute for \"<afile>\""));
Bram Moolenaar70e80282023-05-05 22:58:34 +01001255EXTERN char e_no_autocommand_buffer_number_to_substitute_for_abuf[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001256 INIT(= N_("E496: No autocommand buffer number to substitute for \"<abuf>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001257EXTERN char e_no_autocommand_match_name_to_substitute_for_amatch[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001258 INIT(= N_("E497: No autocommand match name to substitute for \"<amatch>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001259EXTERN char e_no_source_file_name_to_substitute_for_sfile[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001260 INIT(= N_("E498: No :source file name to substitute for \"<sfile>\""));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001261EXTERN char e_empty_file_name_for_percent_or_hash_only_works_with_ph[]
K.Takatab5988e32022-01-16 11:25:26 +00001262 // xgettext:no-c-format
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001263 INIT(= N_("E499: Empty file name for '%' or '#', only works with \":p:h\""));
1264EXTERN char e_evaluates_to_an_empty_string[]
1265 INIT(= N_("E500: Evaluates to an empty string"));
1266EXTERN char e_at_end_of_file[]
1267 INIT(= N_("E501: At end-of-file"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001268 // E502
1269EXTERN char e_is_a_directory[]
1270 INIT(= N_("is a directory"));
1271 // E503
1272EXTERN char e_is_not_file_or_writable_device[]
1273 INIT(= N_("is not a file or writable device"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001274EXTERN char e_str_is_not_file_or_writable_device[]
1275 INIT(= N_("E503: \"%s\" is not a file or writable device"));
Bram Moolenaar80adaa82023-07-07 18:57:40 +01001276EXTERN char e_coffee_currently_not_available[]
1277 INIT(= N_("E503: Coffee is currently not available"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001278 // E504
1279EXTERN char e_is_read_only_cannot_override_W_in_cpoptions[]
1280 INIT(= N_("is read-only (cannot override: \"W\" in 'cpoptions')"));
1281 // E505
1282EXTERN char e_is_read_only_add_bang_to_override[]
1283 INIT(= N_("is read-only (add ! to override)"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001284EXTERN char e_str_is_read_only_add_bang_to_override[]
1285 INIT(= N_("E505: \"%s\" is read-only (add ! to override)"));
dundargocc57b5bc2022-11-02 13:30:51 +00001286EXTERN char e_cant_write_to_backup_file_add_bang_to_override[]
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001287 INIT(= N_("E506: Can't write to backup file (add ! to override)"));
1288EXTERN char e_close_error_for_backup_file_add_bang_to_write_anyway[]
1289 INIT(= N_("E507: Close error for backup file (add ! to write anyway)"));
1290EXTERN char e_cant_read_file_for_backup_add_bang_to_write_anyway[]
1291 INIT(= N_("E508: Can't read file for backup (add ! to write anyway)"));
1292EXTERN char e_cannot_create_backup_file_add_bang_to_write_anyway[]
1293 INIT(= N_("E509: Cannot create backup file (add ! to override)"));
1294EXTERN char e_cant_make_backup_file_add_bang_to_write_anyway[]
1295 INIT(= N_("E510: Can't make backup file (add ! to write anyway)"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001296#ifdef FEAT_NETBEANS_INTG
1297EXTERN char e_netbeans_already_connected[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001298 INIT(= N_("E511: NetBeans already connected"));
Bram Moolenaarb09feaa2022-01-02 20:20:45 +00001299#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001300EXTERN char e_close_failed[]
1301 INIT(= N_("E512: Close failed"));
1302EXTERN char e_write_error_conversion_failed_make_fenc_empty_to_override[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001303 INIT(= N_("E513: Write error, conversion failed (make 'fenc' empty to override)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001304EXTERN char e_write_error_conversion_failed_in_line_nr_make_fenc_empty_to_override[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001305 INIT(= N_("E513: Write error, conversion failed in line %ld (make 'fenc' empty to override)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001306EXTERN char e_write_error_file_system_full[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001307 INIT(= N_("E514: Write error (file system full?)"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001308EXTERN char e_no_buffers_were_unloaded[]
1309 INIT(= N_("E515: No buffers were unloaded"));
1310EXTERN char e_no_buffers_were_deleted[]
1311 INIT(= N_("E516: No buffers were deleted"));
1312EXTERN char e_no_buffers_were_wiped_out[]
1313 INIT(= N_("E517: No buffers were wiped out"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001314EXTERN char e_unknown_option[]
1315 INIT(= N_("E518: Unknown option"));
1316EXTERN char e_option_not_supported[]
1317 INIT(= N_("E519: Option not supported"));
1318EXTERN char e_not_allowed_in_modeline[]
1319 INIT(= N_("E520: Not allowed in a modeline"));
1320EXTERN char e_number_required_after_equal[]
1321 INIT(= N_("E521: Number required after ="));
1322EXTERN char e_number_required_after_str_equal_str[]
1323 INIT(= N_("E521: Number required: &%s = '%s'"));
1324EXTERN char e_not_found_in_termcap[]
1325 INIT(= N_("E522: Not found in termcap"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001326EXTERN char e_not_allowed_here[]
1327 INIT(= N_("E523: Not allowed here"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001328EXTERN char e_missing_colon[]
1329 INIT(= N_("E524: Missing colon"));
1330EXTERN char e_zero_length_string[]
1331 INIT(= N_("E525: Zero length string"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001332#ifdef FEAT_VIMINFO
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001333EXTERN char e_missing_number_after_angle_str_angle[]
1334 INIT(= N_("E526: Missing number after <%s>"));
1335EXTERN char e_missing_comma[]
1336 INIT(= N_("E527: Missing comma"));
1337EXTERN char e_must_specify_a_value[]
1338 INIT(= N_("E528: Must specify a ' value"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001339#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001340EXTERN char e_cannot_set_term_to_empty_string[]
1341 INIT(= N_("E529: Cannot set 'term' to empty string"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001342#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001343EXTERN char e_cannot_change_term_in_GUI[]
1344 INIT(= N_("E530: Cannot change 'term' in the GUI"));
1345EXTERN char e_use_gui_to_start_GUI[]
1346 INIT(= N_("E531: Use \":gui\" to start the GUI"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001347#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001348#ifdef FEAT_NETBEANS_INTG
1349EXTERN char e_highlighting_color_name_too_long_in_defineAnnoType[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001350 INIT(= N_("E532: Highlighting color name too long in defineAnnoType"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001351#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001352#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001353EXTERN char e_cant_select_wide_font[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001354 INIT(= N_("E533: Can't select wide font"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001355EXTERN char e_invalid_wide_font[]
1356 INIT(= N_("E534: Invalid wide font"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001357#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001358EXTERN char e_illegal_character_after_chr[]
1359 INIT(= N_("E535: Illegal character after <%c>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001360#ifdef FEAT_FOLDING
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001361EXTERN char e_comma_required[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001362 INIT(= N_("E536: Comma required"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001363EXTERN char e_commentstring_must_be_empty_or_contain_str[]
1364 INIT(= N_("E537: 'commentstring' must be empty or contain %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001365#endif
Bram Moolenaar24d9c052022-03-04 21:34:31 +00001366EXTERN char e_pattern_found_in_every_line_str[]
1367 INIT(= N_("E538: Pattern found in every line: %s"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001368EXTERN char e_illegal_character_str[]
1369 INIT(= N_("E539: Illegal character <%s>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001370#ifdef FEAT_STL_OPT
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001371EXTERN char e_unclosed_expression_sequence[]
1372 INIT(= N_("E540: Unclosed expression sequence"));
1373// E541 unused
1374EXTERN char e_unbalanced_groups[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001375 INIT(= N_("E542: Unbalanced groups"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001376#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001377#ifdef MSWIN
1378EXTERN char e_not_valid_codepage[]
1379 INIT(= N_("E543: Not a valid codepage"));
1380#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001381#ifdef FEAT_KEYMAP
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001382EXTERN char e_keymap_file_not_found[]
1383 INIT(= N_("E544: Keymap file not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001384#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001385#ifdef CURSOR_SHAPE
Bram Moolenaar475d9522022-01-02 21:46:29 +00001386EXTERN char e_missing_colon_2[]
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001387 INIT(= N_("E545: Missing colon"));
1388EXTERN char e_illegal_mode[]
1389 INIT(= N_("E546: Illegal mode"));
1390#endif
1391#ifdef FEAT_MOUSESHAPE
1392EXTERN char e_illegal_mouseshape[]
1393 INIT(= N_("E547: Illegal mouseshape"));
1394#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00001395#ifdef CURSOR_SHAPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001396EXTERN char e_digit_expected[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001397 INIT(= N_("E548: Digit expected"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001398EXTERN char e_illegal_percentage[]
1399 INIT(= N_("E549: Illegal percentage"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00001400#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001401#ifdef FEAT_PRINTER
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001402EXTERN char e_missing_colon_3[]
1403 INIT(= N_("E550: Missing colon"));
1404EXTERN char e_illegal_component[]
1405 INIT(= N_("E551: Illegal component"));
1406EXTERN char e_digit_expected_2[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001407 INIT(= N_("E552: Digit expected"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001408#endif
1409#ifdef FEAT_QUICKFIX
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001410EXTERN char e_no_more_items[]
1411 INIT(= N_("E553: No more items"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001412#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001413EXTERN char e_syntax_error_in_str_curlies[]
1414 INIT(= N_("E554: Syntax error in %s{...}"));
1415EXTERN char e_at_bottom_of_tag_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001416 INIT(= N_("E555: At bottom of tag stack"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001417EXTERN char e_at_top_of_tag_stack[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001418 INIT(= N_("E556: At top of tag stack"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001419EXTERN char e_cannot_open_termcap_file[]
1420 INIT(= N_("E557: Cannot open termcap file"));
1421EXTERN char e_terminal_entry_not_found_in_terminfo[]
1422 INIT(= N_("E558: Terminal entry not found in terminfo"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001423#if defined(HAVE_TGETENT) && !defined(TERMINFO)
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001424EXTERN char e_terminal_entry_not_found_in_termcap[]
1425 INIT(= N_("E559: Terminal entry not found in termcap"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001426#endif
1427#ifdef FEAT_CSCOPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001428EXTERN char e_usage_cscope_str[]
1429 INIT(= N_("E560: Usage: cs[cope] %s"));
1430EXTERN char e_unknown_cscope_search_type[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001431 INIT(= N_("E561: Unknown cscope search type"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001432EXTERN char e_usage_cstag_ident[]
1433 INIT(= N_("E562: Usage: cstag <ident>"));
1434EXTERN char e_stat_str_error_nr[]
1435 INIT(= N_("E563: stat(%s) error: %d"));
1436EXTERN char e_str_is_not_directory_or_valid_cscope_database[]
1437 INIT(= N_("E564: %s is not a directory or a valid cscope database"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001438#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001439EXTERN char e_not_allowed_to_change_text_or_change_window[]
1440 INIT(= N_("E565: Not allowed to change text or change window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001441#ifdef FEAT_CSCOPE
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001442EXTERN char e_could_not_create_cscope_pipes[]
1443 INIT(= N_("E566: Could not create cscope pipes"));
1444EXTERN char e_no_cscope_connections[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001445 INIT(= N_("E567: No cscope connections"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001446EXTERN char e_duplicate_cscope_database_not_added[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001447 INIT(= N_("E568: Duplicate cscope database not added"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001448// E569 unused
1449EXTERN char e_fatal_error_in_cs_manage_matches[]
RestorerZ68ebcee2023-05-31 17:12:14 +01001450 INIT(= "E570: Fatal error in cs_manage_matches");
Dominique Pellef85a4242022-01-09 12:49:31 +00001451#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001452#ifdef DYNAMIC_TCL
1453EXTERN char e_sorry_this_command_is_disabled_tcl_library_could_not_be_loaded[]
1454 INIT(= N_("E571: Sorry, this command is disabled: the Tcl library could not be loaded."));
1455#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001456#ifdef FEAT_TCL
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001457EXTERN char e_exit_code_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001458 INIT(= N_("E572: Exit code %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001459#endif
1460#ifdef FEAT_CLIENTSERVER
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001461EXTERN char e_invalid_server_id_used_str[]
1462 INIT(= N_("E573: Invalid server id used: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001463#endif
1464#ifdef FEAT_VIMINFO
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001465EXTERN char e_unknown_register_type_nr[]
1466 INIT(= N_("E574: Unknown register type %d"));
1467 // E575
1468EXTERN char e_illegal_starting_char[]
1469 INIT(= N_("Illegal starting char"));
1470 // E576
1471EXTERN char e_nonr_missing_gt[]
1472 INIT(= N_("Missing '>'"));
1473 // E577
1474EXTERN char e_illegal_register_name[]
1475 INIT(= N_("Illegal register name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001476#endif
zeertzjqcfe45652022-05-27 17:26:55 +01001477// E578 unused
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001478#ifdef FEAT_EVAL
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001479EXTERN char e_if_nesting_too_deep[]
1480 INIT(= N_("E579: :if nesting too deep"));
1481EXTERN char e_block_nesting_too_deep[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001482 INIT(= N_("E579: Block nesting too deep"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001483EXTERN char e_endif_without_if[]
1484 INIT(= N_("E580: :endif without :if"));
1485EXTERN char e_else_without_if[]
1486 INIT(= N_("E581: :else without :if"));
1487EXTERN char e_elseif_without_if[]
1488 INIT(= N_("E582: :elseif without :if"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001489EXTERN char e_multiple_else[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001490 INIT(= N_("E583: Multiple :else"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001491EXTERN char e_elseif_after_else[]
1492 INIT(= N_("E584: :elseif after :else"));
1493EXTERN char e_while_for_nesting_too_deep[]
1494 INIT(= N_("E585: :while/:for nesting too deep"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001495EXTERN char e_continue_without_while_or_for[]
1496 INIT(= N_("E586: :continue without :while or :for"));
1497EXTERN char e_break_without_while_or_for[]
1498 INIT(= N_("E587: :break without :while or :for"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001499EXTERN char e_endwhile_without_while[]
1500 INIT(= N_("E588: :endwhile without :while"));
1501EXTERN char e_endfor_without_for[]
1502 INIT(= N_("E588: :endfor without :for"));
Bram Moolenaar0f7a5e72022-01-01 16:31:48 +00001503#endif
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001504EXTERN char e_backupext_and_patchmode_are_equal[]
1505 INIT(= N_("E589: 'backupext' and 'patchmode' are equal"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001506#ifdef FEAT_QUICKFIX
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001507EXTERN char e_preview_window_already_exists[]
1508 INIT(= N_("E590: A preview window already exists"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001509#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001510EXTERN char e_winheight_cannot_be_smaller_than_winminheight[]
1511 INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'"));
1512EXTERN char e_winwidth_cannot_be_smaller_than_winminwidth[]
1513 INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001514EXTERN char e_need_at_least_nr_lines[]
1515 INIT(= N_("E593: Need at least %d lines"));
1516EXTERN char e_need_at_least_nr_columns[]
1517 INIT(= N_("E594: Need at least %d columns"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001518#ifdef FEAT_LINEBREAK
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001519EXTERN char e_showbreak_contains_unprintable_or_wide_character[]
1520 INIT(= N_("E595: 'showbreak' contains unprintable or wide character"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001521#endif
1522#ifdef FEAT_GUI
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001523EXTERN char e_invalid_fonts[]
1524 INIT(= N_("E596: Invalid font(s)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001525# ifdef FEAT_XFONTSET
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001526EXTERN char e_cant_select_fontset[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001527 INIT(= N_("E597: Can't select fontset"));
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001528EXTERN char e_invalid_fontset[]
1529 INIT(= N_("E598: Invalid fontset"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001530# endif
1531#endif
1532#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar1d423ef2022-01-02 21:26:16 +00001533EXTERN char e_value_of_imactivatekey_is_invalid[]
1534 INIT(= N_("E599: Value of 'imactivatekey' is invalid"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001535#endif
Bram Moolenaar0f7a5e72022-01-01 16:31:48 +00001536#ifdef FEAT_EVAL
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001537EXTERN char e_missing_endtry[]
1538 INIT(= N_("E600: Missing :endtry"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001539EXTERN char e_try_nesting_too_deep[]
1540 INIT(= N_("E601: :try nesting too deep"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001541EXTERN char e_endtry_without_try[]
1542 INIT(= N_("E602: :endtry without :try"));
1543EXTERN char e_catch_without_try[]
1544 INIT(= N_("E603: :catch without :try"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001545EXTERN char e_catch_after_finally[]
1546 INIT(= N_("E604: :catch after :finally"));
1547EXTERN char e_exception_not_caught_str[]
1548 INIT(= N_("E605: Exception not caught: %s"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001549EXTERN char e_finally_without_try[]
1550 INIT(= N_("E606: :finally without :try"));
1551EXTERN char e_multiple_finally[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001552 INIT(= N_("E607: Multiple :finally"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001553EXTERN char e_cannot_throw_exceptions_with_vim_prefix[]
1554 INIT(= N_("E608: Cannot :throw exceptions with 'Vim' prefix"));
Bram Moolenaar436b5ad2021-12-31 22:49:24 +00001555#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001556#ifdef FEAT_CSCOPE
1557EXTERN char e_cscope_error_str[]
1558 INIT(= N_("E609: Cscope error: %s"));
1559#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001560EXTERN char e_no_argument_to_delete[]
1561 INIT(= N_("E610: No argument to delete"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001562#ifdef FEAT_EVAL
1563EXTERN char e_using_special_as_number[]
1564 INIT(= N_("E611: Using a Special as a Number"));
1565#endif
1566#ifdef FEAT_SIGNS
1567EXTERN char e_too_many_signs_defined[]
1568 INIT(= N_("E612: Too many signs defined"));
1569#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001570#if defined(MSWIN) && defined(FEAT_PRINTER)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001571EXTERN char e_unknown_printer_font_str[]
1572 INIT(= N_("E613: Unknown printer font: %s"));
1573#endif
LemonBoyafe04662023-08-23 21:08:11 +02001574EXTERN char e_class_required[]
1575 INIT(= N_("E614: Class required"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02001576// E615 unused
LemonBoyafe04662023-08-23 21:08:11 +02001577EXTERN char e_object_required_for_argument_nr[]
1578 INIT(= N_("E616: Object required for argument %d"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001579#ifdef FEAT_GUI_GTK
1580EXTERN char e_cannot_be_changed_in_gtk_GUI[]
1581 INIT(= N_("E617: Cannot be changed in the GTK GUI"));
1582#endif
1583#ifdef FEAT_POSTSCRIPT
1584EXTERN char e_file_str_is_not_postscript_resource_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001585 INIT(= N_("E618: File \"%s\" is not a PostScript resource file"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001586EXTERN char e_file_str_is_not_supported_postscript_resource_file[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001587 INIT(= N_("E619: File \"%s\" is not a supported PostScript resource file"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001588EXTERN char e_unable_to_convert_to_print_encoding_str[]
1589 INIT(= N_("E620: Unable to convert to print encoding \"%s\""));
1590EXTERN char e_str_resource_file_has_wrong_version[]
1591 INIT(= N_("E621: \"%s\" resource file has wrong version"));
1592#endif
1593#ifdef FEAT_CSCOPE
1594EXTERN char e_could_not_fork_for_cscope[]
1595 INIT(= N_("E622: Could not fork for cscope"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001596# ifndef UNIX
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001597EXTERN char e_could_not_spawn_cscope_process[]
1598 INIT(= N_("E623: Could not spawn cscope process"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001599# endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001600#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001601#if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001602EXTERN char e_cant_open_file_str_3[]
1603 INIT(= N_("E624: Can't open file \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00001604#endif
1605#if defined(FEAT_CSCOPE) && !defined(UNIX)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001606EXTERN char e_cannot_open_cscope_database_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001607 INIT(= N_("E625: Cannot open cscope database: %s"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001608EXTERN char e_cannot_get_cscope_database_information[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001609 INIT(= N_("E626: Cannot get cscope database information"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001610#endif
1611#ifdef FEAT_NETBEANS_INTG
1612EXTERN char e_missing_colon_str[]
RestorerZd87dec02023-05-25 20:13:48 +01001613 INIT(= N_("E627: Missing colon: %s"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001614EXTERN char e_missing_bang_or_slash_in_str[]
RestorerZd87dec02023-05-25 20:13:48 +01001615 INIT(= N_("E628: Missing ! or / in: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001616#ifdef NBDEBUG
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001617EXTERN char e_bad_return_from_nb_do_cmd[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001618 INIT(= "E629: Bad return from nb_do_cmd");
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001619#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001620#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001621#ifdef FEAT_JOB_CHANNEL
1622EXTERN char e_str_write_while_not_connected[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001623 INIT(= N_("E630: %s(): Write while not connected"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001624EXTERN char e_str_write_failed[]
Bram Moolenaardf6e0e42022-05-10 17:51:55 +01001625 INIT(= N_("E631: %s(): Write failed"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001626#endif
1627#ifdef FEAT_NETBEANS_INTG
1628EXTERN char e_invalid_buffer_identifier_in_getlength[]
RestorerZd87dec02023-05-25 20:13:48 +01001629 INIT(= N_("E632: Invalid buffer identifier in getLength"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001630EXTERN char e_invalid_buffer_identifier_in_gettext[]
RestorerZd87dec02023-05-25 20:13:48 +01001631 INIT(= N_("E633: Invalid buffer identifier in getText"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001632EXTERN char e_invalid_buffer_identifier_in_remove[]
RestorerZd87dec02023-05-25 20:13:48 +01001633 INIT(= N_("E634: Invalid buffer identifier in remove"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001634EXTERN char e_invalid_buffer_identifier_in_insert[]
RestorerZd87dec02023-05-25 20:13:48 +01001635 INIT(= N_("E635: Invalid buffer identifier in insert"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001636EXTERN char e_invalid_buffer_identifier_in_create[]
RestorerZd87dec02023-05-25 20:13:48 +01001637 INIT(= N_("E636: Invalid buffer identifier in create"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001638EXTERN char e_invalid_buffer_identifier_in_startdocumentlisten[]
RestorerZd87dec02023-05-25 20:13:48 +01001639 INIT(= N_("E637: Invalid buffer identifier in startDocumentListen"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001640EXTERN char e_invalid_buffer_identifier_in_stopdocumentlisten[]
RestorerZd87dec02023-05-25 20:13:48 +01001641 INIT(= N_("E638: Invalid buffer identifier in stopDocumentListen"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001642EXTERN char e_invalid_buffer_identifier_in_settitle[]
RestorerZd87dec02023-05-25 20:13:48 +01001643 INIT(= N_("E639: Invalid buffer identifier in setTitle"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001644EXTERN char e_invalid_buffer_identifier_in_initdone[]
RestorerZd87dec02023-05-25 20:13:48 +01001645 INIT(= N_("E640: Invalid buffer identifier in initDone"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001646EXTERN char e_invalid_buffer_identifier_in_setbuffernumber[]
RestorerZd87dec02023-05-25 20:13:48 +01001647 INIT(= N_("E641: Invalid buffer identifier in setBufferNumber"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001648EXTERN char e_file_str_not_found_in_setbuffernumber[]
RestorerZd87dec02023-05-25 20:13:48 +01001649 INIT(= N_("E642: File %s not found in setBufferNumber"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001650EXTERN char e_invalid_buffer_identifier_in_setfullname[]
RestorerZd87dec02023-05-25 20:13:48 +01001651 INIT(= N_("E643: Invalid buffer identifier in setFullName"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001652EXTERN char e_invalid_buffer_identifier_in_editfile[]
RestorerZd87dec02023-05-25 20:13:48 +01001653 INIT(= N_("E644: Invalid buffer identifier in editFile"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001654EXTERN char e_invalid_buffer_identifier_in_setvisible[]
RestorerZd87dec02023-05-25 20:13:48 +01001655 INIT(= N_("E645: Invalid buffer identifier in setVisible"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001656EXTERN char e_invalid_buffer_identifier_in_setmodified[]
RestorerZd87dec02023-05-25 20:13:48 +01001657 INIT(= N_("E646: Invalid buffer identifier in setModified"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001658EXTERN char e_invalid_buffer_identifier_in_setdot[]
RestorerZd87dec02023-05-25 20:13:48 +01001659 INIT(= N_("E647: Invalid buffer identifier in setDot"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001660EXTERN char e_invalid_buffer_identifier_in_close[]
RestorerZd87dec02023-05-25 20:13:48 +01001661 INIT(= N_("E648: Invalid buffer identifier in close"));
Christian Brabandt5c233432023-11-27 20:04:24 +01001662// E649 unused
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001663EXTERN char e_invalid_buffer_identifier_in_defineannotype[]
RestorerZd87dec02023-05-25 20:13:48 +01001664 INIT(= N_("E650: Invalid buffer identifier in defineAnnoType"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001665EXTERN char e_invalid_buffer_identifier_in_addanno[]
RestorerZd87dec02023-05-25 20:13:48 +01001666 INIT(= N_("E651: Invalid buffer identifier in addAnno"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001667EXTERN char e_invalid_buffer_identifier_in_getanno[]
RestorerZd87dec02023-05-25 20:13:48 +01001668 INIT(= N_("E652: Invalid buffer identifier in getAnno"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001669#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001670// E653 unused
1671EXTERN char e_missing_delimiter_after_search_pattern_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001672 INIT(= N_("E654: Missing delimiter after search pattern: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001673#ifdef FEAT_EVAL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001674EXTERN char e_too_many_symbolic_links_cycle[]
1675 INIT(= N_("E655: Too many symbolic links (cycle?)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001676#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001677#ifdef FEAT_NETBEANS_INTG
1678 // E656
1679EXTERN char e_netbeans_disallows_writes_of_unmodified_buffers[]
1680 INIT(= N_("NetBeans disallows writes of unmodified buffers"));
1681 // E657
1682EXTERN char e_partial_writes_disallowed_for_netbeans_buffers[]
1683 INIT(= N_("Partial writes disallowed for NetBeans buffers"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001684EXTERN char e_netbeans_connection_lost_for_buffer_nr[]
1685 INIT(= N_("E658: NetBeans connection lost for buffer %d"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001686#endif
1687#ifdef FEAT_PYTHON
1688EXTERN char e_cannot_invoke_python_recursively[]
1689 INIT(= N_("E659: Cannot invoke Python recursively"));
1690#endif
1691#ifdef FEAT_NETBEANS_INTG
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001692EXTERN char e_cannot_open_netbeans_connection_info_file[]
1693 INIT(= "E660: Cannot open NetBeans connection info file");
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001694#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001695#ifdef FEAT_MULTI_LANG
1696EXTERN char e_sorry_no_str_help_for_str[]
1697 INIT(= N_("E661: Sorry, no '%s' help for %s"));
1698#endif
1699EXTERN char e_at_start_of_changelist[]
1700 INIT(= N_("E662: At start of changelist"));
1701EXTERN char e_at_end_of_changelist[]
1702 INIT(= N_("E663: At end of changelist"));
1703EXTERN char e_changelist_is_empty[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001704 INIT(= N_("E664: Changelist is empty"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001705#ifdef FEAT_GUI
1706EXTERN char e_cannot_start_gui_no_valid_font_found[]
1707 INIT(= N_("E665: Cannot start GUI, no valid font found"));
1708#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001709#ifdef FEAT_EVAL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001710EXTERN char e_compiler_not_supported_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001711 INIT(= N_("E666: Compiler not supported: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001712#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001713#ifdef HAVE_FSYNC
1714EXTERN char e_fsync_failed[]
1715 INIT(= N_("E667: Fsync failed"));
1716#endif
Bram Moolenaard88be5b2022-01-04 19:57:55 +00001717#ifdef FEAT_NETBEANS_INTG
1718EXTERN char e_wrong_access_mode_for_netbeans_connection_info_file_str[]
1719 INIT(= N_("E668: Wrong access mode for NetBeans connection info file: \"%s\""));
1720#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001721EXTERN char e_unprintable_character_in_group_name[]
1722 INIT(= N_("E669: Unprintable character in group name"));
1723EXTERN char e_mix_of_help_file_encodings_within_language_str[]
1724 INIT(= N_("E670: Mix of help file encodings within a language: %s"));
1725#ifdef FEAT_GUI_MSWIN
1726EXTERN char e_cannot_find_window_title_str[]
1727 INIT(= N_("E671: Cannot find window title \"%s\""));
1728EXTERN char e_unable_to_open_window_inside_mdi_application[]
1729 INIT(= N_("E672: Unable to open window inside MDI application"));
1730#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001731#if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT)
Bram Moolenaara6f79292022-01-04 21:30:47 +00001732EXTERN char e_incompatible_multi_byte_encoding_and_character_set[]
1733 INIT(= N_("E673: Incompatible multi-byte encoding and character set"));
1734EXTERN char e_printmbcharset_cannot_be_empty_with_multi_byte_encoding[]
1735 INIT(= N_("E674: printmbcharset cannot be empty with multi-byte encoding."));
1736EXTERN char e_no_default_font_specified_for_multi_byte_printing[]
1737 INIT(= N_("E675: No default font specified for multi-byte printing."));
Dominique Pellef85a4242022-01-09 12:49:31 +00001738#endif
Bram Moolenaar500a1f92022-09-20 11:49:10 +01001739EXTERN char e_no_matching_autocommands_for_buftype_str_buffer[]
1740 INIT(= N_("E676: No matching autocommands for buftype=%s buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001741#ifdef FEAT_SYN_HL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001742EXTERN char e_error_writing_temp_file[]
1743 INIT(= N_("E677: Error writing temp file"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001744#endif
Bram Moolenaara6f79292022-01-04 21:30:47 +00001745EXTERN char e_invalid_character_after_str_2[]
1746 INIT(= N_("E678: Invalid character after %s%%[dxouU]"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001747#ifdef FEAT_SYN_HL
Bram Moolenaara6f79292022-01-04 21:30:47 +00001748EXTERN char e_recursive_loop_loading_syncolor_vim[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001749 INIT(= N_("E679: Recursive loop loading syncolor.vim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001750#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00001751EXTERN char e_buffer_nr_invalid_buffer_number[]
1752 INIT(= N_("E680: <buffer=%d>: invalid buffer number"));
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +01001753#if defined(FEAT_QUICKFIX) || defined(FEAT_EVAL)
Bram Moolenaara6f79292022-01-04 21:30:47 +00001754EXTERN char e_buffer_is_not_loaded[]
1755 INIT(= N_("E681: Buffer is not loaded"));
Yegappan Lakshmananf93b1c82024-01-04 22:28:46 +01001756#endif
1757#ifdef FEAT_QUICKFIX
Bram Moolenaar74409f62022-01-01 15:58:22 +00001758EXTERN char e_invalid_search_pattern_or_delimiter[]
1759 INIT(= N_("E682: Invalid search pattern or delimiter"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001760EXTERN char e_file_name_missing_or_invalid_pattern[]
1761 INIT(= N_("E683: File name missing or invalid pattern"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001762#endif
Bram Moolenaar096ca732022-01-01 00:55:28 +00001763#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001764EXTERN char e_list_index_out_of_range_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001765 INIT(= N_("E684: List index out of range: %ld"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001766#endif
1767EXTERN char e_internal_error_str[]
1768 INIT(= N_("E685: Internal error: %s"));
1769#ifdef FEAT_EVAL
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001770EXTERN char e_argument_of_str_must_be_list[]
1771 INIT(= N_("E686: Argument of %s must be a List"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001772EXTERN char e_less_targets_than_list_items[]
1773 INIT(= N_("E687: Less targets than List items"));
1774EXTERN char e_more_targets_than_list_items[]
1775 INIT(= N_("E688: More targets than List items"));
Ernie Raelf8da3242023-10-11 21:22:12 +02001776EXTERN char e_index_not_allowed_after_str_str[]
1777 INIT(= N_("E689: Index not allowed after a %s: %s"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001778EXTERN char e_missing_in_after_for[]
1779 INIT(= N_("E690: Missing \"in\" after :for"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001780EXTERN char e_can_only_compare_list_with_list[]
1781 INIT(= N_("E691: Can only compare List with List"));
1782EXTERN char e_invalid_operation_for_list[]
1783 INIT(= N_("E692: Invalid operation for List"));
Ernie Rael2025af12023-12-12 16:58:00 +01001784EXTERN char e_class_or_typealias_required_for_argument_nr[]
1785 INIT(= N_("E693: Class or class typealias required for argument %d"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001786EXTERN char e_invalid_operation_for_funcrefs[]
1787 INIT(= N_("E694: Invalid operation for Funcrefs"));
Bram Moolenaarf47c5a82021-12-19 15:17:21 +00001788EXTERN char e_cannot_index_a_funcref[]
1789 INIT(= N_("E695: Cannot index a Funcref"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001790EXTERN char e_missing_comma_in_list_str[]
1791 INIT(= N_("E696: Missing comma in List: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001792EXTERN char e_missing_end_of_list_rsb_str[]
1793 INIT(= N_("E697: Missing end of List ']': %s"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001794EXTERN char e_variable_nested_too_deep_for_making_copy[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001795 INIT(= N_("E698: Variable nested too deep for making a copy"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001796EXTERN char e_too_many_arguments[]
1797 INIT(= N_("E699: Too many arguments"));
1798EXTERN char e_unknown_function_str_2[]
1799 INIT(= N_("E700: Unknown function: %s"));
1800EXTERN char e_invalid_type_for_len[]
1801 INIT(= N_("E701: Invalid type for len()"));
1802EXTERN char e_sort_compare_function_failed[]
1803 INIT(= N_("E702: Sort compare function failed"));
1804EXTERN char e_using_funcref_as_number[]
1805 INIT(= N_("E703: Using a Funcref as a Number"));
1806EXTERN char e_funcref_variable_name_must_start_with_capital_str[]
1807 INIT(= N_("E704: Funcref variable name must start with a capital: %s"));
1808EXTERN char e_variable_name_conflicts_with_existing_function_str[]
1809 INIT(= N_("E705: Variable name conflicts with existing function: %s"));
zeertzjq4f389e72023-08-17 22:10:40 +02001810EXTERN char e_argument_of_str_must_be_list_string_or_dictionary[]
1811 INIT(= N_("E706: Argument of %s must be a List, String or Dictionary"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001812EXTERN char e_function_name_conflicts_with_variable_str[]
1813 INIT(= N_("E707: Function name conflicts with variable: %s"));
1814EXTERN char e_slice_must_come_last[]
1815 INIT(= N_("E708: [:] must come last"));
1816EXTERN char e_slice_requires_list_or_blob_value[]
1817 INIT(= N_("E709: [:] requires a List or Blob value"));
Bram Moolenaar792f7862020-11-23 08:31:18 +01001818EXTERN char e_list_value_has_more_items_than_targets[]
1819 INIT(= N_("E710: List value has more items than targets"));
1820EXTERN char e_list_value_does_not_have_enough_items[]
1821 INIT(= N_("E711: List value does not have enough items"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001822EXTERN char e_argument_of_str_must_be_list_or_dictionary[]
1823 INIT(= N_("E712: Argument of %s must be a List or Dictionary"));
1824EXTERN char e_cannot_use_empty_key_for_dictionary[]
1825 INIT(= N_("E713: Cannot use empty key for Dictionary"));
1826EXTERN char e_list_required[]
1827 INIT(= N_("E714: List required"));
1828EXTERN char e_dictionary_required[]
1829 INIT(= N_("E715: Dictionary required"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001830EXTERN char e_key_not_present_in_dictionary_str[]
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001831 INIT(= N_("E716: Key not present in Dictionary: \"%s\""));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001832EXTERN char e_dictionary_entry_already_exists[]
1833 INIT(= N_("E717: Dictionary entry already exists"));
1834EXTERN char e_funcref_required[]
1835 INIT(= N_("E718: Funcref required"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02001836EXTERN char e_cannot_slice_dictionary[]
Bram Moolenaar77072282020-09-16 17:55:40 +02001837 INIT(= N_("E719: Cannot slice a Dictionary"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001838EXTERN char e_missing_colon_in_dictionary_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001839 INIT(= N_("E720: Missing colon in Dictionary: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001840EXTERN char e_duplicate_key_in_dictionary_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001841 INIT(= N_("E721: Duplicate key in Dictionary: \"%s\""));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001842EXTERN char e_missing_comma_in_dictionary_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001843 INIT(= N_("E722: Missing comma in Dictionary: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00001844EXTERN char e_missing_dict_end_str[]
Bram Moolenaar74409f62022-01-01 15:58:22 +00001845 INIT(= N_("E723: Missing end of Dictionary '}': %s"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001846EXTERN char e_variable_nested_too_deep_for_displaying[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001847 INIT(= N_("E724: Variable nested too deep for displaying"));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001848EXTERN char e_calling_dict_function_without_dictionary_str[]
1849 INIT(= N_("E725: Calling dict function without Dictionary: %s"));
1850EXTERN char e_stride_is_zero[]
1851 INIT(= N_("E726: Stride is zero"));
1852EXTERN char e_start_past_end[]
1853 INIT(= N_("E727: Start past end"));
1854EXTERN char e_using_dictionary_as_number[]
1855 INIT(= N_("E728: Using a Dictionary as a Number"));
1856EXTERN char e_using_funcref_as_string[]
1857 INIT(= N_("E729: Using a Funcref as a String"));
1858EXTERN char e_using_list_as_string[]
1859 INIT(= N_("E730: Using a List as a String"));
1860EXTERN char e_using_dictionary_as_string[]
1861 INIT(= N_("E731: Using a Dictionary as a String"));
1862EXTERN char e_using_endfor_with_while[]
1863 INIT(= N_("E732: Using :endfor with :while"));
1864EXTERN char e_using_endwhile_with_for[]
1865 INIT(= N_("E733: Using :endwhile with :for"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001866EXTERN char e_wrong_variable_type_for_str_equal[]
1867 INIT(= N_("E734: Wrong variable type for %s="));
Bram Moolenaara6f79292022-01-04 21:30:47 +00001868EXTERN char e_can_only_compare_dictionary_with_dictionary[]
1869 INIT(= N_("E735: Can only compare Dictionary with Dictionary"));
1870EXTERN char e_invalid_operation_for_dictionary[]
1871 INIT(= N_("E736: Invalid operation for Dictionary"));
1872EXTERN char e_key_already_exists_str[]
1873 INIT(= N_("E737: Key already exists: %s"));
1874EXTERN char e_cant_list_variables_for_str[]
1875 INIT(= N_("E738: Can't list variables for %s"));
1876EXTERN char e_cannot_create_directory_str[]
1877 INIT(= N_("E739: Cannot create directory: %s"));
1878EXTERN char e_too_many_arguments_for_function_str_2[]
1879 INIT(= N_("E740: Too many arguments for function %s"));
Bram Moolenaar71b76852021-12-17 20:15:38 +00001880EXTERN char e_value_is_locked[]
1881 INIT(= N_("E741: Value is locked"));
1882EXTERN char e_value_is_locked_str[]
1883 INIT(= N_("E741: Value is locked: %s"));
1884EXTERN char e_cannot_change_value[]
1885 INIT(= N_("E742: Cannot change value"));
1886EXTERN char e_cannot_change_value_of_str[]
1887 INIT(= N_("E742: Cannot change value of %s"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001888EXTERN char e_variable_nested_too_deep_for_unlock[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001889 INIT(= N_("E743: Variable nested too deep for (un)lock"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001890#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00001891#ifdef FEAT_NETBEANS_INTG
1892EXTERN char e_netbeans_does_not_allow_changes_in_read_only_files[]
1893 INIT(= N_("E744: NetBeans does not allow changes in read-only files"));
1894#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001895#ifdef FEAT_EVAL
1896EXTERN char e_using_list_as_number[]
1897 INIT(= N_("E745: Using a List as a Number"));
1898EXTERN char e_function_name_does_not_match_script_file_name_str[]
1899 INIT(= N_("E746: Function name does not match script file name: %s"));
1900#endif
1901EXTERN char e_cannot_change_directory_buffer_is_modified_add_bang_to_override[]
1902 INIT(= N_("E747: Cannot change directory, buffer is modified (add ! to override)"));
1903EXTERN char e_no_previously_used_register[]
1904 INIT(= N_("E748: No previously used register"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00001905EXTERN char e_empty_buffer[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001906 INIT(= N_("E749: Empty buffer"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001907#ifdef FEAT_PROFILE
1908EXTERN char e_first_use_profile_start_fname[]
1909 INIT(= N_("E750: First use \":profile start {fname}\""));
1910#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001911#ifdef FEAT_SPELL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001912EXTERN char e_output_file_name_must_not_have_region_name[]
1913 INIT(= N_("E751: Output file name must not have region name"));
1914EXTERN char e_no_previous_spell_replacement[]
1915 INIT(= N_("E752: No previous spell replacement"));
1916EXTERN char e_not_found_str[]
1917 INIT(= N_("E753: Not found: %s"));
1918EXTERN char e_only_up_to_nr_regions_supported[]
1919 INIT(= N_("E754: Only up to %d regions supported"));
1920EXTERN char e_invalid_region_in_str[]
1921 INIT(= N_("E755: Invalid region in %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001922EXTERN char e_spell_checking_is_not_possible[]
1923 INIT(= N_("E756: Spell checking is not possible"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001924EXTERN char e_this_does_not_look_like_spell_file[]
1925 INIT(= N_("E757: This does not look like a spell file"));
1926EXTERN char e_truncated_spell_file[]
1927 INIT(= N_("E758: Truncated spell file"));
1928EXTERN char e_format_error_in_spell_file[]
1929 INIT(= N_("E759: Format error in spell file"));
1930EXTERN char e_no_word_count_in_str[]
1931 INIT(= N_("E760: No word count in %s"));
1932EXTERN char e_format_error_in_affix_file_fol_low_or_upp[]
1933 INIT(= N_("E761: Format error in affix file FOL, LOW or UPP"));
1934EXTERN char e_character_in_fol_low_or_upp_is_out_of_range[]
1935 INIT(= N_("E762: Character in FOL, LOW or UPP is out of range"));
1936EXTERN char e_word_characters_differ_between_spell_files[]
1937 INIT(= N_("E763: Word characters differ between spell files"));
Bram Moolenaare60b3c42022-01-05 20:40:34 +00001938#endif
Martin Tournoijba43e762022-10-13 22:12:15 +01001939#if defined(FEAT_SYN_HL) || defined(FEAT_COMPL_FUNC) || defined(FEAT_SPELL)
Bram Moolenaar74409f62022-01-01 15:58:22 +00001940EXTERN char e_option_str_is_not_set[]
1941 INIT(= N_("E764: Option '%s' is not set"));
1942#endif
Bram Moolenaare60b3c42022-01-05 20:40:34 +00001943#ifdef FEAT_SPELL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001944EXTERN char e_spellfile_does_not_have_nr_entries[]
1945 INIT(= N_("E765: 'spellfile' does not have %d entries"));
1946#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00001947#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001948EXTERN char e_insufficient_arguments_for_printf[]
1949 INIT(= N_("E766: Insufficient arguments for printf()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001950#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001951EXTERN char e_too_many_arguments_to_printf[]
1952 INIT(= N_("E767: Too many arguments for printf()"));
1953EXTERN char e_swap_file_exists_str_silent_overrides[]
1954 INIT(= N_("E768: Swap file exists: %s (:silent! overrides)"));
1955EXTERN char e_missing_rsb_after_str_lsb[]
1956 INIT(= N_("E769: Missing ] after %s["));
1957#ifdef FEAT_SPELL
1958EXTERN char e_unsupported_section_in_spell_file[]
1959 INIT(= N_("E770: Unsupported section in spell file"));
1960EXTERN char e_old_spell_file_needs_to_be_updated[]
1961 INIT(= N_("E771: Old spell file, needs to be updated"));
1962EXTERN char e_spell_file_is_for_newer_version_of_vim[]
1963 INIT(= N_("E772: Spell file is for newer version of Vim"));
1964#endif
1965EXTERN char e_symlink_loop_for_str[]
1966 INIT(= N_("E773: Symlink loop for \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00001967#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001968EXTERN char e_operatorfunc_is_empty[]
1969 INIT(= N_("E774: 'operatorfunc' is empty"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001970#else
Bram Moolenaar677658a2022-01-05 16:09:06 +00001971EXTERN char e_eval_feature_not_available[]
1972 INIT(= N_("E775: Eval feature not available"));
1973#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00001974#ifdef FEAT_QUICKFIX
1975EXTERN char e_no_location_list[]
1976 INIT(= N_("E776: No location list"));
Bram Moolenaar968443e2022-05-27 21:16:34 +01001977#endif
1978#ifdef FEAT_EVAL
Bram Moolenaar677658a2022-01-05 16:09:06 +00001979EXTERN char e_string_or_list_expected[]
1980 INIT(= N_("E777: String or List expected"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001981#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00001982#ifdef FEAT_SPELL
1983EXTERN char e_this_does_not_look_like_sug_file_str[]
1984 INIT(= N_("E778: This does not look like a .sug file: %s"));
1985EXTERN char e_old_sug_file_needs_to_be_updated_str[]
1986 INIT(= N_("E779: Old .sug file, needs to be updated: %s"));
1987EXTERN char e_sug_file_is_for_newer_version_of_vim_str[]
1988 INIT(= N_("E780: .sug file is for newer version of Vim: %s"));
1989EXTERN char e_sug_file_doesnt_match_spl_file_str[]
1990 INIT(= N_("E781: .sug file doesn't match .spl file: %s"));
1991EXTERN char e_error_while_reading_sug_file_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001992 INIT(= N_("E782: Error while reading .sug file: %s"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001993EXTERN char e_duplicate_char_in_map_entry[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01001994 INIT(= N_("E783: Duplicate char in MAP entry"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00001995#endif
1996EXTERN char e_cannot_close_last_tab_page[]
1997 INIT(= N_("E784: Cannot close last tab page"));
Dominique Pellef85a4242022-01-09 12:49:31 +00001998#ifdef FEAT_EVAL
1999# ifdef FEAT_COMPL_FUNC
Bram Moolenaar677658a2022-01-05 16:09:06 +00002000EXTERN char e_complete_can_only_be_used_in_insert_mode[]
2001 INIT(= N_("E785: complete() can only be used in Insert mode"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002002# endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002003EXTERN char e_range_not_allowed[]
2004 INIT(= N_("E786: Range not allowed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002005#endif
2006#ifdef FEAT_DIFF
Bram Moolenaar677658a2022-01-05 16:09:06 +00002007EXTERN char e_buffer_changed_unexpectedly[]
2008 INIT(= N_("E787: Buffer changed unexpectedly"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002009#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002010EXTERN char e_not_allowed_to_edit_another_buffer_now[]
2011 INIT(= N_("E788: Not allowed to edit another buffer now"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002012#ifdef FEAT_SYN_HL
Bram Moolenaar677658a2022-01-05 16:09:06 +00002013EXTERN char e_error_missing_rsb_str[]
2014 INIT(= N_("E789: Missing ']': %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002015#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002016EXTERN char e_undojoin_is_not_allowed_after_undo[]
2017 INIT(= N_("E790: undojoin is not allowed after undo"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002018#ifdef FEAT_KEYMAP
Bram Moolenaar677658a2022-01-05 16:09:06 +00002019EXTERN char e_empty_keymap_entry[]
2020 INIT(= N_("E791: Empty keymap entry"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002021#endif
2022#ifdef FEAT_MENU
Bram Moolenaar677658a2022-01-05 16:09:06 +00002023EXTERN char e_empty_menu_name[]
2024 INIT(= N_("E792: Empty menu name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002025#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002026#ifdef FEAT_DIFF
2027EXTERN char e_no_other_buffer_in_diff_mode_is_modifiable[]
2028 INIT(= N_("E793: No other buffer in diff mode is modifiable"));
2029#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002030#ifdef FEAT_EVAL
Bram Moolenaar71b76852021-12-17 20:15:38 +00002031EXTERN char e_cannot_set_variable_in_sandbox[]
2032 INIT(= N_("E794: Cannot set variable in the sandbox"));
2033EXTERN char e_cannot_set_variable_in_sandbox_str[]
2034 INIT(= N_("E794: Cannot set variable in the sandbox: \"%s\""));
2035EXTERN char e_cannot_delete_variable[]
2036 INIT(= N_("E795: Cannot delete variable"));
Bram Moolenaar677658a2022-01-05 16:09:06 +00002037EXTERN char e_cannot_delete_variable_str[]
2038 INIT(= N_("E795: Cannot delete variable %s"));
K.Takata2da11a42022-09-10 13:03:12 +01002039#endif
2040#ifdef MSWIN
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002041 // E796
2042EXTERN char e_writing_to_device_disabled_with_opendevice_option[]
2043 INIT(= N_("writing to device disabled with 'opendevice' option"));
zeertzjq09f77232021-10-20 17:21:24 +01002044#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002045#ifdef FEAT_SPELL
2046EXTERN char e_spellfilemising_autocommand_deleted_buffer[]
2047 INIT(= N_("E797: SpellFileMissing autocommand deleted buffer"));
2048#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002049#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar677658a2022-01-05 16:09:06 +00002050EXTERN char e_id_is_reserved_for_match_nr[]
2051 INIT(= N_("E798: ID is reserved for \":match\": %d"));
Bram Moolenaarbb8cac52022-01-05 18:16:53 +00002052EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_1[]
2053 INIT(= N_("E799: Invalid ID: %d (must be greater than or equal to 1)"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002054#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002055#ifndef FEAT_ARABIC
2056EXTERN char e_arabic_cannot_be_used_not_enabled_at_compile_time[]
2057 INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n"));
2058#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002059#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002060EXTERN char e_id_already_taken_nr[]
2061 INIT(= N_("E801: ID already taken: %d"));
Bram Moolenaarbb8cac52022-01-05 18:16:53 +00002062EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_2[]
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002063 INIT(= N_("E802: Invalid ID: %d (must be greater than or equal to 1)"));
2064EXTERN char e_id_not_found_nr[]
2065 INIT(= N_("E803: ID not found: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002066#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002067#ifdef FEAT_EVAL
2068EXTERN char e_cannot_use_percent_with_float[]
K.Takatab5988e32022-01-16 11:25:26 +00002069 // xgettext:no-c-format
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002070 INIT(= N_("E804: Cannot use '%' with Float"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002071EXTERN char e_using_float_as_number[]
2072 INIT(= N_("E805: Using a Float as a Number"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002073EXTERN char e_using_float_as_string[]
Bram Moolenaardde77a72022-08-23 21:41:15 +01002074 INIT(= N_("E806: Using a Float as a String"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002075EXTERN char e_expected_float_argument_for_printf[]
2076 INIT(= N_("E807: Expected Float argument for printf()"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002077EXTERN char e_number_or_float_required[]
2078 INIT(= N_("E808: Number or Float required"));
2079#endif
2080#ifndef FEAT_EVAL
2081EXTERN char e_hashsmall_is_not_available_without_the_eval_feature[]
2082 INIT(= N_("E809: #< is not available without the +eval feature"));
2083#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002084#ifdef FEAT_DIFF
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002085EXTERN char e_cannot_read_or_write_temp_files[]
2086 INIT(= N_("E810: Cannot read or write temp files"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002087#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002088EXTERN char e_not_allowed_to_change_buffer_information_now[]
2089 INIT(= N_("E811: Not allowed to change buffer information now"));
2090EXTERN char e_autocommands_changed_buffer_or_buffer_name[]
2091 INIT(= N_("E812: Autocommands changed buffer or buffer name"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002092EXTERN char e_cannot_close_autocmd_or_popup_window[]
2093 INIT(= N_("E813: Cannot close autocmd or popup window"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002094EXTERN char e_cannot_close_window_only_autocmd_window_would_remain[]
2095 INIT(= N_("E814: Cannot close window, only autocmd window would remain"));
2096#ifdef FEAT_MZSCHEME
2097EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_libraries_could_not_be_loaded[]
2098 INIT(= N_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded."));
2099#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002100#ifdef FEAT_DIFF
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002101EXTERN char e_cannot_read_patch_output[]
2102 INIT(= N_("E816: Cannot read patch output"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002103#endif
2104#ifdef FEAT_CRYPT
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002105EXTERN char e_blowfish_big_little_endian_use_wrong[]
2106 INIT(= N_("E817: Blowfish big/little endian use wrong"));
2107EXTERN char e_sha256_test_failed[]
2108 INIT(= N_("E818: sha256 test failed"));
2109EXTERN char e_blowfish_test_failed[]
2110 INIT(= N_("E819: Blowfish test failed"));
2111EXTERN char e_sizeof_uint32_isnot_four[]
2112 INIT(= N_("E820: sizeof(uint32_t) != 4"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002113EXTERN char e_file_is_encrypted_with_unknown_method[]
2114 INIT(= N_("E821: File is encrypted with unknown method"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002115#endif
2116#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002117EXTERN char e_cannot_open_undo_file_for_reading_str[]
2118 INIT(= N_("E822: Cannot open undo file for reading: %s"));
2119EXTERN char e_not_an_undo_file_str[]
2120 INIT(= N_("E823: Not an undo file: %s"));
2121EXTERN char e_incompatible_undo_file_str[]
2122 INIT(= N_("E824: Incompatible undo file: %s"));
2123EXTERN char e_corrupted_undo_file_str_str[]
2124 INIT(= N_("E825: Corrupted undo file (%s): %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002125# ifdef FEAT_CRYPT
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002126EXTERN char e_undo_file_decryption_failed[]
2127 INIT(= N_("E826: Undo file decryption failed: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002128# else
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002129EXTERN char e_undo_file_is_encrypted_str[]
2130 INIT(= N_("E827: Undo file is encrypted: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002131# endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002132EXTERN char e_cannot_open_undo_file_for_writing_str[]
2133 INIT(= N_("E828: Cannot open undo file for writing: %s"));
2134EXTERN char e_write_error_in_undo_file_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002135 INIT(= N_("E829: Write error in undo file: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002136#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002137EXTERN char e_undo_number_nr_not_found[]
2138 INIT(= N_("E830: Undo number %ld not found"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002139#ifdef FEAT_CRYPT
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002140EXTERN char e_bf_key_init_called_with_empty_password[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002141 INIT(= "E831: bf_key_init() called with empty password");
Dominique Pellef85a4242022-01-09 12:49:31 +00002142# ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002143EXTERN char e_non_encrypted_file_has_encrypted_undo_file_str[]
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002144 INIT(= N_("E832: Non-encrypted file has encrypted undo file: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002145# endif
2146#else
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002147EXTERN char e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption[]
2148 INIT(= N_("E833: %s is encrypted and this version of Vim does not support encryption"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002149#endif
zeertzjq94358a12021-10-20 11:01:15 +01002150EXTERN char e_conflicts_with_value_of_listchars[]
2151 INIT(= N_("E834: Conflicts with value of 'listchars'"));
2152EXTERN char e_conflicts_with_value_of_fillchars[]
2153 INIT(= N_("E835: Conflicts with value of 'fillchars'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002154#ifdef DYNAMIC_PYTHON
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002155EXTERN char e_this_vim_cannot_execute_python_after_using_py3[]
2156 INIT(= N_("E836: This Vim cannot execute :python after using :py3"));
2157EXTERN char e_this_vim_cannot_execute_py3_after_using_python[]
2158 INIT(= N_("E837: This Vim cannot execute :py3 after using :python"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002159#endif
2160#if defined(FEAT_NETBEANS_INTG) && defined(FEAT_GUI)
Bram Moolenaard88be5b2022-01-04 19:57:55 +00002161EXTERN char e_netbeans_is_not_supported_with_this_GUI[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002162 INIT(= N_("E838: NetBeans is not supported with this GUI"));
Bram Moolenaard88be5b2022-01-04 19:57:55 +00002163#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002164// E839 unused
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002165# ifdef FEAT_COMPL_FUNC
2166EXTERN char e_complete_function_deleted_text[]
2167 INIT(= N_("E840: Completion function deleted text"));
2168# endif
2169EXTERN char e_reserved_name_cannot_be_used_for_user_defined_command[]
2170 INIT(= N_("E841: Reserved name, cannot be used for user defined command"));
2171EXTERN char e_no_line_number_to_use_for_slnum[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002172 INIT(= N_("E842: No line number to use for \"<slnum>\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002173#ifdef FEAT_CRYPT
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002174EXTERN char e_error_while_updating_swap_file_crypt[]
2175 INIT(= N_("E843: Error while updating swap file crypt"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002176#endif
2177#ifdef FEAT_CONCEAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002178EXTERN char e_invalid_cchar_value[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002179 INIT(= N_("E844: Invalid cchar value"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002180#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002181#ifdef FEAT_SPELL
2182EXTERN char e_insufficient_memory_word_list_will_be_incomplete[]
2183 INIT(= N_("E845: Insufficient memory, word list will be incomplete"));
2184#endif
2185EXTERN char e_key_code_not_set[]
2186 INIT(= N_("E846: Key code not set"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002187#ifdef FEAT_SYN_HL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002188EXTERN char e_too_many_syntax_includes[]
2189 INIT(= N_("E847: Too many syntax includes"));
2190EXTERN char e_too_many_syntax_clusters[]
2191 INIT(= N_("E848: Too many syntax clusters"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002192#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002193EXTERN char e_too_many_highlight_and_syntax_groups[]
2194 INIT(= N_("E849: Too many highlight and syntax groups"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002195#ifndef FEAT_CLIPBOARD
2196EXTERN char e_invalid_register_name[]
2197 INIT(= N_("E850: Invalid register name"));
2198#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002199#ifdef FEAT_GUI
2200EXTERN char e_failed_to_create_new_process_for_GUI[]
2201 INIT(= N_("E851: Failed to create a new process for the GUI"));
2202EXTERN char e_the_child_process_failed_to_start_GUI[]
2203 INIT(= N_("E852: The child process failed to start the GUI"));
2204#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002205#ifdef FEAT_EVAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002206EXTERN char e_duplicate_argument_name_str[]
2207 INIT(= N_("E853: Duplicate argument name: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002208#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002209EXTERN char e_path_too_long_for_completion[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002210 INIT(= N_("E854: Path too long for completion"));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002211EXTERN char e_autocommands_caused_command_to_abort[]
2212 INIT(= N_("E855: Autocommands caused command to abort"));
zeertzjq09f77232021-10-20 17:21:24 +01002213#ifdef FEAT_EVAL
Bram Moolenaar44d66522020-09-06 22:26:57 +02002214EXTERN char e_assert_fails_second_arg[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002215 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 +00002216EXTERN char e_dictionary_key_str_required[]
2217 INIT(= N_("E857: Dictionary key \"%s\" required"));
2218#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002219#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2220EXTERN char e_eval_did_not_return_valid_python_object[]
2221 INIT(= N_("E858: Eval did not return a valid python object"));
2222EXTERN char e_failed_to_convert_returned_python_object_to_vim_value[]
2223 INIT(= N_("E859: Failed to convert returned python object to a Vim value"));
2224#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002225#ifdef FEAT_PROP_POPUP
Ben Jacksona7704222022-08-20 20:54:51 +01002226EXTERN char e_need_id_and_type_or_types_with_both[]
2227 INIT(= N_("E860: Need 'id' and 'type' or 'types' with 'both'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002228# ifdef FEAT_TERMINAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002229EXTERN char e_cannot_open_second_popup_with_terminal[]
2230 INIT(= N_("E861: Cannot open a second popup with a terminal"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002231# endif
2232#endif
2233#ifdef FEAT_EVAL
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002234EXTERN char e_cannot_use_g_here[]
2235 INIT(= N_("E862: Cannot use g: here"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002236#endif
2237#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002238EXTERN char e_not_allowed_for_terminal_in_popup_window[]
2239 INIT(= N_("E863: Not allowed for a terminal in a popup window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002240#endif
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002241EXTERN char e_percent_hash_can_only_be_followed_by_zero_one_two_automatic_engine_will_be_used[]
K.Takatab5988e32022-01-16 11:25:26 +00002242 // xgettext:no-c-format
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002243 INIT(= N_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used"));
2244EXTERN char e_nfa_regexp_end_encountered_prematurely[]
2245 INIT(= N_("E865: (NFA) Regexp end encountered prematurely"));
2246EXTERN char e_nfa_regexp_misplaced_chr[]
2247 INIT(= N_("E866: (NFA regexp) Misplaced %c"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002248EXTERN char e_nfa_regexp_unknown_operator_z_chr[]
2249 INIT(= N_("E867: (NFA regexp) Unknown operator '\\z%c'"));
2250EXTERN char e_nfa_regexp_unknown_operator_percent_chr[]
2251 INIT(= N_("E867: (NFA regexp) Unknown operator '\\%%%c'"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002252EXTERN char e_error_building_nfa_with_equivalence_class[]
2253 INIT(= N_("E868: Error building NFA with equivalence class!"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002254EXTERN char e_nfa_regexp_unknown_operator_at_chr[]
2255 INIT(= N_("E869: (NFA regexp) Unknown operator '\\@%c'"));
2256EXTERN char e_nfa_regexp_error_reading_repetition_limits[]
2257 INIT(= N_("E870: (NFA regexp) Error reading repetition limits"));
2258EXTERN char e_nfa_regexp_cant_have_multi_follow_multi[]
2259 INIT(= N_("E871: (NFA regexp) Can't have a multi follow a multi"));
2260EXTERN char e_nfa_regexp_too_many_parens[]
2261 INIT(= N_("E872: (NFA regexp) Too many '('"));
2262EXTERN char e_nfa_regexp_proper_termination_error[]
2263 INIT(= N_("E873: (NFA regexp) proper termination error"));
2264EXTERN char e_nfa_regexp_could_not_pop_stack[]
2265 INIT(= N_("E874: (NFA regexp) Could not pop the stack!"));
2266EXTERN char e_nfa_regexp_while_converting_from_postfix_to_nfa_too_many_stats_left_on_stack[]
2267 INIT(= N_("E875: (NFA regexp) (While converting from postfix to NFA), too many states left on stack"));
2268EXTERN char e_nfa_regexp_not_enough_space_to_store_whole_nfa[]
2269 INIT(= N_("E876: (NFA regexp) Not enough space to store the whole NFA"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002270EXTERN char e_nfa_regexp_invalid_character_class_nr[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002271 INIT(= "E877: (NFA regexp) Invalid character class: %d");
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002272EXTERN char e_nfa_regexp_could_not_allocate_memory_for_branch_traversal[]
2273 INIT(= N_("E878: (NFA regexp) Could not allocate memory for branch traversal!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002274#ifdef FEAT_SYN_HL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002275EXTERN char e_nfa_regexp_too_many_z[]
2276 INIT(= N_("E879: (NFA regexp) Too many \\z("));
Dominique Pellef85a4242022-01-09 12:49:31 +00002277#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002278#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2279EXTERN char e_cant_handle_systemexit_of_python_exception_in_vim[]
2280 INIT(= N_("E880: Can't handle SystemExit of python exception in vim"));
2281#endif
2282EXTERN char e_line_count_changed_unexpectedly[]
2283 INIT(= N_("E881: Line count changed unexpectedly"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002284#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002285EXTERN char e_uniq_compare_function_failed[]
2286 INIT(= N_("E882: Uniq compare function failed"));
2287EXTERN char e_search_pattern_and_expression_register_may_not_contain_two_or_more_lines[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002288 INIT(= N_("E883: Search pattern and expression register may not contain two or more lines"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002289EXTERN char e_function_name_cannot_contain_colon_str[]
2290 INIT(= N_("E884: Function name cannot contain a colon: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002291#endif
2292#ifdef FEAT_SIGNS
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002293EXTERN char e_not_possible_to_change_sign_str[]
2294 INIT(= N_("E885: Not possible to change sign %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002295#endif
2296#ifdef FEAT_VIMINFO
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002297EXTERN char e_cant_rename_viminfo_file_to_str[]
2298 INIT(= N_("E886: Can't rename viminfo file to %s!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002299#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00002300#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002301EXTERN char e_sorry_this_command_is_disabled_python_side_module_could_not_be_loaded[]
2302 INIT(= N_("E887: Sorry, this command is disabled, the Python's site module could not be loaded."));
Dominique Pellee764d1b2023-03-12 21:20:59 +00002303#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002304EXTERN char e_nfa_regexp_cannot_repeat_str[]
2305 INIT(= N_("E888: (NFA regexp) cannot repeat %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002306#ifdef FEAT_PROP_POPUP
2307EXTERN char e_number_required[]
2308 INIT(= N_("E889: Number required"));
2309#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002310#ifdef FEAT_SYN_HL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002311EXTERN char e_trailing_char_after_rsb_str_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002312 INIT(= N_("E890: Trailing char after ']': %s]%s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002313#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00002314#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002315EXTERN char e_using_funcref_as_float[]
2316 INIT(= N_("E891: Using a Funcref as a Float"));
2317EXTERN char e_using_string_as_float[]
2318 INIT(= N_("E892: Using a String as a Float"));
2319EXTERN char e_using_list_as_float[]
2320 INIT(= N_("E893: Using a List as a Float"));
2321EXTERN char e_using_dictionary_as_float[]
2322 INIT(= N_("E894: Using a Dictionary as a Float"));
Dominique Pellee764d1b2023-03-12 21:20:59 +00002323#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002324#ifdef FEAT_MZSCHEME
2325EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_racket_base_module_could_not_be_loaded[]
2326 INIT(= N_("E895: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded."));
2327#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002328#ifdef FEAT_EVAL
2329EXTERN char e_argument_of_str_must_be_list_dictionary_or_blob[]
2330 INIT(= N_("E896: Argument of %s must be a List, Dictionary or Blob"));
2331EXTERN char e_list_or_blob_required[]
2332 INIT(= N_("E897: List or Blob required"));
2333#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002334#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002335EXTERN char e_socket_in_channel_connect[]
2336 INIT(= N_("E898: socket() in channel_connect()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002337#endif
2338#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002339EXTERN char e_argument_of_str_must_be_list_or_blob[]
2340 INIT(= N_("E899: Argument of %s must be a List or Blob"));
2341EXTERN char e_maxdepth_must_be_non_negative_number[]
2342 INIT(= N_("E900: maxdepth must be non-negative number"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002343#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002344#ifdef FEAT_JOB_CHANNEL
2345EXTERN char e_getaddrinfo_in_channel_open_str[]
2346 INIT(= N_("E901: getaddrinfo() in channel_open(): %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002347# ifndef FEAT_IPV6
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002348EXTERN char e_gethostbyname_in_channel_open[]
2349 INIT(= N_("E901: gethostbyname() in channel_open()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002350# endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002351EXTERN char e_cannot_connect_to_port[]
2352 INIT(= N_("E902: Cannot connect to port"));
2353EXTERN char e_received_command_with_non_string_argument[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002354 INIT(= N_("E903: Received command with non-string argument"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002355EXTERN char e_last_argument_for_expr_call_must_be_number[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002356 INIT(= N_("E904: Last argument for expr/call must be a number"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002357EXTERN char e_third_argument_for_call_must_be_list[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002358 INIT(= N_("E904: Third argument for call must be a list"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002359EXTERN char e_received_unknown_command_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002360 INIT(= N_("E905: Received unknown command: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002361EXTERN char e_not_an_open_channel[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002362 INIT(= N_("E906: Not an open channel"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002363#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00002364#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002365EXTERN char e_using_special_value_as_float[]
2366 INIT(= N_("E907: Using a special value as a Float"));
Bram Moolenaar68db9962021-05-09 23:19:22 +02002367EXTERN char e_using_invalid_value_as_string_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002368 INIT(= N_("E908: Using an invalid value as a String: %s"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002369EXTERN char e_cannot_index_special_variable[]
2370 INIT(= N_("E909: Cannot index a special variable"));
Bram Moolenaar74409f62022-01-01 15:58:22 +00002371#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002372#ifdef FEAT_JOB_CHANNEL
2373EXTERN char e_using_job_as_number[]
2374 INIT(= N_("E910: Using a Job as a Number"));
2375EXTERN char e_using_job_as_float[]
2376 INIT(= N_("E911: Using a Job as a Float"));
2377EXTERN char e_cannot_use_evalexpr_sendexpr_with_raw_or_nl_channel[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002378 INIT(= N_("E912: Cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002379EXTERN char e_using_channel_as_number[]
2380 INIT(= N_("E913: Using a Channel as a Number"));
2381EXTERN char e_using_channel_as_float[]
2382 INIT(= N_("E914: Using a Channel as a Float"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002383EXTERN char e_in_io_buffer_requires_in_buf_or_in_name_to_be_set[]
2384 INIT(= N_("E915: in_io buffer requires in_buf or in_name to be set"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002385EXTERN char e_not_valid_job[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002386 INIT(= N_("E916: Not a valid job"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002387EXTERN char e_cannot_use_callback_with_str[]
2388 INIT(= N_("E917: Cannot use a callback with %s()"));
2389EXTERN char e_buffer_must_be_loaded_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002390 INIT(= N_("E918: Buffer must be loaded: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002391#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00002392EXTERN char e_directory_not_found_in_str_str[]
2393 INIT(= N_("E919: Directory not found in '%s': \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002394#ifdef FEAT_JOB_CHANNEL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002395EXTERN char e_io_file_requires_name_to_be_set[]
2396 INIT(= N_("E920: _io file requires _name to be set"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002397#endif
2398#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002399EXTERN char e_invalid_callback_argument[]
2400 INIT(= N_("E921: Invalid callback argument"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02002401// E922 unused
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002402EXTERN char e_second_argument_of_function_must_be_list_or_dict[]
2403 INIT(= N_("E923: Second argument of function() must be a list or a dict"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002404#endif
2405#ifdef FEAT_QUICKFIX
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002406EXTERN char e_current_window_was_closed[]
2407 INIT(= N_("E924: Current window was closed"));
2408EXTERN char e_current_quickfix_list_was_changed[]
2409 INIT(= N_("E925: Current quickfix list was changed"));
2410EXTERN char e_current_location_list_was_changed[]
2411 INIT(= N_("E926: Current location list was changed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002412#endif
2413#ifdef FEAT_EVAL
2414# ifdef FEAT_QUICKFIX
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002415EXTERN char e_invalid_action_str_1[]
2416 INIT(= N_("E927: Invalid action: '%s'"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002417# endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002418EXTERN char e_string_required[]
2419 INIT(= N_("E928: String required"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002420#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002421#ifdef FEAT_VIMINFO
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002422EXTERN char e_too_many_viminfo_temp_files_like_str[]
2423 INIT(= N_("E929: Too many viminfo temp files, like %s!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002424#endif
2425#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002426EXTERN char e_cannot_use_redir_inside_execute[]
2427 INIT(= N_("E930: Cannot use :redir inside execute()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002428#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002429EXTERN char e_buffer_cannot_be_registered[]
2430 INIT(= N_("E931: Buffer cannot be registered"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002431#ifdef FEAT_EVAL
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002432EXTERN char e_closure_function_should_not_be_at_top_level_str[]
Bram Moolenaara6f79292022-01-04 21:30:47 +00002433 INIT(= N_("E932: Closure function should not be at top level: %s"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002434EXTERN char e_function_was_deleted_str[]
2435 INIT(= N_("E933: Function was deleted: %s"));
2436#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002437#ifdef FEAT_SIGNS
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002438EXTERN char e_cannot_jump_to_buffer_that_does_not_have_name[]
2439 INIT(= N_("E934: Cannot jump to a buffer that does not have a name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002440#endif
2441#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002442EXTERN char e_invalid_submatch_number_nr[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002443 INIT(= N_("E935: Invalid submatch number: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002444#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002445EXTERN char e_cannot_delete_current_group[]
2446 INIT(= N_("E936: Cannot delete the current group"));
2447EXTERN char e_attempt_to_delete_buffer_that_is_in_use_str[]
2448 INIT(= N_("E937: Attempt to delete a buffer that is in use: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002449#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002450EXTERN char e_duplicate_key_in_json_str[]
2451 INIT(= N_("E938: Duplicate key in JSON: \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00002452#endif
Bram Moolenaar74409f62022-01-01 15:58:22 +00002453EXTERN char e_positive_count_required[]
2454 INIT(= N_("E939: Positive count required"));
Bram Moolenaar3a846e62022-01-01 16:21:00 +00002455#ifdef FEAT_EVAL
2456EXTERN char e_cannot_lock_or_unlock_variable_str[]
2457 INIT(= N_("E940: Cannot lock or unlock variable %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002458# ifdef FEAT_CLIENTSERVER
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002459EXTERN char e_already_started_server[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002460 INIT(= N_("E941: Already started a server"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002461# else
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002462EXTERN char e_clientserver_feature_not_available[]
2463 INIT(= N_("E942: +clientserver feature not available"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002464# endif
2465#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002466EXTERN char e_command_table_needs_to_be_updated_run_make_cmdidxs[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002467 INIT(= "E943: Command table needs to be updated, run 'make cmdidxs'");
Bram Moolenaar677658a2022-01-05 16:09:06 +00002468EXTERN char e_reverse_range_in_character_class[]
2469 INIT(= N_("E944: Reverse range in character class"));
2470EXTERN char e_range_too_large_in_character_class[]
2471 INIT(= N_("E945: Range too large in character class"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002472#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002473EXTERN char e_cannot_make_terminal_with_running_job_modifiable[]
2474 INIT(= N_("E946: Cannot make a terminal with running job modifiable"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002475EXTERN char e_job_still_running_in_buffer_str[]
2476 INIT(= N_("E947: Job still running in buffer \"%s\""));
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002477EXTERN char e_job_still_running[]
2478 INIT(= N_("E948: Job still running"));
2479EXTERN char e_job_still_running_add_bang_to_end_the_job[]
2480 INIT(= N_("E948: Job still running (add ! to end the job)"));
Bram Moolenaar096ca732022-01-01 00:55:28 +00002481#endif
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002482EXTERN char e_file_changed_while_writing[]
2483 INIT(= N_("E949: File changed while writing"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002484EXTERN char e_cannot_convert_between_str_and_str[]
2485 INIT(= N_("E950: Cannot convert between %s and %s"));
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002486EXTERN char e_percent_value_too_large[]
K.Takatab5988e32022-01-16 11:25:26 +00002487 // xgettext:no-c-format
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00002488 INIT(= N_("E951: \\% value too large"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002489#if defined(FEAT_EVAL) && defined(FEAT_QUICKFIX)
Bram Moolenaar74409f62022-01-01 15:58:22 +00002490EXTERN char e_autocommand_caused_recursive_behavior[]
2491 INIT(= N_("E952: Autocommand caused recursive behavior"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002492#endif
2493#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002494EXTERN char e_file_exists_str[]
2495 INIT(= N_("E953: File exists: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002496#endif
2497#if defined(FEAT_TERMGUICOLORS) && defined(FEAT_VTP)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002498EXTERN char e_24_bit_colors_are_not_supported_on_this_environment[]
2499 INIT(= N_("E954: 24-bit colors are not supported on this environment"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002500#endif
2501#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002502EXTERN char e_not_terminal_buffer[]
2503 INIT(= N_("E955: Not a terminal buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002504#endif
Bram Moolenaar677658a2022-01-05 16:09:06 +00002505EXTERN char e_cannot_use_pattern_recursively[]
2506 INIT(= N_("E956: Cannot use pattern recursively"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002507#ifdef FEAT_EVAL
Bram Moolenaar3a846e62022-01-01 16:21:00 +00002508EXTERN char e_invalid_window_number[]
2509 INIT(= N_("E957: Invalid window number"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002510#endif
2511#ifdef FEAT_TERMINAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002512EXTERN char e_job_already_finished[]
2513 INIT(= N_("E958: Job already finished"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002514#endif
2515#ifdef FEAT_DIFF
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002516EXTERN char e_invalid_diff_format[]
2517 INIT(= N_("E959: Invalid diff format."));
2518EXTERN char e_problem_creating_internal_diff[]
2519 INIT(= N_("E960: Problem creating the internal diff"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002520#endif
2521#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002522EXTERN char e_no_line_number_to_use_for_sflnum[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002523 INIT(= N_("E961: No line number to use for \"<sflnum>\""));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002524EXTERN char e_invalid_action_str_2[]
2525 INIT(= N_("E962: Invalid action: '%s'"));
zeertzjqedcba962023-09-24 23:13:51 +02002526EXTERN char e_setting_v_str_to_value_with_wrong_type[]
2527 INIT(= N_("E963: Setting v:%s to value with wrong type"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002528#endif
2529#ifdef FEAT_PROP_POPUP
Bram Moolenaar8dac2ac2021-12-27 20:57:06 +00002530EXTERN char_u e_invalid_column_number_nr[]
2531 INIT(= N_("E964: Invalid column number: %ld"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002532EXTERN char e_missing_property_type_name[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002533 INIT(= N_("E965: Missing property type name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002534#endif
2535#ifdef FEAT_EVAL
Bram Moolenaar8dac2ac2021-12-27 20:57:06 +00002536EXTERN char_u e_invalid_line_number_nr[]
2537 INIT(= N_("E966: Invalid line number: %ld"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002538#endif
2539#ifdef FEAT_PROP_POPUP
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002540EXTERN char e_text_property_info_corrupted[]
RestorerZ68ebcee2023-05-31 17:12:14 +01002541 INIT(= "E967: Text property info corrupted");
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002542EXTERN char e_need_at_least_one_of_id_or_type[]
2543 INIT(= N_("E968: Need at least one of 'id' or 'type'"));
2544EXTERN char e_property_type_str_already_defined[]
2545 INIT(= N_("E969: Property type %s already defined"));
2546EXTERN char e_unknown_highlight_group_name_str[]
2547 INIT(= N_("E970: Unknown highlight group name: '%s'"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002548EXTERN char e_property_type_str_does_not_exist[]
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002549 INIT(= N_("E971: Property type %s does not exist"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002550#endif
2551#ifdef FEAT_EVAL
Bram Moolenaarf1474d82021-12-31 19:59:55 +00002552EXTERN char e_blob_value_does_not_have_right_number_of_bytes[]
2553 INIT(= N_("E972: Blob value does not have the right number of bytes"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002554EXTERN char e_blob_literal_should_have_an_even_number_of_hex_characters[]
2555 INIT(= N_("E973: Blob literal should have an even number of hex characters"));
2556EXTERN char e_using_blob_as_number[]
2557 INIT(= N_("E974: Using a Blob as a Number"));
2558EXTERN char e_using_blob_as_float[]
2559 INIT(= N_("E975: Using a Blob as a Float"));
2560EXTERN char e_using_blob_as_string[]
2561 INIT(= N_("E976: Using a Blob as a String"));
2562EXTERN char e_can_only_compare_blob_with_blob[]
2563 INIT(= N_("E977: Can only compare Blob with Blob"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002564EXTERN char e_invalid_operation_for_blob[]
2565 INIT(= N_("E978: Invalid operation for Blob"));
2566EXTERN char e_blob_index_out_of_range_nr[]
2567 INIT(= N_("E979: Blob index out of range: %ld"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002568# ifndef USE_INPUT_BUF
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002569EXTERN char e_lowlevel_input_not_supported[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002570 INIT(= N_("E980: Lowlevel input not supported"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002571# endif
2572#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002573EXTERN char e_command_not_allowed_in_rvim[]
2574 INIT(= N_("E981: Command not allowed in rvim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002575#if defined(FEAT_TERMINAL) && defined(MSWIN)
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002576EXTERN char e_conpty_is_not_available[]
2577 INIT(= N_("E982: ConPTY is not available"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002578#endif
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002579EXTERN char e_duplicate_argument_str[]
2580 INIT(= N_("E983: Duplicate argument: %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002581EXTERN char e_scriptversion_used_outside_of_sourced_file[]
2582 INIT(= N_("E984: :scriptversion used outside of a sourced file"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002583#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002584EXTERN char e_dot_equal_not_supported_with_script_version_two[]
2585 INIT(= N_("E985: .= is not supported with script version >= 2"));
2586EXTERN char e_cannot_modify_tag_stack_within_tagfunc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002587 INIT(= N_("E986: Cannot modify the tag stack within tagfunc"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002588EXTERN char e_invalid_return_value_from_tagfunc[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002589 INIT(= N_("E987: Invalid return value from tagfunc"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002590#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002591#ifdef GUI_MAY_SPAWN
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002592EXTERN char e_gui_cannot_be_used_cannot_execute_gvim_exe[]
2593 INIT(= N_("E988: GUI cannot be used. Cannot execute gvim.exe."));
Dominique Pellef85a4242022-01-09 12:49:31 +00002594#endif
2595#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002596EXTERN char e_non_default_argument_follows_default_argument[]
2597 INIT(= N_("E989: Non-default argument follows default argument"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002598EXTERN char e_missing_end_marker_str[]
2599 INIT(= N_("E990: Missing end marker '%s'"));
2600EXTERN char e_cannot_use_heredoc_here[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002601 INIT(= N_("E991: Cannot use =<< here"));
Bram Moolenaar269dc632022-01-06 11:43:21 +00002602#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002603EXTERN char e_not_allowed_in_modeline_when_modelineexpr_is_off[]
2604 INIT(= N_("E992: Not allowed in a modeline when 'modelineexpr' is off"));
Bram Moolenaar269dc632022-01-06 11:43:21 +00002605#ifdef FEAT_EVAL
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002606EXTERN char e_window_nr_is_not_popup_window[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01002607 INIT(= N_("E993: Window %d is not a popup window"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002608EXTERN char e_not_allowed_in_popup_window[]
2609 INIT(= N_("E994: Not allowed in a popup window"));
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002610EXTERN char e_cannot_modify_existing_variable[]
2611 INIT(= N_("E995: Cannot modify existing variable"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002612EXTERN char e_cannot_lock_range[]
2613 INIT(= N_("E996: Cannot lock a range"));
2614EXTERN char e_cannot_lock_option[]
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002615 INIT(= N_("E996: Cannot lock an option"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002616EXTERN char e_cannot_lock_list_or_dict[]
2617 INIT(= N_("E996: Cannot lock a list or dict"));
2618EXTERN char e_cannot_lock_environment_variable[]
2619 INIT(= N_("E996: Cannot lock an environment variable"));
2620EXTERN char e_cannot_lock_register[]
2621 INIT(= N_("E996: Cannot lock a register"));
2622#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00002623#ifdef FEAT_PROP_POPUP
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002624EXTERN char e_tabpage_not_found_nr[]
2625 INIT(= N_("E997: Tabpage not found: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002626#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002627#ifdef FEAT_EVAL
Bram Moolenaar460ae5d2022-01-01 14:19:49 +00002628EXTERN char e_reduce_of_an_empty_str_with_no_initial_value[]
2629 INIT(= N_("E998: Reduce of an empty %s with no initial value"));
2630#endif
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002631EXTERN char e_scriptversion_not_supported_nr[]
2632 INIT(= N_("E999: scriptversion not supported: %d"));
2633// E1000 unused
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002634#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002635EXTERN char e_variable_not_found_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002636 INIT(= N_("E1001: Variable not found: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002637EXTERN char e_syntax_error_at_str[]
2638 INIT(= N_("E1002: Syntax error at %s"));
2639EXTERN char e_missing_return_value[]
2640 INIT(= N_("E1003: Missing return value"));
Bram Moolenaare7a73e02021-01-01 19:17:55 +01002641EXTERN char e_white_space_required_before_and_after_str_at_str[]
2642 INIT(= N_("E1004: White space required before and after '%s' at \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002643EXTERN char e_too_many_argument_types[]
2644 INIT(= N_("E1005: Too many argument types"));
2645EXTERN char e_str_is_used_as_argument[]
2646 INIT(= N_("E1006: %s is used as an argument"));
2647EXTERN char e_mandatory_argument_after_optional_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002648 INIT(= N_("E1007: Mandatory argument after optional argument"));
Bram Moolenaar62e0e2e2022-08-20 12:07:58 +01002649EXTERN char e_missing_type_after_str[]
2650 INIT(= N_("E1008: Missing <type> after %s"));
2651EXTERN char e_missing_gt_after_type_str[]
2652 INIT(= N_("E1009: Missing > after type: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002653EXTERN char e_type_not_recognized_str[]
2654 INIT(= N_("E1010: Type not recognized: %s"));
2655EXTERN char e_name_too_long_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002656 INIT(= N_("E1011: Name too long: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002657EXTERN char e_type_mismatch_expected_str_but_got_str[]
Bram Moolenaar5e654232020-09-16 15:22:00 +02002658 INIT(= N_("E1012: Type mismatch; expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002659EXTERN char e_type_mismatch_expected_str_but_got_str_in_str[]
2660 INIT(= N_("E1012: Type mismatch; expected %s but got %s in %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002661EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002662 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002663EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str_in_str[]
2664 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s in %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002665EXTERN char e_invalid_key_str[]
2666 INIT(= N_("E1014: Invalid key: %s"));
Bram Moolenaare4984292020-12-13 14:19:25 +01002667EXTERN char e_name_expected_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002668 INIT(= N_("E1015: Name expected: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002669EXTERN char e_cannot_declare_a_scope_variable_str[]
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002670 INIT(= N_("E1016: Cannot declare a %s variable: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002671EXTERN char e_cannot_declare_an_environment_variable_str[]
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002672 INIT(= N_("E1016: Cannot declare an environment variable: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002673EXTERN char e_variable_already_declared_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002674 INIT(= N_("E1017: Variable already declared: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002675EXTERN char e_cannot_assign_to_constant_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002676 INIT(= N_("E1018: Cannot assign to a constant: %s"));
2677EXTERN char e_can_only_concatenate_to_string[]
2678 INIT(= N_("E1019: Can only concatenate to string"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002679EXTERN char e_cannot_use_operator_on_new_variable_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002680 INIT(= N_("E1020: Cannot use an operator on a new variable: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002681EXTERN char e_const_requires_a_value[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002682 INIT(= N_("E1021: Const requires a value"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002683EXTERN char e_type_or_initialization_required[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002684 INIT(= N_("E1022: Type or initialization required"));
Bram Moolenaard70840e2020-08-22 15:06:35 +02002685EXTERN char e_using_number_as_bool_nr[]
Bram Moolenaar239f8d92021-01-17 13:21:20 +01002686 INIT(= N_("E1023: Using a Number as a Bool: %lld"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002687EXTERN char e_using_number_as_string[]
2688 INIT(= N_("E1024: Using a Number as a String"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002689EXTERN char e_using_rcurly_outside_if_block_scope[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002690 INIT(= N_("E1025: Using } outside of a block scope"));
Bram Moolenaar90887842021-07-27 22:35:42 +02002691#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002692EXTERN char e_missing_rcurly[]
2693 INIT(= N_("E1026: Missing }"));
Bram Moolenaar90887842021-07-27 22:35:42 +02002694#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002695EXTERN char e_missing_return_statement[]
2696 INIT(= N_("E1027: Missing return statement"));
Bram Moolenaare13bdec2020-10-16 23:16:47 +02002697EXTERN char e_compiling_def_function_failed[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002698 INIT(= N_("E1028: Compiling :def function failed"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002699EXTERN char e_expected_str_but_got_str[]
2700 INIT(= N_("E1029: Expected %s but got %s"));
Bram Moolenaarea2d4072020-11-12 12:08:51 +01002701EXTERN char e_using_string_as_number_str[]
2702 INIT(= N_("E1030: Using a String as a Number: \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002703EXTERN char e_cannot_use_void_value[]
2704 INIT(= N_("E1031: Cannot use void value"));
2705EXTERN char e_missing_catch_or_finally[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002706 INIT(= N_("E1032: Missing :catch or :finally"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002707EXTERN char e_catch_unreachable_after_catch_all[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002708 INIT(= N_("E1033: Catch unreachable after catch-all"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002709EXTERN char e_cannot_use_reserved_name_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002710 INIT(= N_("E1034: Cannot use reserved name %s"));
2711EXTERN char e_percent_requires_number_arguments[]
K.Takatab5988e32022-01-16 11:25:26 +00002712 // xgettext:no-c-format
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002713 INIT(= N_("E1035: % requires number arguments"));
2714EXTERN char e_char_requires_number_or_float_arguments[]
2715 INIT(= N_("E1036: %c requires number or float arguments"));
2716EXTERN char e_cannot_use_str_with_str[]
2717 INIT(= N_("E1037: Cannot use \"%s\" with %s"));
2718EXTERN char e_vim9script_can_only_be_used_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002719 INIT(= N_("E1038: \"vim9script\" can only be used in a script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002720EXTERN char e_vim9script_must_be_first_command_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002721 INIT(= N_("E1039: \"vim9script\" must be the first command in a script"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002722#endif
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002723EXTERN char e_cannot_use_scriptversion_after_vim9script[]
2724 INIT(= N_("E1040: Cannot use :scriptversion after :vim9script"));
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01002725#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002726EXTERN char e_redefining_script_item_str[]
Bram Moolenaar6d877fe2022-03-21 19:47:31 +00002727 INIT(= N_("E1041: Redefining script item: \"%s\""));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002728EXTERN char e_export_can_only_be_used_in_vim9script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002729 INIT(= N_("E1042: Export can only be used in vim9script"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002730EXTERN char e_invalid_command_after_export[]
2731 INIT(= N_("E1043: Invalid command after :export"));
2732EXTERN char e_export_with_invalid_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002733 INIT(= N_("E1044: Export with invalid argument"));
Bram Moolenaarfe6fb262022-01-24 18:16:12 +00002734// E1045 not used
2735// E1046 not used
Bram Moolenaara9e3d562021-09-08 12:31:35 +02002736EXTERN char e_syntax_error_in_import_str[]
2737 INIT(= N_("E1047: Syntax error in import: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002738EXTERN char e_item_not_found_in_script_str[]
2739 INIT(= N_("E1048: Item not found in script: %s"));
2740EXTERN char e_item_not_exported_in_script_str[]
2741 INIT(= N_("E1049: Item not exported in script: %s"));
Bram Moolenaareda29c92022-10-02 12:59:00 +01002742#endif
Bram Moolenaar6e2c2c52020-12-25 19:25:45 +01002743EXTERN char e_colon_required_before_range_str[]
2744 INIT(= N_("E1050: Colon required before a range: %s"));
Bram Moolenaareda29c92022-10-02 12:59:00 +01002745#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002746EXTERN char e_wrong_argument_type_for_plus[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002747 INIT(= N_("E1051: Wrong argument type for +"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002748EXTERN char e_cannot_declare_an_option_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002749 INIT(= N_("E1052: Cannot declare an option: %s"));
2750EXTERN char e_could_not_import_str[]
2751 INIT(= N_("E1053: Could not import \"%s\""));
Bram Moolenaar057e84a2021-02-28 16:55:11 +01002752EXTERN char e_variable_already_declared_in_script_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002753 INIT(= N_("E1054: Variable already declared in the script: %s"));
2754EXTERN char e_missing_name_after_dots[]
2755 INIT(= N_("E1055: Missing name after ..."));
2756EXTERN char e_expected_type_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002757 INIT(= N_("E1056: Expected a type: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002758EXTERN char e_missing_enddef[]
2759 INIT(= N_("E1057: Missing :enddef"));
2760EXTERN char e_function_nesting_too_deep[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002761 INIT(= N_("E1058: Function nesting too deep"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002762EXTERN char e_no_white_space_allowed_before_colon_str[]
2763 INIT(= N_("E1059: No white space allowed before colon: %s"));
2764EXTERN char e_expected_dot_after_name_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002765 INIT(= N_("E1060: Expected dot after name: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002766EXTERN char e_cannot_find_function_str[]
2767 INIT(= N_("E1061: Cannot find function %s"));
Bram Moolenaarcc673e72020-08-16 17:33:35 +02002768EXTERN char e_cannot_index_number[]
2769 INIT(= N_("E1062: Cannot index a Number"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002770EXTERN char e_type_mismatch_for_v_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002771 INIT(= N_("E1063: Type mismatch for v: variable"));
Bram Moolenaar021ef352021-12-02 20:44:42 +00002772#endif
Bram Moolenaar9ac38122021-12-02 18:42:33 +00002773EXTERN char e_yank_register_changed_while_using_it[]
2774 INIT(= N_("E1064: Yank register changed while using it"));
Bram Moolenaarb2175222022-03-05 20:24:41 +00002775EXTERN char e_command_cannot_be_shortened_str[]
Bram Moolenaar204852a2022-03-05 12:56:44 +00002776 INIT(= N_("E1065: Command cannot be shortened: %s"));
Bram Moolenaar021ef352021-12-02 20:44:42 +00002777#ifdef FEAT_EVAL
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002778EXTERN char e_cannot_declare_a_register_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002779 INIT(= N_("E1066: Cannot declare a register: %s"));
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002780EXTERN char e_separator_mismatch_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002781 INIT(= N_("E1067: Separator mismatch: %s"));
Bram Moolenaarba98fb52021-02-07 18:06:29 +01002782EXTERN char e_no_white_space_allowed_before_str_str[]
2783 INIT(= N_("E1068: No white space allowed before '%s': %s"));
Bram Moolenaarc3fc75d2021-02-07 15:28:09 +01002784EXTERN char e_white_space_required_after_str_str[]
2785 INIT(= N_("E1069: White space required after '%s': %s"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00002786EXTERN char e_invalid_string_for_import_str[]
2787 INIT(= N_("E1071: Invalid string for :import: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002788EXTERN char e_cannot_compare_str_with_str[]
2789 INIT(= N_("E1072: Cannot compare %s with %s"));
Bram Moolenaar7cb6fc22020-08-21 22:36:47 +02002790EXTERN char e_name_already_defined_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002791 INIT(= N_("E1073: Name already defined: %s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002792EXTERN char e_no_white_space_allowed_after_dot[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002793 INIT(= N_("E1074: No white space allowed after dot"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002794EXTERN char e_namespace_not_supported_str[]
2795 INIT(= N_("E1075: Namespace not supported: %s"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02002796// E1076 unused (was deleted)
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002797EXTERN char e_missing_argument_type_for_str[]
2798 INIT(= N_("E1077: Missing argument type for %s"));
Bram Moolenaarf0775142022-03-04 20:10:38 +00002799#endif
2800EXTERN char e_invalid_command_nested_did_you_mean_plusplus_nested[]
2801 INIT(= N_("E1078: Invalid command \"nested\", did you mean \"++nested\"?"));
2802#ifdef FEAT_EVAL
Bram Moolenaar0e1574c2022-03-03 17:05:35 +00002803EXTERN char e_cannot_declare_variable_on_command_line[]
2804 INIT(= N_("E1079: Cannot declare a variable on the command line"));
Bram Moolenaar8b716f52022-02-15 21:17:56 +00002805EXTERN char e_invalid_assignment[]
2806 INIT(= N_("E1080: Invalid assignment"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002807EXTERN char e_cannot_unlet_str[]
2808 INIT(= N_("E1081: Cannot unlet %s"));
Bram Moolenaarb5d20392022-02-14 21:42:15 +00002809#endif
Bram Moolenaarbc510062022-02-14 21:19:04 +00002810EXTERN char e_command_modifier_without_command[]
2811 INIT(= N_("E1082: Command modifier without command"));
Bram Moolenaarb5d20392022-02-14 21:42:15 +00002812#ifdef FEAT_EVAL
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002813EXTERN char e_missing_backtick[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002814 INIT(= N_("E1083: Missing backtick"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002815EXTERN char e_cannot_delete_vim9_script_function_str[]
2816 INIT(= N_("E1084: Cannot delete Vim9 script function %s"));
2817EXTERN char e_not_callable_type_str[]
2818 INIT(= N_("E1085: Not a callable type: %s"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01002819// E1086 unused
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002820EXTERN char e_cannot_use_index_when_declaring_variable[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002821 INIT(= N_("E1087: Cannot use an index when declaring a variable"));
Bram Moolenaar779aeff2022-02-08 19:12:19 +00002822EXTERN char e_script_cannot_import_itself[]
2823 INIT(= N_("E1088: Script cannot import itself"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002824EXTERN char e_unknown_variable_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002825 INIT(= N_("E1089: Unknown variable: %s"));
Bram Moolenaara9fa8c52023-01-02 18:10:04 +00002826EXTERN char e_cannot_assign_to_argument_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002827 INIT(= N_("E1090: Cannot assign to argument %s"));
2828EXTERN char e_function_is_not_compiled_str[]
2829 INIT(= N_("E1091: Function is not compiled: %s"));
Bram Moolenaar5658ca32022-02-03 20:09:19 +00002830EXTERN char e_cannot_nest_redir[]
2831 INIT(= N_("E1092: Cannot nest :redir"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002832EXTERN char e_expected_nr_items_but_got_nr[]
2833 INIT(= N_("E1093: Expected %d items but got %d"));
2834EXTERN char e_import_can_only_be_used_in_script[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002835 INIT(= N_("E1094: Import can only be used in a script"));
Bram Moolenaara2c00282023-05-14 22:05:15 +01002836EXTERN char e_unreachable_code_after_str[]
2837 INIT(= N_("E1095: Unreachable code after :%s"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002838EXTERN char e_returning_value_in_function_without_return_type[]
2839 INIT(= N_("E1096: Returning a value in a function without a return type"));
2840EXTERN char e_line_incomplete[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002841 INIT(= N_("E1097: Line incomplete"));
Sean Dewar80d73952021-08-04 19:25:54 +02002842EXTERN char e_string_list_or_blob_required[]
2843 INIT(= N_("E1098: String, List or Blob required"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002844EXTERN char e_unknown_error_while_executing_str[]
2845 INIT(= N_("E1099: Unknown error while executing %s"));
Bram Moolenaard82a47d2022-01-05 20:24:39 +00002846EXTERN char e_command_not_supported_in_vim9_script_missing_var_str[]
2847 INIT(= N_("E1100: Command not supported in Vim9 script (missing :var?): %s"));
Bram Moolenaara749a422022-02-12 19:52:25 +00002848EXTERN char e_cannot_declare_script_variable_in_function_str[]
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002849 INIT(= N_("E1101: Cannot declare a script variable in a function: %s"));
2850EXTERN char e_lambda_function_not_found_str[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002851 INIT(= N_("E1102: Lambda function not found: %s"));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002852EXTERN char e_dictionary_not_set[]
2853 INIT(= N_("E1103: Dictionary not set"));
Bram Moolenaar451c2e32020-08-15 16:33:28 +02002854EXTERN char e_missing_gt[]
2855 INIT(= N_("E1104: Missing >"));
2856EXTERN char e_cannot_convert_str_to_string[]
2857 INIT(= N_("E1105: Cannot convert %s to string"));
Bram Moolenaara1d5f9f2023-05-27 13:40:11 +01002858
2859PLURAL_MSG(e_one_argument_too_many, "E1106: One argument too many",
2860 e_nr_arguments_too_many, "E1106: %d arguments too many")
2861
Bram Moolenaar56acb092020-08-16 14:48:19 +02002862EXTERN char e_string_list_dict_or_blob_required[]
2863 INIT(= N_("E1107: String, List, Dict or Blob required"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02002864// E1108 unused
Bram Moolenaar08aac3c2020-08-28 21:04:24 +02002865EXTERN char e_list_item_nr_is_not_list[]
2866 INIT(= N_("E1109: List item %d is not a List"));
2867EXTERN char e_list_item_nr_does_not_contain_3_numbers[]
2868 INIT(= N_("E1110: List item %d does not contain 3 numbers"));
2869EXTERN char e_list_item_nr_range_invalid[]
2870 INIT(= N_("E1111: List item %d range invalid"));
2871EXTERN char e_list_item_nr_cell_width_invalid[]
2872 INIT(= N_("E1112: List item %d cell width invalid"));
2873EXTERN char e_overlapping_ranges_for_nr[]
Bram Moolenaarb06a6d52020-08-28 23:27:20 +02002874 INIT(= N_("E1113: Overlapping ranges for 0x%lx"));
K.Takata71933232023-01-20 16:00:55 +00002875EXTERN char e_only_values_of_0x80_and_higher_supported[]
2876 INIT(= N_("E1114: Only values of 0x80 and higher supported"));
Bram Moolenaar44d66522020-09-06 22:26:57 +02002877EXTERN char e_assert_fails_fourth_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002878 INIT(= N_("E1115: \"assert_fails()\" fourth argument must be a number"));
Bram Moolenaar44d66522020-09-06 22:26:57 +02002879EXTERN char e_assert_fails_fifth_argument[]
Bram Moolenaar77072282020-09-16 17:55:40 +02002880 INIT(= N_("E1116: \"assert_fails()\" fifth argument must be a string"));
Bram Moolenaar8b848ca2020-09-10 22:28:01 +02002881EXTERN char e_cannot_use_bang_with_nested_def[]
2882 INIT(= N_("E1117: Cannot use ! with nested :def"));
Bram Moolenaar70c43d82022-01-26 21:01:15 +00002883EXTERN char e_cannot_change_locked_list[]
2884 INIT(= N_("E1118: Cannot change locked list"));
2885EXTERN char e_cannot_change_locked_list_item[]
2886 INIT(= N_("E1119: Cannot change locked list item"));
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02002887EXTERN char e_cannot_change_dict[]
2888 INIT(= N_("E1120: Cannot change dict"));
2889EXTERN char e_cannot_change_dict_item[]
2890 INIT(= N_("E1121: Cannot change dict item"));
Bram Moolenaar916911f2020-09-16 21:41:53 +02002891EXTERN char e_variable_is_locked_str[]
2892 INIT(= N_("E1122: Variable is locked: %s"));
Bram Moolenaar10e4f122020-09-20 22:43:52 +02002893EXTERN char e_missing_comma_before_argument_str[]
2894 INIT(= N_("E1123: Missing comma before argument: %s"));
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002895EXTERN char e_str_cannot_be_used_in_legacy_vim_script[]
2896 INIT(= N_("E1124: \"%s\" cannot be used in legacy Vim script"));
2897EXTERN char e_final_requires_a_value[]
2898 INIT(= N_("E1125: Final requires a value"));
Bram Moolenaarcfcd0112020-09-27 15:19:27 +02002899EXTERN char e_cannot_use_let_in_vim9_script[]
2900 INIT(= N_("E1126: Cannot use :let in Vim9 script"));
Bram Moolenaarc1f00662020-10-03 13:41:53 +02002901EXTERN char e_missing_name_after_dot[]
2902 INIT(= N_("E1127: Missing name after dot"));
Bram Moolenaar9becdf22020-10-10 21:33:48 +02002903EXTERN char e_endblock_without_block[]
2904 INIT(= N_("E1128: } without {"));
Bram Moolenaar1e021e62020-10-16 20:25:23 +02002905EXTERN char e_throw_with_empty_string[]
2906 INIT(= N_("E1129: Throw with empty string"));
Bram Moolenaar1dcae592020-10-19 19:02:42 +02002907EXTERN char e_cannot_add_to_null_list[]
2908 INIT(= N_("E1130: Cannot add to null list"));
Bram Moolenaar80b0e5e2020-10-19 20:45:36 +02002909EXTERN char e_cannot_add_to_null_blob[]
2910 INIT(= N_("E1131: Cannot add to null blob"));
Bram Moolenaar0d90e722020-11-03 18:20:19 +01002911EXTERN char e_missing_function_argument[]
2912 INIT(= N_("E1132: Missing function argument"));
Bram Moolenaar348be7e2020-11-04 11:36:35 +01002913EXTERN char e_cannot_extend_null_dict[]
2914 INIT(= N_("E1133: Cannot extend a null dict"));
2915EXTERN char e_cannot_extend_null_list[]
2916 INIT(= N_("E1134: Cannot extend a null list"));
Bram Moolenaarea2d4072020-11-12 12:08:51 +01002917EXTERN char e_using_string_as_bool_str[]
2918 INIT(= N_("E1135: Using a String as a Bool: \"%s\""));
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02002919#endif
Bram Moolenaar957cf672020-11-12 14:21:06 +01002920EXTERN char e_cmd_mapping_must_end_with_cr_before_second_cmd[]
Bram Moolenaar806da512021-12-24 19:54:52 +00002921 INIT(= N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>"));
zeertzjq3ab3a862023-05-06 16:22:04 +01002922// E1137 unused
Dominique Pellef85a4242022-01-09 12:49:31 +00002923#ifdef FEAT_EVAL
Bram Moolenaard92cc132020-11-18 17:17:15 +01002924EXTERN char e_using_bool_as_number[]
2925 INIT(= N_("E1138: Using a Bool as a Number"));
Bram Moolenaar2bede172020-11-19 18:53:18 +01002926EXTERN char e_missing_matching_bracket_after_dict_key[]
2927 INIT(= N_("E1139: Missing matching bracket after dict key"));
Bram Moolenaar792f7862020-11-23 08:31:18 +01002928EXTERN char e_for_argument_must_be_sequence_of_lists[]
Bram Moolenaar4d5dfe22021-06-26 13:59:29 +02002929 INIT(= N_("E1140: :for argument must be a sequence of lists"));
Bram Moolenaardc234ca2020-11-28 18:52:33 +01002930EXTERN char e_indexable_type_required[]
2931 INIT(= N_("E1141: Indexable type required"));
Bram Moolenaarb3d83982022-01-27 19:59:47 +00002932EXTERN char e_calling_test_garbagecollect_now_while_v_testing_is_not_set[]
2933 INIT(= N_("E1142: Calling test_garbagecollect_now() while v:testing is not set"));
Bram Moolenaare4984292020-12-13 14:19:25 +01002934EXTERN char e_empty_expression_str[]
Bram Moolenaarb5b94802020-12-13 17:50:20 +01002935 INIT(= N_("E1143: Empty expression: \"%s\""));
Bram Moolenaarb98cec22021-04-25 16:35:55 +02002936EXTERN char e_command_str_not_followed_by_white_space_str[]
2937 INIT(= N_("E1144: Command \"%s\" is not followed by white space: %s"));
Bram Moolenaarb5b94802020-12-13 17:50:20 +01002938EXTERN char e_missing_heredoc_end_marker_str[]
2939 INIT(= N_("E1145: Missing heredoc end marker: %s"));
Bram Moolenaar52c124d2020-12-20 21:43:35 +01002940EXTERN char e_command_not_recognized_str[]
2941 INIT(= N_("E1146: Command not recognized: %s"));
Bram Moolenaar4f5e3972020-12-21 17:30:50 +01002942EXTERN char e_list_not_set[]
2943 INIT(= N_("E1147: List not set"));
2944EXTERN char e_cannot_index_str[]
2945 INIT(= N_("E1148: Cannot index a %s"));
Bram Moolenaar4aab88d2020-12-24 21:56:41 +01002946EXTERN char e_script_variable_invalid_after_reload_in_function_str[]
2947 INIT(= N_("E1149: Script variable is invalid after reload in function %s"));
Bram Moolenaar07a65d22020-12-26 20:09:15 +01002948EXTERN char e_script_variable_type_changed[]
2949 INIT(= N_("E1150: Script variable type changed"));
Bram Moolenaar5178b1b2021-01-01 18:43:51 +01002950EXTERN char e_mismatched_endfunction[]
2951 INIT(= N_("E1151: Mismatched endfunction"));
2952EXTERN char e_mismatched_enddef[]
2953 INIT(= N_("E1152: Mismatched enddef"));
Bram Moolenaar0c357522021-07-18 14:43:43 +02002954EXTERN char e_invalid_operation_for_str[]
2955 INIT(= N_("E1153: Invalid operation for %s"));
Bram Moolenaar99880f92021-01-20 21:23:14 +01002956EXTERN char e_divide_by_zero[]
2957 INIT(= N_("E1154: Divide by zero"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002958#endif
Bram Moolenaar9a046fd2021-01-28 13:47:59 +01002959EXTERN char e_cannot_define_autocommands_for_all_events[]
2960 INIT(= N_("E1155: Cannot define autocommands for ALL events"));
Bram Moolenaar61015162021-01-28 17:56:09 +01002961EXTERN char e_cannot_change_arglist_recursively[]
2962 INIT(= N_("E1156: Cannot change the argument list recursively"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002963#ifdef FEAT_EVAL
Bram Moolenaar0346b792021-01-31 22:18:29 +01002964EXTERN char e_missing_return_type[]
2965 INIT(= N_("E1157: Missing return type"));
Bram Moolenaar3b690062021-02-01 20:14:51 +01002966EXTERN char e_cannot_use_flatten_in_vim9_script[]
Bram Moolenaarfb808622022-01-28 15:01:47 +00002967 INIT(= N_("E1158: Cannot use flatten() in Vim9 script, use flattennew()"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002968#endif
Bram Moolenaar983d83f2021-02-07 12:12:43 +01002969EXTERN char e_cannot_split_window_when_closing_buffer[]
2970 INIT(= N_("E1159: Cannot split a window when closing the buffer"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002971#ifdef FEAT_EVAL
Bram Moolenaara5a1ec12021-02-07 16:05:47 +01002972EXTERN char e_cannot_use_default_for_variable_arguments[]
2973 INIT(= N_("E1160: Cannot use a default for variable arguments"));
Bram Moolenaara8530892021-02-08 21:53:09 +01002974EXTERN char e_cannot_json_encode_str[]
2975 INIT(= N_("E1161: Cannot json encode a %s"));
Bram Moolenaar418a29f2021-02-10 22:23:41 +01002976EXTERN char e_register_name_must_be_one_char_str[]
2977 INIT(= N_("E1162: Register name must be one character: %s"));
Bram Moolenaarf785aa12021-02-11 21:19:34 +01002978EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str[]
2979 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s"));
Bram Moolenaar7a3fe3e2021-07-22 14:58:47 +02002980EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str_in_str[]
2981 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s in %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002982#endif
Bram Moolenaar39f3b142021-02-14 12:57:36 +01002983EXTERN char e_vim9cmd_must_be_followed_by_command[]
2984 INIT(= N_("E1164: vim9cmd must be followed by a command"));
Dominique Pellef85a4242022-01-09 12:49:31 +00002985#ifdef FEAT_EVAL
Bram Moolenaar5b5ae292021-02-20 17:04:02 +01002986EXTERN char e_cannot_use_range_with_assignment_str[]
2987 INIT(= N_("E1165: Cannot use a range with an assignment: %s"));
2988EXTERN char e_cannot_use_range_with_dictionary[]
2989 INIT(= N_("E1166: Cannot use a range with a dictionary"));
Bram Moolenaar057e84a2021-02-28 16:55:11 +01002990EXTERN char e_argument_name_shadows_existing_variable_str[]
2991 INIT(= N_("E1167: Argument name shadows existing variable: %s"));
2992EXTERN char e_argument_already_declared_in_script_str[]
2993 INIT(= N_("E1168: Argument already declared in the script: %s"));
Bram Moolenaarfe6fb262022-01-24 18:16:12 +00002994EXTERN char e_expression_too_recursive_str[]
2995 INIT(= N_("E1169: Expression too recursive: %s"));
Bram Moolenaar3f74c0a2022-08-06 18:12:06 +01002996EXTERN char e_cannot_use_hash_curly_to_start_comment[]
2997 INIT(= N_("E1170: Cannot use #{ to start a comment"));
Bram Moolenaar7a6eaa02021-03-21 20:53:29 +01002998EXTERN char e_missing_end_block[]
2999 INIT(= N_("E1171: Missing } after inline function"));
3000EXTERN char e_cannot_use_default_values_in_lambda[]
3001 INIT(= N_("E1172: Cannot use default values in a lambda"));
Bram Moolenaar7473a842021-12-28 17:55:26 +00003002EXTERN char e_text_found_after_str_str[]
3003 INIT(= N_("E1173: Text found after %s: %s"));
Bram Moolenaarf28f2ac2021-03-22 22:21:26 +01003004EXTERN char e_string_required_for_argument_nr[]
3005 INIT(= N_("E1174: String required for argument %d"));
3006EXTERN char e_non_empty_string_required_for_argument_nr[]
Bram Moolenaar3a0f0922021-03-25 22:22:30 +01003007 INIT(= N_("E1175: Non-empty string required for argument %d"));
3008EXTERN char e_misplaced_command_modifier[]
3009 INIT(= N_("E1176: Misplaced command modifier"));
Bram Moolenaar74e54fc2021-03-26 20:41:29 +01003010EXTERN char e_for_loop_on_str_not_supported[]
3011 INIT(= N_("E1177: For loop on %s not supported"));
Bram Moolenaarb2cb6c82021-03-28 20:38:34 +02003012EXTERN char e_cannot_lock_unlock_local_variable[]
3013 INIT(= N_("E1178: Cannot lock or unlock a local variable"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003014#endif
3015#ifdef FEAT_TERMINAL
Bram Moolenaar9ea7e552021-03-29 21:06:04 +02003016EXTERN char e_failed_to_extract_pwd_from_str_check_your_shell_config[]
3017 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 +00003018#endif
3019#ifdef FEAT_EVAL
Bram Moolenaar2a389082021-04-09 20:24:31 +02003020EXTERN char e_variable_arguments_type_must_be_list_str[]
3021 INIT(= N_("E1180: Variable arguments type must be a list: %s"));
Bram Moolenaar962c43b2021-04-10 17:18:09 +02003022EXTERN char e_cannot_use_underscore_here[]
3023 INIT(= N_("E1181: Cannot use an underscore here"));
Bram Moolenaardea5ab02022-02-23 22:12:02 +00003024EXTERN char e_cannot_define_dict_func_in_vim9_script_str[]
3025 INIT(= N_("E1182: Cannot define a dict function in Vim9 script: %s"));
Bram Moolenaar0e3ff192021-04-14 20:35:23 +02003026EXTERN char e_cannot_use_range_with_assignment_operator_str[]
3027 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003028#endif
3029#ifdef FEAT_EVAL
Bram Moolenaar51e93322021-04-17 20:44:56 +02003030EXTERN char e_blob_not_set[]
3031 INIT(= N_("E1184: Blob not set"));
Bram Moolenaar2d1c57e2021-04-19 20:50:03 +02003032EXTERN char e_missing_redir_end[]
3033 INIT(= N_("E1185: Missing :redir END"));
Bram Moolenaar68db9962021-05-09 23:19:22 +02003034EXTERN char e_expression_does_not_result_in_value_str[]
3035 INIT(= N_("E1186: Expression does not result in a value: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003036#endif
Christian Brabandt1d3a14e2021-05-29 19:53:50 +02003037EXTERN char e_failed_to_source_defaults[]
3038 INIT(= N_("E1187: Failed to source defaults.vim"));
Martin Tournoij7904fa42022-10-04 16:28:45 +01003039#if defined(FEAT_TERMINAL)
Bram Moolenaare5b44862021-05-30 13:54:03 +02003040EXTERN char e_cannot_open_terminal_from_command_line_window[]
3041 INIT(= N_("E1188: Cannot open a terminal from the command line window"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003042#endif
3043#ifdef FEAT_EVAL
Bram Moolenaarc3cb1c92021-06-02 16:47:53 +02003044EXTERN char e_cannot_use_legacy_with_command_str[]
3045 INIT(= N_("E1189: Cannot use :legacy with this command: %s"));
Bram Moolenaara1d5f9f2023-05-27 13:40:11 +01003046
3047PLURAL_MSG(e_one_argument_too_few, "E1190: One argument too few",
3048 e_nr_arguments_too_few, "E1190: %d arguments too few")
3049
Bram Moolenaarb55d6182021-06-08 22:01:53 +02003050EXTERN char e_call_to_function_that_failed_to_compile_str[]
3051 INIT(= N_("E1191: Call to function that failed to compile: %s"));
Bram Moolenaar22db0d52021-06-12 12:16:55 +02003052EXTERN char e_empty_function_name[]
3053 INIT(= N_("E1192: Empty function name"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003054#endif
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003055// libsodium
Dominique Pellef85a4242022-01-09 12:49:31 +00003056#ifdef FEAT_CRYPT
3057# ifndef FEAT_SODIUM
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003058EXTERN char e_libsodium_not_built_in[]
3059 INIT(= N_("E1193: cryptmethod xchacha20 not built into this Vim"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003060# else
3061# if 0
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003062EXTERN char e_libsodium_cannot_encrypt_header[]
3063 INIT(= N_("E1194: Cannot encrypt header, not enough space"));
3064EXTERN char e_libsodium_cannot_encrypt_buffer[]
3065 INIT(= N_("E1195: Cannot encrypt buffer, not enough space"));
3066EXTERN char e_libsodium_cannot_decrypt_header[]
3067 INIT(= N_("E1196: Cannot decrypt header, not enough space"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003068# endif
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003069EXTERN char e_libsodium_cannot_allocate_buffer[]
3070 INIT(= N_("E1197: Cannot allocate_buffer for encryption"));
3071EXTERN char e_libsodium_decryption_failed_header_incomplete[]
3072 INIT(= N_("E1198: Decryption failed: Header incomplete!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003073# if 0
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003074EXTERN char e_libsodium_cannot_decrypt_buffer[]
3075 INIT(= N_("E1199: Cannot decrypt buffer, not enough space"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003076# endif
Dominique Pellecb54bc62021-06-21 20:15:37 +02003077EXTERN char e_libsodium_decryption_failed[]
Christian Brabandt226b28b2021-06-21 21:08:08 +02003078 INIT(= N_("E1200: Decryption failed!"));
Dominique Pellecb54bc62021-06-21 20:15:37 +02003079EXTERN char e_libsodium_decryption_failed_premature[]
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003080 INIT(= N_("E1201: Decryption failed: pre-mature end of file!"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003081# endif
3082#endif
3083#ifdef FEAT_EVAL
Bram Moolenaar22480d12021-06-25 21:31:09 +02003084EXTERN char e_no_white_space_allowed_after_str_str[]
3085 INIT(= N_("E1202: No white space allowed after '%s': %s"));
Ernie Raelf8da3242023-10-11 21:22:12 +02003086EXTERN char e_dot_not_allowed_after_str_str[]
3087 INIT(= N_("E1203: Dot not allowed after a %s: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003088#endif
Bram Moolenaar91ff3d42022-04-04 18:32:32 +01003089EXTERN char e_regexp_number_after_dot_pos_search_chr[]
Bram Moolenaar04db26b2021-07-05 20:15:23 +02003090 INIT(= N_("E1204: No Number allowed after .: '\\%%%c'"));
Bram Moolenaar1594f312021-07-08 16:40:13 +02003091EXTERN char e_no_white_space_allowed_between_option_and[]
3092 INIT(= N_("E1205: No white space allowed between option and"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003093#ifdef FEAT_EVAL
Yegappan Lakshmanan5b739922021-07-10 13:15:41 +02003094EXTERN char e_dict_required_for_argument_nr[]
3095 INIT(= N_("E1206: Dictionary required for argument %d"));
Bram Moolenaarc3235272021-07-10 19:42:03 +02003096EXTERN char e_expression_without_effect_str[]
3097 INIT(= N_("E1207: Expression without an effect: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003098#endif
Bram Moolenaar41a34852021-08-04 16:09:24 +02003099EXTERN char e_complete_used_without_allowing_arguments[]
3100 INIT(= N_("E1208: -complete used without allowing arguments"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003101#ifdef FEAT_EVAL
Bram Moolenaar0f1227f2021-07-11 16:01:58 +02003102EXTERN char e_invalid_value_for_line_number_str[]
3103 INIT(= N_("E1209: Invalid value for a line number: \"%s\""));
Yegappan Lakshmanan1a71d312021-07-15 12:49:58 +02003104EXTERN char e_number_required_for_argument_nr[]
3105 INIT(= N_("E1210: Number required for argument %d"));
Yegappan Lakshmanana9a7c0c2021-07-17 19:11:07 +02003106EXTERN char e_list_required_for_argument_nr[]
3107 INIT(= N_("E1211: List required for argument %d"));
3108EXTERN char e_bool_required_for_argument_nr[]
Bram Moolenaar98c2eae2021-07-19 10:38:49 +02003109 INIT(= N_("E1212: Bool required for argument %d"));
Bram Moolenaar24e93162021-07-18 20:40:33 +02003110EXTERN char e_redefining_imported_item_str[]
Bram Moolenaar60579352021-07-19 21:45:07 +02003111 INIT(= N_("E1213: Redefining imported item \"%s\""));
Dominique Pellef85a4242022-01-09 12:49:31 +00003112#endif
Martin Tournoijba43e762022-10-13 22:12:15 +01003113#if defined(FEAT_DIGRAPHS)
mityu61065042021-07-19 20:07:21 +02003114EXTERN char e_digraph_must_be_just_two_characters_str[]
3115 INIT(= N_("E1214: Digraph must be just two characters: %s"));
3116EXTERN char e_digraph_argument_must_be_one_character_str[]
3117 INIT(= N_("E1215: Digraph must be one character: %s"));
h-east29b85712021-07-26 21:54:04 +02003118EXTERN char e_digraph_setlist_argument_must_be_list_of_lists_with_two_items[]
3119 INIT(= N_("E1216: digraph_setlist() argument must be a list of lists with two items"));
mityu61065042021-07-19 20:07:21 +02003120#endif
Dominique Pellef85a4242022-01-09 12:49:31 +00003121#ifdef FEAT_EVAL
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003122# ifdef FEAT_JOB_CHANNEL
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02003123EXTERN char e_chan_or_job_required_for_argument_nr[]
Yegappan Lakshmanan0ad871d2021-07-23 20:37:56 +02003124 INIT(= N_("E1217: Channel or Job required for argument %d"));
Yegappan Lakshmanan83494b42021-07-20 17:51:51 +02003125EXTERN char e_job_required_for_argument_nr[]
Yegappan Lakshmanan0ad871d2021-07-23 20:37:56 +02003126 INIT(= N_("E1218: Job required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003127# endif
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003128EXTERN char e_float_or_number_required_for_argument_nr[]
3129 INIT(= N_("E1219: Float or Number required for argument %d"));
3130EXTERN char e_string_or_number_required_for_argument_nr[]
3131 INIT(= N_("E1220: String or Number required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003132# ifdef FEAT_JOB_CHANNEL
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003133EXTERN char e_string_or_blob_required_for_argument_nr[]
3134 INIT(= N_("E1221: String or Blob required for argument %d"));
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003135# endif
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003136EXTERN char e_string_or_list_required_for_argument_nr[]
3137 INIT(= N_("E1222: String or List required for argument %d"));
3138EXTERN char e_string_or_dict_required_for_argument_nr[]
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003139 INIT(= N_("E1223: String or Dictionary required for argument %d"));
3140EXTERN char e_string_number_or_list_required_for_argument_nr[]
3141 INIT(= N_("E1224: String, Number or List required for argument %d"));
3142EXTERN char e_string_list_or_dict_required_for_argument_nr[]
3143 INIT(= N_("E1225: String, List or Dictionary required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003144EXTERN char e_list_or_blob_required_for_argument_nr[]
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003145 INIT(= N_("E1226: List or Blob required for argument %d"));
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003146EXTERN char e_list_or_dict_required_for_argument_nr[]
3147 INIT(= N_("E1227: List or Dictionary required for argument %d"));
Bram Moolenaar78db17c2021-07-31 19:12:58 +02003148EXTERN char e_list_dict_or_blob_required_for_argument_nr[]
3149 INIT(= N_("E1228: List, Dictionary or Blob required for argument %d"));
Bram Moolenaard47c3972021-07-28 20:52:13 +02003150EXTERN char e_expected_dictionary_for_using_key_str_but_got_str[]
3151 INIT(= N_("E1229: Expected dictionary for using key \"%s\", but got %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003152#endif
3153#ifdef FEAT_SODIUM
Bram Moolenaar131530a2021-07-29 20:37:49 +02003154EXTERN char e_encryption_sodium_mlock_failed[]
Bram Moolenaar63b91732021-08-05 20:40:03 +02003155 INIT(= N_("E1230: Encryption: sodium_mlock() failed"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003156#endif
Bram Moolenaar63b91732021-08-05 20:40:03 +02003157EXTERN char e_cannot_use_bar_to_separate_commands_here_str[]
3158 INIT(= N_("E1231: Cannot use a bar to separate commands here: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003159#ifdef FEAT_EVAL
Bram Moolenaar26735992021-08-08 14:43:22 +02003160EXTERN char e_argument_of_exists_compiled_must_be_literal_string[]
3161 INIT(= N_("E1232: Argument of exists_compiled() must be a literal string"));
3162EXTERN char e_exists_compiled_can_only_be_used_in_def_function[]
3163 INIT(= N_("E1233: exists_compiled() can only be used in a :def function"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003164#endif
Bram Moolenaardd9de502021-08-15 13:49:42 +02003165EXTERN char e_legacy_must_be_followed_by_command[]
3166 INIT(= N_("E1234: legacy must be followed by a command"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003167#ifdef FEAT_EVAL
Dominique Pelle7765f5c2022-04-10 11:26:53 +01003168// E1235 unused
Bram Moolenaard5f400c2022-01-06 21:10:28 +00003169EXTERN char e_cannot_use_str_itself_it_is_imported[]
3170 INIT(= N_("E1236: Cannot use %s itself, it is imported"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003171#endif
Bram Moolenaarbdcba242021-09-12 20:58:02 +02003172EXTERN char e_no_such_user_defined_command_in_current_buffer_str[]
3173 INIT(= N_("E1237: No such user-defined command in current buffer: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003174#ifdef FEAT_EVAL
Yegappan Lakshmanan5dfe4672021-09-14 17:54:30 +02003175EXTERN char e_blob_required_for_argument_nr[]
3176 INIT(= N_("E1238: Blob required for argument %d"));
3177EXTERN char e_invalid_value_for_blob_nr[]
3178 INIT(= N_("E1239: Invalid value for blob: %d"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003179#endif
Bram Moolenaareeed1c72021-10-10 12:35:17 +01003180EXTERN char e_resulting_text_too_long[]
3181 INIT(= N_("E1240: Resulting text too long"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003182#ifdef FEAT_EVAL
Bram Moolenaar7b829262021-10-13 15:04:34 +01003183EXTERN char e_separator_not_supported_str[]
3184 INIT(= N_("E1241: Separator not supported: %s"));
3185EXTERN char e_no_white_space_allowed_before_separator_str[]
3186 INIT(= N_("E1242: No white space allowed before separator: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003187#endif
Erik S. V. Jansson8b1e7492024-02-24 14:26:52 +01003188#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN)
Dusan Popovic4eeedc02021-10-16 20:52:05 +01003189EXTERN char e_ascii_code_not_in_range[]
3190 INIT(= N_("E1243: ASCII code not in 32-127 range"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003191#endif
3192#ifdef FEAT_EVAL
3193# if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
Drew Vogele30d1022021-10-24 20:35:07 +01003194EXTERN char e_bad_color_string_str[]
3195 INIT(= N_("E1244: Bad color string: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003196# endif
Bram Moolenaarc4492712021-11-22 15:37:15 +00003197EXTERN char e_cannot_expand_sfile_in_vim9_function[]
3198 INIT(= N_("E1245: Cannot expand <sfile> in a Vim9 function"));
Bram Moolenaar04b568b2021-11-22 21:58:41 +00003199EXTERN char e_cannot_find_variable_to_unlock_str[]
3200 INIT(= N_("E1246: Cannot find variable to (un)lock: %s"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003201#endif
Bram Moolenaar03725c52021-11-24 12:17:53 +00003202EXTERN char e_line_number_out_of_range[]
3203 INIT(= N_("E1247: Line number out of range"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003204#ifdef FEAT_EVAL
Bram Moolenaar69c76172021-12-02 16:38:52 +00003205EXTERN char e_closure_called_from_invalid_context[]
3206 INIT(= N_("E1248: Closure called from invalid context"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003207#endif
erw7f7f7aaf2021-12-07 21:29:20 +00003208EXTERN char e_highlight_group_name_too_long[]
3209 INIT(= N_("E1249: Highlight group name too long"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003210#ifdef FEAT_EVAL
rbtnnc479ce02021-12-15 19:14:54 +00003211EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[]
3212 INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob"));
Bram Moolenaar2d877592021-12-16 08:21:09 +00003213EXTERN char e_list_dict_blob_or_string_required_for_argument_nr[]
rbtnn0ccb5842021-12-18 18:33:46 +00003214 INIT(= N_("E1251: List, Dictionary, Blob or String required for argument %d"));
3215EXTERN char e_string_list_or_blob_required_for_argument_nr[]
3216 INIT(= N_("E1252: String, List or Blob required for argument %d"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02003217// E1253 unused
Bram Moolenaara99fb232021-12-20 12:25:03 +00003218EXTERN char e_cannot_use_script_variable_in_for_loop[]
3219 INIT(= N_("E1254: Cannot use script variable in for loop"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003220#endif
Bram Moolenaar806da512021-12-24 19:54:52 +00003221EXTERN char e_cmd_mapping_must_end_with_cr[]
3222 INIT(= N_("E1255: <Cmd> mapping must end with <CR>"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003223#ifdef FEAT_EVAL
Bram Moolenaar223d0a62021-12-25 19:29:21 +00003224EXTERN char e_string_or_function_required_for_argument_nr[]
3225 INIT(= N_("E1256: String or function required for argument %d"));
Bram Moolenaar834d4182022-01-07 13:38:24 +00003226EXTERN char e_imported_script_must_use_as_or_end_in_dot_vim_str[]
3227 INIT(= N_("E1257: Imported script must use \"as\" or end in .vim: %s"));
Bram Moolenaard5f400c2022-01-06 21:10:28 +00003228EXTERN char e_no_dot_after_imported_name_str[]
3229 INIT(= N_("E1258: No '.' after imported name: %s"));
3230EXTERN char e_missing_name_after_imported_name_str[]
3231 INIT(= N_("E1259: Missing name after imported name: %s"));
3232EXTERN char e_cannot_unlet_imported_item_str[]
3233 INIT(= N_("E1260: Cannot unlet an imported item: %s"));
Bram Moolenaar834d4182022-01-07 13:38:24 +00003234EXTERN char e_cannot_import_dot_vim_without_using_as[]
3235 INIT(= N_("E1261: Cannot import .vim without using \"as\""));
Bram Moolenaar7c24dfd2022-01-08 17:03:55 +00003236EXTERN char e_cannot_import_same_script_twice_str[]
3237 INIT(= N_("E1262: Cannot import the same script twice: %s"));
Bram Moolenaard8fe6d32022-01-30 18:40:44 +00003238EXTERN char e_cannot_use_name_with_hash_in_vim9_script_use_export_instead[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01003239 INIT(= N_("E1263: Cannot use name with # in Vim9 script, use export instead"));
Bram Moolenaardc4451d2022-01-09 21:36:37 +00003240EXTERN char e_autoload_import_cannot_use_absolute_or_relative_path[]
3241 INIT(= N_("E1264: Autoload import cannot use absolute or relative path: %s"));
Bram Moolenaarc665dab2022-01-16 19:38:07 +00003242EXTERN char e_cannot_use_partial_here[]
3243 INIT(= N_("E1265: Cannot use a partial here"));
Dominique Pellef85a4242022-01-09 12:49:31 +00003244#endif
Bram Moolenaar63ff72a2022-02-07 13:54:01 +00003245#if defined(FEAT_PYTHON3) && defined(MSWIN)
3246EXTERN char e_critical_error_in_python3_initialization_check_your_installation[]
3247 INIT(= N_("E1266: Critical error in python3 initialization, check your python3 installation"));
3248#endif
Bram Moolenaar3787f262022-02-07 21:54:01 +00003249#ifdef FEAT_EVAL
3250EXTERN char e_function_name_must_start_with_capital_str[]
3251 INIT(= N_("E1267: Function name must start with a capital: %s"));
Bram Moolenaara749a422022-02-12 19:52:25 +00003252EXTERN char e_cannot_use_s_colon_in_vim9_script_str[]
3253 INIT(= N_("E1268: Cannot use s: in Vim9 script: %s"));
Bram Moolenaar75e27d72022-02-13 13:56:29 +00003254EXTERN char e_cannot_create_vim9_script_variable_in_function_str[]
3255 INIT(= N_("E1269: Cannot create a Vim9 script variable in a function: %s"));
Bram Moolenaar525eba02022-03-05 22:07:32 +00003256#endif
Bram Moolenaar9fb7b422022-03-05 21:13:26 +00003257EXTERN char e_cannot_use_s_backslash_in_vim9_script[]
3258 INIT(= N_("E1270: Cannot use :s\\/sub/ in Vim9 script"));
Bram Moolenaar96923b72022-03-15 15:57:04 +00003259#ifdef FEAT_EVAL
3260EXTERN char e_compiling_closure_without_context_str[]
Bram Moolenaarcf030572022-05-06 16:18:41 +01003261 INIT(= N_("E1271: Compiling closure without context: %s"));
Bram Moolenaar4c8b5462022-03-16 20:01:39 +00003262EXTERN char e_using_type_not_in_script_context_str[]
3263 INIT(= N_("E1272: Using type not in a script context: %s"));
Bram Moolenaar96923b72022-03-15 15:57:04 +00003264#endif
Bram Moolenaar91ff3d42022-04-04 18:32:32 +01003265EXTERN char e_nfa_regexp_missing_value_in_chr[]
3266 INIT(= N_("E1273: (NFA regexp) missing value in '\\%%%c'"));
LemonBoy6013d002022-04-09 21:42:10 +01003267EXTERN char e_no_script_file_name_to_substitute_for_script[]
3268 INIT(= N_("E1274: No script file name to substitute for \"<script>\""));
Bram Moolenaar8b91e712022-04-17 15:06:35 +01003269#ifdef FEAT_EVAL
3270EXTERN char e_string_or_function_required_for_arrow_parens_expr[]
3271 INIT(= N_("E1275: String or function required for ->(expr)"));
Ernie Rael51d04d12022-05-04 15:40:22 +01003272EXTERN char e_illegal_map_mode_string_str[]
3273 INIT(= N_("E1276: Illegal map mode string: '%s'"));
Bram Moolenaarc9af6172022-05-04 16:46:54 +01003274# if !defined(FEAT_JOB_CHANNEL)
3275EXTERN char e_channel_job_feature_not_available[]
3276 INIT(= N_("E1277: Channel and job feature is not available"));
3277# endif
LemonBoy2eaef102022-05-06 13:14:50 +01003278EXTERN char e_stray_closing_curly_str[]
3279 INIT(= N_("E1278: Stray '}' without a matching '{': %s"));
3280EXTERN char e_missing_close_curly_str[]
3281 INIT(= N_("E1279: Missing '}': %s"));
Bram Moolenaar8b91e712022-04-17 15:06:35 +01003282#endif
Bram Moolenaar7c824682022-05-08 22:32:58 +01003283#ifdef FEAT_SPELL
3284EXTERN char e_illegal_character_in_word[]
3285 INIT(= N_("E1280: Illegal character in word"));
3286#endif
Christian Brabandt360da402022-05-18 15:04:02 +01003287EXTERN char e_atom_engine_must_be_at_start_of_pattern[]
3288 INIT(= N_("E1281: Atom '\\%%#=%c' must be at the start of the pattern"));
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01003289#ifdef FEAT_EVAL
3290EXTERN char e_bitshift_ops_must_be_number[]
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01003291 INIT(= N_("E1282: Bitshift operands must be numbers"));
dundargocc57b5bc2022-11-02 13:30:51 +00003292EXTERN char e_bitshift_ops_must_be_positive[]
Yegappan Lakshmanane0ff3a72022-05-27 18:05:33 +01003293 INIT(= N_("E1283: Bitshift amount must be a positive number"));
Yegappan Lakshmanana061f342022-05-22 19:13:49 +01003294#endif
Bram Moolenaar83bd7a92022-05-29 17:13:24 +01003295#if defined(FEAT_PROP_POPUP)
3296EXTERN char e_argument_1_list_item_nr_dictionary_required[]
3297 INIT(= N_("E1284: Argument 1, list item %d: Dictionary required"));
3298#endif
Paul Ollis65745772022-06-05 16:55:54 +01003299#ifdef FEAT_RELTIME
3300EXTERN char e_could_not_clear_timeout_str[]
3301 INIT(= N_("E1285: Could not clear timeout: %s"));
3302EXTERN char e_could_not_set_timeout_str[]
3303 INIT(= N_("E1286: Could not set timeout: %s"));
Bram Moolenaar08210f82023-04-13 19:15:54 +01003304#ifndef PROF_NSEC
Paul Ollis65745772022-06-05 16:55:54 +01003305EXTERN char e_could_not_set_handler_for_timeout_str[]
3306 INIT(= N_("E1287: Could not set handler for timeout: %s"));
3307EXTERN char e_could_not_reset_handler_for_timeout_str[]
3308 INIT(= N_("E1288: Could not reset handler for timeout: %s"));
3309EXTERN char e_could_not_check_for_pending_sigalrm_str[]
3310 INIT(= N_("E1289: Could not check for pending SIGALRM: %s"));
3311#endif
Dominique Pellee764d1b2023-03-12 21:20:59 +00003312#endif
Bram Moolenaar44ddf192022-06-21 22:15:25 +01003313#ifdef FEAT_EVAL
3314EXTERN char e_substitute_nesting_too_deep[]
3315 INIT(= N_("E1290: substitute nesting too deep"));
Yegappan Lakshmanan81a3ff92022-07-23 05:04:16 +01003316EXTERN char e_invalid_argument_nr[]
3317 INIT(= N_("E1291: Invalid argument: %ld"));
Bram Moolenaar44ddf192022-06-21 22:15:25 +01003318#endif
Bram Moolenaarc963ec32022-07-24 20:08:01 +01003319EXTERN char e_cmdline_window_already_open[]
3320 INIT(= N_("E1292: Command-line window is already open"));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003321#ifdef FEAT_PROP_POPUP
3322EXTERN char e_cannot_use_negative_id_after_adding_textprop_with_text[]
Bram Moolenaar34d17732022-07-27 13:18:14 +01003323 INIT(= N_("E1293: Cannot use a negative id after adding a textprop with text"));
Bram Moolenaar82b14c12022-08-10 19:50:47 +01003324EXTERN char e_can_only_use_text_align_when_column_is_zero[]
3325 INIT(= N_("E1294: Can only use text_align when column is zero"));
Bram Moolenaar7f9969c2022-07-25 18:13:54 +01003326#endif
Ben Jacksona7704222022-08-20 20:54:51 +01003327#ifdef FEAT_PROP_POPUP
3328EXTERN char e_cannot_specify_both_type_and_types[]
3329 INIT(= N_("E1295: Cannot specify both 'type' and 'types'"));
Bram Moolenaarf396ce82022-08-23 18:39:37 +01003330EXTERN char e_can_only_use_left_padding_when_column_is_zero[]
3331 INIT(= N_("E1296: Can only use left padding when column is zero"));
Ben Jacksona7704222022-08-20 20:54:51 +01003332#endif
Bram Moolenaard83392a2022-09-01 12:22:46 +01003333#ifdef FEAT_EVAL
Yegappan Lakshmanan04c4c572022-08-30 19:48:24 +01003334EXTERN char e_non_null_dict_required_for_argument_nr[]
3335 INIT(= N_("E1297: Non-NULL Dictionary required for argument %d"));
Bram Moolenaard83392a2022-09-01 12:22:46 +01003336EXTERN char e_non_null_list_required_for_argument_nr[]
3337 INIT(= N_("E1298: Non-NULL List required for argument %d"));
3338#endif
Bram Moolenaarccfde4d2022-09-05 19:51:13 +01003339EXTERN char e_window_unexpectedly_close_while_searching_for_tags[]
3340 INIT(= N_("E1299: Window unexpectedly closed while searching for tags"));
Bram Moolenaar86d87252022-09-05 21:21:25 +01003341#ifdef FEAT_EVAL
3342EXTERN char e_cannot_use_partial_with_dictionary_for_defer[]
3343 INIT(= N_("E1300: Cannot use a partial with dictionary for :defer"));
Bakudankun375141e2022-09-09 18:46:47 +01003344EXTERN char e_string_number_list_or_blob_required_for_argument_nr[]
3345 INIT(= N_("E1301: String, Number, List or Blob required for argument %d"));
Bram Moolenaar6de22962022-09-09 21:35:36 +01003346EXTERN char e_script_variable_was_deleted[]
3347 INIT(= N_("E1302: Script variable was deleted"));
Bram Moolenaar55e93662022-09-10 13:52:26 +01003348EXTERN char e_custom_list_completion_function_does_not_return_list_but_str[]
3349 INIT(= N_("E1303: Custom list completion function does not return a List but a %s"));
Bram Moolenaar9510d222022-09-11 15:14:05 +01003350EXTERN char e_cannot_use_type_with_this_variable_str[]
3351 INIT(= N_("E1304: Cannot use type with this variable: %s"));
Bram Moolenaar86d87252022-09-05 21:21:25 +01003352#endif
Bram Moolenaarfb593c52022-09-17 18:57:36 +01003353#ifdef FEAT_PROP_POPUP
3354EXTERN char e_cannot_use_length_endcol_and_endlnum_with_text[]
3355 INIT(= N_("E1305: Cannot use \"length\", \"end_col\" and \"end_lnum\" with \"text\""));
3356#endif
Bram Moolenaarcc341812022-09-19 15:54:34 +01003357#ifdef FEAT_EVAL
3358EXTERN char e_loop_nesting_too_deep[]
3359 INIT(= N_("E1306: Loop nesting too deep"));
Bram Moolenaarfa103972022-09-29 19:14:42 +01003360EXTERN char e_argument_nr_trying_to_modify_const_str[]
3361 INIT(= N_("E1307: Argument %d: Trying to modify a const %s"));
Bram Moolenaar86e67172022-10-31 12:24:12 +00003362EXTERN char e_cannot_resize_window_in_another_tab_page[]
3363 INIT(= N_("E1308: Cannot resize a window in another tab page"));
Bram Moolenaarcc341812022-09-19 15:54:34 +01003364#endif
Bram Moolenaarbf533e42022-11-13 20:43:19 +00003365EXTERN char e_cannot_change_mappings_while_listing[]
3366 INIT(= N_("E1309: Cannot change mappings while listing"));
Bram Moolenaar920d3112022-11-13 21:10:02 +00003367#if defined(FEAT_MENU)
3368EXTERN char e_cannot_change_menus_while_listing[]
3369 INIT(= N_("E1310: Cannot change menus while listing"));
3370#endif
Bram Moolenaarcf2594f2022-11-13 23:30:06 +00003371EXTERN char e_cannot_change_user_commands_while_listing[]
3372 INIT(= N_("E1311: Cannot change user commands while listing"));
Bram Moolenaard63a8552022-11-19 11:41:30 +00003373EXTERN char e_not_allowed_to_change_window_layout_in_this_autocmd[]
3374 INIT(= N_("E1312: Not allowed to change the window layout in this autocmd"));
Bram Moolenaaref2c3252022-11-25 16:31:51 +00003375EXTERN char e_not_allowed_to_add_or_remove_entries_str[]
3376 INIT(= N_("E1313: Not allowed to add or remove entries (%s)"));
Bram Moolenaarc1c365c2022-12-04 20:13:24 +00003377#ifdef FEAT_EVAL
3378EXTERN char e_class_name_must_start_with_uppercase_letter_str[]
3379 INIT(= N_("E1314: Class name must start with an uppercase letter: %s"));
Bram Moolenaar554d0312023-01-05 19:59:18 +00003380EXTERN char e_white_space_required_after_name_str[]
3381 INIT(= N_("E1315: White space required after name: %s"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003382EXTERN char e_class_can_only_be_defined_in_vim9_script[]
3383 INIT(= N_("E1316: Class can only be defined in Vim9 script"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003384EXTERN char e_invalid_object_variable_declaration_str[]
3385 INIT(= N_("E1317: Invalid object variable declaration: %s"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003386EXTERN char e_not_valid_command_in_class_str[]
3387 INIT(= N_("E1318: Not a valid command in a class: %s"));
3388EXTERN char e_using_class_as_number[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003389 INIT(= N_("E1319: Using a Class as a Number"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003390EXTERN char e_using_object_as_number[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003391 INIT(= N_("E1320: Using an Object as a Number"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003392EXTERN char e_using_class_as_float[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003393 INIT(= N_("E1321: Using a Class as a Float"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003394EXTERN char e_using_object_as_float[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003395 INIT(= N_("E1322: Using an Object as a Float"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003396EXTERN char e_using_class_as_string[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003397 INIT(= N_("E1323: Using a Class as a String"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003398EXTERN char e_using_object_as_string[]
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003399 INIT(= N_("E1324: Using an Object as a String"));
Bram Moolenaar00b28d62022-12-08 15:32:33 +00003400EXTERN char e_method_not_found_on_class_str_str[]
Ernie Raeld4802ec2023-10-20 11:59:00 +02003401 INIT(= N_("E1325: Method \"%s\" not found in class \"%s\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003402EXTERN char e_variable_not_found_on_object_str_str[]
Ernie Raeld4802ec2023-10-20 11:59:00 +02003403 INIT(= N_("E1326: Variable \"%s\" not found in object \"%s\""));
Bram Moolenaarffdaca92022-12-09 21:41:48 +00003404EXTERN char e_object_required_found_str[]
3405 INIT(= N_("E1327: Object required, found %s"));
Bram Moolenaar65b0d162022-12-13 18:43:22 +00003406EXTERN char e_constructor_default_value_must_be_vnone_str[]
3407 INIT(= N_("E1328: Constructor default value must be v:none: %s"));
Doug Kearns74da0ee2023-12-14 20:26:26 +01003408EXTERN char e_invalid_class_variable_declaration_str[]
3409 INIT(= N_("E1329: Invalid class variable declaration: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003410EXTERN char e_invalid_type_for_object_variable_str[]
3411 INIT(= N_("E1330: Invalid type for object variable: %s"));
Yegappan Lakshmanane5437c52023-12-16 14:11:19 +01003412EXTERN char e_public_must_be_followed_by_var_static_final_or_const[]
3413 INIT(= N_("E1331: Public must be followed by \"var\" or \"static\" or \"final\" or \"const\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003414EXTERN char e_public_variable_name_cannot_start_with_underscore_str[]
3415 INIT(= N_("E1332: Public variable name cannot start with underscore: %s"));
Ernie Rael03042a22023-11-11 08:53:32 +01003416EXTERN char e_cannot_access_protected_variable_str[]
3417 INIT(= N_("E1333: Cannot access protected variable \"%s\" in class \"%s\""));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003418// E1334 unused
RestorerZ7fe8f432023-09-24 23:21:24 +02003419EXTERN char e_variable_is_not_writable_str[]
Ernie Rael696270b2023-09-21 16:42:28 +02003420 INIT(= N_("E1335: Variable \"%s\" in class \"%s\" is not writable"));
Bram Moolenaarc1c365c2022-12-04 20:13:24 +00003421#endif
Christian Brabandt9aee8ec2022-12-16 16:41:23 +00003422EXTERN char e_internal_error_shortmess_too_long[]
RestorerZ68ebcee2023-05-31 17:12:14 +01003423 INIT(= "E1336: Internal error: shortmess too long");
Bram Moolenaard505d172022-12-18 21:42:55 +00003424#ifdef FEAT_EVAL
RestorerZ7fe8f432023-09-24 23:21:24 +02003425EXTERN char e_class_variable_str_not_found_in_class_str[]
3426 INIT(= N_("E1337: Class variable \"%s\" not found in class \"%s\""));
Yegappan Lakshmanan00cd1822023-09-18 19:56:49 +02003427// E1338 unused
Bram Moolenaard505d172022-12-18 21:42:55 +00003428#endif
Bram Moolenaar4ce1f992022-12-19 13:31:06 +00003429#ifdef FEAT_PROP_POPUP
3430EXTERN char e_cannot_add_textprop_with_text_after_using_textprop_with_negative_id[]
3431 INIT(= N_("E1339: Cannot add a textprop with text after using a textprop with a negative id"));
3432#endif
Bram Moolenaar993dbc32023-01-01 20:31:30 +00003433#ifdef FEAT_EVAL
3434EXTERN char e_argument_already_declared_in_class_str[]
3435 INIT(= N_("E1340: Argument already declared in the class: %s"));
3436EXTERN char e_variable_already_declared_in_class_str[]
3437 INIT(= N_("E1341: Variable already declared in the class: %s"));
Bram Moolenaar554d0312023-01-05 19:59:18 +00003438EXTERN char e_interface_can_only_be_defined_in_vim9_script[]
3439 INIT(= N_("E1342: Interface can only be defined in Vim9 script"));
3440EXTERN char e_interface_name_must_start_with_uppercase_letter_str[]
3441 INIT(= N_("E1343: Interface name must start with an uppercase letter: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003442EXTERN char e_cannot_initialize_variable_in_interface[]
3443 INIT(= N_("E1344: Cannot initialize a variable in an interface"));
Bram Moolenaar554d0312023-01-05 19:59:18 +00003444EXTERN char e_not_valid_command_in_interface_str[]
3445 INIT(= N_("E1345: Not a valid command in an interface: %s"));
Bram Moolenaar94674f22023-01-06 18:42:20 +00003446EXTERN char e_interface_name_not_found_str[]
3447 INIT(= N_("E1346: Interface name not found: %s"));
3448EXTERN char e_not_valid_interface_str[]
3449 INIT(= N_("E1347: Not a valid interface: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003450EXTERN char e_variable_str_of_interface_str_not_implemented[]
3451 INIT(= N_("E1348: Variable \"%s\" of interface \"%s\" is not implemented"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003452EXTERN char e_method_str_of_interface_str_not_implemented[]
3453 INIT(= N_("E1349: Method \"%s\" of interface \"%s\" is not implemented"));
Bram Moolenaardf8f9472023-01-07 14:51:03 +00003454EXTERN char e_duplicate_implements[]
3455 INIT(= N_("E1350: Duplicate \"implements\""));
3456EXTERN char e_duplicate_interface_after_implements_str[]
3457 INIT(= N_("E1351: Duplicate interface after \"implements\": %s"));
Bram Moolenaar83677162023-01-08 19:54:10 +00003458EXTERN char e_duplicate_extends[]
3459 INIT(= N_("E1352: Duplicate \"extends\""));
3460EXTERN char e_class_name_not_found_str[]
3461 INIT(= N_("E1353: Class name not found: %s"));
3462EXTERN char e_cannot_extend_str[]
3463 INIT(= N_("E1354: Cannot extend %s"));
Bram Moolenaar58b40092023-01-11 15:59:05 +00003464EXTERN char e_duplicate_function_str[]
3465 INIT(= N_("E1355: Duplicate function: %s"));
3466EXTERN char e_super_must_be_followed_by_dot[]
3467 INIT(= N_("E1356: \"super\" must be followed by a dot"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003468EXTERN char e_using_super_not_in_class_method[]
3469 INIT(= N_("E1357: Using \"super\" not in a class method"));
Bram Moolenaar6aa09372023-01-11 17:59:38 +00003470EXTERN char e_using_super_not_in_child_class[]
3471 INIT(= N_("E1358: Using \"super\" not in a child class"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003472EXTERN char e_cannot_define_new_method_in_abstract_class[]
3473 INIT(= N_("E1359: Cannot define a \"new\" method in an abstract class"));
Bram Moolenaar552bdca2023-02-17 21:08:50 +00003474EXTERN char e_using_null_object[]
3475 INIT(= N_("E1360: Using a null object"));
Bram Moolenaar993dbc32023-01-01 20:31:30 +00003476#endif
Bram Moolenaar5b9f5722023-02-19 20:49:38 +00003477EXTERN char e_cannot_use_color_none_did_you_mean_none[]
3478 INIT(= N_("E1361: Cannot use color \"none\", did you mean \"NONE\"?"));
Bram Moolenaarc4e1b862023-02-26 18:58:23 +00003479#ifdef FEAT_EVAL
3480EXTERN char e_cannot_use_non_null_object[]
3481 INIT(= N_("E1362: Cannot use a non-null object"));
Ernie Raelf77a7f72023-03-03 15:05:30 +00003482EXTERN char e_incomplete_type[]
3483 INIT(= N_("E1363: Incomplete type"));
Bram Moolenaarc4e1b862023-02-26 18:58:23 +00003484#endif
Bram Moolenaarb67ba032023-04-22 21:14:26 +01003485EXTERN char e_warning_pointer_block_corrupted[]
3486 INIT(= N_("E1364: Warning: Pointer block corrupted"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003487#ifdef FEAT_EVAL
RestorerZ7fe8f432023-09-24 23:21:24 +02003488EXTERN char e_cannot_use_a_return_type_with_new_method[]
3489 INIT(= N_("E1365: Cannot use a return type with the \"new\" method"));
Ernie Rael03042a22023-11-11 08:53:32 +01003490EXTERN char e_cannot_access_protected_method_str[]
3491 INIT(= N_("E1366: Cannot access protected method: %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003492EXTERN char e_variable_str_of_interface_str_has_different_access[]
3493 INIT(= N_("E1367: Access level of variable \"%s\" of interface \"%s\" is different"));
Yegappan Lakshmanane5437c52023-12-16 14:11:19 +01003494EXTERN char e_static_must_be_followed_by_var_def_final_or_const[]
3495 INIT(= N_("E1368: Static must be followed by \"var\" or \"def\" or \"final\" or \"const\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003496EXTERN char e_duplicate_variable_str[]
3497 INIT(= N_("E1369: Duplicate variable: %s"));
3498EXTERN char e_cannot_define_new_method_as_static[]
3499 INIT(= N_("E1370: Cannot define a \"new\" method as static"));
Yegappan Lakshmananef9e3f82023-11-02 20:43:57 +01003500EXTERN char e_abstract_must_be_followed_by_def[]
3501 INIT(= N_("E1371: Abstract must be followed by \"def\""));
Yegappan Lakshmanan7bcd25c2023-09-08 19:27:51 +02003502EXTERN char e_abstract_method_in_concrete_class[]
3503 INIT(= N_("E1372: Abstract method \"%s\" cannot be defined in a concrete class"));
3504EXTERN char e_abstract_method_str_not_found[]
3505 INIT(= N_("E1373: Abstract method \"%s\" is not implemented"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003506EXTERN char e_class_variable_str_accessible_only_inside_class_str[]
3507 INIT(= N_("E1374: Class variable \"%s\" accessible only inside class \"%s\""));
3508EXTERN char e_class_variable_str_accessible_only_using_class_str[]
3509 INIT(= N_("E1375: Class variable \"%s\" accessible only using class \"%s\""));
3510EXTERN char e_object_variable_str_accessible_only_using_object_str[]
3511 INIT(= N_("E1376: Object variable \"%s\" accessible only using class \"%s\" object"));
Yegappan Lakshmananc30a90d2023-09-15 20:14:55 +02003512EXTERN char e_method_str_of_class_str_has_different_access[]
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003513 INIT(= N_("E1377: Access level of method \"%s\" is different in class \"%s\""));
Yegappan Lakshmanan00cd1822023-09-18 19:56:49 +02003514EXTERN char e_static_member_not_supported_in_interface[]
3515 INIT(= N_("E1378: Static member not supported in an interface"));
Ernie Rael03042a22023-11-11 08:53:32 +01003516EXTERN char e_protected_variable_not_supported_in_interface[]
3517 INIT(= N_("E1379: Protected variable not supported in an interface"));
3518EXTERN char e_protected_method_not_supported_in_interface[]
3519 INIT(= N_("E1380: Protected method not supported in an interface"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003520EXTERN char e_interface_cannot_use_implements[]
3521 INIT(= N_("E1381: Interface cannot use \"implements\""));
RestorerZ7fe8f432023-09-24 23:21:24 +02003522EXTERN char e_variable_str_type_mismatch_expected_str_but_got_str[]
3523 INIT(= N_("E1382: Variable \"%s\": type mismatch, expected %s but got %s"));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003524EXTERN char e_method_str_type_mismatch_expected_str_but_got_str[]
3525 INIT(= N_("E1383: Method \"%s\": type mismatch, expected %s but got %s"));
RestorerZ7fe8f432023-09-24 23:21:24 +02003526EXTERN char e_class_method_str_accessible_only_inside_class_str[]
3527 INIT(= N_("E1384: Class method \"%s\" accessible only inside class \"%s\""));
3528EXTERN char e_class_method_str_accessible_only_using_class_str[]
3529 INIT(= N_("E1385: Class method \"%s\" accessible only using class \"%s\""));
3530EXTERN char e_object_method_str_accessible_only_using_object_str[]
3531 INIT(= N_("E1386: Object method \"%s\" accessible only using class \"%s\" object"));
Yegappan Lakshmananb90e3bc2023-09-28 23:06:48 +02003532EXTERN char e_public_variable_not_supported_in_interface[]
Yegappan Lakshmanan2dede3d2023-09-27 19:02:01 +02003533 INIT(= N_("E1387: Public variable not supported in an interface"));
3534EXTERN char e_public_keyword_not_supported_for_method[]
3535 INIT(= N_("E1388: Public keyword not supported for a method"));
3536EXTERN char e_missing_name_after_implements[]
3537 INIT(= N_("E1389: Missing name after implements"));
h-eastdb385522023-09-28 22:18:19 +02003538EXTERN char e_cannot_use_an_object_variable_except_with_the_new_method_str[]
3539 INIT(= N_("E1390: Cannot use an object variable \"this.%s\" except with the \"new\" method"));
Ernie Raelee865f32023-09-29 19:53:55 +02003540EXTERN char e_cannot_lock_object_variable_str[]
3541 INIT(= N_("E1391: Cannot (un)lock variable \"%s\" in class \"%s\""));
3542EXTERN char e_cannot_lock_class_variable_str[]
3543 INIT(= N_("E1392: Cannot (un)lock class variable \"%s\" in class \"%s\""));
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003544EXTERN char e_type_can_only_be_defined_in_vim9_script[]
3545 INIT(= N_("E1393: Type can only be defined in Vim9 script"));
3546EXTERN char e_type_name_must_start_with_uppercase_letter_str[]
3547 INIT(= N_("E1394: Type name must start with an uppercase letter: %s"));
Yegappan Lakshmananfeaccd22023-10-28 15:53:55 +02003548EXTERN char e_cannot_modify_typealias[]
3549 INIT(= N_("E1395: Type alias \"%s\" cannot be modified"));
Yegappan Lakshmananec3cebb2023-10-27 19:35:26 +02003550EXTERN char e_typealias_already_exists_for_str[]
3551 INIT(= N_("E1396: Type alias \"%s\" already exists"));
3552EXTERN char e_missing_typealias_name[]
3553 INIT(= N_("E1397: Missing type alias name"));
3554EXTERN char e_missing_typealias_type[]
3555 INIT(= N_("E1398: Missing type alias type"));
3556EXTERN char e_type_can_only_be_used_in_script[]
3557 INIT(= N_("E1399: Type can only be used in a script"));
Yegappan Lakshmananfeaccd22023-10-28 15:53:55 +02003558EXTERN char e_using_typealias_as_number[]
3559 INIT(= N_("E1400: Using type alias \"%s\" as a Number"));
3560EXTERN char e_using_typealias_as_float[]
3561 INIT(= N_("E1401: Using type alias \"%s\" as a Float"));
3562EXTERN char e_using_typealias_as_string[]
3563 INIT(= N_("E1402: Using type alias \"%s\" as a String"));
Ernie Rael9ed53752023-12-11 17:40:46 +01003564EXTERN char e_using_typealias_as_value_str[]
Yegappan Lakshmananfeaccd22023-10-28 15:53:55 +02003565 INIT(= N_("E1403: Type alias \"%s\" cannot be used as a value"));
Yegappan Lakshmanan2b358ad2023-11-02 20:57:32 +01003566EXTERN char e_abstract_cannot_be_used_in_interface[]
3567 INIT(= N_("E1404: Abstract cannot be used in an interface"));
Ernie Rael9ed53752023-12-11 17:40:46 +01003568EXTERN char e_using_class_as_value_str[]
Ernie Rael2025af12023-12-12 16:58:00 +01003569 INIT(= N_("E1405: Class \"%s\" cannot be used as a value"));
Ernie Rael9ed53752023-12-11 17:40:46 +01003570EXTERN char e_using_class_as_var_val[]
Ernie Rael2025af12023-12-12 16:58:00 +01003571 INIT(= N_("E1406: Cannot use a Class as a variable or value"));
Ernie Rael9ed53752023-12-11 17:40:46 +01003572EXTERN char e_using_typealias_as_var_val[]
Ernie Rael2025af12023-12-12 16:58:00 +01003573 INIT(= N_("E1407: Cannot use a Typealias as a variable or value"));
Yegappan Lakshmanane5437c52023-12-16 14:11:19 +01003574EXTERN char e_final_variable_not_supported_in_interface[]
3575 INIT(= N_("E1408: Final variable not supported in an interface"));
3576EXTERN char e_cannot_change_readonly_variable_str_in_class_str[]
3577 INIT(= N_("E1409: Cannot change read-only variable \"%s\" in class \"%s\""));
3578EXTERN char e_const_variable_not_supported_in_interface[]
3579 INIT(= N_("E1410: Const variable not supported in an interface"));
Ernie Rael5e133152023-12-19 22:15:27 +01003580EXTERN char e_missing_dot_after_object_str[]
3581 INIT(= N_("E1411: Missing dot after object \"%s\""));
Yegappan Lakshmanan92d9ee52023-09-17 17:03:19 +02003582#endif
Ernie Rael5e133152023-12-19 22:15:27 +01003583// E1412 - E1499 unused (reserved for Vim9 class support)
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003584EXTERN char e_cannot_mix_positional_and_non_positional_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003585 INIT(= N_("E1500: Cannot mix positional and non-positional arguments: %s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003586EXTERN char e_fmt_arg_nr_unused_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003587 INIT(= N_("E1501: format argument %d unused in $-style format: %s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003588EXTERN char e_positional_num_field_spec_reused_str_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003589 INIT(= N_("E1502: Positional argument %d used as field width reused as different type: %s/%s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003590EXTERN char e_positional_nr_out_of_bounds_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003591 INIT(= N_("E1503: Positional argument %d out of bounds: %s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003592EXTERN char e_positional_arg_num_type_inconsistent_str_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003593 INIT(= N_("E1504: Positional argument %d type used inconsistently: %s/%s"));
Christ van Willegen0c6181f2023-08-13 18:03:14 +02003594EXTERN char e_invalid_format_specifier_str[]
Yegappan Lakshmanan413f8392023-09-28 22:46:37 +02003595 INIT(= N_("E1505: Invalid format specifier: %s"));
Christian Brabandte085dfd2023-09-30 12:49:18 +02003596EXTERN char e_xattr_erange[]
3597 INIT(= N_("E1506: Buffer too small to copy xattr value or key"));
Christ van Willegenea746f92023-10-05 20:48:36 +02003598EXTERN char e_aptypes_is_null_nr_str[]
3599 INIT(= "E1507: Internal error: ap_types or ap_types[idx] is NULL: %d: %s");
Christian Brabandte085dfd2023-09-30 12:49:18 +02003600EXTERN char e_xattr_e2big[]
zeertzjq7ece0362023-10-01 09:07:14 +02003601 INIT(= N_("E1508: Size of the extended attribute value is larger than the maximum size allowed"));
Christian Brabandte085dfd2023-09-30 12:49:18 +02003602EXTERN char e_xattr_other[]
Viktor Szépedbf749b2023-10-16 09:53:37 +02003603 INIT(= N_("E1509: Error occurred when reading or writing extended attribute"));
Christian Brabandt9198c1f2023-10-26 21:29:32 +02003604EXTERN char e_val_too_large[]
3605 INIT(= N_("E1510: Value too large: %s"));
zeertzjq6a8d2e12024-01-17 20:54:49 +01003606EXTERN char e_wrong_number_of_characters_for_field_str[]
3607 INIT(= N_("E1511: Wrong number of characters for field \"%s\""));
3608EXTERN char e_wrong_character_width_for_field_str[]
3609 INIT(= N_("E1512: Wrong character width for field \"%s\""));