comparison src/errors.h @ 27037:a0a37337428a v8.2.4047

patch 8.2.4047: depending on the build features error messages are unused Commit: https://github.com/vim/vim/commit/f85a424c832777892c4efaff163c2fa710ce8d91 Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Sun Jan 9 12:49:31 2022 +0000 patch 8.2.4047: depending on the build features error messages are unused Problem: Depending on the build features error messages are unused. Solution: Add #ifdefs. (Dominique Pell?, closes https://github.com/vim/vim/issues/9493)
author Bram Moolenaar <Bram@vim.org>
date Sun, 09 Jan 2022 14:00:04 +0100
parents b31cc7630773
children 15f40772e10a
comparison
equal deleted inserted replaced
27036:3e661b0cf500 27037:a0a37337428a
122 EXTERN char e_not_allowed_in_sandbox[] 122 EXTERN char e_not_allowed_in_sandbox[]
123 INIT(= N_("E48: Not allowed in sandbox")); 123 INIT(= N_("E48: Not allowed in sandbox"));
124 #endif 124 #endif
125 EXTERN char e_invalid_scroll_size[] 125 EXTERN char e_invalid_scroll_size[]
126 INIT(= N_("E49: Invalid scroll size")); 126 INIT(= N_("E49: Invalid scroll size"));
127 #ifdef FEAT_SYN_HL
127 EXTERN char e_too_many_z[] 128 EXTERN char e_too_many_z[]
128 INIT(= N_("E50: Too many \\z(")); 129 INIT(= N_("E50: Too many \\z("));
130 #endif
129 EXTERN char e_too_many_str_open[] 131 EXTERN char e_too_many_str_open[]
130 INIT(= N_("E51: Too many %s(")); 132 INIT(= N_("E51: Too many %s("));
133 #ifdef FEAT_SYN_HL
131 EXTERN char e_unmatched_z[] 134 EXTERN char e_unmatched_z[]
132 INIT(= N_("E52: Unmatched \\z(")); 135 INIT(= N_("E52: Unmatched \\z("));
136 #endif
133 EXTERN char e_unmatched_str_percent_open[] 137 EXTERN char e_unmatched_str_percent_open[]
134 INIT(= N_("E53: Unmatched %s%%(")); 138 INIT(= N_("E53: Unmatched %s%%("));
135 EXTERN char e_unmatched_str_open[] 139 EXTERN char e_unmatched_str_open[]
136 INIT(= N_("E54: Unmatched %s(")); 140 INIT(= N_("E54: Unmatched %s("));
137 EXTERN char e_unmatched_str_close[] 141 EXTERN char e_unmatched_str_close[]
233 EXTERN char e_cant_find_buffer_str[] 237 EXTERN char e_cant_find_buffer_str[]
234 INIT(= N_("E102: Can't find buffer \"%s\"")); 238 INIT(= N_("E102: Can't find buffer \"%s\""));
235 EXTERN char e_buffer_str_is_not_in_diff_mode[] 239 EXTERN char e_buffer_str_is_not_in_diff_mode[]
236 INIT(= N_("E103: Buffer \"%s\" is not in diff mode")); 240 INIT(= N_("E103: Buffer \"%s\" is not in diff mode"));
237 #endif 241 #endif
242 #ifdef FEAT_DIGRAPHS
238 EXTERN char e_escape_not_allowed_in_digraph[] 243 EXTERN char e_escape_not_allowed_in_digraph[]
239 INIT(= N_("E104: Escape not allowed in digraph")); 244 INIT(= N_("E104: Escape not allowed in digraph"));
245 #endif
246 #ifdef FEAT_KEYMAP
240 EXTERN char e_using_loadkeymap_not_in_sourced_file[] 247 EXTERN char e_using_loadkeymap_not_in_sourced_file[]
241 INIT(= N_("E105: Using :loadkeymap not in a sourced file")); 248 INIT(= N_("E105: Using :loadkeymap not in a sourced file"));
249 #endif
242 // E106 unused 250 // E106 unused
251 #ifdef FEAT_EVAL
243 EXTERN char e_missing_parenthesis_str[] 252 EXTERN char e_missing_parenthesis_str[]
244 INIT(= N_("E107: Missing parentheses: %s")); 253 INIT(= N_("E107: Missing parentheses: %s"));
245 #ifdef FEAT_EVAL
246 EXTERN char e_no_such_variable_str[] 254 EXTERN char e_no_such_variable_str[]
247 INIT(= N_("E108: No such variable: \"%s\"")); 255 INIT(= N_("E108: No such variable: \"%s\""));
248 EXTERN char e_missing_colon_after_questionmark[] 256 EXTERN char e_missing_colon_after_questionmark[]
249 INIT(= N_("E109: Missing ':' after '?'")); 257 INIT(= N_("E109: Missing ':' after '?'"));
250 EXTERN char e_missing_closing_paren[] 258 EXTERN char e_missing_closing_paren[]
251 INIT(= N_("E110: Missing ')'")); 259 INIT(= N_("E110: Missing ')'"));
252 EXTERN char e_missing_closing_square_brace[] 260 EXTERN char e_missing_closing_square_brace[]
253 INIT(= N_("E111: Missing ']'")); 261 INIT(= N_("E111: Missing ']'"));
254 #endif
255 EXTERN char e_option_name_missing_str[] 262 EXTERN char e_option_name_missing_str[]
256 INIT(= N_("E112: Option name missing: %s")); 263 INIT(= N_("E112: Option name missing: %s"));
257 EXTERN char e_unknown_option_str[] 264 EXTERN char e_unknown_option_str[]
258 INIT(= N_("E113: Unknown option: %s")); 265 INIT(= N_("E113: Unknown option: %s"));
259 EXTERN char e_missing_double_quote_str[] 266 EXTERN char e_missing_double_quote_str[]
260 INIT(= N_("E114: Missing double quote: %s")); 267 INIT(= N_("E114: Missing double quote: %s"));
261 EXTERN char e_missing_single_quote_str[] 268 EXTERN char e_missing_single_quote_str[]
262 INIT(= N_("E115: Missing single quote: %s")); 269 INIT(= N_("E115: Missing single quote: %s"));
263 #ifdef FEAT_EVAL
264 EXTERN char e_invalid_arguments_for_function_str[] 270 EXTERN char e_invalid_arguments_for_function_str[]
265 INIT(= N_("E116: Invalid arguments for function %s")); 271 INIT(= N_("E116: Invalid arguments for function %s"));
266 EXTERN char e_unknown_function_str[] 272 EXTERN char e_unknown_function_str[]
267 INIT(= N_("E117: Unknown function: %s")); 273 INIT(= N_("E117: Unknown function: %s"));
268 EXTERN char e_too_many_arguments_for_function_str[] 274 EXTERN char e_too_many_arguments_for_function_str[]
341 INIT(= N_("E152: Cannot open %s for writing")); 347 INIT(= N_("E152: Cannot open %s for writing"));
342 EXTERN char e_unable_to_open_str_for_reading[] 348 EXTERN char e_unable_to_open_str_for_reading[]
343 INIT(= N_("E153: Unable to open %s for reading")); 349 INIT(= N_("E153: Unable to open %s for reading"));
344 EXTERN char e_duplicate_tag_str_in_file_str_str[] 350 EXTERN char e_duplicate_tag_str_in_file_str_str[]
345 INIT(= N_("E154: Duplicate tag \"%s\" in file %s/%s")); 351 INIT(= N_("E154: Duplicate tag \"%s\" in file %s/%s"));
352 #ifdef FEAT_SIGNS
346 EXTERN char e_unknown_sign_str[] 353 EXTERN char e_unknown_sign_str[]
347 INIT(= N_("E155: Unknown sign: %s")); 354 INIT(= N_("E155: Unknown sign: %s"));
348 EXTERN char e_missing_sign_name[] 355 EXTERN char e_missing_sign_name[]
349 INIT(= N_("E156: Missing sign name")); 356 INIT(= N_("E156: Missing sign name"));
350 EXTERN char e_invalid_sign_id_nr[] 357 EXTERN char e_invalid_sign_id_nr[]
351 INIT(= N_("E157: Invalid sign ID: %d")); 358 INIT(= N_("E157: Invalid sign ID: %d"));
359 #endif
360 #if defined(FEAT_SIGNS) || defined(FEAT_EVAL)
352 EXTERN char e_invalid_buffer_name_str[] 361 EXTERN char e_invalid_buffer_name_str[]
353 INIT(= N_("E158: Invalid buffer name: %s")); 362 INIT(= N_("E158: Invalid buffer name: %s"));
363 #endif
364 #ifdef FEAT_SIGNS
354 EXTERN char e_missing_sign_number[] 365 EXTERN char e_missing_sign_number[]
355 INIT(= N_("E159: Missing sign number")); 366 INIT(= N_("E159: Missing sign number"));
356 EXTERN char e_unknown_sign_command_str[] 367 EXTERN char e_unknown_sign_command_str[]
357 INIT(= N_("E160: Unknown sign command: %s")); 368 INIT(= N_("E160: Unknown sign command: %s"));
369 #endif
358 #ifdef FEAT_EVAL 370 #ifdef FEAT_EVAL
359 EXTERN char e_breakpoint_not_found_str[] 371 EXTERN char e_breakpoint_not_found_str[]
360 INIT(= N_("E161: Breakpoint not found: %s")); 372 INIT(= N_("E161: Breakpoint not found: %s"));
361 #endif 373 #endif
362 EXTERN char e_no_write_since_last_change_for_buffer_str[] 374 EXTERN char e_no_write_since_last_change_for_buffer_str[]
369 INIT(= N_("E165: Cannot go beyond last file")); 381 INIT(= N_("E165: Cannot go beyond last file"));
370 EXTERN char e_cant_open_linked_file_for_writing[] 382 EXTERN char e_cant_open_linked_file_for_writing[]
371 INIT(= N_("E166: Can't open linked file for writing")); 383 INIT(= N_("E166: Can't open linked file for writing"));
372 EXTERN char e_scriptencoding_used_outside_of_sourced_file[] 384 EXTERN char e_scriptencoding_used_outside_of_sourced_file[]
373 INIT(= N_("E167: :scriptencoding used outside of a sourced file")); 385 INIT(= N_("E167: :scriptencoding used outside of a sourced file"));
386 #ifdef FEAT_EVAL
374 EXTERN char e_finish_used_outside_of_sourced_file[] 387 EXTERN char e_finish_used_outside_of_sourced_file[]
375 INIT(= N_("E168: :finish used outside of a sourced file")); 388 INIT(= N_("E168: :finish used outside of a sourced file"));
389 #endif
376 EXTERN char e_command_too_recursive[] 390 EXTERN char e_command_too_recursive[]
377 INIT(= N_("E169: Command too recursive")); 391 INIT(= N_("E169: Command too recursive"));
392 #ifdef FEAT_EVAL
378 EXTERN char e_missing_endwhile[] 393 EXTERN char e_missing_endwhile[]
379 INIT(= N_("E170: Missing :endwhile")); 394 INIT(= N_("E170: Missing :endwhile"));
380 EXTERN char e_missing_endfor[] 395 EXTERN char e_missing_endfor[]
381 INIT(= N_("E170: Missing :endfor")); 396 INIT(= N_("E170: Missing :endfor"));
382 EXTERN char e_missing_endif[] 397 EXTERN char e_missing_endif[]
383 INIT(= N_("E171: Missing :endif")); 398 INIT(= N_("E171: Missing :endif"));
384 EXTERN char e_missing_marker[] 399 EXTERN char e_missing_marker[]
385 INIT(= N_("E172: Missing marker")); 400 INIT(= N_("E172: Missing marker"));
401 #endif
386 EXTERN char e_nr_more_file_to_edit[] 402 EXTERN char e_nr_more_file_to_edit[]
387 INIT(= N_("E173: %d more file to edit")); 403 INIT(= N_("E173: %d more file to edit"));
388 EXTERN char e_nr_more_files_to_edit[] 404 EXTERN char e_nr_more_files_to_edit[]
389 INIT(= N_("E173: %d more files to edit")); 405 INIT(= N_("E173: %d more files to edit"));
390 EXTERN char e_command_already_exists_add_bang_to_replace_it_str[] 406 EXTERN char e_command_already_exists_add_bang_to_replace_it_str[]
425 INIT(= N_("E190: Cannot open \"%s\" for writing")); 441 INIT(= N_("E190: Cannot open \"%s\" for writing"));
426 EXTERN char e_argument_must_be_letter_or_forward_backward_quote[] 442 EXTERN char e_argument_must_be_letter_or_forward_backward_quote[]
427 INIT(= N_("E191: Argument must be a letter or forward/backward quote")); 443 INIT(= N_("E191: Argument must be a letter or forward/backward quote"));
428 EXTERN char e_recursive_use_of_normal_too_deep[] 444 EXTERN char e_recursive_use_of_normal_too_deep[]
429 INIT(= N_("E192: Recursive use of :normal too deep")); 445 INIT(= N_("E192: Recursive use of :normal too deep"));
446 #ifdef FEAT_EVAL
430 EXTERN char e_str_not_inside_function[] 447 EXTERN char e_str_not_inside_function[]
431 INIT(= N_("E193: %s not inside a function")); 448 INIT(= N_("E193: %s not inside a function"));
449 #endif
432 EXTERN char e_no_alternate_file_name_to_substitute_for_hash[] 450 EXTERN char e_no_alternate_file_name_to_substitute_for_hash[]
433 INIT(= N_("E194: No alternate file name to substitute for '#'")); 451 INIT(= N_("E194: No alternate file name to substitute for '#'"));
452 #ifdef FEAT_VIMINFO
434 EXTERN char e_cannot_open_viminfo_file_for_reading[] 453 EXTERN char e_cannot_open_viminfo_file_for_reading[]
435 INIT(= N_("E195: Cannot open viminfo file for reading")); 454 INIT(= N_("E195: Cannot open viminfo file for reading"));
455 #endif
436 #ifndef FEAT_DIGRAPHS 456 #ifndef FEAT_DIGRAPHS
437 EXTERN char e_no_digraphs_version[] 457 EXTERN char e_no_digraphs_version[]
438 INIT(= N_("E196: No digraphs in this version")); 458 INIT(= N_("E196: No digraphs in this version"));
439 #endif 459 #endif
440 EXTERN char e_cannot_set_language_to_str[] 460 EXTERN char e_cannot_set_language_to_str[]
441 INIT(= N_("E197: Cannot set language to \"%s\"")); 461 INIT(= N_("E197: Cannot set language to \"%s\""));
442 // E198 unused 462 // E198 unused
463 #ifdef FEAT_CMDWIN
443 EXTERN char e_active_window_or_buffer_deleted[] 464 EXTERN char e_active_window_or_buffer_deleted[]
444 INIT(= N_("E199: Active window or buffer deleted")); 465 INIT(= N_("E199: Active window or buffer deleted"));
466 #endif
445 EXTERN char e_readpre_autocommands_made_file_unreadable[] 467 EXTERN char e_readpre_autocommands_made_file_unreadable[]
446 INIT(= N_("E200: *ReadPre autocommands made the file unreadable")); 468 INIT(= N_("E200: *ReadPre autocommands made the file unreadable"));
447 EXTERN char e_readpre_autocommands_must_not_change_current_buffer[] 469 EXTERN char e_readpre_autocommands_must_not_change_current_buffer[]
448 INIT(= N_("E201: *ReadPre autocommands must not change current buffer")); 470 INIT(= N_("E201: *ReadPre autocommands must not change current buffer"));
471 #ifdef FEAT_EVAL
449 EXTERN char e_conversion_mad_file_unreadable[] 472 EXTERN char e_conversion_mad_file_unreadable[]
450 INIT(= N_("E202: Conversion made file unreadable!")); 473 INIT(= N_("E202: Conversion made file unreadable!"));
474 #endif
451 EXTERN char e_autocommands_deleted_or_unloaded_buffer_to_be_written[] 475 EXTERN char e_autocommands_deleted_or_unloaded_buffer_to_be_written[]
452 INIT(= N_("E203: Autocommands deleted or unloaded buffer to be written")); 476 INIT(= N_("E203: Autocommands deleted or unloaded buffer to be written"));
453 EXTERN char e_autocommands_changed_number_of_lines_in_unexpected_way[] 477 EXTERN char e_autocommands_changed_number_of_lines_in_unexpected_way[]
454 INIT(= N_("E204: Autocommand changed number of lines in unexpected way")); 478 INIT(= N_("E204: Autocommand changed number of lines in unexpected way"));
455 EXTERN char e_patchmode_cant_save_original_file[] 479 EXTERN char e_patchmode_cant_save_original_file[]
468 INIT(= N_("E211: File \"%s\" no longer available")); 492 INIT(= N_("E211: File \"%s\" no longer available"));
469 EXTERN char e_cant_open_file_for_writing[] 493 EXTERN char e_cant_open_file_for_writing[]
470 INIT(= N_("E212: Can't open file for writing")); 494 INIT(= N_("E212: Can't open file for writing"));
471 EXTERN char e_cannot_convert_add_bang_to_write_without_conversion[] 495 EXTERN char e_cannot_convert_add_bang_to_write_without_conversion[]
472 INIT(= N_("E213: Cannot convert (add ! to write without conversion)")); 496 INIT(= N_("E213: Cannot convert (add ! to write without conversion)"));
497 #ifdef FEAT_EVAL
473 EXTERN char e_cant_find_temp_file_for_writing[] 498 EXTERN char e_cant_find_temp_file_for_writing[]
474 INIT(= N_("E214: Can't find temp file for writing")); 499 INIT(= N_("E214: Can't find temp file for writing"));
500 #endif
475 EXTERN char e_illegal_character_after_star_str[] 501 EXTERN char e_illegal_character_after_star_str[]
476 INIT(= N_("E215: Illegal character after *: %s")); 502 INIT(= N_("E215: Illegal character after *: %s"));
477 EXTERN char e_no_such_event_str[] 503 EXTERN char e_no_such_event_str[]
478 INIT(= N_("E216: No such event: %s")); 504 INIT(= N_("E216: No such event: %s"));
479 EXTERN char e_no_such_group_or_event_str[] 505 EXTERN char e_no_such_group_or_event_str[]
484 INIT(= N_("E218: autocommand nesting too deep")); 510 INIT(= N_("E218: autocommand nesting too deep"));
485 EXTERN char e_missing_open_curly[] 511 EXTERN char e_missing_open_curly[]
486 INIT(= N_("E219: Missing {.")); 512 INIT(= N_("E219: Missing {."));
487 EXTERN char e_missing_close_curly[] 513 EXTERN char e_missing_close_curly[]
488 INIT(= N_("E220: Missing }.")); 514 INIT(= N_("E220: Missing }."));
515 #ifdef FEAT_EVAL
489 EXTERN char e_marker_cannot_start_with_lower_case_letter[] 516 EXTERN char e_marker_cannot_start_with_lower_case_letter[]
490 INIT(= N_("E221: Marker cannot start with lower case letter")); 517 INIT(= N_("E221: Marker cannot start with lower case letter"));
518 #endif
491 EXTERN char e_add_to_internal_buffer_that_was_already_read_from[] 519 EXTERN char e_add_to_internal_buffer_that_was_already_read_from[]
492 INIT(= N_("E222: Add to internal buffer that was already read from")); 520 INIT(= N_("E222: Add to internal buffer that was already read from"));
493 EXTERN char e_recursive_mapping[] 521 EXTERN char e_recursive_mapping[]
494 INIT(= N_("E223: recursive mapping")); 522 INIT(= N_("E223: recursive mapping"));
495 EXTERN char e_global_abbreviation_already_exists_for_str[] 523 EXTERN char e_global_abbreviation_already_exists_for_str[]
507 INIT(= N_("E229: Cannot start the GUI")); 535 INIT(= N_("E229: Cannot start the GUI"));
508 EXTERN char e_cannot_read_from_str[] 536 EXTERN char e_cannot_read_from_str[]
509 INIT(= N_("E230: Cannot read from \"%s\"")); 537 INIT(= N_("E230: Cannot read from \"%s\""));
510 EXTERN char e_guifontwide_invalid[] 538 EXTERN char e_guifontwide_invalid[]
511 INIT(= N_("E231: 'guifontwide' invalid")); 539 INIT(= N_("E231: 'guifontwide' invalid"));
540 #ifdef FEAT_BEVAL_GUI
512 EXTERN char e_cannot_create_ballooneval_with_both_message_and_callback[] 541 EXTERN char e_cannot_create_ballooneval_with_both_message_and_callback[]
513 INIT(= N_("E232: Cannot create BalloonEval with both message and callback")); 542 INIT(= N_("E232: Cannot create BalloonEval with both message and callback"));
543 #endif
514 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) 544 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11)
515 EXTERN char e_cannot_open_display[] 545 EXTERN char e_cannot_open_display[]
516 INIT(= N_("E233: cannot open display")); 546 INIT(= N_("E233: cannot open display"));
517 # endif 547 # endif
518 # if defined(FEAT_XFONTSET) 548 # if defined(FEAT_XFONTSET)
533 EXTERN char e_printer_selection_failed[] 563 EXTERN char e_printer_selection_failed[]
534 INIT(= N_("E237: Printer selection failed")); 564 INIT(= N_("E237: Printer selection failed"));
535 EXTERN char e_print_error_str[] 565 EXTERN char e_print_error_str[]
536 INIT(= N_("E238: Print error: %s")); 566 INIT(= N_("E238: Print error: %s"));
537 #endif 567 #endif
568 #ifdef FEAT_SIGNS
538 EXTERN char e_invalid_sign_text_str[] 569 EXTERN char e_invalid_sign_text_str[]
539 INIT(= N_("E239: Invalid sign text: %s")); 570 INIT(= N_("E239: Invalid sign text: %s"));
571 #endif
540 #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11) 572 #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
541 EXTERN char e_no_connection_to_x_server[] 573 EXTERN char e_no_connection_to_x_server[]
542 INIT(= N_("E240: No connection to the X server")); 574 INIT(= N_("E240: No connection to the X server"));
543 #endif 575 #endif
544 #ifdef FEAT_CLIENTSERVER 576 #ifdef FEAT_CLIENTSERVER
588 #if defined(FEAT_SIGN_ICONS) && !defined(FEAT_GUI_GTK) 620 #if defined(FEAT_SIGN_ICONS) && !defined(FEAT_GUI_GTK)
589 EXTERN char e_couldnt_read_in_sign_data[] 621 EXTERN char e_couldnt_read_in_sign_data[]
590 INIT(= N_("E255: Couldn't read in sign data")); 622 INIT(= N_("E255: Couldn't read in sign data"));
591 #endif 623 #endif
592 // E256 unused 624 // E256 unused
625 #ifdef FEAT_CSCOPE
593 EXTERN char e_cstag_tag_not_founc[] 626 EXTERN char e_cstag_tag_not_founc[]
594 INIT(= N_("E257: cstag: tag not found")); 627 INIT(= N_("E257: cstag: tag not found"));
628 #endif
595 #ifdef FEAT_CLIENTSERVER 629 #ifdef FEAT_CLIENTSERVER
596 EXTERN char e_unable_to_send_to_client[] 630 EXTERN char e_unable_to_send_to_client[]
597 INIT(= N_("E258: Unable to send to client")); 631 INIT(= N_("E258: Unable to send to client"));
598 #endif 632 #endif
599 #ifdef FEAT_CSCOPE 633 #ifdef FEAT_CSCOPE
657 #ifdef FEAT_CLIENTSERVER 691 #ifdef FEAT_CLIENTSERVER
658 EXTERN char e_unable_to_read_server_reply[] 692 EXTERN char e_unable_to_read_server_reply[]
659 INIT(= N_("E277: Unable to read a server reply")); 693 INIT(= N_("E277: Unable to read a server reply"));
660 #endif 694 #endif
661 // E278 unused 695 // E278 unused
662 #ifdef FEAT_TERMINAL 696 #if defined(FEAT_TERMINAL) && !defined(UNIX) && !defined(MSWIN)
663 EXTERN char e_sorry_plusplusshell_not_supported_on_this_system[] 697 EXTERN char e_sorry_plusplusshell_not_supported_on_this_system[]
664 INIT(= N_("E279: Sorry, ++shell is not supported on this system")); 698 INIT(= N_("E279: Sorry, ++shell is not supported on this system"));
665 #endif 699 #endif
666 #ifdef FEAT_TCL 700 #ifdef FEAT_TCL
667 EXTERN char e_tcl_fatal_error_reflist_corrupt_please_report_this[] 701 EXTERN char e_tcl_fatal_error_reflist_corrupt_please_report_this[]
671 EXTERN char e_cannot_read_from_str_2[] 705 EXTERN char e_cannot_read_from_str_2[]
672 INIT(= N_("E282: Cannot read from \"%s\"")); 706 INIT(= N_("E282: Cannot read from \"%s\""));
673 EXTERN char e_no_marks_matching_str[] 707 EXTERN char e_no_marks_matching_str[]
674 INIT(= N_("E283: No marks matching \"%s\"")); 708 INIT(= N_("E283: No marks matching \"%s\""));
675 #ifdef FEAT_XIM 709 #ifdef FEAT_XIM
710 # ifndef FEAT_GUI_GTK
676 EXTERN char e_cannot_set_ic_values[] 711 EXTERN char e_cannot_set_ic_values[]
677 INIT(= N_("E284: Cannot set IC values")); 712 INIT(= N_("E284: Cannot set IC values"));
678 # if defined(FEAT_GUI_X11) 713 # endif
714 # ifdef FEAT_GUI_X11
679 EXTERN char e_failed_to_create_input_context[] 715 EXTERN char e_failed_to_create_input_context[]
680 INIT(= N_("E285: Failed to create input context")); 716 INIT(= N_("E285: Failed to create input context"));
681 # endif
682 EXTERN char e_failed_to_open_input_method[] 717 EXTERN char e_failed_to_open_input_method[]
683 INIT(= N_("E286: Failed to open input method")); 718 INIT(= N_("E286: Failed to open input method"));
684 EXTERN char e_warning_could_not_set_destroy_callback_to_im[] 719 EXTERN char e_warning_could_not_set_destroy_callback_to_im[]
685 INIT(= N_("E287: Warning: Could not set destroy callback to IM")); 720 INIT(= N_("E287: Warning: Could not set destroy callback to IM"));
686 EXTERN char e_input_method_doesnt_support_any_style[] 721 EXTERN char e_input_method_doesnt_support_any_style[]
687 INIT(= N_("E288: input method doesn't support any style")); 722 INIT(= N_("E288: input method doesn't support any style"));
688 EXTERN char e_input_method_doesnt_support_my_preedit_type[] 723 EXTERN char e_input_method_doesnt_support_my_preedit_type[]
689 INIT(= N_("E289: input method doesn't support my preedit type")); 724 INIT(= N_("E289: input method doesn't support my preedit type"));
725 # endif
690 #endif 726 #endif
691 #ifdef FEAT_SEARCH_EXTRA 727 #ifdef FEAT_SEARCH_EXTRA
692 EXTERN char e_list_or_number_required[] 728 EXTERN char e_list_or_number_required[]
693 INIT(= N_("E290: List or number required")); 729 INIT(= N_("E290: List or number required"));
694 #endif 730 #endif
772 #endif 808 #endif
773 EXTERN char e_attention[] 809 EXTERN char e_attention[]
774 INIT(= N_("E325: ATTENTION")); 810 INIT(= N_("E325: ATTENTION"));
775 EXTERN char e_too_many_swap_files_found[] 811 EXTERN char e_too_many_swap_files_found[]
776 INIT(= N_("E326: Too many swap files found")); 812 INIT(= N_("E326: Too many swap files found"));
813 #ifdef FEAT_MENU
777 EXTERN char_u e_part_of_menu_item_path_is_not_sub_menu[] 814 EXTERN char_u e_part_of_menu_item_path_is_not_sub_menu[]
778 INIT(= N_("E327: Part of menu-item path is not sub-menu")); 815 INIT(= N_("E327: Part of menu-item path is not sub-menu"));
779 #ifdef FEAT_MENU
780 EXTERN char e_menu_only_exists_in_another_mode[] 816 EXTERN char e_menu_only_exists_in_another_mode[]
781 INIT(= N_("E328: Menu only exists in another mode")); 817 INIT(= N_("E328: Menu only exists in another mode"));
782 #endif
783 EXTERN char_u e_no_menu_str[] 818 EXTERN char_u e_no_menu_str[]
784 INIT(= N_("E329: No menu \"%s\"")); 819 INIT(= N_("E329: No menu \"%s\""));
785 EXTERN char e_menu_path_must_not_lead_to_sub_menu[] 820 EXTERN char e_menu_path_must_not_lead_to_sub_menu[]
786 INIT(= N_("E330: Menu path must not lead to a sub-menu")); 821 INIT(= N_("E330: Menu path must not lead to a sub-menu"));
787 EXTERN char e_must_not_add_menu_items_directly_to_menu_bar[] 822 EXTERN char e_must_not_add_menu_items_directly_to_menu_bar[]
796 INIT(= N_("E335: Menu not defined for %s mode")); 831 INIT(= N_("E335: Menu not defined for %s mode"));
797 EXTERN char e_menu_path_must_lead_to_sub_menu[] 832 EXTERN char e_menu_path_must_lead_to_sub_menu[]
798 INIT(= N_("E336: Menu path must lead to a sub-menu")); 833 INIT(= N_("E336: Menu path must lead to a sub-menu"));
799 EXTERN char e_menu_not_found_check_menu_names[] 834 EXTERN char e_menu_not_found_check_menu_names[]
800 INIT(= N_("E337: Menu not found - check menu names")); 835 INIT(= N_("E337: Menu not found - check menu names"));
836 #endif
837 #ifdef FEAT_BROWSE
801 EXTERN char e_sorry_no_file_browser_in_console_mode[] 838 EXTERN char e_sorry_no_file_browser_in_console_mode[]
802 INIT(= N_("E338: Sorry, no file browser in console mode")); 839 INIT(= N_("E338: Sorry, no file browser in console mode"));
840 #endif
803 EXTERN char e_pattern_too_long[] 841 EXTERN char e_pattern_too_long[]
804 INIT(= N_("E339: Pattern too long")); 842 INIT(= N_("E339: Pattern too long"));
805 // E340 unused 843 // E340 unused
806 EXTERN char e_internal_error_lalloc_zero[] 844 EXTERN char e_internal_error_lalloc_zero[]
807 INIT(= N_("E341: Internal error: lalloc(0, )")); 845 INIT(= N_("E341: Internal error: lalloc(0, )"));
808 EXTERN char e_out_of_memory_allocating_nr_bytes[] 846 EXTERN char e_out_of_memory_allocating_nr_bytes[]
809 INIT(= N_("E342: Out of memory! (allocating %lu bytes)")); 847 INIT(= N_("E342: Out of memory! (allocating %lu bytes)"));
848 #ifdef FEAT_PATH_EXTRA
810 EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[] 849 EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[]
811 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'.")); 850 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'."));
851 #endif
852 #ifdef FEAT_SEARCHPATH
812 EXTERN char e_cant_find_directory_str_in_cdpath[] 853 EXTERN char e_cant_find_directory_str_in_cdpath[]
813 INIT(= N_("E344: Can't find directory \"%s\" in cdpath")); 854 INIT(= N_("E344: Can't find directory \"%s\" in cdpath"));
814 EXTERN char e_cant_find_file_str_in_path[] 855 EXTERN char e_cant_find_file_str_in_path[]
815 INIT(= N_("E345: Can't find file \"%s\" in path")); 856 INIT(= N_("E345: Can't find file \"%s\" in path"));
816 EXTERN char e_no_more_directory_str_found_in_cdpath[] 857 EXTERN char e_no_more_directory_str_found_in_cdpath[]
817 INIT(= N_("E346: No more directory \"%s\" found in cdpath")); 858 INIT(= N_("E346: No more directory \"%s\" found in cdpath"));
818 EXTERN char e_no_more_file_str_found_in_path[] 859 EXTERN char e_no_more_file_str_found_in_path[]
819 INIT(= N_("E347: No more file \"%s\" found in path")); 860 INIT(= N_("E347: No more file \"%s\" found in path"));
861 #endif
820 EXTERN char e_no_string_under_cursor[] 862 EXTERN char e_no_string_under_cursor[]
821 INIT(= N_("E348: No string under cursor")); 863 INIT(= N_("E348: No string under cursor"));
822 EXTERN char e_no_identifier_under_cursor[] 864 EXTERN char e_no_identifier_under_cursor[]
823 INIT(= N_("E349: No identifier under cursor")); 865 INIT(= N_("E349: No identifier under cursor"));
866 #ifdef FEAT_FOLDING
824 EXTERN char e_cannot_create_fold_with_current_foldmethod[] 867 EXTERN char e_cannot_create_fold_with_current_foldmethod[]
825 INIT(= N_("E350: Cannot create fold with current 'foldmethod'")); 868 INIT(= N_("E350: Cannot create fold with current 'foldmethod'"));
826 EXTERN char e_cannot_delete_fold_with_current_foldmethod[] 869 EXTERN char e_cannot_delete_fold_with_current_foldmethod[]
827 INIT(= N_("E351: Cannot delete fold with current 'foldmethod'")); 870 INIT(= N_("E351: Cannot delete fold with current 'foldmethod'"));
828 EXTERN char e_cannot_erase_folds_with_current_foldmethod[] 871 EXTERN char e_cannot_erase_folds_with_current_foldmethod[]
829 INIT(= N_("E352: Cannot erase folds with current 'foldmethod'")); 872 INIT(= N_("E352: Cannot erase folds with current 'foldmethod'"));
873 #endif
830 EXTERN char e_nothing_in_register_str[] 874 EXTERN char e_nothing_in_register_str[]
831 INIT(= N_("E353: Nothing in register %s")); 875 INIT(= N_("E353: Nothing in register %s"));
832 EXTERN char e_invalid_register_name_str[] 876 EXTERN char e_invalid_register_name_str[]
833 INIT(= N_("E354: Invalid register name: '%s'")); 877 INIT(= N_("E354: Invalid register name: '%s'"));
834 EXTERN char e_unknown_option_str_2[] 878 EXTERN char e_unknown_option_str_2[]
835 INIT(= N_("E355: Unknown option: %s")); 879 INIT(= N_("E355: Unknown option: %s"));
836 EXTERN char e_get_varp_error[] 880 EXTERN char e_get_varp_error[]
837 INIT(= N_("E356: get_varp ERROR")); 881 INIT(= N_("E356: get_varp ERROR"));
882 #ifdef FEAT_LANGMAP
838 EXTERN char e_langmap_matching_character_missing_for_str[] 883 EXTERN char e_langmap_matching_character_missing_for_str[]
839 INIT(= N_("E357: 'langmap': Matching character missing for %s")); 884 INIT(= N_("E357: 'langmap': Matching character missing for %s"));
840 EXTERN char e_langmap_extra_characters_after_semicolon_str[] 885 EXTERN char e_langmap_extra_characters_after_semicolon_str[]
841 INIT(= N_("E358: 'langmap': Extra characters after semicolon: %s")); 886 INIT(= N_("E358: 'langmap': Extra characters after semicolon: %s"));
887 #endif
842 #if defined(AMIGA) || defined(MACOS_X) || defined(MSWIN) \ 888 #if defined(AMIGA) || defined(MACOS_X) || defined(MSWIN) \
843 || defined(UNIX) || defined(VMS) 889 || defined(UNIX) || defined(VMS)
844 EXTERN char e_screen_mode_setting_not_supported[] 890 EXTERN char e_screen_mode_setting_not_supported[]
845 INIT(= N_("E359: Screen mode setting not supported")); 891 INIT(= N_("E359: Screen mode setting not supported"));
846 #endif 892 #endif
893 #ifdef AMIGA
847 EXTERN char e_cannot_execute_shell_with_f_option[] 894 EXTERN char e_cannot_execute_shell_with_f_option[]
848 INIT(= N_("E360: Cannot execute shell with -f option")); 895 INIT(= N_("E360: Cannot execute shell with -f option"));
896 #endif
849 // E361 unused 897 // E361 unused
898 #if defined(FEAT_EVAL) && defined(FEAT_FLOAT)
850 EXTERN char e_using_boolean_value_as_float[] 899 EXTERN char e_using_boolean_value_as_float[]
851 INIT(= N_("E362: Using a boolean value as a Float")); 900 INIT(= N_("E362: Using a boolean value as a Float"));
901 #endif
852 EXTERN char e_pattern_uses_more_memory_than_maxmempattern[] 902 EXTERN char e_pattern_uses_more_memory_than_maxmempattern[]
853 INIT(= N_("E363: pattern uses more memory than 'maxmempattern'")); 903 INIT(= N_("E363: pattern uses more memory than 'maxmempattern'"));
854 #ifdef FEAT_LIBCALL 904 #ifdef FEAT_LIBCALL
855 EXTERN char e_library_call_failed_for_str[] 905 EXTERN char e_library_call_failed_for_str[]
856 INIT(= N_("E364: Library call failed for \"%s()\"")); 906 INIT(= N_("E364: Library call failed for \"%s()\""));
857 #endif 907 #endif
858 #ifdef FEAT_POSTSCRIPT 908 #ifdef FEAT_POSTSCRIPT
859 EXTERN char e_failed_to_print_postscript_file[] 909 EXTERN char e_failed_to_print_postscript_file[]
860 INIT(= N_("E365: Failed to print PostScript file")); 910 INIT(= N_("E365: Failed to print PostScript file"));
861 #endif 911 #endif
912 #ifdef FEAT_PROP_POPUP
862 EXTERN char e_not_allowed_to_enter_popup_window[] 913 EXTERN char e_not_allowed_to_enter_popup_window[]
863 INIT(= N_("E366: Not allowed to enter a popup window")); 914 INIT(= N_("E366: Not allowed to enter a popup window"));
915 #endif
864 EXTERN char e_no_such_group_str[] 916 EXTERN char e_no_such_group_str[]
865 INIT(= N_("E367: No such group: \"%s\"")); 917 INIT(= N_("E367: No such group: \"%s\""));
866 #ifdef FEAT_LIBCALL 918 #ifdef FEAT_LIBCALL
867 EXTERN char e_got_sig_str_in_libcall[] 919 EXTERN char e_got_sig_str_in_libcall[]
868 INIT(= N_("E368: got SIG%s in libcall()")); 920 INIT(= N_("E368: got SIG%s in libcall()"));
875 #endif 927 #endif
876 #ifdef FEAT_GUI_MSWIN 928 #ifdef FEAT_GUI_MSWIN
877 EXTERN char e_command_not_found[] 929 EXTERN char e_command_not_found[]
878 INIT(= N_("E371: Command not found")); 930 INIT(= N_("E371: Command not found"));
879 #endif 931 #endif
932 #ifdef FEAT_QUICKFIX
880 EXTERN char e_too_many_chr_in_format_string[] 933 EXTERN char e_too_many_chr_in_format_string[]
881 INIT(= N_("E372: Too many %%%c in format string")); 934 INIT(= N_("E372: Too many %%%c in format string"));
882 EXTERN char e_unexpected_chr_in_format_str[] 935 EXTERN char e_unexpected_chr_in_format_str[]
883 INIT(= N_("E373: Unexpected %%%c in format string")); 936 INIT(= N_("E373: Unexpected %%%c in format string"));
884 EXTERN char e_missing_rsb_in_format_string[] 937 EXTERN char e_missing_rsb_in_format_string[]
897 INIT(= N_("E380: At bottom of quickfix stack")); 950 INIT(= N_("E380: At bottom of quickfix stack"));
898 EXTERN char e_at_top_of_quickfix_stack[] 951 EXTERN char e_at_top_of_quickfix_stack[]
899 INIT(= N_("E381: At top of quickfix stack")); 952 INIT(= N_("E381: At top of quickfix stack"));
900 EXTERN char e_cannot_write_buftype_option_is_set[] 953 EXTERN char e_cannot_write_buftype_option_is_set[]
901 INIT(= N_("E382: Cannot write, 'buftype' option is set")); 954 INIT(= N_("E382: Cannot write, 'buftype' option is set"));
955 #endif
902 EXTERN char e_invalid_search_string_str[] 956 EXTERN char e_invalid_search_string_str[]
903 INIT(= N_("E383: Invalid search string: %s")); 957 INIT(= N_("E383: Invalid search string: %s"));
904 EXTERN char e_search_hit_top_without_match_for_str[] 958 EXTERN char e_search_hit_top_without_match_for_str[]
905 INIT(= N_("E384: search hit TOP without match for: %s")); 959 INIT(= N_("E384: search hit TOP without match for: %s"));
906 EXTERN char e_search_hit_bottom_without_match_for_str[] 960 EXTERN char e_search_hit_bottom_without_match_for_str[]
907 INIT(= N_("E385: search hit BOTTOM without match for: %s")); 961 INIT(= N_("E385: search hit BOTTOM without match for: %s"));
908 EXTERN char e_expected_question_or_slash_after_semicolon[] 962 EXTERN char e_expected_question_or_slash_after_semicolon[]
909 INIT(= N_("E386: Expected '?' or '/' after ';'")); 963 INIT(= N_("E386: Expected '?' or '/' after ';'"));
964 #ifdef FEAT_FIND_ID
910 EXTERN char e_match_is_on_current_line[] 965 EXTERN char e_match_is_on_current_line[]
911 INIT(= N_("E387: Match is on current line")); 966 INIT(= N_("E387: Match is on current line"));
912 EXTERN char e_couldnt_find_definition[] 967 EXTERN char e_couldnt_find_definition[]
913 INIT(= N_("E388: Couldn't find definition")); 968 INIT(= N_("E388: Couldn't find definition"));
914 EXTERN char e_couldnt_find_pattern[] 969 EXTERN char e_couldnt_find_pattern[]
915 INIT(= N_("E389: Couldn't find pattern")); 970 INIT(= N_("E389: Couldn't find pattern"));
971 #endif
972 #ifdef FEAT_SYN_HL
916 EXTERN char e_illegal_argument_str_2[] 973 EXTERN char e_illegal_argument_str_2[]
917 INIT(= N_("E390: Illegal argument: %s")); 974 INIT(= N_("E390: Illegal argument: %s"));
918 EXTERN char e_no_such_syntax_cluster_1[] 975 EXTERN char e_no_such_syntax_cluster_1[]
919 INIT(= N_("E391: No such syntax cluster: %s")); 976 INIT(= N_("E391: No such syntax cluster: %s"));
920 EXTERN char e_no_such_syntax_cluster_2[] 977 EXTERN char e_no_such_syntax_cluster_2[]
952 INIT(= N_("E408: %s must be first in contains list")); 1009 INIT(= N_("E408: %s must be first in contains list"));
953 EXTERN char e_unknown_group_name_str[] 1010 EXTERN char e_unknown_group_name_str[]
954 INIT(= N_("E409: Unknown group name: %s")); 1011 INIT(= N_("E409: Unknown group name: %s"));
955 EXTERN char e_invalid_syntax_subcommand_str[] 1012 EXTERN char e_invalid_syntax_subcommand_str[]
956 INIT(= N_("E410: Invalid :syntax subcommand: %s")); 1013 INIT(= N_("E410: Invalid :syntax subcommand: %s"));
1014 #endif
957 EXTERN char e_highlight_group_name_not_found_str[] 1015 EXTERN char e_highlight_group_name_not_found_str[]
958 INIT(= N_("E411: highlight group not found: %s")); 1016 INIT(= N_("E411: highlight group not found: %s"));
959 EXTERN char e_not_enough_arguments_highlight_link_str[] 1017 EXTERN char e_not_enough_arguments_highlight_link_str[]
960 INIT(= N_("E412: Not enough arguments: \":highlight link %s\"")); 1018 INIT(= N_("E412: Not enough arguments: \":highlight link %s\""));
961 EXTERN char e_too_many_arguments_highlight_link_str[] 1019 EXTERN char e_too_many_arguments_highlight_link_str[]
990 INIT(= N_("E427: There is only one matching tag")); 1048 INIT(= N_("E427: There is only one matching tag"));
991 EXTERN char e_cannot_go_beyond_last_matching_tag[] 1049 EXTERN char e_cannot_go_beyond_last_matching_tag[]
992 INIT(= N_("E428: Cannot go beyond last matching tag")); 1050 INIT(= N_("E428: Cannot go beyond last matching tag"));
993 EXTERN char e_file_str_does_not_exist[] 1051 EXTERN char e_file_str_does_not_exist[]
994 INIT(= N_("E429: File \"%s\" does not exist")); 1052 INIT(= N_("E429: File \"%s\" does not exist"));
1053 #ifdef FEAT_EMACS_TAGS
995 EXTERN char e_tag_file_path_truncated_for_str[] 1054 EXTERN char e_tag_file_path_truncated_for_str[]
996 INIT(= N_("E430: Tag file path truncated for %s\n")); 1055 INIT(= N_("E430: Tag file path truncated for %s\n"));
1056 #endif
997 EXTERN char e_format_error_in_tags_file_str[] 1057 EXTERN char e_format_error_in_tags_file_str[]
998 INIT(= N_("E431: Format error in tags file \"%s\"")); 1058 INIT(= N_("E431: Format error in tags file \"%s\""));
999 EXTERN char e_tags_file_not_sorted_str[] 1059 EXTERN char e_tags_file_not_sorted_str[]
1000 INIT(= N_("E432: Tags file not sorted: %s")); 1060 INIT(= N_("E432: Tags file not sorted: %s"));
1001 EXTERN char e_no_tags_file[] 1061 EXTERN char e_no_tags_file[]
1012 INIT(= N_("E438: u_undo: line numbers wrong")); 1072 INIT(= N_("E438: u_undo: line numbers wrong"));
1013 EXTERN char e_undo_list_corrupt[] 1073 EXTERN char e_undo_list_corrupt[]
1014 INIT(= N_("E439: undo list corrupt")); 1074 INIT(= N_("E439: undo list corrupt"));
1015 EXTERN char e_undo_line_missing[] 1075 EXTERN char e_undo_line_missing[]
1016 INIT(= N_("E440: undo line missing")); 1076 INIT(= N_("E440: undo line missing"));
1077 #ifdef FEAT_QUICKFIX
1017 EXTERN char e_there_is_no_preview_window[] 1078 EXTERN char e_there_is_no_preview_window[]
1018 INIT(= N_("E441: There is no preview window")); 1079 INIT(= N_("E441: There is no preview window"));
1080 #endif
1019 EXTERN char e_cant_split_topleft_and_botright_at_the_same_time[] 1081 EXTERN char e_cant_split_topleft_and_botright_at_the_same_time[]
1020 INIT(= N_("E442: Can't split topleft and botright at the same time")); 1082 INIT(= N_("E442: Can't split topleft and botright at the same time"));
1021 EXTERN char e_cannot_rotate_when_another_window_is_split[] 1083 EXTERN char e_cannot_rotate_when_another_window_is_split[]
1022 INIT(= N_("E443: Cannot rotate when another window is split")); 1084 INIT(= N_("E443: Cannot rotate when another window is split"));
1023 EXTERN char e_cannot_close_last_window[] 1085 EXTERN char e_cannot_close_last_window[]
1024 INIT(= N_("E444: Cannot close last window")); 1086 INIT(= N_("E444: Cannot close last window"));
1025 EXTERN char e_other_window_contains_changes[] 1087 EXTERN char e_other_window_contains_changes[]
1026 INIT(= N_("E445: Other window contains changes")); 1088 INIT(= N_("E445: Other window contains changes"));
1089 #ifdef FEAT_SEARCHPATH
1027 EXTERN char e_no_file_name_under_cursor[] 1090 EXTERN char e_no_file_name_under_cursor[]
1028 INIT(= N_("E446: No file name under cursor")); 1091 INIT(= N_("E446: No file name under cursor"));
1029 EXTERN char e_cant_find_file_str_in_path_2[] 1092 EXTERN char e_cant_find_file_str_in_path_2[]
1030 INIT(= N_("E447: Can't find file \"%s\" in path")); 1093 INIT(= N_("E447: Can't find file \"%s\" in path"));
1094 #endif
1031 #ifdef USING_LOAD_LIBRARY 1095 #ifdef USING_LOAD_LIBRARY
1032 EXTERN char e_could_not_load_library_function_str[] 1096 EXTERN char e_could_not_load_library_function_str[]
1033 INIT(= N_("E448: Could not load library function %s")); 1097 INIT(= N_("E448: Could not load library function %s"));
1034 #endif 1098 #endif
1035 #ifdef FEAT_CLIENTSERVER 1099 #ifdef FEAT_CLIENTSERVER
1036 EXTERN char e_invalid_expression_received[] 1100 EXTERN char e_invalid_expression_received[]
1037 INIT(= N_("E449: Invalid expression received")); 1101 INIT(= N_("E449: Invalid expression received"));
1038 #endif 1102 #endif
1103 #ifdef FEAT_PROP_POPUP
1039 EXTERN char e_buffer_number_text_or_list_required[] 1104 EXTERN char e_buffer_number_text_or_list_required[]
1040 INIT(= N_("E450: buffer number, text or a list required")); 1105 INIT(= N_("E450: buffer number, text or a list required"));
1106 #endif
1107 #ifdef FEAT_EVAL
1041 EXTERN char e_expected_right_curly_str[] 1108 EXTERN char e_expected_right_curly_str[]
1042 INIT(= N_("E451: Expected }: %s")); 1109 INIT(= N_("E451: Expected }: %s"));
1043 #ifdef FEAT_EVAL
1044 EXTERN char e_double_semicolon_in_list_of_variables[] 1110 EXTERN char e_double_semicolon_in_list_of_variables[]
1045 INIT(= N_("E452: Double ; in list of variables")); 1111 INIT(= N_("E452: Double ; in list of variables"));
1046 #endif 1112 #endif
1047 EXTERN char e_ul_color_unknown[] 1113 EXTERN char e_ul_color_unknown[]
1048 INIT(= N_("E453: UL color unknown")); 1114 INIT(= N_("E453: UL color unknown"));
1115 #ifdef FEAT_EVAL
1049 EXTERN char e_function_list_was_modified[] 1116 EXTERN char e_function_list_was_modified[]
1050 INIT(= N_("E454: function list was modified")); 1117 INIT(= N_("E454: function list was modified"));
1118 #endif
1051 #ifdef FEAT_POSTSCRIPT 1119 #ifdef FEAT_POSTSCRIPT
1052 EXTERN char e_error_writing_to_postscript_output_file[] 1120 EXTERN char e_error_writing_to_postscript_output_file[]
1053 INIT(= N_("E455: Error writing to PostScript output file")); 1121 INIT(= N_("E455: Error writing to PostScript output file"));
1054 EXTERN char e_cant_open_file_str_2[] 1122 EXTERN char e_cant_open_file_str_2[]
1055 INIT(= N_("E456: Can't open file \"%s\"")); 1123 INIT(= N_("E456: Can't open file \"%s\""));
1056 EXTERN char e_cant_find_postscript_resource_file_str_ps[] 1124 EXTERN char e_cant_find_postscript_resource_file_str_ps[]
1057 INIT(= N_("E456: Can't find PostScript resource file \"%s.ps\"")); 1125 INIT(= N_("E456: Can't find PostScript resource file \"%s.ps\""));
1058 EXTERN char e_cant_read_postscript_resource_file_str[] 1126 EXTERN char e_cant_read_postscript_resource_file_str[]
1059 INIT(= N_("E457: Can't read PostScript resource file \"%s\"")); 1127 INIT(= N_("E457: Can't read PostScript resource file \"%s\""));
1060 #endif 1128 #endif
1129 #ifdef FEAT_GUI_X11
1061 EXTERN char e_cannot_allocate_colormap_entry_some_colors_may_be_incorrect[] 1130 EXTERN char e_cannot_allocate_colormap_entry_some_colors_may_be_incorrect[]
1062 INIT(= N_("E458: Cannot allocate colormap entry, some colors may be incorrect")); 1131 INIT(= N_("E458: Cannot allocate colormap entry, some colors may be incorrect"));
1132 #endif
1063 #if defined(UNIX) || defined(FEAT_SESSION) 1133 #if defined(UNIX) || defined(FEAT_SESSION)
1064 EXTERN char e_cannot_go_back_to_previous_directory[] 1134 EXTERN char e_cannot_go_back_to_previous_directory[]
1065 INIT(= N_("E459: Cannot go back to previous directory")); 1135 INIT(= N_("E459: Cannot go back to previous directory"));
1066 #endif 1136 #endif
1137 #ifdef FEAT_EVAL
1067 EXTERN char e_entries_missing_in_mapset_dict_argument[] 1138 EXTERN char e_entries_missing_in_mapset_dict_argument[]
1068 INIT(= N_("E460: entries missing in mapset() dict argument")); 1139 INIT(= N_("E460: entries missing in mapset() dict argument"));
1069 #ifdef FEAT_EVAL
1070 EXTERN char e_illegal_variable_name_str[] 1140 EXTERN char e_illegal_variable_name_str[]
1071 INIT(= N_("E461: Illegal variable name: %s")); 1141 INIT(= N_("E461: Illegal variable name: %s"));
1072 #endif 1142 #endif
1073 EXTERN char e_could_not_prepare_for_reloading_str[] 1143 EXTERN char e_could_not_prepare_for_reloading_str[]
1074 INIT(= N_("E462: Could not prepare for reloading \"%s\"")); 1144 INIT(= N_("E462: Could not prepare for reloading \"%s\""));
1080 INIT(= N_("E464: Ambiguous use of user-defined command")); 1150 INIT(= N_("E464: Ambiguous use of user-defined command"));
1081 EXTERN char e_winsize_requires_two_number_arguments[] 1151 EXTERN char e_winsize_requires_two_number_arguments[]
1082 INIT(= N_("E465: :winsize requires two number arguments")); 1152 INIT(= N_("E465: :winsize requires two number arguments"));
1083 EXTERN char e_winpos_requires_two_number_arguments[] 1153 EXTERN char e_winpos_requires_two_number_arguments[]
1084 INIT(= N_("E466: :winpos requires two number arguments")); 1154 INIT(= N_("E466: :winpos requires two number arguments"));
1155 #ifdef FEAT_EVAL
1085 EXTERN char e_custom_completion_requires_function_argument[] 1156 EXTERN char e_custom_completion_requires_function_argument[]
1086 INIT(= N_("E467: Custom completion requires a function argument")); 1157 INIT(= N_("E467: Custom completion requires a function argument"));
1158 #endif
1087 EXTERN char e_completion_argument_only_allowed_for_custom_completion[] 1159 EXTERN char e_completion_argument_only_allowed_for_custom_completion[]
1088 INIT(= N_("E468: Completion argument only allowed for custom completion")); 1160 INIT(= N_("E468: Completion argument only allowed for custom completion"));
1161 #ifdef FEAT_CSCOPE
1089 EXTERN char e_invalid_cscopequickfix_flag_chr_for_chr[] 1162 EXTERN char e_invalid_cscopequickfix_flag_chr_for_chr[]
1090 INIT(= N_("E469: invalid cscopequickfix flag %c for %c")); 1163 INIT(= N_("E469: invalid cscopequickfix flag %c for %c"));
1164 #endif
1091 EXTERN char e_command_aborted[] 1165 EXTERN char e_command_aborted[]
1092 INIT(= N_("E470: Command aborted")); 1166 INIT(= N_("E470: Command aborted"));
1093 EXTERN char e_argument_required[] 1167 EXTERN char e_argument_required[]
1094 INIT(= N_("E471: Argument required")); 1168 INIT(= N_("E471: Argument required"));
1095 EXTERN char e_command_failed[] 1169 EXTERN char e_command_failed[]
1100 INIT(= N_("E474: Invalid argument")); 1174 INIT(= N_("E474: Invalid argument"));
1101 EXTERN char e_invalid_argument_str[] 1175 EXTERN char e_invalid_argument_str[]
1102 INIT(= N_("E475: Invalid argument: %s")); 1176 INIT(= N_("E475: Invalid argument: %s"));
1103 EXTERN char e_invalid_value_for_argument_str[] 1177 EXTERN char e_invalid_value_for_argument_str[]
1104 INIT(= N_("E475: Invalid value for argument %s")); 1178 INIT(= N_("E475: Invalid value for argument %s"));
1179 #if defined(FEAT_JOB_CHANNEL) || defined(FEAT_PROP_POPUP)
1105 EXTERN char e_invalid_value_for_argument_str_str[] 1180 EXTERN char e_invalid_value_for_argument_str_str[]
1106 INIT(= N_("E475: Invalid value for argument %s: %s")); 1181 INIT(= N_("E475: Invalid value for argument %s: %s"));
1182 #endif
1107 EXTERN char e_invalid_command[] 1183 EXTERN char e_invalid_command[]
1108 INIT(= N_("E476: Invalid command")); 1184 INIT(= N_("E476: Invalid command"));
1109 #ifdef FEAT_EVAL 1185 #ifdef FEAT_EVAL
1110 EXTERN char e_invalid_command_str[] 1186 EXTERN char e_invalid_command_str[]
1111 INIT(= N_("E476: Invalid command: %s")); 1187 INIT(= N_("E476: Invalid command: %s"));
1228 INIT(= N_("E523: Not allowed here")); 1304 INIT(= N_("E523: Not allowed here"));
1229 EXTERN char e_missing_colon[] 1305 EXTERN char e_missing_colon[]
1230 INIT(= N_("E524: Missing colon")); 1306 INIT(= N_("E524: Missing colon"));
1231 EXTERN char e_zero_length_string[] 1307 EXTERN char e_zero_length_string[]
1232 INIT(= N_("E525: Zero length string")); 1308 INIT(= N_("E525: Zero length string"));
1309 #ifdef FEAT_VIMINFO
1233 EXTERN char e_missing_number_after_angle_str_angle[] 1310 EXTERN char e_missing_number_after_angle_str_angle[]
1234 INIT(= N_("E526: Missing number after <%s>")); 1311 INIT(= N_("E526: Missing number after <%s>"));
1235 EXTERN char e_missing_comma[] 1312 EXTERN char e_missing_comma[]
1236 INIT(= N_("E527: Missing comma")); 1313 INIT(= N_("E527: Missing comma"));
1237 EXTERN char e_must_specify_a_value[] 1314 EXTERN char e_must_specify_a_value[]
1238 INIT(= N_("E528: Must specify a ' value")); 1315 INIT(= N_("E528: Must specify a ' value"));
1316 #endif
1239 EXTERN char e_cannot_set_term_to_empty_string[] 1317 EXTERN char e_cannot_set_term_to_empty_string[]
1240 INIT(= N_("E529: Cannot set 'term' to empty string")); 1318 INIT(= N_("E529: Cannot set 'term' to empty string"));
1319 #ifdef FEAT_GUI
1241 EXTERN char e_cannot_change_term_in_GUI[] 1320 EXTERN char e_cannot_change_term_in_GUI[]
1242 INIT(= N_("E530: Cannot change 'term' in the GUI")); 1321 INIT(= N_("E530: Cannot change 'term' in the GUI"));
1243 EXTERN char e_use_gui_to_start_GUI[] 1322 EXTERN char e_use_gui_to_start_GUI[]
1244 INIT(= N_("E531: Use \":gui\" to start the GUI")); 1323 INIT(= N_("E531: Use \":gui\" to start the GUI"));
1324 #endif
1245 #ifdef FEAT_NETBEANS_INTG 1325 #ifdef FEAT_NETBEANS_INTG
1246 EXTERN char e_highlighting_color_name_too_long_in_defineAnnoType[] 1326 EXTERN char e_highlighting_color_name_too_long_in_defineAnnoType[]
1247 INIT(= N_("E532: highlighting color name too long in defineAnnoType")); 1327 INIT(= N_("E532: highlighting color name too long in defineAnnoType"));
1248 #endif 1328 #endif
1329 #ifdef FEAT_GUI
1249 EXTERN char e_cant_select_wide_font[] 1330 EXTERN char e_cant_select_wide_font[]
1250 INIT(= N_("E533: can't select wide font")); 1331 INIT(= N_("E533: can't select wide font"));
1251 EXTERN char e_invalid_wide_font[] 1332 EXTERN char e_invalid_wide_font[]
1252 INIT(= N_("E534: Invalid wide font")); 1333 INIT(= N_("E534: Invalid wide font"));
1334 #endif
1253 EXTERN char e_illegal_character_after_chr[] 1335 EXTERN char e_illegal_character_after_chr[]
1254 INIT(= N_("E535: Illegal character after <%c>")); 1336 INIT(= N_("E535: Illegal character after <%c>"));
1337 #ifdef FEAT_FOLDING
1255 EXTERN char e_comma_required[] 1338 EXTERN char e_comma_required[]
1256 INIT(= N_("E536: comma required")); 1339 INIT(= N_("E536: comma required"));
1257 EXTERN char e_commentstring_must_be_empty_or_contain_str[] 1340 EXTERN char e_commentstring_must_be_empty_or_contain_str[]
1258 INIT(= N_("E537: 'commentstring' must be empty or contain %s")); 1341 INIT(= N_("E537: 'commentstring' must be empty or contain %s"));
1342 #endif
1259 // E538 unused 1343 // E538 unused
1260 EXTERN char e_illegal_character_str[] 1344 EXTERN char e_illegal_character_str[]
1261 INIT(= N_("E539: Illegal character <%s>")); 1345 INIT(= N_("E539: Illegal character <%s>"));
1346 #ifdef FEAT_STL_OPT
1262 EXTERN char e_unclosed_expression_sequence[] 1347 EXTERN char e_unclosed_expression_sequence[]
1263 INIT(= N_("E540: Unclosed expression sequence")); 1348 INIT(= N_("E540: Unclosed expression sequence"));
1264 // E541 unused 1349 // E541 unused
1265 EXTERN char e_unbalanced_groups[] 1350 EXTERN char e_unbalanced_groups[]
1266 INIT(= N_("E542: unbalanced groups")); 1351 INIT(= N_("E542: unbalanced groups"));
1352 #endif
1267 #ifdef MSWIN 1353 #ifdef MSWIN
1268 EXTERN char e_not_valid_codepage[] 1354 EXTERN char e_not_valid_codepage[]
1269 INIT(= N_("E543: Not a valid codepage")); 1355 INIT(= N_("E543: Not a valid codepage"));
1270 #endif 1356 #endif
1357 #ifdef FEAT_KEYMAP
1271 EXTERN char e_keymap_file_not_found[] 1358 EXTERN char e_keymap_file_not_found[]
1272 INIT(= N_("E544: Keymap file not found")); 1359 INIT(= N_("E544: Keymap file not found"));
1360 #endif
1273 #ifdef CURSOR_SHAPE 1361 #ifdef CURSOR_SHAPE
1274 EXTERN char e_missing_colon_2[] 1362 EXTERN char e_missing_colon_2[]
1275 INIT(= N_("E545: Missing colon")); 1363 INIT(= N_("E545: Missing colon"));
1276 EXTERN char e_illegal_mode[] 1364 EXTERN char e_illegal_mode[]
1277 INIT(= N_("E546: Illegal mode")); 1365 INIT(= N_("E546: Illegal mode"));
1282 #endif 1370 #endif
1283 EXTERN char e_digit_expected[] 1371 EXTERN char e_digit_expected[]
1284 INIT(= N_("E548: digit expected")); 1372 INIT(= N_("E548: digit expected"));
1285 EXTERN char e_illegal_percentage[] 1373 EXTERN char e_illegal_percentage[]
1286 INIT(= N_("E549: Illegal percentage")); 1374 INIT(= N_("E549: Illegal percentage"));
1375 #ifdef FEAT_PRINTER
1287 EXTERN char e_missing_colon_3[] 1376 EXTERN char e_missing_colon_3[]
1288 INIT(= N_("E550: Missing colon")); 1377 INIT(= N_("E550: Missing colon"));
1289 EXTERN char e_illegal_component[] 1378 EXTERN char e_illegal_component[]
1290 INIT(= N_("E551: Illegal component")); 1379 INIT(= N_("E551: Illegal component"));
1291 EXTERN char e_digit_expected_2[] 1380 EXTERN char e_digit_expected_2[]
1292 INIT(= N_("E552: digit expected")); 1381 INIT(= N_("E552: digit expected"));
1382 #endif
1383 #ifdef FEAT_QUICKFIX
1293 EXTERN char e_no_more_items[] 1384 EXTERN char e_no_more_items[]
1294 INIT(= N_("E553: No more items")); 1385 INIT(= N_("E553: No more items"));
1386 #endif
1295 EXTERN char e_syntax_error_in_str_curlies[] 1387 EXTERN char e_syntax_error_in_str_curlies[]
1296 INIT(= N_("E554: Syntax error in %s{...}")); 1388 INIT(= N_("E554: Syntax error in %s{...}"));
1297 EXTERN char e_at_bottom_of_tag_stack[] 1389 EXTERN char e_at_bottom_of_tag_stack[]
1298 INIT(= N_("E555: at bottom of tag stack")); 1390 INIT(= N_("E555: at bottom of tag stack"));
1299 EXTERN char e_at_top_of_tag_stack[] 1391 EXTERN char e_at_top_of_tag_stack[]
1300 INIT(= N_("E556: at top of tag stack")); 1392 INIT(= N_("E556: at top of tag stack"));
1301 EXTERN char e_cannot_open_termcap_file[] 1393 EXTERN char e_cannot_open_termcap_file[]
1302 INIT(= N_("E557: Cannot open termcap file")); 1394 INIT(= N_("E557: Cannot open termcap file"));
1303 EXTERN char e_terminal_entry_not_found_in_terminfo[] 1395 EXTERN char e_terminal_entry_not_found_in_terminfo[]
1304 INIT(= N_("E558: Terminal entry not found in terminfo")); 1396 INIT(= N_("E558: Terminal entry not found in terminfo"));
1397 #if defined(HAVE_TGETENT) && !defined(TERMINFO)
1305 EXTERN char e_terminal_entry_not_found_in_termcap[] 1398 EXTERN char e_terminal_entry_not_found_in_termcap[]
1306 INIT(= N_("E559: Terminal entry not found in termcap")); 1399 INIT(= N_("E559: Terminal entry not found in termcap"));
1400 #endif
1401 #ifdef FEAT_CSCOPE
1307 EXTERN char e_usage_cscope_str[] 1402 EXTERN char e_usage_cscope_str[]
1308 INIT(= N_("E560: Usage: cs[cope] %s")); 1403 INIT(= N_("E560: Usage: cs[cope] %s"));
1309 EXTERN char e_unknown_cscope_search_type[] 1404 EXTERN char e_unknown_cscope_search_type[]
1310 INIT(= N_("E561: unknown cscope search type")); 1405 INIT(= N_("E561: unknown cscope search type"));
1311 EXTERN char e_usage_cstag_ident[] 1406 EXTERN char e_usage_cstag_ident[]
1312 INIT(= N_("E562: Usage: cstag <ident>")); 1407 INIT(= N_("E562: Usage: cstag <ident>"));
1313 EXTERN char e_stat_str_error_nr[] 1408 EXTERN char e_stat_str_error_nr[]
1314 INIT(= N_("E563: stat(%s) error: %d")); 1409 INIT(= N_("E563: stat(%s) error: %d"));
1315 EXTERN char e_str_is_not_directory_or_valid_cscope_database[] 1410 EXTERN char e_str_is_not_directory_or_valid_cscope_database[]
1316 INIT(= N_("E564: %s is not a directory or a valid cscope database")); 1411 INIT(= N_("E564: %s is not a directory or a valid cscope database"));
1412 #endif
1317 EXTERN char e_not_allowed_to_change_text_or_change_window[] 1413 EXTERN char e_not_allowed_to_change_text_or_change_window[]
1318 INIT(= N_("E565: Not allowed to change text or change window")); 1414 INIT(= N_("E565: Not allowed to change text or change window"));
1415 #ifdef FEAT_CSCOPE
1319 EXTERN char e_could_not_create_cscope_pipes[] 1416 EXTERN char e_could_not_create_cscope_pipes[]
1320 INIT(= N_("E566: Could not create cscope pipes")); 1417 INIT(= N_("E566: Could not create cscope pipes"));
1321 EXTERN char e_no_cscope_connections[] 1418 EXTERN char e_no_cscope_connections[]
1322 INIT(= N_("E567: no cscope connections")); 1419 INIT(= N_("E567: no cscope connections"));
1323 EXTERN char e_duplicate_cscope_database_not_added[] 1420 EXTERN char e_duplicate_cscope_database_not_added[]
1324 INIT(= N_("E568: duplicate cscope database not added")); 1421 INIT(= N_("E568: duplicate cscope database not added"));
1325 // E569 unused 1422 // E569 unused
1326 EXTERN char e_fatal_error_in_cs_manage_matches[] 1423 EXTERN char e_fatal_error_in_cs_manage_matches[]
1327 INIT(= N_("E570: fatal error in cs_manage_matches")); 1424 INIT(= N_("E570: fatal error in cs_manage_matches"));
1425 #endif
1328 #ifdef DYNAMIC_TCL 1426 #ifdef DYNAMIC_TCL
1329 EXTERN char e_sorry_this_command_is_disabled_tcl_library_could_not_be_loaded[] 1427 EXTERN char e_sorry_this_command_is_disabled_tcl_library_could_not_be_loaded[]
1330 INIT(= N_("E571: Sorry, this command is disabled: the Tcl library could not be loaded.")); 1428 INIT(= N_("E571: Sorry, this command is disabled: the Tcl library could not be loaded."));
1331 #endif 1429 #endif
1430 #ifdef FEAT_TCL
1332 EXTERN char e_exit_code_nr[] 1431 EXTERN char e_exit_code_nr[]
1333 INIT(= N_("E572: exit code %d")); 1432 INIT(= N_("E572: exit code %d"));
1433 #endif
1434 #ifdef FEAT_CLIENTSERVER
1334 EXTERN char e_invalid_server_id_used_str[] 1435 EXTERN char e_invalid_server_id_used_str[]
1335 INIT(= N_("E573: Invalid server id used: %s")); 1436 INIT(= N_("E573: Invalid server id used: %s"));
1437 #endif
1438 #ifdef FEAT_VIMINFO
1336 EXTERN char e_unknown_register_type_nr[] 1439 EXTERN char e_unknown_register_type_nr[]
1337 INIT(= N_("E574: Unknown register type %d")); 1440 INIT(= N_("E574: Unknown register type %d"));
1338 // E575 1441 // E575
1339 EXTERN char e_illegal_starting_char[] 1442 EXTERN char e_illegal_starting_char[]
1340 INIT(= N_("Illegal starting char")); 1443 INIT(= N_("Illegal starting char"));
1342 EXTERN char e_nonr_missing_gt[] 1445 EXTERN char e_nonr_missing_gt[]
1343 INIT(= N_("Missing '>'")); 1446 INIT(= N_("Missing '>'"));
1344 // E577 1447 // E577
1345 EXTERN char e_illegal_register_name[] 1448 EXTERN char e_illegal_register_name[]
1346 INIT(= N_("Illegal register name")); 1449 INIT(= N_("Illegal register name"));
1450 #endif
1347 EXTERN char e_not_allowed_to_change_text_here[] 1451 EXTERN char e_not_allowed_to_change_text_here[]
1348 INIT(= N_("E578: Not allowed to change text here")); 1452 INIT(= N_("E578: Not allowed to change text here"));
1349 #ifdef FEAT_EVAL 1453 #ifdef FEAT_EVAL
1350 EXTERN char e_if_nesting_too_deep[] 1454 EXTERN char e_if_nesting_too_deep[]
1351 INIT(= N_("E579: :if nesting too deep")); 1455 INIT(= N_("E579: :if nesting too deep"));
1372 EXTERN char e_endfor_without_for[] 1476 EXTERN char e_endfor_without_for[]
1373 INIT(= N_("E588: :endfor without :for")); 1477 INIT(= N_("E588: :endfor without :for"));
1374 #endif 1478 #endif
1375 EXTERN char e_backupext_and_patchmode_are_equal[] 1479 EXTERN char e_backupext_and_patchmode_are_equal[]
1376 INIT(= N_("E589: 'backupext' and 'patchmode' are equal")); 1480 INIT(= N_("E589: 'backupext' and 'patchmode' are equal"));
1481 #ifdef FEAT_QUICKFIX
1377 EXTERN char e_preview_window_already_exists[] 1482 EXTERN char e_preview_window_already_exists[]
1378 INIT(= N_("E590: A preview window already exists")); 1483 INIT(= N_("E590: A preview window already exists"));
1484 #endif
1379 EXTERN char e_winheight_cannot_be_smaller_than_winminheight[] 1485 EXTERN char e_winheight_cannot_be_smaller_than_winminheight[]
1380 INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'")); 1486 INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'"));
1381 EXTERN char e_winwidth_cannot_be_smaller_than_winminwidth[] 1487 EXTERN char e_winwidth_cannot_be_smaller_than_winminwidth[]
1382 INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'")); 1488 INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
1383 EXTERN char e_need_at_least_nr_lines[] 1489 EXTERN char e_need_at_least_nr_lines[]
1384 INIT(= N_("E593: Need at least %d lines")); 1490 INIT(= N_("E593: Need at least %d lines"));
1385 EXTERN char e_need_at_least_nr_columns[] 1491 EXTERN char e_need_at_least_nr_columns[]
1386 INIT(= N_("E594: Need at least %d columns")); 1492 INIT(= N_("E594: Need at least %d columns"));
1493 #ifdef FEAT_LINEBREAK
1387 EXTERN char e_showbreak_contains_unprintable_or_wide_character[] 1494 EXTERN char e_showbreak_contains_unprintable_or_wide_character[]
1388 INIT(= N_("E595: 'showbreak' contains unprintable or wide character")); 1495 INIT(= N_("E595: 'showbreak' contains unprintable or wide character"));
1496 #endif
1497 #ifdef FEAT_GUI
1389 EXTERN char e_invalid_fonts[] 1498 EXTERN char e_invalid_fonts[]
1390 INIT(= N_("E596: Invalid font(s)")); 1499 INIT(= N_("E596: Invalid font(s)"));
1500 # ifdef FEAT_XFONTSET
1391 EXTERN char e_cant_select_fontset[] 1501 EXTERN char e_cant_select_fontset[]
1392 INIT(= N_("E597: can't select fontset")); 1502 INIT(= N_("E597: can't select fontset"));
1393 EXTERN char e_invalid_fontset[] 1503 EXTERN char e_invalid_fontset[]
1394 INIT(= N_("E598: Invalid fontset")); 1504 INIT(= N_("E598: Invalid fontset"));
1505 # endif
1506 #endif
1507 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
1395 EXTERN char e_value_of_imactivatekey_is_invalid[] 1508 EXTERN char e_value_of_imactivatekey_is_invalid[]
1396 INIT(= N_("E599: Value of 'imactivatekey' is invalid")); 1509 INIT(= N_("E599: Value of 'imactivatekey' is invalid"));
1510 #endif
1397 #ifdef FEAT_EVAL 1511 #ifdef FEAT_EVAL
1398 EXTERN char e_missing_endtry[] 1512 EXTERN char e_missing_endtry[]
1399 INIT(= N_("E600: Missing :endtry")); 1513 INIT(= N_("E600: Missing :endtry"));
1400 EXTERN char e_try_nesting_too_deep[] 1514 EXTERN char e_try_nesting_too_deep[]
1401 INIT(= N_("E601: :try nesting too deep")); 1515 INIT(= N_("E601: :try nesting too deep"));
1426 #endif 1540 #endif
1427 #ifdef FEAT_SIGNS 1541 #ifdef FEAT_SIGNS
1428 EXTERN char e_too_many_signs_defined[] 1542 EXTERN char e_too_many_signs_defined[]
1429 INIT(= N_("E612: Too many signs defined")); 1543 INIT(= N_("E612: Too many signs defined"));
1430 #endif 1544 #endif
1431 #ifdef FEAT_PRINTER 1545 #if defined(MSWIN) && defined(FEAT_PRINTER)
1432 EXTERN char e_unknown_printer_font_str[] 1546 EXTERN char e_unknown_printer_font_str[]
1433 INIT(= N_("E613: Unknown printer font: %s")); 1547 INIT(= N_("E613: Unknown printer font: %s"));
1434 #endif 1548 #endif
1435 #ifdef FEAT_BROWSE 1549 #ifdef FEAT_BROWSE
1436 EXTERN char e_vim_selfile_cant_return_to_current_directory[] 1550 EXTERN char e_vim_selfile_cant_return_to_current_directory[]
1455 INIT(= N_("E621: \"%s\" resource file has wrong version")); 1569 INIT(= N_("E621: \"%s\" resource file has wrong version"));
1456 #endif 1570 #endif
1457 #ifdef FEAT_CSCOPE 1571 #ifdef FEAT_CSCOPE
1458 EXTERN char e_could_not_fork_for_cscope[] 1572 EXTERN char e_could_not_fork_for_cscope[]
1459 INIT(= N_("E622: Could not fork for cscope")); 1573 INIT(= N_("E622: Could not fork for cscope"));
1574 # ifndef UNIX
1460 EXTERN char e_could_not_spawn_cscope_process[] 1575 EXTERN char e_could_not_spawn_cscope_process[]
1461 INIT(= N_("E623: Could not spawn cscope process")); 1576 INIT(= N_("E623: Could not spawn cscope process"));
1462 #endif 1577 # endif
1578 #endif
1579 #if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT)
1463 EXTERN char e_cant_open_file_str_3[] 1580 EXTERN char e_cant_open_file_str_3[]
1464 INIT(= N_("E624: Can't open file \"%s\"")); 1581 INIT(= N_("E624: Can't open file \"%s\""));
1465 #ifdef FEAT_CSCOPE 1582 #endif
1583 #if defined(FEAT_CSCOPE) && !defined(UNIX)
1466 EXTERN char e_cannot_open_cscope_database_str[] 1584 EXTERN char e_cannot_open_cscope_database_str[]
1467 INIT(= N_("E625: cannot open cscope database: %s")); 1585 INIT(= N_("E625: cannot open cscope database: %s"));
1468 EXTERN char e_cannot_get_cscope_database_information[] 1586 EXTERN char e_cannot_get_cscope_database_information[]
1469 INIT(= N_("E626: cannot get cscope database information")); 1587 INIT(= N_("E626: cannot get cscope database information"));
1470 #endif 1588 #endif
1471 #ifdef FEAT_NETBEANS_INTG 1589 #ifdef FEAT_NETBEANS_INTG
1472 EXTERN char e_missing_colon_str[] 1590 EXTERN char e_missing_colon_str[]
1473 INIT(= "E627: missing colon: %s"); 1591 INIT(= "E627: missing colon: %s");
1474 EXTERN char e_missing_bang_or_slash_in_str[] 1592 EXTERN char e_missing_bang_or_slash_in_str[]
1475 INIT(= "E628: missing ! or / in: %s"); 1593 INIT(= "E628: missing ! or / in: %s");
1594 #ifdef NBDEBUG
1476 EXTERN char e_bad_return_from_nb_do_cmd[] 1595 EXTERN char e_bad_return_from_nb_do_cmd[]
1477 INIT(= "E629: bad return from nb_do_cmd"); 1596 INIT(= "E629: bad return from nb_do_cmd");
1597 #endif
1478 #endif 1598 #endif
1479 #ifdef FEAT_JOB_CHANNEL 1599 #ifdef FEAT_JOB_CHANNEL
1480 EXTERN char e_str_write_while_not_connected[] 1600 EXTERN char e_str_write_while_not_connected[]
1481 INIT(= N_("E630: %s(): write while not connected")); 1601 INIT(= N_("E630: %s(): write while not connected"));
1482 EXTERN char e_str_write_failed[] 1602 EXTERN char e_str_write_failed[]
1527 INIT(= "E652: Invalid buffer identifier in getAnno"); 1647 INIT(= "E652: Invalid buffer identifier in getAnno");
1528 #endif 1648 #endif
1529 // E653 unused 1649 // E653 unused
1530 EXTERN char e_missing_delimiter_after_search_pattern_str[] 1650 EXTERN char e_missing_delimiter_after_search_pattern_str[]
1531 INIT(= N_("E654: missing delimiter after search pattern: %s")); 1651 INIT(= N_("E654: missing delimiter after search pattern: %s"));
1652 #ifdef FEAT_EVAL
1532 EXTERN char e_too_many_symbolic_links_cycle[] 1653 EXTERN char e_too_many_symbolic_links_cycle[]
1533 INIT(= N_("E655: Too many symbolic links (cycle?)")); 1654 INIT(= N_("E655: Too many symbolic links (cycle?)"));
1655 #endif
1534 #ifdef FEAT_NETBEANS_INTG 1656 #ifdef FEAT_NETBEANS_INTG
1535 // E656 1657 // E656
1536 EXTERN char e_netbeans_disallows_writes_of_unmodified_buffers[] 1658 EXTERN char e_netbeans_disallows_writes_of_unmodified_buffers[]
1537 INIT(= N_("NetBeans disallows writes of unmodified buffers")); 1659 INIT(= N_("NetBeans disallows writes of unmodified buffers"));
1538 // E657 1660 // E657
1561 INIT(= N_("E664: changelist is empty")); 1683 INIT(= N_("E664: changelist is empty"));
1562 #ifdef FEAT_GUI 1684 #ifdef FEAT_GUI
1563 EXTERN char e_cannot_start_gui_no_valid_font_found[] 1685 EXTERN char e_cannot_start_gui_no_valid_font_found[]
1564 INIT(= N_("E665: Cannot start GUI, no valid font found")); 1686 INIT(= N_("E665: Cannot start GUI, no valid font found"));
1565 #endif 1687 #endif
1688 #ifdef FEAT_EVAL
1566 EXTERN char e_compiler_not_supported_str[] 1689 EXTERN char e_compiler_not_supported_str[]
1567 INIT(= N_("E666: compiler not supported: %s")); 1690 INIT(= N_("E666: compiler not supported: %s"));
1691 #endif
1568 #ifdef HAVE_FSYNC 1692 #ifdef HAVE_FSYNC
1569 EXTERN char e_fsync_failed[] 1693 EXTERN char e_fsync_failed[]
1570 INIT(= N_("E667: Fsync failed")); 1694 INIT(= N_("E667: Fsync failed"));
1571 #endif 1695 #endif
1572 #ifdef FEAT_NETBEANS_INTG 1696 #ifdef FEAT_NETBEANS_INTG
1581 EXTERN char e_cannot_find_window_title_str[] 1705 EXTERN char e_cannot_find_window_title_str[]
1582 INIT(= N_("E671: Cannot find window title \"%s\"")); 1706 INIT(= N_("E671: Cannot find window title \"%s\""));
1583 EXTERN char e_unable_to_open_window_inside_mdi_application[] 1707 EXTERN char e_unable_to_open_window_inside_mdi_application[]
1584 INIT(= N_("E672: Unable to open window inside MDI application")); 1708 INIT(= N_("E672: Unable to open window inside MDI application"));
1585 #endif 1709 #endif
1710 #if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT)
1586 EXTERN char e_incompatible_multi_byte_encoding_and_character_set[] 1711 EXTERN char e_incompatible_multi_byte_encoding_and_character_set[]
1587 INIT(= N_("E673: Incompatible multi-byte encoding and character set")); 1712 INIT(= N_("E673: Incompatible multi-byte encoding and character set"));
1588 EXTERN char e_printmbcharset_cannot_be_empty_with_multi_byte_encoding[] 1713 EXTERN char e_printmbcharset_cannot_be_empty_with_multi_byte_encoding[]
1589 INIT(= N_("E674: printmbcharset cannot be empty with multi-byte encoding.")); 1714 INIT(= N_("E674: printmbcharset cannot be empty with multi-byte encoding."));
1590 EXTERN char e_no_default_font_specified_for_multi_byte_printing[] 1715 EXTERN char e_no_default_font_specified_for_multi_byte_printing[]
1591 INIT(= N_("E675: No default font specified for multi-byte printing.")); 1716 INIT(= N_("E675: No default font specified for multi-byte printing."));
1717 #endif
1592 EXTERN char e_no_matching_autocommands_for_acwrite_buffer[] 1718 EXTERN char e_no_matching_autocommands_for_acwrite_buffer[]
1593 INIT(= N_("E676: No matching autocommands for acwrite buffer")); 1719 INIT(= N_("E676: No matching autocommands for acwrite buffer"));
1720 #ifdef FEAT_SYN_HL
1594 EXTERN char e_error_writing_temp_file[] 1721 EXTERN char e_error_writing_temp_file[]
1595 INIT(= N_("E677: Error writing temp file")); 1722 INIT(= N_("E677: Error writing temp file"));
1723 #endif
1596 EXTERN char e_invalid_character_after_str_2[] 1724 EXTERN char e_invalid_character_after_str_2[]
1597 INIT(= N_("E678: Invalid character after %s%%[dxouU]")); 1725 INIT(= N_("E678: Invalid character after %s%%[dxouU]"));
1726 #ifdef FEAT_SYN_HL
1598 EXTERN char e_recursive_loop_loading_syncolor_vim[] 1727 EXTERN char e_recursive_loop_loading_syncolor_vim[]
1599 INIT(= N_("E679: recursive loop loading syncolor.vim")); 1728 INIT(= N_("E679: recursive loop loading syncolor.vim"));
1729 #endif
1600 EXTERN char e_buffer_nr_invalid_buffer_number[] 1730 EXTERN char e_buffer_nr_invalid_buffer_number[]
1601 INIT(= N_("E680: <buffer=%d>: invalid buffer number")); 1731 INIT(= N_("E680: <buffer=%d>: invalid buffer number"));
1732 #ifdef FEAT_QUICKFIX
1602 EXTERN char e_buffer_is_not_loaded[] 1733 EXTERN char e_buffer_is_not_loaded[]
1603 INIT(= N_("E681: Buffer is not loaded")); 1734 INIT(= N_("E681: Buffer is not loaded"));
1604 EXTERN char e_invalid_search_pattern_or_delimiter[] 1735 EXTERN char e_invalid_search_pattern_or_delimiter[]
1605 INIT(= N_("E682: Invalid search pattern or delimiter")); 1736 INIT(= N_("E682: Invalid search pattern or delimiter"));
1606 EXTERN char e_file_name_missing_or_invalid_pattern[] 1737 EXTERN char e_file_name_missing_or_invalid_pattern[]
1607 INIT(= N_("E683: File name missing or invalid pattern")); 1738 INIT(= N_("E683: File name missing or invalid pattern"));
1739 #endif
1608 #ifdef FEAT_EVAL 1740 #ifdef FEAT_EVAL
1609 EXTERN char e_list_index_out_of_range_nr[] 1741 EXTERN char e_list_index_out_of_range_nr[]
1610 INIT(= N_("E684: list index out of range: %ld")); 1742 INIT(= N_("E684: list index out of range: %ld"));
1611 #endif 1743 #endif
1612 EXTERN char e_internal_error_str[] 1744 EXTERN char e_internal_error_str[]
1785 #endif 1917 #endif
1786 #ifdef FEAT_SPELL 1918 #ifdef FEAT_SPELL
1787 EXTERN char e_spellfile_does_not_have_nr_entries[] 1919 EXTERN char e_spellfile_does_not_have_nr_entries[]
1788 INIT(= N_("E765: 'spellfile' does not have %d entries")); 1920 INIT(= N_("E765: 'spellfile' does not have %d entries"));
1789 #endif 1921 #endif
1922 #ifdef FEAT_EVAL
1790 EXTERN char e_insufficient_arguments_for_printf[] 1923 EXTERN char e_insufficient_arguments_for_printf[]
1791 INIT(= N_("E766: Insufficient arguments for printf()")); 1924 INIT(= N_("E766: Insufficient arguments for printf()"));
1925 #endif
1792 EXTERN char e_too_many_arguments_to_printf[] 1926 EXTERN char e_too_many_arguments_to_printf[]
1793 INIT(= N_("E767: Too many arguments for printf()")); 1927 INIT(= N_("E767: Too many arguments for printf()"));
1794 EXTERN char e_swap_file_exists_str_silent_overrides[] 1928 EXTERN char e_swap_file_exists_str_silent_overrides[]
1795 INIT(= N_("E768: Swap file exists: %s (:silent! overrides)")); 1929 INIT(= N_("E768: Swap file exists: %s (:silent! overrides)"));
1796 EXTERN char e_missing_rsb_after_str_lsb[] 1930 EXTERN char e_missing_rsb_after_str_lsb[]
1803 EXTERN char e_spell_file_is_for_newer_version_of_vim[] 1937 EXTERN char e_spell_file_is_for_newer_version_of_vim[]
1804 INIT(= N_("E772: Spell file is for newer version of Vim")); 1938 INIT(= N_("E772: Spell file is for newer version of Vim"));
1805 #endif 1939 #endif
1806 EXTERN char e_symlink_loop_for_str[] 1940 EXTERN char e_symlink_loop_for_str[]
1807 INIT(= N_("E773: Symlink loop for \"%s\"")); 1941 INIT(= N_("E773: Symlink loop for \"%s\""));
1942 #ifdef FEAT_EVAL
1808 EXTERN char e_operatorfunc_is_empty[] 1943 EXTERN char e_operatorfunc_is_empty[]
1809 INIT(= N_("E774: 'operatorfunc' is empty")); 1944 INIT(= N_("E774: 'operatorfunc' is empty"));
1810 #ifndef FEAT_EVAL 1945 #else
1811 EXTERN char e_eval_feature_not_available[] 1946 EXTERN char e_eval_feature_not_available[]
1812 INIT(= N_("E775: Eval feature not available")); 1947 INIT(= N_("E775: Eval feature not available"));
1813 #endif 1948 #endif
1814 #ifdef FEAT_QUICKFIX 1949 #ifdef FEAT_QUICKFIX
1815 EXTERN char e_no_location_list[] 1950 EXTERN char e_no_location_list[]
1816 INIT(= N_("E776: No location list")); 1951 INIT(= N_("E776: No location list"));
1817 #endif 1952 # ifdef FEAT_EVAL
1818 EXTERN char e_string_or_list_expected[] 1953 EXTERN char e_string_or_list_expected[]
1819 INIT(= N_("E777: String or List expected")); 1954 INIT(= N_("E777: String or List expected"));
1955 # endif
1956 #endif
1820 #ifdef FEAT_SPELL 1957 #ifdef FEAT_SPELL
1821 EXTERN char e_this_does_not_look_like_sug_file_str[] 1958 EXTERN char e_this_does_not_look_like_sug_file_str[]
1822 INIT(= N_("E778: This does not look like a .sug file: %s")); 1959 INIT(= N_("E778: This does not look like a .sug file: %s"));
1823 EXTERN char e_old_sug_file_needs_to_be_updated_str[] 1960 EXTERN char e_old_sug_file_needs_to_be_updated_str[]
1824 INIT(= N_("E779: Old .sug file, needs to be updated: %s")); 1961 INIT(= N_("E779: Old .sug file, needs to be updated: %s"));
1831 EXTERN char e_duplicate_char_in_map_entry[] 1968 EXTERN char e_duplicate_char_in_map_entry[]
1832 INIT(= N_("E783: duplicate char in MAP entry")); 1969 INIT(= N_("E783: duplicate char in MAP entry"));
1833 #endif 1970 #endif
1834 EXTERN char e_cannot_close_last_tab_page[] 1971 EXTERN char e_cannot_close_last_tab_page[]
1835 INIT(= N_("E784: Cannot close last tab page")); 1972 INIT(= N_("E784: Cannot close last tab page"));
1973 #ifdef FEAT_EVAL
1974 # ifdef FEAT_COMPL_FUNC
1836 EXTERN char e_complete_can_only_be_used_in_insert_mode[] 1975 EXTERN char e_complete_can_only_be_used_in_insert_mode[]
1837 INIT(= N_("E785: complete() can only be used in Insert mode")); 1976 INIT(= N_("E785: complete() can only be used in Insert mode"));
1977 # endif
1838 EXTERN char e_range_not_allowed[] 1978 EXTERN char e_range_not_allowed[]
1839 INIT(= N_("E786: Range not allowed")); 1979 INIT(= N_("E786: Range not allowed"));
1980 #endif
1981 #ifdef FEAT_DIFF
1840 EXTERN char e_buffer_changed_unexpectedly[] 1982 EXTERN char e_buffer_changed_unexpectedly[]
1841 INIT(= N_("E787: Buffer changed unexpectedly")); 1983 INIT(= N_("E787: Buffer changed unexpectedly"));
1984 #endif
1842 EXTERN char e_not_allowed_to_edit_another_buffer_now[] 1985 EXTERN char e_not_allowed_to_edit_another_buffer_now[]
1843 INIT(= N_("E788: Not allowed to edit another buffer now")); 1986 INIT(= N_("E788: Not allowed to edit another buffer now"));
1987 #ifdef FEAT_SYN_HL
1844 EXTERN char e_error_missing_rsb_str[] 1988 EXTERN char e_error_missing_rsb_str[]
1845 INIT(= N_("E789: Missing ']': %s")); 1989 INIT(= N_("E789: Missing ']': %s"));
1990 #endif
1846 EXTERN char e_undojoin_is_not_allowed_after_undo[] 1991 EXTERN char e_undojoin_is_not_allowed_after_undo[]
1847 INIT(= N_("E790: undojoin is not allowed after undo")); 1992 INIT(= N_("E790: undojoin is not allowed after undo"));
1993 #ifdef FEAT_KEYMAP
1848 EXTERN char e_empty_keymap_entry[] 1994 EXTERN char e_empty_keymap_entry[]
1849 INIT(= N_("E791: Empty keymap entry")); 1995 INIT(= N_("E791: Empty keymap entry"));
1996 #endif
1997 #ifdef FEAT_MENU
1850 EXTERN char e_empty_menu_name[] 1998 EXTERN char e_empty_menu_name[]
1851 INIT(= N_("E792: Empty menu name")); 1999 INIT(= N_("E792: Empty menu name"));
2000 #endif
1852 #ifdef FEAT_DIFF 2001 #ifdef FEAT_DIFF
1853 EXTERN char e_no_other_buffer_in_diff_mode_is_modifiable[] 2002 EXTERN char e_no_other_buffer_in_diff_mode_is_modifiable[]
1854 INIT(= N_("E793: No other buffer in diff mode is modifiable")); 2003 INIT(= N_("E793: No other buffer in diff mode is modifiable"));
1855 #endif 2004 #endif
1856 #ifdef FEAT_EVAL 2005 #ifdef FEAT_EVAL
1861 EXTERN char e_cannot_delete_variable[] 2010 EXTERN char e_cannot_delete_variable[]
1862 INIT(= N_("E795: Cannot delete variable")); 2011 INIT(= N_("E795: Cannot delete variable"));
1863 EXTERN char e_cannot_delete_variable_str[] 2012 EXTERN char e_cannot_delete_variable_str[]
1864 INIT(= N_("E795: Cannot delete variable %s")); 2013 INIT(= N_("E795: Cannot delete variable %s"));
1865 // E796 2014 // E796
2015 # ifdef MSWIN
1866 EXTERN char e_writing_to_device_disabled_with_opendevice_option[] 2016 EXTERN char e_writing_to_device_disabled_with_opendevice_option[]
1867 INIT(= N_("writing to device disabled with 'opendevice' option")); 2017 INIT(= N_("writing to device disabled with 'opendevice' option"));
2018 # endif
1868 #endif 2019 #endif
1869 #ifdef FEAT_SPELL 2020 #ifdef FEAT_SPELL
1870 EXTERN char e_spellfilemising_autocommand_deleted_buffer[] 2021 EXTERN char e_spellfilemising_autocommand_deleted_buffer[]
1871 INIT(= N_("E797: SpellFileMissing autocommand deleted buffer")); 2022 INIT(= N_("E797: SpellFileMissing autocommand deleted buffer"));
1872 #endif 2023 #endif
2024 #ifdef FEAT_SEARCH_EXTRA
1873 EXTERN char e_id_is_reserved_for_match_nr[] 2025 EXTERN char e_id_is_reserved_for_match_nr[]
1874 INIT(= N_("E798: ID is reserved for \":match\": %d")); 2026 INIT(= N_("E798: ID is reserved for \":match\": %d"));
1875 EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_1[] 2027 EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_1[]
1876 INIT(= N_("E799: Invalid ID: %d (must be greater than or equal to 1)")); 2028 INIT(= N_("E799: Invalid ID: %d (must be greater than or equal to 1)"));
2029 #endif
1877 #ifndef FEAT_ARABIC 2030 #ifndef FEAT_ARABIC
1878 EXTERN char e_arabic_cannot_be_used_not_enabled_at_compile_time[] 2031 EXTERN char e_arabic_cannot_be_used_not_enabled_at_compile_time[]
1879 INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n")); 2032 INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n"));
1880 #endif 2033 #endif
2034 #ifdef FEAT_SEARCH_EXTRA
1881 EXTERN char e_id_already_taken_nr[] 2035 EXTERN char e_id_already_taken_nr[]
1882 INIT(= N_("E801: ID already taken: %d")); 2036 INIT(= N_("E801: ID already taken: %d"));
1883 EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_2[] 2037 EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_2[]
1884 INIT(= N_("E802: Invalid ID: %d (must be greater than or equal to 1)")); 2038 INIT(= N_("E802: Invalid ID: %d (must be greater than or equal to 1)"));
1885 EXTERN char e_id_not_found_nr[] 2039 EXTERN char e_id_not_found_nr[]
1886 INIT(= N_("E803: ID not found: %d")); 2040 INIT(= N_("E803: ID not found: %d"));
2041 #endif
1887 #ifdef FEAT_EVAL 2042 #ifdef FEAT_EVAL
1888 EXTERN char e_cannot_use_percent_with_float[] 2043 EXTERN char e_cannot_use_percent_with_float[]
1889 INIT(= N_("E804: Cannot use '%' with Float")); 2044 INIT(= N_("E804: Cannot use '%' with Float"));
1890 #endif 2045 #endif
1891 #ifdef FEAT_FLOAT 2046 #ifdef FEAT_FLOAT
1904 #endif 2059 #endif
1905 #ifndef FEAT_EVAL 2060 #ifndef FEAT_EVAL
1906 EXTERN char e_hashsmall_is_not_available_without_the_eval_feature[] 2061 EXTERN char e_hashsmall_is_not_available_without_the_eval_feature[]
1907 INIT(= N_("E809: #< is not available without the +eval feature")); 2062 INIT(= N_("E809: #< is not available without the +eval feature"));
1908 #endif 2063 #endif
2064 #ifdef FEAT_DIFF
1909 EXTERN char e_cannot_read_or_write_temp_files[] 2065 EXTERN char e_cannot_read_or_write_temp_files[]
1910 INIT(= N_("E810: Cannot read or write temp files")); 2066 INIT(= N_("E810: Cannot read or write temp files"));
2067 #endif
1911 EXTERN char e_not_allowed_to_change_buffer_information_now[] 2068 EXTERN char e_not_allowed_to_change_buffer_information_now[]
1912 INIT(= N_("E811: Not allowed to change buffer information now")); 2069 INIT(= N_("E811: Not allowed to change buffer information now"));
1913 EXTERN char e_autocommands_changed_buffer_or_buffer_name[] 2070 EXTERN char e_autocommands_changed_buffer_or_buffer_name[]
1914 INIT(= N_("E812: Autocommands changed buffer or buffer name")); 2071 INIT(= N_("E812: Autocommands changed buffer or buffer name"));
1915 EXTERN char e_cannot_close_autocmd_or_popup_window[] 2072 EXTERN char e_cannot_close_autocmd_or_popup_window[]
1918 INIT(= N_("E814: Cannot close window, only autocmd window would remain")); 2075 INIT(= N_("E814: Cannot close window, only autocmd window would remain"));
1919 #ifdef FEAT_MZSCHEME 2076 #ifdef FEAT_MZSCHEME
1920 EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_libraries_could_not_be_loaded[] 2077 EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_libraries_could_not_be_loaded[]
1921 INIT(= N_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded.")); 2078 INIT(= N_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded."));
1922 #endif 2079 #endif
2080 #ifdef FEAT_DIFF
1923 EXTERN char e_cannot_read_patch_output[] 2081 EXTERN char e_cannot_read_patch_output[]
1924 INIT(= N_("E816: Cannot read patch output")); 2082 INIT(= N_("E816: Cannot read patch output"));
2083 #endif
2084 #ifdef FEAT_CRYPT
1925 EXTERN char e_blowfish_big_little_endian_use_wrong[] 2085 EXTERN char e_blowfish_big_little_endian_use_wrong[]
1926 INIT(= N_("E817: Blowfish big/little endian use wrong")); 2086 INIT(= N_("E817: Blowfish big/little endian use wrong"));
1927 EXTERN char e_sha256_test_failed[] 2087 EXTERN char e_sha256_test_failed[]
1928 INIT(= N_("E818: sha256 test failed")); 2088 INIT(= N_("E818: sha256 test failed"));
1929 EXTERN char e_blowfish_test_failed[] 2089 EXTERN char e_blowfish_test_failed[]
1930 INIT(= N_("E819: Blowfish test failed")); 2090 INIT(= N_("E819: Blowfish test failed"));
1931 EXTERN char e_sizeof_uint32_isnot_four[] 2091 EXTERN char e_sizeof_uint32_isnot_four[]
1932 INIT(= N_("E820: sizeof(uint32_t) != 4")); 2092 INIT(= N_("E820: sizeof(uint32_t) != 4"));
1933 EXTERN char e_file_is_encrypted_with_unknown_method[] 2093 EXTERN char e_file_is_encrypted_with_unknown_method[]
1934 INIT(= N_("E821: File is encrypted with unknown method")); 2094 INIT(= N_("E821: File is encrypted with unknown method"));
2095 #endif
2096 #ifdef FEAT_PERSISTENT_UNDO
1935 EXTERN char e_cannot_open_undo_file_for_reading_str[] 2097 EXTERN char e_cannot_open_undo_file_for_reading_str[]
1936 INIT(= N_("E822: Cannot open undo file for reading: %s")); 2098 INIT(= N_("E822: Cannot open undo file for reading: %s"));
1937 EXTERN char e_not_an_undo_file_str[] 2099 EXTERN char e_not_an_undo_file_str[]
1938 INIT(= N_("E823: Not an undo file: %s")); 2100 INIT(= N_("E823: Not an undo file: %s"));
1939 EXTERN char e_incompatible_undo_file_str[] 2101 EXTERN char e_incompatible_undo_file_str[]
1940 INIT(= N_("E824: Incompatible undo file: %s")); 2102 INIT(= N_("E824: Incompatible undo file: %s"));
1941 EXTERN char e_corrupted_undo_file_str_str[] 2103 EXTERN char e_corrupted_undo_file_str_str[]
1942 INIT(= N_("E825: Corrupted undo file (%s): %s")); 2104 INIT(= N_("E825: Corrupted undo file (%s): %s"));
2105 # ifdef FEAT_CRYPT
1943 EXTERN char e_undo_file_decryption_failed[] 2106 EXTERN char e_undo_file_decryption_failed[]
1944 INIT(= N_("E826: Undo file decryption failed: %s")); 2107 INIT(= N_("E826: Undo file decryption failed: %s"));
2108 # else
1945 EXTERN char e_undo_file_is_encrypted_str[] 2109 EXTERN char e_undo_file_is_encrypted_str[]
1946 INIT(= N_("E827: Undo file is encrypted: %s")); 2110 INIT(= N_("E827: Undo file is encrypted: %s"));
2111 # endif
1947 EXTERN char e_cannot_open_undo_file_for_writing_str[] 2112 EXTERN char e_cannot_open_undo_file_for_writing_str[]
1948 INIT(= N_("E828: Cannot open undo file for writing: %s")); 2113 INIT(= N_("E828: Cannot open undo file for writing: %s"));
1949 EXTERN char e_write_error_in_undo_file_str[] 2114 EXTERN char e_write_error_in_undo_file_str[]
1950 INIT(= N_("E829: write error in undo file: %s")); 2115 INIT(= N_("E829: write error in undo file: %s"));
2116 #endif
1951 EXTERN char e_undo_number_nr_not_found[] 2117 EXTERN char e_undo_number_nr_not_found[]
1952 INIT(= N_("E830: Undo number %ld not found")); 2118 INIT(= N_("E830: Undo number %ld not found"));
2119 #ifdef FEAT_CRYPT
1953 EXTERN char e_bf_key_init_called_with_empty_password[] 2120 EXTERN char e_bf_key_init_called_with_empty_password[]
1954 INIT(= N_("E831: bf_key_init() called with empty password")); 2121 INIT(= N_("E831: bf_key_init() called with empty password"));
2122 # ifdef FEAT_PERSISTENT_UNDO
1955 EXTERN char e_non_encrypted_file_has_encrypted_undo_file[] 2123 EXTERN char e_non_encrypted_file_has_encrypted_undo_file[]
1956 INIT(= N_("E832: Non-encrypted file has encrypted undo file: %s")); 2124 INIT(= N_("E832: Non-encrypted file has encrypted undo file: %s"));
2125 # endif
2126 #else
1957 EXTERN char e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption[] 2127 EXTERN char e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption[]
1958 INIT(= N_("E833: %s is encrypted and this version of Vim does not support encryption")); 2128 INIT(= N_("E833: %s is encrypted and this version of Vim does not support encryption"));
2129 #endif
1959 EXTERN char e_conflicts_with_value_of_listchars[] 2130 EXTERN char e_conflicts_with_value_of_listchars[]
1960 INIT(= N_("E834: Conflicts with value of 'listchars'")); 2131 INIT(= N_("E834: Conflicts with value of 'listchars'"));
1961 EXTERN char e_conflicts_with_value_of_fillchars[] 2132 EXTERN char e_conflicts_with_value_of_fillchars[]
1962 INIT(= N_("E835: Conflicts with value of 'fillchars'")); 2133 INIT(= N_("E835: Conflicts with value of 'fillchars'"));
2134 #ifdef DYNAMIC_PYTHON
1963 EXTERN char e_this_vim_cannot_execute_python_after_using_py3[] 2135 EXTERN char e_this_vim_cannot_execute_python_after_using_py3[]
1964 INIT(= N_("E836: This Vim cannot execute :python after using :py3")); 2136 INIT(= N_("E836: This Vim cannot execute :python after using :py3"));
1965 EXTERN char e_this_vim_cannot_execute_py3_after_using_python[] 2137 EXTERN char e_this_vim_cannot_execute_py3_after_using_python[]
1966 INIT(= N_("E837: This Vim cannot execute :py3 after using :python")); 2138 INIT(= N_("E837: This Vim cannot execute :py3 after using :python"));
1967 #ifdef FEAT_NETBEANS_INTG 2139 #endif
2140 #if defined(FEAT_NETBEANS_INTG) && defined(FEAT_GUI)
1968 EXTERN char e_netbeans_is_not_supported_with_this_GUI[] 2141 EXTERN char e_netbeans_is_not_supported_with_this_GUI[]
1969 INIT(= N_("E838: netbeans is not supported with this GUI")); 2142 INIT(= N_("E838: netbeans is not supported with this GUI"));
1970 #endif 2143 #endif
1971 // E839 unused 2144 // E839 unused
1972 # ifdef FEAT_COMPL_FUNC 2145 # ifdef FEAT_COMPL_FUNC
1975 # endif 2148 # endif
1976 EXTERN char e_reserved_name_cannot_be_used_for_user_defined_command[] 2149 EXTERN char e_reserved_name_cannot_be_used_for_user_defined_command[]
1977 INIT(= N_("E841: Reserved name, cannot be used for user defined command")); 2150 INIT(= N_("E841: Reserved name, cannot be used for user defined command"));
1978 EXTERN char e_no_line_number_to_use_for_slnum[] 2151 EXTERN char e_no_line_number_to_use_for_slnum[]
1979 INIT(= N_("E842: no line number to use for \"<slnum>\"")); 2152 INIT(= N_("E842: no line number to use for \"<slnum>\""));
2153 #ifdef FEAT_CRYPT
1980 EXTERN char e_error_while_updating_swap_file_crypt[] 2154 EXTERN char e_error_while_updating_swap_file_crypt[]
1981 INIT(= N_("E843: Error while updating swap file crypt")); 2155 INIT(= N_("E843: Error while updating swap file crypt"));
2156 #endif
2157 #ifdef FEAT_CONCEAL
1982 EXTERN char e_invalid_cchar_value[] 2158 EXTERN char e_invalid_cchar_value[]
1983 INIT(= N_("E844: invalid cchar value")); 2159 INIT(= N_("E844: invalid cchar value"));
2160 #endif
1984 #ifdef FEAT_SPELL 2161 #ifdef FEAT_SPELL
1985 EXTERN char e_insufficient_memory_word_list_will_be_incomplete[] 2162 EXTERN char e_insufficient_memory_word_list_will_be_incomplete[]
1986 INIT(= N_("E845: Insufficient memory, word list will be incomplete")); 2163 INIT(= N_("E845: Insufficient memory, word list will be incomplete"));
1987 #endif 2164 #endif
1988 EXTERN char e_key_code_not_set[] 2165 EXTERN char e_key_code_not_set[]
1989 INIT(= N_("E846: Key code not set")); 2166 INIT(= N_("E846: Key code not set"));
2167 #ifdef FEAT_SYN_HL
1990 EXTERN char e_too_many_syntax_includes[] 2168 EXTERN char e_too_many_syntax_includes[]
1991 INIT(= N_("E847: Too many syntax includes")); 2169 INIT(= N_("E847: Too many syntax includes"));
1992 EXTERN char e_too_many_syntax_clusters[] 2170 EXTERN char e_too_many_syntax_clusters[]
1993 INIT(= N_("E848: Too many syntax clusters")); 2171 INIT(= N_("E848: Too many syntax clusters"));
2172 #endif
1994 EXTERN char e_too_many_highlight_and_syntax_groups[] 2173 EXTERN char e_too_many_highlight_and_syntax_groups[]
1995 INIT(= N_("E849: Too many highlight and syntax groups")); 2174 INIT(= N_("E849: Too many highlight and syntax groups"));
1996 #ifndef FEAT_CLIPBOARD 2175 #ifndef FEAT_CLIPBOARD
1997 EXTERN char e_invalid_register_name[] 2176 EXTERN char e_invalid_register_name[]
1998 INIT(= N_("E850: Invalid register name")); 2177 INIT(= N_("E850: Invalid register name"));
2001 EXTERN char e_failed_to_create_new_process_for_GUI[] 2180 EXTERN char e_failed_to_create_new_process_for_GUI[]
2002 INIT(= N_("E851: Failed to create a new process for the GUI")); 2181 INIT(= N_("E851: Failed to create a new process for the GUI"));
2003 EXTERN char e_the_child_process_failed_to_start_GUI[] 2182 EXTERN char e_the_child_process_failed_to_start_GUI[]
2004 INIT(= N_("E852: The child process failed to start the GUI")); 2183 INIT(= N_("E852: The child process failed to start the GUI"));
2005 #endif 2184 #endif
2185 #ifdef FEAT_EVAL
2006 EXTERN char e_duplicate_argument_name_str[] 2186 EXTERN char e_duplicate_argument_name_str[]
2007 INIT(= N_("E853: Duplicate argument name: %s")); 2187 INIT(= N_("E853: Duplicate argument name: %s"));
2188 #endif
2008 EXTERN char e_path_too_long_for_completion[] 2189 EXTERN char e_path_too_long_for_completion[]
2009 INIT(= N_("E854: path too long for completion")); 2190 INIT(= N_("E854: path too long for completion"));
2010 EXTERN char e_autocommands_caused_command_to_abort[] 2191 EXTERN char e_autocommands_caused_command_to_abort[]
2011 INIT(= N_("E855: Autocommands caused command to abort")); 2192 INIT(= N_("E855: Autocommands caused command to abort"));
2012 #ifdef FEAT_EVAL 2193 #ifdef FEAT_EVAL
2019 EXTERN char e_eval_did_not_return_valid_python_object[] 2200 EXTERN char e_eval_did_not_return_valid_python_object[]
2020 INIT(= N_("E858: Eval did not return a valid python object")); 2201 INIT(= N_("E858: Eval did not return a valid python object"));
2021 EXTERN char e_failed_to_convert_returned_python_object_to_vim_value[] 2202 EXTERN char e_failed_to_convert_returned_python_object_to_vim_value[]
2022 INIT(= N_("E859: Failed to convert returned python object to a Vim value")); 2203 INIT(= N_("E859: Failed to convert returned python object to a Vim value"));
2023 #endif 2204 #endif
2205 #ifdef FEAT_PROP_POPUP
2024 EXTERN char e_need_id_and_type_with_both[] 2206 EXTERN char e_need_id_and_type_with_both[]
2025 INIT(= N_("E860: Need 'id' and 'type' with 'both'")); 2207 INIT(= N_("E860: Need 'id' and 'type' with 'both'"));
2208 # ifdef FEAT_TERMINAL
2026 EXTERN char e_cannot_open_second_popup_with_terminal[] 2209 EXTERN char e_cannot_open_second_popup_with_terminal[]
2027 INIT(= N_("E861: Cannot open a second popup with a terminal")); 2210 INIT(= N_("E861: Cannot open a second popup with a terminal"));
2211 # endif
2212 #endif
2213 #ifdef FEAT_EVAL
2028 EXTERN char e_cannot_use_g_here[] 2214 EXTERN char e_cannot_use_g_here[]
2029 INIT(= N_("E862: Cannot use g: here")); 2215 INIT(= N_("E862: Cannot use g: here"));
2216 #endif
2217 #if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
2030 EXTERN char e_not_allowed_for_terminal_in_popup_window[] 2218 EXTERN char e_not_allowed_for_terminal_in_popup_window[]
2031 INIT(= N_("E863: Not allowed for a terminal in a popup window")); 2219 INIT(= N_("E863: Not allowed for a terminal in a popup window"));
2220 #endif
2032 EXTERN char e_percent_hash_can_only_be_followed_by_zero_one_two_automatic_engine_will_be_used[] 2221 EXTERN char e_percent_hash_can_only_be_followed_by_zero_one_two_automatic_engine_will_be_used[]
2033 INIT(= N_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used")); 2222 INIT(= N_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used"));
2034 EXTERN char e_nfa_regexp_end_encountered_prematurely[] 2223 EXTERN char e_nfa_regexp_end_encountered_prematurely[]
2035 INIT(= N_("E865: (NFA) Regexp end encountered prematurely")); 2224 INIT(= N_("E865: (NFA) Regexp end encountered prematurely"));
2036 EXTERN char e_nfa_regexp_misplaced_chr[] 2225 EXTERN char e_nfa_regexp_misplaced_chr[]
2059 INIT(= N_("E876: (NFA regexp) Not enough space to store the whole NFA")); 2248 INIT(= N_("E876: (NFA regexp) Not enough space to store the whole NFA"));
2060 EXTERN char e_nfa_regexp_invalid_character_class_nr[] 2249 EXTERN char e_nfa_regexp_invalid_character_class_nr[]
2061 INIT(= N_("E877: (NFA regexp) Invalid character class: %d")); 2250 INIT(= N_("E877: (NFA regexp) Invalid character class: %d"));
2062 EXTERN char e_nfa_regexp_could_not_allocate_memory_for_branch_traversal[] 2251 EXTERN char e_nfa_regexp_could_not_allocate_memory_for_branch_traversal[]
2063 INIT(= N_("E878: (NFA regexp) Could not allocate memory for branch traversal!")); 2252 INIT(= N_("E878: (NFA regexp) Could not allocate memory for branch traversal!"));
2253 #ifdef FEAT_SYN_HL
2064 EXTERN char e_nfa_regexp_too_many_z[] 2254 EXTERN char e_nfa_regexp_too_many_z[]
2065 INIT(= N_("E879: (NFA regexp) Too many \\z(")); 2255 INIT(= N_("E879: (NFA regexp) Too many \\z("));
2256 #endif
2066 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) 2257 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
2067 EXTERN char e_cant_handle_systemexit_of_python_exception_in_vim[] 2258 EXTERN char e_cant_handle_systemexit_of_python_exception_in_vim[]
2068 INIT(= N_("E880: Can't handle SystemExit of python exception in vim")); 2259 INIT(= N_("E880: Can't handle SystemExit of python exception in vim"));
2069 #endif 2260 #endif
2070 EXTERN char e_line_count_changed_unexpectedly[] 2261 EXTERN char e_line_count_changed_unexpectedly[]
2071 INIT(= N_("E881: Line count changed unexpectedly")); 2262 INIT(= N_("E881: Line count changed unexpectedly"));
2263 #ifdef FEAT_EVAL
2072 EXTERN char e_uniq_compare_function_failed[] 2264 EXTERN char e_uniq_compare_function_failed[]
2073 INIT(= N_("E882: Uniq compare function failed")); 2265 INIT(= N_("E882: Uniq compare function failed"));
2074 EXTERN char e_search_pattern_and_expression_register_may_not_contain_two_or_more_lines[] 2266 EXTERN char e_search_pattern_and_expression_register_may_not_contain_two_or_more_lines[]
2075 INIT(= N_("E883: search pattern and expression register may not contain two or more lines")); 2267 INIT(= N_("E883: search pattern and expression register may not contain two or more lines"));
2076 EXTERN char e_function_name_cannot_contain_colon_str[] 2268 EXTERN char e_function_name_cannot_contain_colon_str[]
2077 INIT(= N_("E884: Function name cannot contain a colon: %s")); 2269 INIT(= N_("E884: Function name cannot contain a colon: %s"));
2270 #endif
2271 #ifdef FEAT_SIGNS
2078 EXTERN char e_not_possible_to_change_sign_str[] 2272 EXTERN char e_not_possible_to_change_sign_str[]
2079 INIT(= N_("E885: Not possible to change sign %s")); 2273 INIT(= N_("E885: Not possible to change sign %s"));
2274 #endif
2275 #ifdef FEAT_VIMINFO
2080 EXTERN char e_cant_rename_viminfo_file_to_str[] 2276 EXTERN char e_cant_rename_viminfo_file_to_str[]
2081 INIT(= N_("E886: Can't rename viminfo file to %s!")); 2277 INIT(= N_("E886: Can't rename viminfo file to %s!"));
2278 #endif
2082 EXTERN char e_sorry_this_command_is_disabled_python_side_module_could_not_be_loaded[] 2279 EXTERN char e_sorry_this_command_is_disabled_python_side_module_could_not_be_loaded[]
2083 INIT(= N_("E887: Sorry, this command is disabled, the Python's site module could not be loaded.")); 2280 INIT(= N_("E887: Sorry, this command is disabled, the Python's site module could not be loaded."));
2084 EXTERN char e_nfa_regexp_cannot_repeat_str[] 2281 EXTERN char e_nfa_regexp_cannot_repeat_str[]
2085 INIT(= N_("E888: (NFA regexp) cannot repeat %s")); 2282 INIT(= N_("E888: (NFA regexp) cannot repeat %s"));
2086 #ifdef FEAT_PROP_POPUP 2283 #ifdef FEAT_PROP_POPUP
2087 EXTERN char e_number_required[] 2284 EXTERN char e_number_required[]
2088 INIT(= N_("E889: Number required")); 2285 INIT(= N_("E889: Number required"));
2089 #endif 2286 #endif
2287 #ifdef FEAT_SYN_HL
2090 EXTERN char e_trailing_char_after_rsb_str_str[] 2288 EXTERN char e_trailing_char_after_rsb_str_str[]
2091 INIT(= N_("E890: trailing char after ']': %s]%s")); 2289 INIT(= N_("E890: trailing char after ']': %s]%s"));
2290 #endif
2092 #ifdef FEAT_FLOAT 2291 #ifdef FEAT_FLOAT
2093 EXTERN char e_using_funcref_as_float[] 2292 EXTERN char e_using_funcref_as_float[]
2094 INIT(= N_("E891: Using a Funcref as a Float")); 2293 INIT(= N_("E891: Using a Funcref as a Float"));
2095 EXTERN char e_using_string_as_float[] 2294 EXTERN char e_using_string_as_float[]
2096 INIT(= N_("E892: Using a String as a Float")); 2295 INIT(= N_("E892: Using a String as a Float"));
2107 EXTERN char e_argument_of_str_must_be_list_dictionary_or_blob[] 2306 EXTERN char e_argument_of_str_must_be_list_dictionary_or_blob[]
2108 INIT(= N_("E896: Argument of %s must be a List, Dictionary or Blob")); 2307 INIT(= N_("E896: Argument of %s must be a List, Dictionary or Blob"));
2109 EXTERN char e_list_or_blob_required[] 2308 EXTERN char e_list_or_blob_required[]
2110 INIT(= N_("E897: List or Blob required")); 2309 INIT(= N_("E897: List or Blob required"));
2111 #endif 2310 #endif
2311 #ifdef FEAT_JOB_CHANNEL
2112 EXTERN char e_socket_in_channel_connect[] 2312 EXTERN char e_socket_in_channel_connect[]
2113 INIT(= N_("E898: socket() in channel_connect()")); 2313 INIT(= N_("E898: socket() in channel_connect()"));
2314 #endif
2315 #ifdef FEAT_EVAL
2114 EXTERN char e_argument_of_str_must_be_list_or_blob[] 2316 EXTERN char e_argument_of_str_must_be_list_or_blob[]
2115 INIT(= N_("E899: Argument of %s must be a List or Blob")); 2317 INIT(= N_("E899: Argument of %s must be a List or Blob"));
2116 EXTERN char e_maxdepth_must_be_non_negative_number[] 2318 EXTERN char e_maxdepth_must_be_non_negative_number[]
2117 INIT(= N_("E900: maxdepth must be non-negative number")); 2319 INIT(= N_("E900: maxdepth must be non-negative number"));
2320 #endif
2118 #ifdef FEAT_JOB_CHANNEL 2321 #ifdef FEAT_JOB_CHANNEL
2119 EXTERN char e_getaddrinfo_in_channel_open_str[] 2322 EXTERN char e_getaddrinfo_in_channel_open_str[]
2120 INIT(= N_("E901: getaddrinfo() in channel_open(): %s")); 2323 INIT(= N_("E901: getaddrinfo() in channel_open(): %s"));
2324 # ifndef FEAT_IPV6
2121 EXTERN char e_gethostbyname_in_channel_open[] 2325 EXTERN char e_gethostbyname_in_channel_open[]
2122 INIT(= N_("E901: gethostbyname() in channel_open()")); 2326 INIT(= N_("E901: gethostbyname() in channel_open()"));
2327 # endif
2123 EXTERN char e_cannot_connect_to_port[] 2328 EXTERN char e_cannot_connect_to_port[]
2124 INIT(= N_("E902: Cannot connect to port")); 2329 INIT(= N_("E902: Cannot connect to port"));
2125 EXTERN char e_received_command_with_non_string_argument[] 2330 EXTERN char e_received_command_with_non_string_argument[]
2126 INIT(= N_("E903: received command with non-string argument")); 2331 INIT(= N_("E903: received command with non-string argument"));
2127 EXTERN char e_last_argument_for_expr_call_must_be_number[] 2332 EXTERN char e_last_argument_for_expr_call_must_be_number[]
2152 INIT(= N_("E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel")); 2357 INIT(= N_("E912: cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel"));
2153 EXTERN char e_using_channel_as_number[] 2358 EXTERN char e_using_channel_as_number[]
2154 INIT(= N_("E913: Using a Channel as a Number")); 2359 INIT(= N_("E913: Using a Channel as a Number"));
2155 EXTERN char e_using_channel_as_float[] 2360 EXTERN char e_using_channel_as_float[]
2156 INIT(= N_("E914: Using a Channel as a Float")); 2361 INIT(= N_("E914: Using a Channel as a Float"));
2157 #endif
2158 EXTERN char e_in_io_buffer_requires_in_buf_or_in_name_to_be_set[] 2362 EXTERN char e_in_io_buffer_requires_in_buf_or_in_name_to_be_set[]
2159 INIT(= N_("E915: in_io buffer requires in_buf or in_name to be set")); 2363 INIT(= N_("E915: in_io buffer requires in_buf or in_name to be set"));
2160
2161 EXTERN char e_not_valid_job[] 2364 EXTERN char e_not_valid_job[]
2162 INIT(= N_("E916: not a valid job")); 2365 INIT(= N_("E916: not a valid job"));
2163 EXTERN char e_cannot_use_callback_with_str[] 2366 EXTERN char e_cannot_use_callback_with_str[]
2164 INIT(= N_("E917: Cannot use a callback with %s()")); 2367 INIT(= N_("E917: Cannot use a callback with %s()"));
2165 EXTERN char e_buffer_must_be_loaded_str[] 2368 EXTERN char e_buffer_must_be_loaded_str[]
2166 INIT(= N_("E918: buffer must be loaded: %s")); 2369 INIT(= N_("E918: buffer must be loaded: %s"));
2370 #endif
2167 EXTERN char e_directory_not_found_in_str_str[] 2371 EXTERN char e_directory_not_found_in_str_str[]
2168 INIT(= N_("E919: Directory not found in '%s': \"%s\"")); 2372 INIT(= N_("E919: Directory not found in '%s': \"%s\""));
2373 #ifdef FEAT_JOB_CHANNEL
2169 EXTERN char e_io_file_requires_name_to_be_set[] 2374 EXTERN char e_io_file_requires_name_to_be_set[]
2170 INIT(= N_("E920: _io file requires _name to be set")); 2375 INIT(= N_("E920: _io file requires _name to be set"));
2376 #endif
2377 #ifdef FEAT_EVAL
2171 EXTERN char e_invalid_callback_argument[] 2378 EXTERN char e_invalid_callback_argument[]
2172 INIT(= N_("E921: Invalid callback argument")); 2379 INIT(= N_("E921: Invalid callback argument"));
2173 EXTERN char e_expected_dict[] 2380 EXTERN char e_expected_dict[]
2174 INIT(= N_("E922: expected a dict")); 2381 INIT(= N_("E922: expected a dict"));
2175 EXTERN char e_second_argument_of_function_must_be_list_or_dict[] 2382 EXTERN char e_second_argument_of_function_must_be_list_or_dict[]
2176 INIT(= N_("E923: Second argument of function() must be a list or a dict")); 2383 INIT(= N_("E923: Second argument of function() must be a list or a dict"));
2384 #endif
2385 #ifdef FEAT_QUICKFIX
2177 EXTERN char e_current_window_was_closed[] 2386 EXTERN char e_current_window_was_closed[]
2178 INIT(= N_("E924: Current window was closed")); 2387 INIT(= N_("E924: Current window was closed"));
2179 EXTERN char e_current_quickfix_list_was_changed[] 2388 EXTERN char e_current_quickfix_list_was_changed[]
2180 INIT(= N_("E925: Current quickfix list was changed")); 2389 INIT(= N_("E925: Current quickfix list was changed"));
2181 EXTERN char e_current_location_list_was_changed[] 2390 EXTERN char e_current_location_list_was_changed[]
2182 INIT(= N_("E926: Current location list was changed")); 2391 INIT(= N_("E926: Current location list was changed"));
2392 #endif
2393 #ifdef FEAT_EVAL
2394 # ifdef FEAT_QUICKFIX
2183 EXTERN char e_invalid_action_str_1[] 2395 EXTERN char e_invalid_action_str_1[]
2184 INIT(= N_("E927: Invalid action: '%s'")); 2396 INIT(= N_("E927: Invalid action: '%s'"));
2185 #ifdef FEAT_EVAL 2397 # endif
2186 EXTERN char e_string_required[] 2398 EXTERN char e_string_required[]
2187 INIT(= N_("E928: String required")); 2399 INIT(= N_("E928: String required"));
2188 #endif 2400 #endif
2401 #ifdef FEAT_VIMINFO
2189 EXTERN char e_too_many_viminfo_temp_files_like_str[] 2402 EXTERN char e_too_many_viminfo_temp_files_like_str[]
2190 INIT(= N_("E929: Too many viminfo temp files, like %s!")); 2403 INIT(= N_("E929: Too many viminfo temp files, like %s!"));
2404 #endif
2405 #ifdef FEAT_EVAL
2191 EXTERN char e_cannot_use_redir_inside_execute[] 2406 EXTERN char e_cannot_use_redir_inside_execute[]
2192 INIT(= N_("E930: Cannot use :redir inside execute()")); 2407 INIT(= N_("E930: Cannot use :redir inside execute()"));
2408 #endif
2193 EXTERN char e_buffer_cannot_be_registered[] 2409 EXTERN char e_buffer_cannot_be_registered[]
2194 INIT(= N_("E931: Buffer cannot be registered")); 2410 INIT(= N_("E931: Buffer cannot be registered"));
2195 #ifdef FEAT_EVAL 2411 #ifdef FEAT_EVAL
2196 EXTERN char e_closure_function_should_not_be_at_top_level[] 2412 EXTERN char e_closure_function_should_not_be_at_top_level[]
2197 INIT(= N_("E932: Closure function should not be at top level: %s")); 2413 INIT(= N_("E932: Closure function should not be at top level: %s"));
2198 EXTERN char e_function_was_deleted_str[] 2414 EXTERN char e_function_was_deleted_str[]
2199 INIT(= N_("E933: Function was deleted: %s")); 2415 INIT(= N_("E933: Function was deleted: %s"));
2200 #endif 2416 #endif
2417 #ifdef FEAT_SIGNS
2201 EXTERN char e_cannot_jump_to_buffer_that_does_not_have_name[] 2418 EXTERN char e_cannot_jump_to_buffer_that_does_not_have_name[]
2202 INIT(= N_("E934: Cannot jump to a buffer that does not have a name")); 2419 INIT(= N_("E934: Cannot jump to a buffer that does not have a name"));
2420 #endif
2421 #ifdef FEAT_EVAL
2203 EXTERN char e_invalid_submatch_number_nr[] 2422 EXTERN char e_invalid_submatch_number_nr[]
2204 INIT(= N_("E935: invalid submatch number: %d")); 2423 INIT(= N_("E935: invalid submatch number: %d"));
2424 #endif
2205 EXTERN char e_cannot_delete_current_group[] 2425 EXTERN char e_cannot_delete_current_group[]
2206 INIT(= N_("E936: Cannot delete the current group")); 2426 INIT(= N_("E936: Cannot delete the current group"));
2207 EXTERN char e_attempt_to_delete_buffer_that_is_in_use_str[] 2427 EXTERN char e_attempt_to_delete_buffer_that_is_in_use_str[]
2208 INIT(= N_("E937: Attempt to delete a buffer that is in use: %s")); 2428 INIT(= N_("E937: Attempt to delete a buffer that is in use: %s"));
2429 #ifdef FEAT_EVAL
2209 EXTERN char e_duplicate_key_in_json_str[] 2430 EXTERN char e_duplicate_key_in_json_str[]
2210 INIT(= N_("E938: Duplicate key in JSON: \"%s\"")); 2431 INIT(= N_("E938: Duplicate key in JSON: \"%s\""));
2432 #endif
2211 EXTERN char e_positive_count_required[] 2433 EXTERN char e_positive_count_required[]
2212 INIT(= N_("E939: Positive count required")); 2434 INIT(= N_("E939: Positive count required"));
2213 #ifdef FEAT_EVAL 2435 #ifdef FEAT_EVAL
2214 EXTERN char e_cannot_lock_or_unlock_variable_str[] 2436 EXTERN char e_cannot_lock_or_unlock_variable_str[]
2215 INIT(= N_("E940: Cannot lock or unlock variable %s")); 2437 INIT(= N_("E940: Cannot lock or unlock variable %s"));
2216 #endif 2438 # ifdef FEAT_CLIENTSERVER
2217 EXTERN char e_already_started_server[] 2439 EXTERN char e_already_started_server[]
2218 INIT(= N_("E941: already started a server")); 2440 INIT(= N_("E941: already started a server"));
2441 # else
2219 EXTERN char e_clientserver_feature_not_available[] 2442 EXTERN char e_clientserver_feature_not_available[]
2220 INIT(= N_("E942: +clientserver feature not available")); 2443 INIT(= N_("E942: +clientserver feature not available"));
2444 # endif
2445 #endif
2221 EXTERN char e_command_table_needs_to_be_updated_run_make_cmdidxs[] 2446 EXTERN char e_command_table_needs_to_be_updated_run_make_cmdidxs[]
2222 INIT(= N_("E943: Command table needs to be updated, run 'make cmdidxs'")); 2447 INIT(= N_("E943: Command table needs to be updated, run 'make cmdidxs'"));
2223 EXTERN char e_reverse_range_in_character_class[] 2448 EXTERN char e_reverse_range_in_character_class[]
2224 INIT(= N_("E944: Reverse range in character class")); 2449 INIT(= N_("E944: Reverse range in character class"));
2225 EXTERN char e_range_too_large_in_character_class[] 2450 EXTERN char e_range_too_large_in_character_class[]
2226 INIT(= N_("E945: Range too large in character class")); 2451 INIT(= N_("E945: Range too large in character class"));
2452 #ifdef FEAT_TERMINAL
2227 EXTERN char e_cannot_make_terminal_with_running_job_modifiable[] 2453 EXTERN char e_cannot_make_terminal_with_running_job_modifiable[]
2228 INIT(= N_("E946: Cannot make a terminal with running job modifiable")); 2454 INIT(= N_("E946: Cannot make a terminal with running job modifiable"));
2229 #ifdef FEAT_TERMINAL
2230 EXTERN char e_job_still_running_in_buffer_str[] 2455 EXTERN char e_job_still_running_in_buffer_str[]
2231 INIT(= N_("E947: Job still running in buffer \"%s\"")); 2456 INIT(= N_("E947: Job still running in buffer \"%s\""));
2232 EXTERN char e_job_still_running[] 2457 EXTERN char e_job_still_running[]
2233 INIT(= N_("E948: Job still running")); 2458 INIT(= N_("E948: Job still running"));
2234 EXTERN char e_job_still_running_add_bang_to_end_the_job[] 2459 EXTERN char e_job_still_running_add_bang_to_end_the_job[]
2238 INIT(= N_("E949: File changed while writing")); 2463 INIT(= N_("E949: File changed while writing"));
2239 EXTERN char e_cannot_convert_between_str_and_str[] 2464 EXTERN char e_cannot_convert_between_str_and_str[]
2240 INIT(= N_("E950: Cannot convert between %s and %s")); 2465 INIT(= N_("E950: Cannot convert between %s and %s"));
2241 EXTERN char e_percent_value_too_large[] 2466 EXTERN char e_percent_value_too_large[]
2242 INIT(= N_("E951: \\% value too large")); 2467 INIT(= N_("E951: \\% value too large"));
2468 #if defined(FEAT_EVAL) && defined(FEAT_QUICKFIX)
2243 EXTERN char e_autocommand_caused_recursive_behavior[] 2469 EXTERN char e_autocommand_caused_recursive_behavior[]
2244 INIT(= N_("E952: Autocommand caused recursive behavior")); 2470 INIT(= N_("E952: Autocommand caused recursive behavior"));
2471 #endif
2472 #ifdef FEAT_TERMINAL
2245 EXTERN char e_file_exists_str[] 2473 EXTERN char e_file_exists_str[]
2246 INIT(= N_("E953: File exists: %s")); 2474 INIT(= N_("E953: File exists: %s"));
2475 #endif
2476 #if defined(FEAT_TERMGUICOLORS) && defined(FEAT_VTP)
2247 EXTERN char e_24_bit_colors_are_not_supported_on_this_environment[] 2477 EXTERN char e_24_bit_colors_are_not_supported_on_this_environment[]
2248 INIT(= N_("E954: 24-bit colors are not supported on this environment")); 2478 INIT(= N_("E954: 24-bit colors are not supported on this environment"));
2479 #endif
2480 #ifdef FEAT_TERMINAL
2249 EXTERN char e_not_terminal_buffer[] 2481 EXTERN char e_not_terminal_buffer[]
2250 INIT(= N_("E955: Not a terminal buffer")); 2482 INIT(= N_("E955: Not a terminal buffer"));
2483 #endif
2251 EXTERN char e_cannot_use_pattern_recursively[] 2484 EXTERN char e_cannot_use_pattern_recursively[]
2252 INIT(= N_("E956: Cannot use pattern recursively")); 2485 INIT(= N_("E956: Cannot use pattern recursively"));
2486 #ifdef FEAT_EVAL
2253 EXTERN char e_invalid_window_number[] 2487 EXTERN char e_invalid_window_number[]
2254 INIT(= N_("E957: Invalid window number")); 2488 INIT(= N_("E957: Invalid window number"));
2489 #endif
2490 #ifdef FEAT_TERMINAL
2255 EXTERN char e_job_already_finished[] 2491 EXTERN char e_job_already_finished[]
2256 INIT(= N_("E958: Job already finished")); 2492 INIT(= N_("E958: Job already finished"));
2493 #endif
2494 #ifdef FEAT_DIFF
2257 EXTERN char e_invalid_diff_format[] 2495 EXTERN char e_invalid_diff_format[]
2258 INIT(= N_("E959: Invalid diff format.")); 2496 INIT(= N_("E959: Invalid diff format."));
2259 EXTERN char e_problem_creating_internal_diff[] 2497 EXTERN char e_problem_creating_internal_diff[]
2260 INIT(= N_("E960: Problem creating the internal diff")); 2498 INIT(= N_("E960: Problem creating the internal diff"));
2499 #endif
2500 #ifdef FEAT_EVAL
2261 EXTERN char e_no_line_number_to_use_for_sflnum[] 2501 EXTERN char e_no_line_number_to_use_for_sflnum[]
2262 INIT(= N_("E961: no line number to use for \"<sflnum>\"")); 2502 INIT(= N_("E961: no line number to use for \"<sflnum>\""));
2263 EXTERN char e_invalid_action_str_2[] 2503 EXTERN char e_invalid_action_str_2[]
2264 INIT(= N_("E962: Invalid action: '%s'")); 2504 INIT(= N_("E962: Invalid action: '%s'"));
2265 EXTERN char e_setting_str_to_value_with_wrong_type[] 2505 EXTERN char e_setting_str_to_value_with_wrong_type[]
2266 INIT(= N_("E963: setting %s to value with wrong type")); 2506 INIT(= N_("E963: setting %s to value with wrong type"));
2507 #endif
2508 #ifdef FEAT_PROP_POPUP
2267 EXTERN char_u e_invalid_column_number_nr[] 2509 EXTERN char_u e_invalid_column_number_nr[]
2268 INIT(= N_("E964: Invalid column number: %ld")); 2510 INIT(= N_("E964: Invalid column number: %ld"));
2269 EXTERN char e_missing_property_type_name[] 2511 EXTERN char e_missing_property_type_name[]
2270 INIT(= N_("E965: missing property type name")); 2512 INIT(= N_("E965: missing property type name"));
2513 #endif
2514 #ifdef FEAT_EVAL
2271 EXTERN char_u e_invalid_line_number_nr[] 2515 EXTERN char_u e_invalid_line_number_nr[]
2272 INIT(= N_("E966: Invalid line number: %ld")); 2516 INIT(= N_("E966: Invalid line number: %ld"));
2517 #endif
2518 #ifdef FEAT_PROP_POPUP
2273 EXTERN char e_text_property_info_corrupted[] 2519 EXTERN char e_text_property_info_corrupted[]
2274 INIT(= N_("E967: text property info corrupted")); 2520 INIT(= N_("E967: text property info corrupted"));
2275 EXTERN char e_need_at_least_one_of_id_or_type[] 2521 EXTERN char e_need_at_least_one_of_id_or_type[]
2276 INIT(= N_("E968: Need at least one of 'id' or 'type'")); 2522 INIT(= N_("E968: Need at least one of 'id' or 'type'"));
2277 EXTERN char e_property_type_str_already_defined[] 2523 EXTERN char e_property_type_str_already_defined[]
2278 INIT(= N_("E969: Property type %s already defined")); 2524 INIT(= N_("E969: Property type %s already defined"));
2279 EXTERN char e_unknown_highlight_group_name_str[] 2525 EXTERN char e_unknown_highlight_group_name_str[]
2280 INIT(= N_("E970: Unknown highlight group name: '%s'")); 2526 INIT(= N_("E970: Unknown highlight group name: '%s'"));
2281 EXTERN char e_type_not_exist[] 2527 EXTERN char e_type_not_exist[]
2282 INIT(= N_("E971: Property type %s does not exist")); 2528 INIT(= N_("E971: Property type %s does not exist"));
2529 #endif
2530 #ifdef FEAT_EVAL
2283 EXTERN char e_blob_value_does_not_have_right_number_of_bytes[] 2531 EXTERN char e_blob_value_does_not_have_right_number_of_bytes[]
2284 INIT(= N_("E972: Blob value does not have the right number of bytes")); 2532 INIT(= N_("E972: Blob value does not have the right number of bytes"));
2285 EXTERN char e_blob_literal_should_have_an_even_number_of_hex_characters[] 2533 EXTERN char e_blob_literal_should_have_an_even_number_of_hex_characters[]
2286 INIT(= N_("E973: Blob literal should have an even number of hex characters")); 2534 INIT(= N_("E973: Blob literal should have an even number of hex characters"));
2287 EXTERN char e_using_blob_as_number[] 2535 EXTERN char e_using_blob_as_number[]
2288 INIT(= N_("E974: Using a Blob as a Number")); 2536 INIT(= N_("E974: Using a Blob as a Number"));
2537 # ifdef FEAT_FLOAT
2289 EXTERN char e_using_blob_as_float[] 2538 EXTERN char e_using_blob_as_float[]
2290 INIT(= N_("E975: Using a Blob as a Float")); 2539 INIT(= N_("E975: Using a Blob as a Float"));
2540 # endif
2291 EXTERN char e_using_blob_as_string[] 2541 EXTERN char e_using_blob_as_string[]
2292 INIT(= N_("E976: Using a Blob as a String")); 2542 INIT(= N_("E976: Using a Blob as a String"));
2293 EXTERN char e_can_only_compare_blob_with_blob[] 2543 EXTERN char e_can_only_compare_blob_with_blob[]
2294 INIT(= N_("E977: Can only compare Blob with Blob")); 2544 INIT(= N_("E977: Can only compare Blob with Blob"));
2295 #ifdef FEAT_EVAL
2296 EXTERN char e_invalid_operation_for_blob[] 2545 EXTERN char e_invalid_operation_for_blob[]
2297 INIT(= N_("E978: Invalid operation for Blob")); 2546 INIT(= N_("E978: Invalid operation for Blob"));
2298 EXTERN char e_blob_index_out_of_range_nr[] 2547 EXTERN char e_blob_index_out_of_range_nr[]
2299 INIT(= N_("E979: Blob index out of range: %ld")); 2548 INIT(= N_("E979: Blob index out of range: %ld"));
2300 #endif 2549 # ifndef USE_INPUT_BUF
2301 EXTERN char e_lowlevel_input_not_supported[] 2550 EXTERN char e_lowlevel_input_not_supported[]
2302 INIT(= N_("E980: lowlevel input not supported")); 2551 INIT(= N_("E980: lowlevel input not supported"));
2552 # endif
2553 #endif
2303 EXTERN char e_command_not_allowed_in_rvim[] 2554 EXTERN char e_command_not_allowed_in_rvim[]
2304 INIT(= N_("E981: Command not allowed in rvim")); 2555 INIT(= N_("E981: Command not allowed in rvim"));
2556 #if defined(FEAT_TERMINAL) && defined(MSWIN)
2305 EXTERN char e_conpty_is_not_available[] 2557 EXTERN char e_conpty_is_not_available[]
2306 INIT(= N_("E982: ConPTY is not available")); 2558 INIT(= N_("E982: ConPTY is not available"));
2559 #endif
2307 EXTERN char e_duplicate_argument_str[] 2560 EXTERN char e_duplicate_argument_str[]
2308 INIT(= N_("E983: Duplicate argument: %s")); 2561 INIT(= N_("E983: Duplicate argument: %s"));
2309 EXTERN char e_scriptversion_used_outside_of_sourced_file[] 2562 EXTERN char e_scriptversion_used_outside_of_sourced_file[]
2310 INIT(= N_("E984: :scriptversion used outside of a sourced file")); 2563 INIT(= N_("E984: :scriptversion used outside of a sourced file"));
2311 #ifdef FEAT_EVAL 2564 #ifdef FEAT_EVAL
2314 EXTERN char e_cannot_modify_tag_stack_within_tagfunc[] 2567 EXTERN char e_cannot_modify_tag_stack_within_tagfunc[]
2315 INIT(= N_("E986: cannot modify the tag stack within tagfunc")); 2568 INIT(= N_("E986: cannot modify the tag stack within tagfunc"));
2316 EXTERN char e_invalid_return_value_from_tagfunc[] 2569 EXTERN char e_invalid_return_value_from_tagfunc[]
2317 INIT(= N_("E987: invalid return value from tagfunc")); 2570 INIT(= N_("E987: invalid return value from tagfunc"));
2318 #endif 2571 #endif
2572 #ifdef GUI_MAY_SPAWN
2319 EXTERN char e_gui_cannot_be_used_cannot_execute_gvim_exe[] 2573 EXTERN char e_gui_cannot_be_used_cannot_execute_gvim_exe[]
2320 INIT(= N_("E988: GUI cannot be used. Cannot execute gvim.exe.")); 2574 INIT(= N_("E988: GUI cannot be used. Cannot execute gvim.exe."));
2575 #endif
2576 #ifdef FEAT_EVAL
2321 EXTERN char e_non_default_argument_follows_default_argument[] 2577 EXTERN char e_non_default_argument_follows_default_argument[]
2322 INIT(= N_("E989: Non-default argument follows default argument")); 2578 INIT(= N_("E989: Non-default argument follows default argument"));
2323 #ifdef FEAT_EVAL
2324 EXTERN char e_missing_end_marker_str[] 2579 EXTERN char e_missing_end_marker_str[]
2325 INIT(= N_("E990: Missing end marker '%s'")); 2580 INIT(= N_("E990: Missing end marker '%s'"));
2326 EXTERN char e_cannot_use_heredoc_here[] 2581 EXTERN char e_cannot_use_heredoc_here[]
2327 INIT(= N_("E991: cannot use =<< here")); 2582 INIT(= N_("E991: cannot use =<< here"));
2328 #endif 2583 #endif
2344 EXTERN char e_cannot_lock_environment_variable[] 2599 EXTERN char e_cannot_lock_environment_variable[]
2345 INIT(= N_("E996: Cannot lock an environment variable")); 2600 INIT(= N_("E996: Cannot lock an environment variable"));
2346 EXTERN char e_cannot_lock_register[] 2601 EXTERN char e_cannot_lock_register[]
2347 INIT(= N_("E996: Cannot lock a register")); 2602 INIT(= N_("E996: Cannot lock a register"));
2348 #endif 2603 #endif
2604 #ifdef FEAT_PROP_POPUP
2349 EXTERN char e_tabpage_not_found_nr[] 2605 EXTERN char e_tabpage_not_found_nr[]
2350 INIT(= N_("E997: Tabpage not found: %d")); 2606 INIT(= N_("E997: Tabpage not found: %d"));
2607 #endif
2351 #ifdef FEAT_EVAL 2608 #ifdef FEAT_EVAL
2352 EXTERN char e_reduce_of_an_empty_str_with_no_initial_value[] 2609 EXTERN char e_reduce_of_an_empty_str_with_no_initial_value[]
2353 INIT(= N_("E998: Reduce of an empty %s with no initial value")); 2610 INIT(= N_("E998: Reduce of an empty %s with no initial value"));
2354 #endif 2611 #endif
2355 EXTERN char e_scriptversion_not_supported_nr[] 2612 EXTERN char e_scriptversion_not_supported_nr[]
2452 INIT(= N_("E1042: Export can only be used in vim9script")); 2709 INIT(= N_("E1042: Export can only be used in vim9script"));
2453 EXTERN char e_invalid_command_after_export[] 2710 EXTERN char e_invalid_command_after_export[]
2454 INIT(= N_("E1043: Invalid command after :export")); 2711 INIT(= N_("E1043: Invalid command after :export"));
2455 EXTERN char e_export_with_invalid_argument[] 2712 EXTERN char e_export_with_invalid_argument[]
2456 INIT(= N_("E1044: Export with invalid argument")); 2713 INIT(= N_("E1044: Export with invalid argument"));
2457 EXTERN char e_missing_as_after_star[]
2458 INIT(= N_("E1045: Missing \"as\" after *"));
2459 EXTERN char e_missing_comma_in_import[]
2460 INIT(= N_("E1046: Missing comma in import"));
2461 EXTERN char e_syntax_error_in_import_str[] 2714 EXTERN char e_syntax_error_in_import_str[]
2462 INIT(= N_("E1047: Syntax error in import: %s")); 2715 INIT(= N_("E1047: Syntax error in import: %s"));
2463 EXTERN char e_item_not_found_in_script_str[] 2716 EXTERN char e_item_not_found_in_script_str[]
2464 INIT(= N_("E1048: Item not found in script: %s")); 2717 INIT(= N_("E1048: Item not found in script: %s"));
2465 EXTERN char e_item_not_exported_in_script_str[] 2718 EXTERN char e_item_not_exported_in_script_str[]
2503 INIT(= N_("E1067: Separator mismatch: %s")); 2756 INIT(= N_("E1067: Separator mismatch: %s"));
2504 EXTERN char e_no_white_space_allowed_before_str_str[] 2757 EXTERN char e_no_white_space_allowed_before_str_str[]
2505 INIT(= N_("E1068: No white space allowed before '%s': %s")); 2758 INIT(= N_("E1068: No white space allowed before '%s': %s"));
2506 EXTERN char e_white_space_required_after_str_str[] 2759 EXTERN char e_white_space_required_after_str_str[]
2507 INIT(= N_("E1069: White space required after '%s': %s")); 2760 INIT(= N_("E1069: White space required after '%s': %s"));
2508 EXTERN char e_missing_from[]
2509 INIT(= N_("E1070: Missing \"from\""));
2510 EXTERN char e_invalid_string_for_import_str[] 2761 EXTERN char e_invalid_string_for_import_str[]
2511 INIT(= N_("E1071: Invalid string for :import: %s")); 2762 INIT(= N_("E1071: Invalid string for :import: %s"));
2512 EXTERN char e_cannot_compare_str_with_str[] 2763 EXTERN char e_cannot_compare_str_with_str[]
2513 INIT(= N_("E1072: Cannot compare %s with %s")); 2764 INIT(= N_("E1072: Cannot compare %s with %s"));
2514 EXTERN char e_name_already_defined_str[] 2765 EXTERN char e_name_already_defined_str[]
2515 INIT(= N_("E1073: Name already defined: %s")); 2766 INIT(= N_("E1073: Name already defined: %s"));
2516 EXTERN char e_no_white_space_allowed_after_dot[] 2767 EXTERN char e_no_white_space_allowed_after_dot[]
2517 INIT(= N_("E1074: No white space allowed after dot")); 2768 INIT(= N_("E1074: No white space allowed after dot"));
2518 EXTERN char e_namespace_not_supported_str[] 2769 EXTERN char e_namespace_not_supported_str[]
2519 INIT(= N_("E1075: Namespace not supported: %s")); 2770 INIT(= N_("E1075: Namespace not supported: %s"));
2771 #ifndef FEAT_FLOAT
2520 EXTERN char e_this_vim_is_not_compiled_with_float_support[] 2772 EXTERN char e_this_vim_is_not_compiled_with_float_support[]
2521 INIT(= N_("E1076: This Vim is not compiled with float support")); 2773 INIT(= N_("E1076: This Vim is not compiled with float support"));
2774 #endif
2522 EXTERN char e_missing_argument_type_for_str[] 2775 EXTERN char e_missing_argument_type_for_str[]
2523 INIT(= N_("E1077: Missing argument type for %s")); 2776 INIT(= N_("E1077: Missing argument type for %s"));
2524 // E1078 unused 2777 // E1078 unused
2525 // E1079 unused 2778 // E1079 unused
2526 // E1080 unused 2779 // E1080 unused
2527 EXTERN char e_cannot_unlet_str[] 2780 EXTERN char e_cannot_unlet_str[]
2528 INIT(= N_("E1081: Cannot unlet %s")); 2781 INIT(= N_("E1081: Cannot unlet %s"));
2529 EXTERN char e_cannot_use_namespaced_variable[]
2530 INIT(= N_("E1082: Cannot use a namespaced variable: %s"));
2531 EXTERN char e_missing_backtick[] 2782 EXTERN char e_missing_backtick[]
2532 INIT(= N_("E1083: Missing backtick")); 2783 INIT(= N_("E1083: Missing backtick"));
2533 EXTERN char e_cannot_delete_vim9_script_function_str[] 2784 EXTERN char e_cannot_delete_vim9_script_function_str[]
2534 INIT(= N_("E1084: Cannot delete Vim9 script function %s")); 2785 INIT(= N_("E1084: Cannot delete Vim9 script function %s"));
2535 EXTERN char e_not_callable_type_str[] 2786 EXTERN char e_not_callable_type_str[]
2558 INIT(= N_("E1097: Line incomplete")); 2809 INIT(= N_("E1097: Line incomplete"));
2559 EXTERN char e_string_list_or_blob_required[] 2810 EXTERN char e_string_list_or_blob_required[]
2560 INIT(= N_("E1098: String, List or Blob required")); 2811 INIT(= N_("E1098: String, List or Blob required"));
2561 EXTERN char e_unknown_error_while_executing_str[] 2812 EXTERN char e_unknown_error_while_executing_str[]
2562 INIT(= N_("E1099: Unknown error while executing %s")); 2813 INIT(= N_("E1099: Unknown error while executing %s"));
2563 #endif
2564 EXTERN char e_command_not_supported_in_vim9_script_missing_var_str[] 2814 EXTERN char e_command_not_supported_in_vim9_script_missing_var_str[]
2565 INIT(= N_("E1100: Command not supported in Vim9 script (missing :var?): %s")); 2815 INIT(= N_("E1100: Command not supported in Vim9 script (missing :var?): %s"));
2566 #ifdef FEAT_EVAL
2567 EXTERN char e_cannot_declare_script_variable_in_function[] 2816 EXTERN char e_cannot_declare_script_variable_in_function[]
2568 INIT(= N_("E1101: Cannot declare a script variable in a function: %s")); 2817 INIT(= N_("E1101: Cannot declare a script variable in a function: %s"));
2569 EXTERN char e_lambda_function_not_found_str[] 2818 EXTERN char e_lambda_function_not_found_str[]
2570 INIT(= N_("E1102: Lambda function not found: %s")); 2819 INIT(= N_("E1102: Lambda function not found: %s"));
2571 EXTERN char e_dictionary_not_set[] 2820 EXTERN char e_dictionary_not_set[]
2639 #endif 2888 #endif
2640 EXTERN char e_cmd_mapping_must_end_with_cr_before_second_cmd[] 2889 EXTERN char e_cmd_mapping_must_end_with_cr_before_second_cmd[]
2641 INIT(= N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>")); 2890 INIT(= N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>"));
2642 EXTERN char e_cmd_maping_must_not_include_str_key[] 2891 EXTERN char e_cmd_maping_must_not_include_str_key[]
2643 INIT(= N_("E1137: <Cmd> mapping must not include %s key")); 2892 INIT(= N_("E1137: <Cmd> mapping must not include %s key"));
2893 #ifdef FEAT_EVAL
2644 EXTERN char e_using_bool_as_number[] 2894 EXTERN char e_using_bool_as_number[]
2645 INIT(= N_("E1138: Using a Bool as a Number")); 2895 INIT(= N_("E1138: Using a Bool as a Number"));
2646 EXTERN char e_missing_matching_bracket_after_dict_key[] 2896 EXTERN char e_missing_matching_bracket_after_dict_key[]
2647 INIT(= N_("E1139: Missing matching bracket after dict key")); 2897 INIT(= N_("E1139: Missing matching bracket after dict key"));
2648 EXTERN char e_for_argument_must_be_sequence_of_lists[] 2898 EXTERN char e_for_argument_must_be_sequence_of_lists[]
2649 INIT(= N_("E1140: :for argument must be a sequence of lists")); 2899 INIT(= N_("E1140: :for argument must be a sequence of lists"));
2650 EXTERN char e_indexable_type_required[] 2900 EXTERN char e_indexable_type_required[]
2651 INIT(= N_("E1141: Indexable type required")); 2901 INIT(= N_("E1141: Indexable type required"));
2652 EXTERN char e_non_empty_string_required[]
2653 INIT(= N_("E1142: Non-empty string required"));
2654 EXTERN char e_empty_expression_str[] 2902 EXTERN char e_empty_expression_str[]
2655 INIT(= N_("E1143: Empty expression: \"%s\"")); 2903 INIT(= N_("E1143: Empty expression: \"%s\""));
2656 EXTERN char e_command_str_not_followed_by_white_space_str[] 2904 EXTERN char e_command_str_not_followed_by_white_space_str[]
2657 INIT(= N_("E1144: Command \"%s\" is not followed by white space: %s")); 2905 INIT(= N_("E1144: Command \"%s\" is not followed by white space: %s"));
2658 EXTERN char e_missing_heredoc_end_marker_str[] 2906 EXTERN char e_missing_heredoc_end_marker_str[]
2673 INIT(= N_("E1152: Mismatched enddef")); 2921 INIT(= N_("E1152: Mismatched enddef"));
2674 EXTERN char e_invalid_operation_for_str[] 2922 EXTERN char e_invalid_operation_for_str[]
2675 INIT(= N_("E1153: Invalid operation for %s")); 2923 INIT(= N_("E1153: Invalid operation for %s"));
2676 EXTERN char e_divide_by_zero[] 2924 EXTERN char e_divide_by_zero[]
2677 INIT(= N_("E1154: Divide by zero")); 2925 INIT(= N_("E1154: Divide by zero"));
2926 #endif
2678 EXTERN char e_cannot_define_autocommands_for_all_events[] 2927 EXTERN char e_cannot_define_autocommands_for_all_events[]
2679 INIT(= N_("E1155: Cannot define autocommands for ALL events")); 2928 INIT(= N_("E1155: Cannot define autocommands for ALL events"));
2680 EXTERN char e_cannot_change_arglist_recursively[] 2929 EXTERN char e_cannot_change_arglist_recursively[]
2681 INIT(= N_("E1156: Cannot change the argument list recursively")); 2930 INIT(= N_("E1156: Cannot change the argument list recursively"));
2931 #ifdef FEAT_EVAL
2682 EXTERN char e_missing_return_type[] 2932 EXTERN char e_missing_return_type[]
2683 INIT(= N_("E1157: Missing return type")); 2933 INIT(= N_("E1157: Missing return type"));
2684 EXTERN char e_cannot_use_flatten_in_vim9_script[] 2934 EXTERN char e_cannot_use_flatten_in_vim9_script[]
2685 INIT(= N_("E1158: Cannot use flatten() in Vim9 script")); 2935 INIT(= N_("E1158: Cannot use flatten() in Vim9 script"));
2936 #endif
2686 EXTERN char e_cannot_split_window_when_closing_buffer[] 2937 EXTERN char e_cannot_split_window_when_closing_buffer[]
2687 INIT(= N_("E1159: Cannot split a window when closing the buffer")); 2938 INIT(= N_("E1159: Cannot split a window when closing the buffer"));
2939 #ifdef FEAT_EVAL
2688 EXTERN char e_cannot_use_default_for_variable_arguments[] 2940 EXTERN char e_cannot_use_default_for_variable_arguments[]
2689 INIT(= N_("E1160: Cannot use a default for variable arguments")); 2941 INIT(= N_("E1160: Cannot use a default for variable arguments"));
2690 EXTERN char e_cannot_json_encode_str[] 2942 EXTERN char e_cannot_json_encode_str[]
2691 INIT(= N_("E1161: Cannot json encode a %s")); 2943 INIT(= N_("E1161: Cannot json encode a %s"));
2692 EXTERN char e_register_name_must_be_one_char_str[] 2944 EXTERN char e_register_name_must_be_one_char_str[]
2693 INIT(= N_("E1162: Register name must be one character: %s")); 2945 INIT(= N_("E1162: Register name must be one character: %s"));
2694 EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str[] 2946 EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str[]
2695 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s")); 2947 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s"));
2696 EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str_in_str[] 2948 EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str_in_str[]
2697 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s in %s")); 2949 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s in %s"));
2950 #endif
2698 EXTERN char e_vim9cmd_must_be_followed_by_command[] 2951 EXTERN char e_vim9cmd_must_be_followed_by_command[]
2699 INIT(= N_("E1164: vim9cmd must be followed by a command")); 2952 INIT(= N_("E1164: vim9cmd must be followed by a command"));
2953 #ifdef FEAT_EVAL
2700 EXTERN char e_cannot_use_range_with_assignment_str[] 2954 EXTERN char e_cannot_use_range_with_assignment_str[]
2701 INIT(= N_("E1165: Cannot use a range with an assignment: %s")); 2955 INIT(= N_("E1165: Cannot use a range with an assignment: %s"));
2702 EXTERN char e_cannot_use_range_with_dictionary[] 2956 EXTERN char e_cannot_use_range_with_dictionary[]
2703 INIT(= N_("E1166: Cannot use a range with a dictionary")); 2957 INIT(= N_("E1166: Cannot use a range with a dictionary"));
2704 EXTERN char e_argument_name_shadows_existing_variable_str[] 2958 EXTERN char e_argument_name_shadows_existing_variable_str[]
2723 INIT(= N_("E1176: Misplaced command modifier")); 2977 INIT(= N_("E1176: Misplaced command modifier"));
2724 EXTERN char e_for_loop_on_str_not_supported[] 2978 EXTERN char e_for_loop_on_str_not_supported[]
2725 INIT(= N_("E1177: For loop on %s not supported")); 2979 INIT(= N_("E1177: For loop on %s not supported"));
2726 EXTERN char e_cannot_lock_unlock_local_variable[] 2980 EXTERN char e_cannot_lock_unlock_local_variable[]
2727 INIT(= N_("E1178: Cannot lock or unlock a local variable")); 2981 INIT(= N_("E1178: Cannot lock or unlock a local variable"));
2982 #endif
2983 #ifdef FEAT_TERMINAL
2728 EXTERN char e_failed_to_extract_pwd_from_str_check_your_shell_config[] 2984 EXTERN char e_failed_to_extract_pwd_from_str_check_your_shell_config[]
2729 INIT(= N_("E1179: Failed to extract PWD from %s, check your shell's config related to OSC 7")); 2985 INIT(= N_("E1179: Failed to extract PWD from %s, check your shell's config related to OSC 7"));
2986 #endif
2987 #ifdef FEAT_EVAL
2730 EXTERN char e_variable_arguments_type_must_be_list_str[] 2988 EXTERN char e_variable_arguments_type_must_be_list_str[]
2731 INIT(= N_("E1180: Variable arguments type must be a list: %s")); 2989 INIT(= N_("E1180: Variable arguments type must be a list: %s"));
2732 EXTERN char e_cannot_use_underscore_here[] 2990 EXTERN char e_cannot_use_underscore_here[]
2733 INIT(= N_("E1181: Cannot use an underscore here")); 2991 INIT(= N_("E1181: Cannot use an underscore here"));
2734 EXTERN char e_blob_required[] 2992 EXTERN char e_blob_required[]
2735 INIT(= N_("E1182: Blob required")); 2993 INIT(= N_("E1182: Blob required"));
2736 EXTERN char e_cannot_use_range_with_assignment_operator_str[] 2994 EXTERN char e_cannot_use_range_with_assignment_operator_str[]
2737 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s")); 2995 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
2996 #endif
2997 #ifdef FEAT_EVAL
2738 EXTERN char e_blob_not_set[] 2998 EXTERN char e_blob_not_set[]
2739 INIT(= N_("E1184: Blob not set")); 2999 INIT(= N_("E1184: Blob not set"));
2740 EXTERN char e_cannot_nest_redir[] 3000 EXTERN char e_cannot_nest_redir[]
2741 INIT(= N_("E1185: Cannot nest :redir")); 3001 INIT(= N_("E1185: Cannot nest :redir"));
2742 EXTERN char e_missing_redir_end[] 3002 EXTERN char e_missing_redir_end[]
2743 INIT(= N_("E1185: Missing :redir END")); 3003 INIT(= N_("E1185: Missing :redir END"));
2744 EXTERN char e_expression_does_not_result_in_value_str[] 3004 EXTERN char e_expression_does_not_result_in_value_str[]
2745 INIT(= N_("E1186: Expression does not result in a value: %s")); 3005 INIT(= N_("E1186: Expression does not result in a value: %s"));
3006 #endif
2746 EXTERN char e_failed_to_source_defaults[] 3007 EXTERN char e_failed_to_source_defaults[]
2747 INIT(= N_("E1187: Failed to source defaults.vim")); 3008 INIT(= N_("E1187: Failed to source defaults.vim"));
3009 #if defined(FEAT_TERMINAL) && defined(FEAT_CMDWIN)
2748 EXTERN char e_cannot_open_terminal_from_command_line_window[] 3010 EXTERN char e_cannot_open_terminal_from_command_line_window[]
2749 INIT(= N_("E1188: Cannot open a terminal from the command line window")); 3011 INIT(= N_("E1188: Cannot open a terminal from the command line window"));
3012 #endif
3013 #ifdef FEAT_EVAL
2750 EXTERN char e_cannot_use_legacy_with_command_str[] 3014 EXTERN char e_cannot_use_legacy_with_command_str[]
2751 INIT(= N_("E1189: Cannot use :legacy with this command: %s")); 3015 INIT(= N_("E1189: Cannot use :legacy with this command: %s"));
2752 EXTERN char e_one_argument_too_few[] 3016 EXTERN char e_one_argument_too_few[]
2753 INIT(= N_("E1190: One argument too few")); 3017 INIT(= N_("E1190: One argument too few"));
2754 EXTERN char e_nr_arguments_too_few[] 3018 EXTERN char e_nr_arguments_too_few[]
2755 INIT(= N_("E1190: %d arguments too few")); 3019 INIT(= N_("E1190: %d arguments too few"));
2756 EXTERN char e_call_to_function_that_failed_to_compile_str[] 3020 EXTERN char e_call_to_function_that_failed_to_compile_str[]
2757 INIT(= N_("E1191: Call to function that failed to compile: %s")); 3021 INIT(= N_("E1191: Call to function that failed to compile: %s"));
2758 EXTERN char e_empty_function_name[] 3022 EXTERN char e_empty_function_name[]
2759 INIT(= N_("E1192: Empty function name")); 3023 INIT(= N_("E1192: Empty function name"));
3024 #endif
2760 // libsodium 3025 // libsodium
3026 #ifdef FEAT_CRYPT
3027 # ifndef FEAT_SODIUM
2761 EXTERN char e_libsodium_not_built_in[] 3028 EXTERN char e_libsodium_not_built_in[]
2762 INIT(= N_("E1193: cryptmethod xchacha20 not built into this Vim")); 3029 INIT(= N_("E1193: cryptmethod xchacha20 not built into this Vim"));
3030 # else
3031 # if 0
2763 EXTERN char e_libsodium_cannot_encrypt_header[] 3032 EXTERN char e_libsodium_cannot_encrypt_header[]
2764 INIT(= N_("E1194: Cannot encrypt header, not enough space")); 3033 INIT(= N_("E1194: Cannot encrypt header, not enough space"));
2765 EXTERN char e_libsodium_cannot_encrypt_buffer[] 3034 EXTERN char e_libsodium_cannot_encrypt_buffer[]
2766 INIT(= N_("E1195: Cannot encrypt buffer, not enough space")); 3035 INIT(= N_("E1195: Cannot encrypt buffer, not enough space"));
2767 EXTERN char e_libsodium_cannot_decrypt_header[] 3036 EXTERN char e_libsodium_cannot_decrypt_header[]
2768 INIT(= N_("E1196: Cannot decrypt header, not enough space")); 3037 INIT(= N_("E1196: Cannot decrypt header, not enough space"));
3038 # endif
2769 EXTERN char e_libsodium_cannot_allocate_buffer[] 3039 EXTERN char e_libsodium_cannot_allocate_buffer[]
2770 INIT(= N_("E1197: Cannot allocate_buffer for encryption")); 3040 INIT(= N_("E1197: Cannot allocate_buffer for encryption"));
2771 EXTERN char e_libsodium_decryption_failed_header_incomplete[] 3041 EXTERN char e_libsodium_decryption_failed_header_incomplete[]
2772 INIT(= N_("E1198: Decryption failed: Header incomplete!")); 3042 INIT(= N_("E1198: Decryption failed: Header incomplete!"));
3043 # if 0
2773 EXTERN char e_libsodium_cannot_decrypt_buffer[] 3044 EXTERN char e_libsodium_cannot_decrypt_buffer[]
2774 INIT(= N_("E1199: Cannot decrypt buffer, not enough space")); 3045 INIT(= N_("E1199: Cannot decrypt buffer, not enough space"));
3046 # endif
2775 EXTERN char e_libsodium_decryption_failed[] 3047 EXTERN char e_libsodium_decryption_failed[]
2776 INIT(= N_("E1200: Decryption failed!")); 3048 INIT(= N_("E1200: Decryption failed!"));
2777 EXTERN char e_libsodium_decryption_failed_premature[] 3049 EXTERN char e_libsodium_decryption_failed_premature[]
2778 INIT(= N_("E1201: Decryption failed: pre-mature end of file!")); 3050 INIT(= N_("E1201: Decryption failed: pre-mature end of file!"));
3051 # endif
3052 #endif
3053 #ifdef FEAT_EVAL
2779 EXTERN char e_no_white_space_allowed_after_str_str[] 3054 EXTERN char e_no_white_space_allowed_after_str_str[]
2780 INIT(= N_("E1202: No white space allowed after '%s': %s")); 3055 INIT(= N_("E1202: No white space allowed after '%s': %s"));
2781 EXTERN char e_dot_can_only_be_used_on_dictionary_str[] 3056 EXTERN char e_dot_can_only_be_used_on_dictionary_str[]
2782 INIT(= N_("E1203: Dot can only be used on a dictionary: %s")); 3057 INIT(= N_("E1203: Dot can only be used on a dictionary: %s"));
3058 #endif
2783 EXTERN char e_regexp_number_after_dot_pos_search[] 3059 EXTERN char e_regexp_number_after_dot_pos_search[]
2784 INIT(= N_("E1204: No Number allowed after .: '\\%%%c'")); 3060 INIT(= N_("E1204: No Number allowed after .: '\\%%%c'"));
2785 EXTERN char e_no_white_space_allowed_between_option_and[] 3061 EXTERN char e_no_white_space_allowed_between_option_and[]
2786 INIT(= N_("E1205: No white space allowed between option and")); 3062 INIT(= N_("E1205: No white space allowed between option and"));
3063 #ifdef FEAT_EVAL
2787 EXTERN char e_dict_required_for_argument_nr[] 3064 EXTERN char e_dict_required_for_argument_nr[]
2788 INIT(= N_("E1206: Dictionary required for argument %d")); 3065 INIT(= N_("E1206: Dictionary required for argument %d"));
2789 EXTERN char e_expression_without_effect_str[] 3066 EXTERN char e_expression_without_effect_str[]
2790 INIT(= N_("E1207: Expression without an effect: %s")); 3067 INIT(= N_("E1207: Expression without an effect: %s"));
3068 #endif
2791 EXTERN char e_complete_used_without_allowing_arguments[] 3069 EXTERN char e_complete_used_without_allowing_arguments[]
2792 INIT(= N_("E1208: -complete used without allowing arguments")); 3070 INIT(= N_("E1208: -complete used without allowing arguments"));
3071 #ifdef FEAT_EVAL
2793 EXTERN char e_invalid_value_for_line_number_str[] 3072 EXTERN char e_invalid_value_for_line_number_str[]
2794 INIT(= N_("E1209: Invalid value for a line number: \"%s\"")); 3073 INIT(= N_("E1209: Invalid value for a line number: \"%s\""));
2795 EXTERN char e_number_required_for_argument_nr[] 3074 EXTERN char e_number_required_for_argument_nr[]
2796 INIT(= N_("E1210: Number required for argument %d")); 3075 INIT(= N_("E1210: Number required for argument %d"));
2797 EXTERN char e_list_required_for_argument_nr[] 3076 EXTERN char e_list_required_for_argument_nr[]
2798 INIT(= N_("E1211: List required for argument %d")); 3077 INIT(= N_("E1211: List required for argument %d"));
2799 EXTERN char e_bool_required_for_argument_nr[] 3078 EXTERN char e_bool_required_for_argument_nr[]
2800 INIT(= N_("E1212: Bool required for argument %d")); 3079 INIT(= N_("E1212: Bool required for argument %d"));
2801 EXTERN char e_redefining_imported_item_str[] 3080 EXTERN char e_redefining_imported_item_str[]
2802 INIT(= N_("E1213: Redefining imported item \"%s\"")); 3081 INIT(= N_("E1213: Redefining imported item \"%s\""));
3082 #endif
2803 #if defined(FEAT_DIGRAPHS) && defined(FEAT_EVAL) 3083 #if defined(FEAT_DIGRAPHS) && defined(FEAT_EVAL)
2804 EXTERN char e_digraph_must_be_just_two_characters_str[] 3084 EXTERN char e_digraph_must_be_just_two_characters_str[]
2805 INIT(= N_("E1214: Digraph must be just two characters: %s")); 3085 INIT(= N_("E1214: Digraph must be just two characters: %s"));
2806 EXTERN char e_digraph_argument_must_be_one_character_str[] 3086 EXTERN char e_digraph_argument_must_be_one_character_str[]
2807 INIT(= N_("E1215: Digraph must be one character: %s")); 3087 INIT(= N_("E1215: Digraph must be one character: %s"));
2808 EXTERN char e_digraph_setlist_argument_must_be_list_of_lists_with_two_items[] 3088 EXTERN char e_digraph_setlist_argument_must_be_list_of_lists_with_two_items[]
2809 INIT(= N_("E1216: digraph_setlist() argument must be a list of lists with two items")); 3089 INIT(= N_("E1216: digraph_setlist() argument must be a list of lists with two items"));
2810 #endif 3090 #endif
3091 #ifdef FEAT_EVAL
2811 EXTERN char e_chan_or_job_required_for_argument_nr[] 3092 EXTERN char e_chan_or_job_required_for_argument_nr[]
2812 INIT(= N_("E1217: Channel or Job required for argument %d")); 3093 INIT(= N_("E1217: Channel or Job required for argument %d"));
2813 EXTERN char e_job_required_for_argument_nr[] 3094 EXTERN char e_job_required_for_argument_nr[]
2814 INIT(= N_("E1218: Job required for argument %d")); 3095 INIT(= N_("E1218: Job required for argument %d"));
2815 EXTERN char e_float_or_number_required_for_argument_nr[] 3096 EXTERN char e_float_or_number_required_for_argument_nr[]
2832 INIT(= N_("E1227: List or Dictionary required for argument %d")); 3113 INIT(= N_("E1227: List or Dictionary required for argument %d"));
2833 EXTERN char e_list_dict_or_blob_required_for_argument_nr[] 3114 EXTERN char e_list_dict_or_blob_required_for_argument_nr[]
2834 INIT(= N_("E1228: List, Dictionary or Blob required for argument %d")); 3115 INIT(= N_("E1228: List, Dictionary or Blob required for argument %d"));
2835 EXTERN char e_expected_dictionary_for_using_key_str_but_got_str[] 3116 EXTERN char e_expected_dictionary_for_using_key_str_but_got_str[]
2836 INIT(= N_("E1229: Expected dictionary for using key \"%s\", but got %s")); 3117 INIT(= N_("E1229: Expected dictionary for using key \"%s\", but got %s"));
3118 #endif
3119 #ifdef FEAT_SODIUM
2837 EXTERN char e_encryption_sodium_mlock_failed[] 3120 EXTERN char e_encryption_sodium_mlock_failed[]
2838 INIT(= N_("E1230: Encryption: sodium_mlock() failed")); 3121 INIT(= N_("E1230: Encryption: sodium_mlock() failed"));
3122 #endif
2839 EXTERN char e_cannot_use_bar_to_separate_commands_here_str[] 3123 EXTERN char e_cannot_use_bar_to_separate_commands_here_str[]
2840 INIT(= N_("E1231: Cannot use a bar to separate commands here: %s")); 3124 INIT(= N_("E1231: Cannot use a bar to separate commands here: %s"));
3125 #ifdef FEAT_EVAL
2841 EXTERN char e_argument_of_exists_compiled_must_be_literal_string[] 3126 EXTERN char e_argument_of_exists_compiled_must_be_literal_string[]
2842 INIT(= N_("E1232: Argument of exists_compiled() must be a literal string")); 3127 INIT(= N_("E1232: Argument of exists_compiled() must be a literal string"));
2843 EXTERN char e_exists_compiled_can_only_be_used_in_def_function[] 3128 EXTERN char e_exists_compiled_can_only_be_used_in_def_function[]
2844 INIT(= N_("E1233: exists_compiled() can only be used in a :def function")); 3129 INIT(= N_("E1233: exists_compiled() can only be used in a :def function"));
3130 #endif
2845 EXTERN char e_legacy_must_be_followed_by_command[] 3131 EXTERN char e_legacy_must_be_followed_by_command[]
2846 INIT(= N_("E1234: legacy must be followed by a command")); 3132 INIT(= N_("E1234: legacy must be followed by a command"));
3133 #ifdef FEAT_EVAL
2847 EXTERN char e_function_reference_is_not_set[] 3134 EXTERN char e_function_reference_is_not_set[]
2848 INIT(= N_("E1235: Function reference is not set")); 3135 INIT(= N_("E1235: Function reference is not set"));
2849 EXTERN char e_cannot_use_str_itself_it_is_imported[] 3136 EXTERN char e_cannot_use_str_itself_it_is_imported[]
2850 INIT(= N_("E1236: Cannot use %s itself, it is imported")); 3137 INIT(= N_("E1236: Cannot use %s itself, it is imported"));
3138 #endif
2851 EXTERN char e_no_such_user_defined_command_in_current_buffer_str[] 3139 EXTERN char e_no_such_user_defined_command_in_current_buffer_str[]
2852 INIT(= N_("E1237: No such user-defined command in current buffer: %s")); 3140 INIT(= N_("E1237: No such user-defined command in current buffer: %s"));
3141 #ifdef FEAT_EVAL
2853 EXTERN char e_blob_required_for_argument_nr[] 3142 EXTERN char e_blob_required_for_argument_nr[]
2854 INIT(= N_("E1238: Blob required for argument %d")); 3143 INIT(= N_("E1238: Blob required for argument %d"));
2855 EXTERN char e_invalid_value_for_blob_nr[] 3144 EXTERN char e_invalid_value_for_blob_nr[]
2856 INIT(= N_("E1239: Invalid value for blob: %d")); 3145 INIT(= N_("E1239: Invalid value for blob: %d"));
3146 #endif
2857 EXTERN char e_resulting_text_too_long[] 3147 EXTERN char e_resulting_text_too_long[]
2858 INIT(= N_("E1240: Resulting text too long")); 3148 INIT(= N_("E1240: Resulting text too long"));
3149 #ifdef FEAT_EVAL
2859 EXTERN char e_separator_not_supported_str[] 3150 EXTERN char e_separator_not_supported_str[]
2860 INIT(= N_("E1241: Separator not supported: %s")); 3151 INIT(= N_("E1241: Separator not supported: %s"));
2861 EXTERN char e_no_white_space_allowed_before_separator_str[] 3152 EXTERN char e_no_white_space_allowed_before_separator_str[]
2862 INIT(= N_("E1242: No white space allowed before separator: %s")); 3153 INIT(= N_("E1242: No white space allowed before separator: %s"));
3154 #endif
3155 #ifdef FEAT_GUI_GTK
2863 EXTERN char e_ascii_code_not_in_range[] 3156 EXTERN char e_ascii_code_not_in_range[]
2864 INIT(= N_("E1243: ASCII code not in 32-127 range")); 3157 INIT(= N_("E1243: ASCII code not in 32-127 range"));
3158 #endif
3159 #ifdef FEAT_EVAL
3160 # if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
2865 EXTERN char e_bad_color_string_str[] 3161 EXTERN char e_bad_color_string_str[]
2866 INIT(= N_("E1244: Bad color string: %s")); 3162 INIT(= N_("E1244: Bad color string: %s"));
3163 # endif
2867 EXTERN char e_cannot_expand_sfile_in_vim9_function[] 3164 EXTERN char e_cannot_expand_sfile_in_vim9_function[]
2868 INIT(= N_("E1245: Cannot expand <sfile> in a Vim9 function")); 3165 INIT(= N_("E1245: Cannot expand <sfile> in a Vim9 function"));
2869 EXTERN char e_cannot_find_variable_to_unlock_str[] 3166 EXTERN char e_cannot_find_variable_to_unlock_str[]
2870 INIT(= N_("E1246: Cannot find variable to (un)lock: %s")); 3167 INIT(= N_("E1246: Cannot find variable to (un)lock: %s"));
3168 #endif
2871 EXTERN char e_line_number_out_of_range[] 3169 EXTERN char e_line_number_out_of_range[]
2872 INIT(= N_("E1247: Line number out of range")); 3170 INIT(= N_("E1247: Line number out of range"));
3171 #ifdef FEAT_EVAL
2873 EXTERN char e_closure_called_from_invalid_context[] 3172 EXTERN char e_closure_called_from_invalid_context[]
2874 INIT(= N_("E1248: Closure called from invalid context")); 3173 INIT(= N_("E1248: Closure called from invalid context"));
3174 #endif
2875 EXTERN char e_highlight_group_name_too_long[] 3175 EXTERN char e_highlight_group_name_too_long[]
2876 INIT(= N_("E1249: Highlight group name too long")); 3176 INIT(= N_("E1249: Highlight group name too long"));
3177 #ifdef FEAT_EVAL
2877 EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[] 3178 EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[]
2878 INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob")); 3179 INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob"));
2879 EXTERN char e_list_dict_blob_or_string_required_for_argument_nr[] 3180 EXTERN char e_list_dict_blob_or_string_required_for_argument_nr[]
2880 INIT(= N_("E1251: List, Dictionary, Blob or String required for argument %d")); 3181 INIT(= N_("E1251: List, Dictionary, Blob or String required for argument %d"));
2881 EXTERN char e_string_list_or_blob_required_for_argument_nr[] 3182 EXTERN char e_string_list_or_blob_required_for_argument_nr[]
2882 INIT(= N_("E1252: String, List or Blob required for argument %d")); 3183 INIT(= N_("E1252: String, List or Blob required for argument %d"));
2883 EXTERN char e_string_expected_for_argument_nr[] 3184 EXTERN char e_string_expected_for_argument_nr[]
2884 INIT(= N_("E1253: String expected for argument %d")); 3185 INIT(= N_("E1253: String expected for argument %d"));
2885 EXTERN char e_cannot_use_script_variable_in_for_loop[] 3186 EXTERN char e_cannot_use_script_variable_in_for_loop[]
2886 INIT(= N_("E1254: Cannot use script variable in for loop")); 3187 INIT(= N_("E1254: Cannot use script variable in for loop"));
3188 #endif
2887 EXTERN char e_cmd_mapping_must_end_with_cr[] 3189 EXTERN char e_cmd_mapping_must_end_with_cr[]
2888 INIT(= N_("E1255: <Cmd> mapping must end with <CR>")); 3190 INIT(= N_("E1255: <Cmd> mapping must end with <CR>"));
3191 #ifdef FEAT_EVAL
2889 EXTERN char e_string_or_function_required_for_argument_nr[] 3192 EXTERN char e_string_or_function_required_for_argument_nr[]
2890 INIT(= N_("E1256: String or function required for argument %d")); 3193 INIT(= N_("E1256: String or function required for argument %d"));
2891 EXTERN char e_imported_script_must_use_as_or_end_in_dot_vim_str[] 3194 EXTERN char e_imported_script_must_use_as_or_end_in_dot_vim_str[]
2892 INIT(= N_("E1257: Imported script must use \"as\" or end in .vim: %s")); 3195 INIT(= N_("E1257: Imported script must use \"as\" or end in .vim: %s"));
2893 EXTERN char e_no_dot_after_imported_name_str[] 3196 EXTERN char e_no_dot_after_imported_name_str[]
2898 INIT(= N_("E1260: Cannot unlet an imported item: %s")); 3201 INIT(= N_("E1260: Cannot unlet an imported item: %s"));
2899 EXTERN char e_cannot_import_dot_vim_without_using_as[] 3202 EXTERN char e_cannot_import_dot_vim_without_using_as[]
2900 INIT(= N_("E1261: Cannot import .vim without using \"as\"")); 3203 INIT(= N_("E1261: Cannot import .vim without using \"as\""));
2901 EXTERN char e_cannot_import_same_script_twice_str[] 3204 EXTERN char e_cannot_import_same_script_twice_str[]
2902 INIT(= N_("E1262: Cannot import the same script twice: %s")); 3205 INIT(= N_("E1262: Cannot import the same script twice: %s"));
3206 #endif