Mercurial > vim
annotate src/errors.h @ 32417:3c2c1cb61004 v9.0.1540
patch 9.0.1540: reverse() on string doesn't work in compiled function
Commit: https://github.com/vim/vim/commit/f9dc278946d52235a0025fd347bd9ff571258470
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Thu May 11 15:02:56 2023 +0100
patch 9.0.1540: reverse() on string doesn't work in compiled function
Problem: reverse() on string doesn't work in compiled function.
Solution: Accept string in argument type check. (Yegappan Lakshmanan,
closes #12377)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 11 May 2023 16:15:08 +0200 |
parents | ffbae151e462 |
children | db97ccaaa7c8 |
rev | line source |
---|---|
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 * |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 * VIM - Vi IMproved by Bram Moolenaar |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 * |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 * Do ":help uganda" in Vim to read copying and usage conditions. |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 * Do ":help credits" in Vim to see a list of people who contributed. |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 */ |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 /* |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 * Definition of error messages, sorted on error number. |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 */ |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
13 EXTERN char e_interrupted[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
14 INIT(= N_("Interrupted")); |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
15 |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
16 EXTERN char e_backslash_should_be_followed_by[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
17 INIT(= N_("E10: \\ should be followed by /, ? or &")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
18 EXTERN char e_invalid_in_cmdline_window[] |
30329
8496a2c45962
patch 9.0.0500: when quitting cmdline window with CTRL-C it remains visible
Bram Moolenaar <Bram@vim.org>
parents:
30310
diff
changeset
|
19 INIT(= N_("E11: Invalid in command-line window; :q<CR> closes the window")); |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
20 EXTERN char e_command_not_allowed_from_vimrc_in_current_dir_or_tag_search[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
21 INIT(= N_("E12: Command not allowed from exrc/vimrc in current dir or tag search")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
22 EXTERN char e_file_exists[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
23 INIT(= N_("E13: File exists (add ! to override)")); |
27034
b31cc7630773
patch 8.2.4046: some error messages not in the right place
Bram Moolenaar <Bram@vim.org>
parents:
27030
diff
changeset
|
24 // E14 unused |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
25 #ifdef FEAT_EVAL |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
26 EXTERN char e_invalid_expression_str[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
27 INIT(= N_("E15: Invalid expression: \"%s\"")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
28 #endif |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
29 EXTERN char e_invalid_range[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
30 INIT(= N_("E16: Invalid range")); |
28255
48b9ffd40f38
patch 8.2.4653: "import autoload" does not check the file name
Bram Moolenaar <Bram@vim.org>
parents:
28160
diff
changeset
|
31 #if defined(UNIX) || defined(FEAT_SYN_HL) \ |
48b9ffd40f38
patch 8.2.4653: "import autoload" does not check the file name
Bram Moolenaar <Bram@vim.org>
parents:
28160
diff
changeset
|
32 || defined(FEAT_SPELL) || defined(FEAT_EVAL) |
48b9ffd40f38
patch 8.2.4653: "import autoload" does not check the file name
Bram Moolenaar <Bram@vim.org>
parents:
28160
diff
changeset
|
33 EXTERN char e_str_is_directory[] |
25064
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
34 INIT(= N_("E17: \"%s\" is a directory")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
35 #endif |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
36 #ifdef FEAT_EVAL |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
37 EXTERN char e_unexpected_characters_in_let[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
38 INIT(= N_("E18: Unexpected characters in :let")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
39 EXTERN char e_unexpected_characters_in_assignment[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
40 INIT(= N_("E18: Unexpected characters in assignment")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
41 #endif |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
42 EXTERN char e_mark_has_invalid_line_number[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
43 INIT(= N_("E19: Mark has invalid line number")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
44 EXTERN char e_mark_not_set[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
45 INIT(= N_("E20: Mark not set")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
46 EXTERN char e_cannot_make_changes_modifiable_is_off[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
47 INIT(= N_("E21: Cannot make changes, 'modifiable' is off")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
48 EXTERN char e_scripts_nested_too_deep[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
49 INIT(= N_("E22: Scripts nested too deep")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
50 EXTERN char e_no_alternate_file[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
51 INIT(= N_("E23: No alternate file")); |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
52 EXTERN char e_no_such_abbreviation[] |
8f2262c72178
patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25036
diff
changeset
|
53 INIT(= N_("E24: No such abbreviation")); |
25306
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
54 #if !defined(FEAT_GUI) || defined(VIMDLL) |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
55 EXTERN char e_gui_cannot_be_used_not_enabled_at_compile_time[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
56 INIT(= N_("E25: GUI cannot be used: Not enabled at compile time")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
57 #endif |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
58 #ifndef FEAT_RIGHTLEFT |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
59 EXTERN char e_hebrew_cannot_be_used_not_enabled_at_compile_time[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
60 INIT(= N_("E26: Hebrew cannot be used: Not enabled at compile time\n")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
61 #endif |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
62 EXTERN char e_farsi_support_has_been_removed[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
63 INIT(= N_("E27: Farsi support has been removed\n")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
64 #if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_SYN_HL) |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
65 EXTERN char e_no_such_highlight_group_name_str[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
66 INIT(= N_("E28: No such highlight group name: %s")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
67 #endif |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
68 EXTERN char e_no_inserted_text_yet[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
69 INIT(= N_("E29: No inserted text yet")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
70 EXTERN char e_no_previous_command_line[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
71 INIT(= N_("E30: No previous command line")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
72 EXTERN char e_no_such_mapping[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
73 INIT(= N_("E31: No such mapping")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
74 EXTERN char e_no_file_name[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
75 INIT(= N_("E32: No file name")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
76 EXTERN char e_no_previous_substitute_regular_expression[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
77 INIT(= N_("E33: No previous substitute regular expression")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
78 EXTERN char e_no_previous_command[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
79 INIT(= N_("E34: No previous command")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
80 EXTERN char e_no_previous_regular_expression[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
81 INIT(= N_("E35: No previous regular expression")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
82 EXTERN char e_not_enough_room[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
83 INIT(= N_("E36: Not enough room")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
84 EXTERN char e_no_write_since_last_change[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
85 INIT(= N_("E37: No write since last change")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
86 EXTERN char e_no_write_since_last_change_add_bang_to_override[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
87 INIT(= N_("E37: No write since last change (add ! to override)")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
88 EXTERN char e_null_argument[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
89 INIT(= N_("E38: Null argument")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
90 #if defined(FEAT_DIGRAPHS) || defined(FEAT_TIMERS) || defined(FEAT_EVAL) |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
91 EXTERN char e_number_expected[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
92 INIT(= N_("E39: Number expected")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
93 #endif |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
94 #ifdef FEAT_QUICKFIX |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
95 EXTERN char e_cant_open_errorfile_str[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
96 INIT(= N_("E40: Can't open errorfile %s")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
97 #endif |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
98 EXTERN char e_out_of_memory[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
99 INIT(= N_("E41: Out of memory!")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
100 #ifdef FEAT_QUICKFIX |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
101 EXTERN char e_no_errors[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
102 INIT(= N_("E42: No Errors")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
103 #endif |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
104 EXTERN char e_damaged_match_string[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
105 INIT(= N_("E43: Damaged match string")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
106 EXTERN char e_corrupted_regexp_program[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
107 INIT(= N_("E44: Corrupted regexp program")); |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
108 EXTERN char e_readonly_option_is_set_add_bang_to_override[] |
078edc1821bf
patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25302
diff
changeset
|
109 INIT(= N_("E45: 'readonly' option is set (add ! to override)")); |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
110 #ifdef FEAT_EVAL |
26624
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
111 EXTERN char e_cannot_change_readonly_variable[] |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
112 INIT(= N_("E46: Cannot change read-only variable")); |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
113 EXTERN char e_cannot_change_readonly_variable_str[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
114 INIT(= N_("E46: Cannot change read-only variable \"%s\"")); |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
115 #endif |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
116 #ifdef FEAT_QUICKFIX |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
117 EXTERN char e_error_while_reading_errorfile[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
118 INIT(= N_("E47: Error while reading errorfile")); |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
119 #endif |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
120 #ifdef HAVE_SANDBOX |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
121 EXTERN char e_not_allowed_in_sandbox[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
122 INIT(= N_("E48: Not allowed in sandbox")); |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
123 #endif |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
124 EXTERN char e_invalid_scroll_size[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
125 INIT(= N_("E49: Invalid scroll size")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
126 #ifdef FEAT_SYN_HL |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
127 EXTERN char e_too_many_z[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
128 INIT(= N_("E50: Too many \\z(")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
129 #endif |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
130 EXTERN char e_too_many_str_open[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
131 INIT(= N_("E51: Too many %s(")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
132 #ifdef FEAT_SYN_HL |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
133 EXTERN char e_unmatched_z[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
134 INIT(= N_("E52: Unmatched \\z(")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
135 #endif |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
136 EXTERN char e_unmatched_str_percent_open[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
137 INIT(= N_("E53: Unmatched %s%%(")); |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
138 EXTERN char e_unmatched_str_open[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
139 INIT(= N_("E54: Unmatched %s(")); |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
140 EXTERN char e_unmatched_str_close[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
141 INIT(= N_("E55: Unmatched %s)")); |
27034
b31cc7630773
patch 8.2.4046: some error messages not in the right place
Bram Moolenaar <Bram@vim.org>
parents:
27030
diff
changeset
|
142 // E56 unused |
b31cc7630773
patch 8.2.4046: some error messages not in the right place
Bram Moolenaar <Bram@vim.org>
parents:
27030
diff
changeset
|
143 // E57 unused |
b31cc7630773
patch 8.2.4046: some error messages not in the right place
Bram Moolenaar <Bram@vim.org>
parents:
27030
diff
changeset
|
144 // E58 unused |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
145 EXTERN char e_invalid_character_after_str_at[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
146 INIT(= N_("E59: Invalid character after %s@")); |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
147 EXTERN char e_too_many_complex_str_curly[] |
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
148 INIT(= N_("E60: Too many complex %s{...}s")); |
26436
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
149 EXTERN char e_nested_str[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
150 INIT(= N_("E61: Nested %s*")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
151 EXTERN char e_nested_str_chr[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
152 INIT(= N_("E62: Nested %s%c")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
153 EXTERN char e_invalid_use_of_underscore[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
154 INIT(= N_("E63: Invalid use of \\_")); |
26436
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
155 EXTERN char e_str_chr_follows_nothing[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
156 INIT(= N_("E64: %s%c follows nothing")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
157 EXTERN char e_illegal_back_reference[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
158 INIT(= N_("E65: Illegal back reference")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
159 #ifdef FEAT_SYN_HL |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
160 EXTERN char e_z_not_allowed_here[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
161 INIT(= N_("E66: \\z( not allowed here")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
162 EXTERN char e_z1_z9_not_allowed_here[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
163 INIT(= N_("E67: \\z1 - \\z9 not allowed here")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
164 #endif |
27034
b31cc7630773
patch 8.2.4046: some error messages not in the right place
Bram Moolenaar <Bram@vim.org>
parents:
27030
diff
changeset
|
165 EXTERN char e_invalid_character_after_bsl_z[] |
b31cc7630773
patch 8.2.4046: some error messages not in the right place
Bram Moolenaar <Bram@vim.org>
parents:
27030
diff
changeset
|
166 INIT(= N_("E68: Invalid character after \\z")); |
26436
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
167 EXTERN char e_missing_sb_after_str[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
168 INIT(= N_("E69: Missing ] after %s%%[")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
169 EXTERN char e_empty_str_brackets[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
170 INIT(= N_("E70: Empty %s%%[]")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
171 EXTERN char e_invalid_character_after_str[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
172 INIT(= N_("E71: Invalid character after %s%%")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
173 EXTERN char e_close_error_on_swap_file[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
174 INIT(= N_("E72: Close error on swap file")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
175 EXTERN char e_tag_stack_empty[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
176 INIT(= N_("E73: Tag stack empty")); |
26436
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
177 EXTERN char e_command_too_complex[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
178 INIT(= N_("E74: Command too complex")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
179 EXTERN char e_name_too_long[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
180 INIT(= N_("E75: Name too long")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
181 EXTERN char e_too_many_brackets[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
182 INIT(= N_("E76: Too many [")); |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
183 EXTERN char e_too_many_file_names[] |
ef0c07cbf53f
patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26434
diff
changeset
|
184 INIT(= N_("E77: Too many file names")); |
26439
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
185 EXTERN char e_unknown_mark[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
186 INIT(= N_("E78: Unknown mark")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
187 EXTERN char e_cannot_expand_wildcards[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
188 INIT(= N_("E79: Cannot expand wildcards")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
189 EXTERN char e_error_while_writing[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
190 INIT(= N_("E80: Error while writing")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
191 #ifdef FEAT_EVAL |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
192 EXTERN char e_using_sid_not_in_script_context[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
193 INIT(= N_("E81: Using <SID> not in a script context")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
194 #endif |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
195 EXTERN char e_cannot_allocate_any_buffer_exiting[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
196 INIT(= N_("E82: Cannot allocate any buffer, exiting...")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
197 EXTERN char e_cannot_allocate_buffer_using_other_one[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
198 INIT(= N_("E83: Cannot allocate buffer, using other one...")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
199 EXTERN char e_no_modified_buffer_found[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
200 INIT(= N_("E84: No modified buffer found")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
201 EXTERN char e_there_is_no_listed_buffer[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
202 INIT(= N_("E85: There is no listed buffer")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
203 EXTERN char e_buffer_nr_does_not_exist[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
204 INIT(= N_("E86: Buffer %ld does not exist")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
205 EXTERN char e_cannot_go_beyond_last_buffer[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
206 INIT(= N_("E87: Cannot go beyond last buffer")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
207 EXTERN char e_cannot_go_before_first_buffer[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
208 INIT(= N_("E88: Cannot go before first buffer")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
209 EXTERN char e_no_write_since_last_change_for_buffer_nr_add_bang_to_override[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
210 INIT(= N_("E89: No write since last change for buffer %d (add ! to override)")); |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
211 EXTERN char e_cannot_unload_last_buffer[] |
b18f3b0f317c
patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents:
26436
diff
changeset
|
212 INIT(= N_("E90: Cannot unload last buffer")); |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
213 EXTERN char e_shell_option_is_empty[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
214 INIT(= N_("E91: 'shell' option is empty")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
215 EXTERN char e_buffer_nr_not_found[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
216 INIT(= N_("E92: Buffer %d not found")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
217 EXTERN char e_more_than_one_match_for_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
218 INIT(= N_("E93: More than one match for %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
219 EXTERN char e_no_matching_buffer_for_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
220 INIT(= N_("E94: No matching buffer for %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
221 EXTERN char e_buffer_with_this_name_already_exists[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
222 INIT(= N_("E95: Buffer with this name already exists")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
223 #if defined(FEAT_DIFF) |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
224 EXTERN char e_cannot_diff_more_than_nr_buffers[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
225 INIT(= N_("E96: Cannot diff more than %d buffers")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
226 EXTERN char e_cannot_create_diffs[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
227 INIT(= N_("E97: Cannot create diffs")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
228 EXTERN char e_cannot_read_diff_output[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
229 INIT(= N_("E98: Cannot read diff output")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
230 EXTERN char e_current_buffer_is_not_in_diff_mode[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
231 INIT(= N_("E99: Current buffer is not in diff mode")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
232 EXTERN char e_no_other_buffer_in_diff_mode[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
233 INIT(= N_("E100: No other buffer in diff mode")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
234 EXTERN char e_more_than_two_buffers_in_diff_mode_dont_know_which_one_to_use[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
235 INIT(= N_("E101: More than two buffers in diff mode, don't know which one to use")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
236 EXTERN char e_cant_find_buffer_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
237 INIT(= N_("E102: Can't find buffer \"%s\"")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
238 EXTERN char e_buffer_str_is_not_in_diff_mode[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
239 INIT(= N_("E103: Buffer \"%s\" is not in diff mode")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
240 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
241 #ifdef FEAT_DIGRAPHS |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
242 EXTERN char e_escape_not_allowed_in_digraph[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
243 INIT(= N_("E104: Escape not allowed in digraph")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
244 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
245 #ifdef FEAT_KEYMAP |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
246 EXTERN char e_using_loadkeymap_not_in_sourced_file[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
247 INIT(= N_("E105: Using :loadkeymap not in a sourced file")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
248 #endif |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
249 // E106 unused |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
250 #ifdef FEAT_EVAL |
26602
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
251 EXTERN char e_missing_parenthesis_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
252 INIT(= N_("E107: Missing parentheses: %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
253 EXTERN char e_no_such_variable_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
254 INIT(= N_("E108: No such variable: \"%s\"")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
255 EXTERN char e_missing_colon_after_questionmark[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
256 INIT(= N_("E109: Missing ':' after '?'")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
257 EXTERN char e_missing_closing_paren[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
258 INIT(= N_("E110: Missing ')'")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
259 EXTERN char e_missing_closing_square_brace[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
260 INIT(= N_("E111: Missing ']'")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
261 EXTERN char e_option_name_missing_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
262 INIT(= N_("E112: Option name missing: %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
263 EXTERN char e_unknown_option_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
264 INIT(= N_("E113: Unknown option: %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
265 EXTERN char e_missing_double_quote_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
266 INIT(= N_("E114: Missing double quote: %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
267 EXTERN char e_missing_single_quote_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
268 INIT(= N_("E115: Missing single quote: %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
269 EXTERN char e_invalid_arguments_for_function_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
270 INIT(= N_("E116: Invalid arguments for function %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
271 EXTERN char e_unknown_function_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
272 INIT(= N_("E117: Unknown function: %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
273 EXTERN char e_too_many_arguments_for_function_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
274 INIT(= N_("E118: Too many arguments for function: %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
275 EXTERN char e_not_enough_arguments_for_function_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
276 INIT(= N_("E119: Not enough arguments for function: %s")); |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
277 EXTERN char e_using_sid_not_in_script_context_str[] |
fac6673086df
patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26585
diff
changeset
|
278 INIT(= N_("E120: Using <SID> not in a script context: %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
279 EXTERN char e_undefined_variable_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
280 INIT(= N_("E121: Undefined variable: %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
281 EXTERN char e_undefined_variable_char_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
282 INIT(= N_("E121: Undefined variable: %c:%s")); |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
283 EXTERN char e_function_str_already_exists_add_bang_to_replace[] |
26757
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
284 INIT(= N_("E122: Function %s already exists, add ! to replace it")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
285 EXTERN char e_undefined_function_str[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
286 INIT(= N_("E123: Undefined function: %s")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
287 EXTERN char e_missing_paren_str[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
288 INIT(= N_("E124: Missing '(': %s")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
289 EXTERN char e_illegal_argument_str[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
290 INIT(= N_("E125: Illegal argument: %s")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
291 EXTERN char e_missing_endfunction[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
292 INIT(= N_("E126: Missing :endfunction")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
293 EXTERN char e_cannot_redefine_function_str_it_is_in_use[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
294 INIT(= N_("E127: Cannot redefine function %s: It is in use")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
295 EXTERN char e_function_name_must_start_with_capital_or_s_str[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
296 INIT(= N_("E128: Function name must start with a capital or \"s:\": %s")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
297 EXTERN char e_function_name_required[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
298 INIT(= N_("E129: Function name required")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
299 // E130 unused |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
300 EXTERN char e_cannot_delete_function_str_it_is_in_use[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
301 INIT(= N_("E131: Cannot delete function %s: It is in use")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
302 EXTERN char e_function_call_depth_is_higher_than_macfuncdepth[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
303 INIT(= N_("E132: Function call depth is higher than 'maxfuncdepth'")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
304 EXTERN char e_return_not_inside_function[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
305 INIT(= N_("E133: :return not inside a function")); |
25320
1e6da8364a02
patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
25310
diff
changeset
|
306 #endif |
26757
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
307 EXTERN char e_cannot_move_range_of_lines_into_itself[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
308 INIT(= N_("E134: Cannot move a range of lines into itself")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
309 EXTERN char e_filter_autocommands_must_not_change_current_buffer[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
310 INIT(= N_("E135: *Filter* Autocommands must not change current buffer")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
311 #if defined(FEAT_VIMINFO) |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
312 EXTERN char e_viminfo_too_many_errors_skipping_rest_of_file[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
313 INIT(= N_("E136: viminfo: Too many errors, skipping rest of file")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
314 EXTERN char e_viminfo_file_is_not_writable_str[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
315 INIT(= N_("E137: Viminfo file is not writable: %s")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
316 EXTERN char e_cant_write_viminfo_file_str[] |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
317 INIT(= N_("E138: Can't write viminfo file %s!")); |
3a2b222107a6
patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26731
diff
changeset
|
318 #endif |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
319 EXTERN char e_file_is_loaded_in_another_buffer[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
320 INIT(= N_("E139: File is loaded in another buffer")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
321 EXTERN char e_use_bang_to_write_partial_buffer[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
322 INIT(= N_("E140: Use ! to write partial buffer")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
323 EXTERN char e_no_file_name_for_buffer_nr[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
324 INIT(= N_("E141: No file name for buffer %ld")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
325 EXTERN char e_file_not_written_writing_is_disabled_by_write_option[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
326 INIT(= N_("E142: File not written: Writing is disabled by 'write' option")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
327 EXTERN char e_autocommands_unexpectedly_deleted_new_buffer_str[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
328 INIT(= N_("E143: Autocommands unexpectedly deleted new buffer %s")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
329 EXTERN char e_non_numeric_argument_to_z[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
330 INIT(= N_("E144: Non-numeric argument to :z")); |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
331 EXTERN char e_shell_commands_and_some_functionality_not_allowed_in_rvim[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
332 INIT(= N_("E145: Shell commands and some functionality not allowed in rvim")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
333 EXTERN char e_regular_expressions_cant_be_delimited_by_letters[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
334 INIT(= N_("E146: Regular expressions can't be delimited by letters")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
335 EXTERN char e_cannot_do_global_recursive_with_range[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
336 INIT(= N_("E147: Cannot do :global recursive with a range")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
337 EXTERN char e_regular_expression_missing_from_global[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
338 INIT(= N_("E148: Regular expression missing from :global")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
339 EXTERN char e_sorry_no_help_for_str[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
340 INIT(= N_("E149: Sorry, no help for %s")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
341 EXTERN char e_not_a_directory_str[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
342 INIT(= N_("E150: Not a directory: %s")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
343 EXTERN char e_no_match_str_1[] |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
344 INIT(= N_("E151: No match: %s")); |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
345 EXTERN char e_cannot_open_str_for_writing_1[] |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
346 INIT(= N_("E152: Cannot open %s for writing")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
347 EXTERN char e_unable_to_open_str_for_reading[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
348 INIT(= N_("E153: Unable to open %s for reading")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
349 EXTERN char e_duplicate_tag_str_in_file_str_str[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
350 INIT(= N_("E154: Duplicate tag \"%s\" in file %s/%s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
351 #ifdef FEAT_SIGNS |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
352 EXTERN char e_unknown_sign_str[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
353 INIT(= N_("E155: Unknown sign: %s")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
354 EXTERN char e_missing_sign_name[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
355 INIT(= N_("E156: Missing sign name")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
356 EXTERN char e_invalid_sign_id_nr[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
357 INIT(= N_("E157: Invalid sign ID: %d")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
358 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
359 #if defined(FEAT_SIGNS) || defined(FEAT_EVAL) |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
360 EXTERN char e_invalid_buffer_name_str[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
361 INIT(= N_("E158: Invalid buffer name: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
362 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
363 #ifdef FEAT_SIGNS |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
364 EXTERN char e_missing_sign_number[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
365 INIT(= N_("E159: Missing sign number")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
366 EXTERN char e_unknown_sign_command_str[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
367 INIT(= N_("E160: Unknown sign command: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
368 #endif |
26853
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
369 #ifdef FEAT_EVAL |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
370 EXTERN char e_breakpoint_not_found_str[] |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
371 INIT(= N_("E161: Breakpoint not found: %s")); |
806f31579357
patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26792
diff
changeset
|
372 #endif |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
373 EXTERN char e_no_write_since_last_change_for_buffer_str[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
374 INIT(= N_("E162: No write since last change for buffer \"%s\"")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
375 EXTERN char e_there_is_only_one_file_to_edit[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
376 INIT(= N_("E163: There is only one file to edit")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
377 EXTERN char e_cannot_go_before_first_file[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
378 INIT(= N_("E164: Cannot go before first file")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
379 EXTERN char e_cannot_go_beyond_last_file[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
380 INIT(= N_("E165: Cannot go beyond last file")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
381 EXTERN char e_cant_open_linked_file_for_writing[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
382 INIT(= N_("E166: Can't open linked file for writing")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
383 EXTERN char e_scriptencoding_used_outside_of_sourced_file[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
384 INIT(= N_("E167: :scriptencoding used outside of a sourced file")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
385 #ifdef FEAT_EVAL |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
386 EXTERN char e_finish_used_outside_of_sourced_file[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
387 INIT(= N_("E168: :finish used outside of a sourced file")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
388 #endif |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
389 EXTERN char e_command_too_recursive[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
390 INIT(= N_("E169: Command too recursive")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
391 #ifdef FEAT_EVAL |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
392 EXTERN char e_missing_endwhile[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
393 INIT(= N_("E170: Missing :endwhile")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
394 EXTERN char e_missing_endfor[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
395 INIT(= N_("E170: Missing :endfor")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
396 EXTERN char e_missing_endif[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
397 INIT(= N_("E171: Missing :endif")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
398 EXTERN char e_missing_marker[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
399 INIT(= N_("E172: Missing marker")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
400 #endif |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
401 EXTERN char e_nr_more_file_to_edit[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
402 INIT(= N_("E173: %d more file to edit")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
403 EXTERN char e_nr_more_files_to_edit[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
404 INIT(= N_("E173: %d more files to edit")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
405 EXTERN char e_command_already_exists_add_bang_to_replace_it_str[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
406 INIT(= N_("E174: Command already exists: add ! to replace it: %s")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
407 EXTERN char e_no_attribute_specified[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
408 INIT(= N_("E175: No attribute specified")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
409 EXTERN char e_invalid_number_of_arguments[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
410 INIT(= N_("E176: Invalid number of arguments")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
411 EXTERN char e_count_cannot_be_specified_twice[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
412 INIT(= N_("E177: Count cannot be specified twice")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
413 EXTERN char e_invalid_default_value_for_count[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
414 INIT(= N_("E178: Invalid default value for count")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
415 EXTERN char e_argument_required_for_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
416 INIT(= N_("E179: Argument required for %s")); |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
417 EXTERN char e_invalid_complete_value_str[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
418 INIT(= N_("E180: Invalid complete value: %s")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
419 EXTERN char e_invalid_address_type_value_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
420 INIT(= N_("E180: Invalid address type value: %s")); |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
421 EXTERN char e_invalid_attribute_str[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
422 INIT(= N_("E181: Invalid attribute: %s")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
423 EXTERN char e_invalid_command_name[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
424 INIT(= N_("E182: Invalid command name")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
425 EXTERN char e_user_defined_commands_must_start_with_an_uppercase_letter[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
426 INIT(= N_("E183: User defined commands must start with an uppercase letter")); |
25796
60e4892dfa45
patch 8.2.3433: :delcommand does not take a -buffer option
Bram Moolenaar <Bram@vim.org>
parents:
25755
diff
changeset
|
427 EXTERN char e_no_such_user_defined_command_str[] |
60e4892dfa45
patch 8.2.3433: :delcommand does not take a -buffer option
Bram Moolenaar <Bram@vim.org>
parents:
25755
diff
changeset
|
428 INIT(= N_("E184: No such user-defined command: %s")); |
26857
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
429 EXTERN char e_cannot_find_color_scheme_str[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
430 INIT(= N_("E185: Cannot find color scheme '%s'")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
431 EXTERN char e_no_previous_directory[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
432 INIT(= N_("E186: No previous directory")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
433 EXTERN char e_directory_unknown[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
434 INIT(= N_("E187: Directory unknown")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
435 EXTERN char e_obtaining_window_position_not_implemented_for_this_platform[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
436 INIT(= N_("E188: Obtaining window position not implemented for this platform")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
437 EXTERN char e_str_exists_add_bang_to_override[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
438 INIT(= N_("E189: \"%s\" exists (add ! to override)")); |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
439 EXTERN char e_cannot_open_str_for_writing_2[] |
2aeea8611342
patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26853
diff
changeset
|
440 INIT(= N_("E190: Cannot open \"%s\" for writing")); |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
441 EXTERN char e_argument_must_be_letter_or_forward_backward_quote[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
442 INIT(= N_("E191: Argument must be a letter or forward/backward quote")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
443 EXTERN char e_recursive_use_of_normal_too_deep[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
444 INIT(= N_("E192: Recursive use of :normal too deep")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
445 #ifdef FEAT_EVAL |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
446 EXTERN char e_str_not_inside_function[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
447 INIT(= N_("E193: %s not inside a function")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
448 #endif |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
449 EXTERN char e_no_alternate_file_name_to_substitute_for_hash[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
450 INIT(= N_("E194: No alternate file name to substitute for '#'")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
451 #ifdef FEAT_VIMINFO |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
452 EXTERN char e_cannot_open_viminfo_file_for_reading[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
453 INIT(= N_("E195: Cannot open viminfo file for reading")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
454 #endif |
25294
c626fd34b66f
patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents:
25292
diff
changeset
|
455 #ifndef FEAT_DIGRAPHS |
c626fd34b66f
patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents:
25292
diff
changeset
|
456 EXTERN char e_no_digraphs_version[] |
c626fd34b66f
patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents:
25292
diff
changeset
|
457 INIT(= N_("E196: No digraphs in this version")); |
c626fd34b66f
patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents:
25292
diff
changeset
|
458 #endif |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
459 EXTERN char e_cannot_set_language_to_str[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
460 INIT(= N_("E197: Cannot set language to \"%s\"")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
461 // E198 unused |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
462 EXTERN char e_active_window_or_buffer_deleted[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
463 INIT(= N_("E199: Active window or buffer deleted")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
464 EXTERN char e_readpre_autocommands_made_file_unreadable[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
465 INIT(= N_("E200: *ReadPre autocommands made the file unreadable")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
466 EXTERN char e_readpre_autocommands_must_not_change_current_buffer[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
467 INIT(= N_("E201: *ReadPre autocommands must not change current buffer")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
468 #ifdef FEAT_EVAL |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
469 EXTERN char e_conversion_mad_file_unreadable[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
470 INIT(= N_("E202: Conversion made file unreadable!")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
471 #endif |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
472 EXTERN char e_autocommands_deleted_or_unloaded_buffer_to_be_written[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
473 INIT(= N_("E203: Autocommands deleted or unloaded buffer to be written")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
474 EXTERN char e_autocommands_changed_number_of_lines_in_unexpected_way[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
475 INIT(= N_("E204: Autocommand changed number of lines in unexpected way")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
476 EXTERN char e_patchmode_cant_save_original_file[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
477 INIT(= N_("E205: Patchmode: can't save original file")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
478 EXTERN char e_patchmode_cant_touch_empty_original_file[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
479 INIT(= N_("E206: Patchmode: can't touch empty original file")); |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
480 EXTERN char e_cant_delete_backup_file[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
481 INIT(= N_("E207: Can't delete backup file")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
482 EXTERN char e_error_writing_to_str[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
483 INIT(= N_("E208: Error writing to \"%s\"")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
484 EXTERN char e_error_closing_str[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
485 INIT(= N_("E209: Error closing \"%s\"")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
486 EXTERN char e_error_reading_str[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
487 INIT(= N_("E210: Error reading \"%s\"")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
488 EXTERN char e_file_str_no_longer_available[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
489 INIT(= N_("E211: File \"%s\" no longer available")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
490 EXTERN char e_cant_open_file_for_writing[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
491 INIT(= N_("E212: Can't open file for writing")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
492 EXTERN char e_cannot_convert_add_bang_to_write_without_conversion[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
493 INIT(= N_("E213: Cannot convert (add ! to write without conversion)")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
494 #ifdef FEAT_EVAL |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
495 EXTERN char e_cant_find_temp_file_for_writing[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
496 INIT(= N_("E214: Can't find temp file for writing")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
497 #endif |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
498 EXTERN char e_illegal_character_after_star_str[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
499 INIT(= N_("E215: Illegal character after *: %s")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
500 EXTERN char e_no_such_event_str[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
501 INIT(= N_("E216: No such event: %s")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
502 EXTERN char e_no_such_group_or_event_str[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
503 INIT(= N_("E216: No such group or event: %s")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
504 EXTERN char e_cant_execute_autocommands_for_all_events[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
505 INIT(= N_("E217: Can't execute autocommands for ALL events")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
506 EXTERN char e_autocommand_nesting_too_deep[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
507 INIT(= N_("E218: Autocommand nesting too deep")); |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
508 EXTERN char e_missing_open_curly[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
509 INIT(= N_("E219: Missing {.")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
510 EXTERN char e_missing_close_curly[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
511 INIT(= N_("E220: Missing }.")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
512 #ifdef FEAT_EVAL |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
513 EXTERN char e_marker_cannot_start_with_lower_case_letter[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
514 INIT(= N_("E221: Marker cannot start with lower case letter")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
515 #endif |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
516 EXTERN char e_add_to_internal_buffer_that_was_already_read_from[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
517 INIT(= N_("E222: Add to internal buffer that was already read from")); |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
518 EXTERN char e_recursive_mapping[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
519 INIT(= N_("E223: Recursive mapping")); |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
520 EXTERN char e_global_abbreviation_already_exists_for_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
521 INIT(= N_("E224: Global abbreviation already exists for %s")); |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
522 EXTERN char e_global_mapping_already_exists_for_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
523 INIT(= N_("E225: Global mapping already exists for %s")); |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
524 EXTERN char e_abbreviation_already_exists_for_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
525 INIT(= N_("E226: Abbreviation already exists for %s")); |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
526 EXTERN char e_mapping_already_exists_for_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
527 INIT(= N_("E227: Mapping already exists for %s")); |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
528 EXTERN char e_makemap_illegal_mode[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
529 INIT(= N_("E228: makemap: Illegal mode")); |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
530 #ifdef FEAT_GUI |
26861
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
531 EXTERN char e_cannot_start_the_GUI[] |
df2de1e63de0
patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26857
diff
changeset
|
532 INIT(= N_("E229: Cannot start the GUI")); |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
533 EXTERN char e_cannot_read_from_str[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
534 INIT(= N_("E230: Cannot read from \"%s\"")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
535 EXTERN char e_guifontwide_invalid[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
536 INIT(= N_("E231: 'guifontwide' invalid")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
537 #ifdef FEAT_BEVAL_GUI |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
538 EXTERN char e_cannot_create_ballooneval_with_both_message_and_callback[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
539 INIT(= N_("E232: Cannot create BalloonEval with both message and callback")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
540 #endif |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
541 # if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
542 EXTERN char e_cannot_open_display[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
543 INIT(= N_("E233: Cannot open display")); |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
544 # endif |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
545 # if defined(FEAT_XFONTSET) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
546 EXTERN char e_unknown_fontset_str[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
547 INIT(= N_("E234: Unknown fontset: %s")); |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
548 # endif |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
549 # if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) \ |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
550 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_HAIKU) |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
551 EXTERN char e_unknown_font_str[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
552 INIT(= N_("E235: Unknown font: %s")); |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
553 # endif |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
554 # if defined(FEAT_GUI_X11) && !defined(FEAT_GUI_GTK) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
555 EXTERN char e_font_str_is_not_fixed_width[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
556 INIT(= N_("E236: Font \"%s\" is not fixed-width")); |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
557 # endif |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
558 #endif |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
559 #ifdef MSWIN |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
560 EXTERN char e_printer_selection_failed[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
561 INIT(= N_("E237: Printer selection failed")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
562 EXTERN char e_print_error_str[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
563 INIT(= N_("E238: Print error: %s")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
564 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
565 #ifdef FEAT_SIGNS |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
566 EXTERN char e_invalid_sign_text_str[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
567 INIT(= N_("E239: Invalid sign text: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
568 #endif |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
569 #if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11) |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
570 EXTERN char e_no_connection_to_x_server[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
571 INIT(= N_("E240: No connection to the X server")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
572 #endif |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
573 #ifdef FEAT_CLIENTSERVER |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
574 EXTERN char e_unable_to_send_to_str[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
575 INIT(= N_("E241: Unable to send to %s")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
576 #endif |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
577 EXTERN char e_cant_split_window_while_closing_another[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
578 INIT(= N_("E242: Can't split a window while closing another")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
579 #if defined(FEAT_GUI_MSWIN) && !defined(FEAT_OLE) |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
580 EXTERN char e_argument_not_supported_str_use_ole_version[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
581 INIT(= N_("E243: Argument not supported: \"-%s\"; Use the OLE version.")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
582 #endif |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
583 #ifdef MSWIN |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
584 EXTERN char e_illegal_str_name_str_in_font_name_str[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
585 INIT(= N_("E244: Illegal %s name \"%s\" in font name \"%s\"")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
586 EXTERN char e_illegal_char_nr_in_font_name_str[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
587 INIT(= N_("E245: Illegal char '%c' in font name \"%s\"")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
588 #endif |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
589 EXTERN char e_filechangedshell_autocommand_deleted_buffer[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
590 INIT(= N_("E246: FileChangedShell autocommand deleted buffer")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
591 #ifdef FEAT_CLIENTSERVER |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
592 EXTERN char e_no_registered_server_named_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
593 INIT(= N_("E247: No registered server named \"%s\"")); |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
594 EXTERN char e_failed_to_send_command_to_destination_program[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
595 INIT(= N_("E248: Failed to send command to the destination program")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
596 #endif |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
597 EXTERN char e_window_layout_changed_unexpectedly[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
598 INIT(= N_("E249: Window layout changed unexpectedly")); |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
599 #ifdef FEAT_XFONTSET |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
600 EXTERN char e_fonts_for_the_following_charsets_are_missing_in_fontset[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
601 INIT(= N_("E250: Fonts for the following charsets are missing in fontset %s:")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
602 #endif |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
603 #ifdef FEAT_CLIENTSERVER |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
604 EXTERN char e_vim_instance_registry_property_is_badly_formed_deleted[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
605 INIT(= N_("E251: VIM instance registry property is badly formed. Deleted!")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
606 #endif |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
607 #ifdef FEAT_GUI_X11 |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
608 EXTERN char e_fontsent_name_str_font_str_is_not_fixed_width[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
609 INIT(= N_("E252: Fontset name: %s - Font '%s' is not fixed-width")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
610 EXTERN char e_fontset_name_str[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
611 INIT(= N_("E253: Fontset name: %s")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
612 #endif |
26057
92c424550367
patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents:
26024
diff
changeset
|
613 #if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) |
92c424550367
patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents:
26024
diff
changeset
|
614 EXTERN char e_cannot_allocate_color_str[] |
92c424550367
patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents:
26024
diff
changeset
|
615 INIT(= N_("E254: Cannot allocate color %s")); |
92c424550367
patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents:
26024
diff
changeset
|
616 #endif |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
617 #if defined(FEAT_SIGN_ICONS) && !defined(FEAT_GUI_GTK) |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
618 EXTERN char e_couldnt_read_in_sign_data[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
619 INIT(= N_("E255: Couldn't read in sign data")); |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
620 #endif |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
621 // E256 unused |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
622 #ifdef FEAT_CSCOPE |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
623 EXTERN char e_cstag_tag_not_founc[] |
28819
caaa99d1250a
patch 8.2.4933: a few more capitalization mistakes in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28790
diff
changeset
|
624 INIT(= N_("E257: cstag: Tag not found")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
625 #endif |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
626 #ifdef FEAT_CLIENTSERVER |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
627 EXTERN char e_unable_to_send_to_client[] |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
628 INIT(= N_("E258: Unable to send to client")); |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
629 #endif |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
630 #ifdef FEAT_CSCOPE |
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
631 EXTERN char e_no_matches_found_for_cscope_query_str_of_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
632 INIT(= N_("E259: No matches found for cscope query %s of %s")); |
26893
79c76ca2c53c
patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26889
diff
changeset
|
633 #endif |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
634 #ifdef FEAT_EVAL |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
635 EXTERN char e_missing_name_after_method[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
636 INIT(= N_("E260: Missing name after ->")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
637 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
638 #ifdef FEAT_CSCOPE |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
639 EXTERN char e_cscope_connection_str_not_founc[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
640 INIT(= N_("E261: Cscope connection %s not found")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
641 EXTERN char e_error_reading_cscope_connection_nr[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
642 INIT(= N_("E262: Error reading cscope connection %d")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
643 #endif |
26899
f78ad6ee739a
patch 8.2.3978: build error when using dynamycally loaded Python 3
Bram Moolenaar <Bram@vim.org>
parents:
26897
diff
changeset
|
644 #if defined(DYNAMIC_PYTHON) || defined(DYNAMIC_PYTHON3) |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
645 EXTERN char e_sorry_this_command_is_disabled_python_library_could_not_be_found[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
646 INIT(= N_("E263: Sorry, this command is disabled, the Python library could not be loaded.")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
647 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
648 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
649 EXTERN char e_python_error_initialising_io_object[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
650 INIT(= N_("E264: Python: Error initialising I/O objects")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
651 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
652 #ifdef FEAT_RUBY |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
653 EXTERN char e_dollar_must_be_an_instance_of_string[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
654 INIT(= N_("E265: $_ must be an instance of String")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
655 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
656 #ifdef DYNAMIC_RUBY |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
657 EXTERN char e_sorry_this_command_is_disabled_the_ruby_library_could_not_be_loaded[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
658 INIT(= N_("E266: Sorry, this command is disabled, the Ruby library could not be loaded.")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
659 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
660 #ifdef FEAT_RUBY |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
661 EXTERN char e_unexpected_return[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
662 INIT(= N_("E267: Unexpected return")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
663 EXTERN char e_unexpected_next[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
664 INIT(= N_("E268: Unexpected next")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
665 EXTERN char e_unexpected_break[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
666 INIT(= N_("E269: Unexpected break")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
667 EXTERN char e_unexpected_redo[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
668 INIT(= N_("E270: Unexpected redo")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
669 EXTERN char e_retry_outside_of_rescue_clause[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
670 INIT(= N_("E271: Retry outside of rescue clause")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
671 EXTERN char e_unhandled_exception[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
672 INIT(= N_("E272: Unhandled exception")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
673 EXTERN char e_unknown_longjmp_status_nr[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
674 INIT(= N_("E273: Unknown longjmp status %d")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
675 #endif |
26887
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
676 #ifdef FEAT_EVAL |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
677 EXTERN char e_no_white_space_allowed_before_parenthesis[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
678 INIT(= N_("E274: No white space allowed before parenthesis")); |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
679 #endif |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
680 #ifdef FEAT_PROP_POPUP |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
681 EXTERN char e_cannot_add_text_property_to_unloaded_buffer[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
682 INIT(= N_("E275: Cannot add text property to unloaded buffer")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
683 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
684 #ifdef FEAT_EVAL |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
685 EXTERN char e_cannot_use_function_as_method_str[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
686 INIT(= N_("E276: Cannot use function as a method: %s")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
687 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
688 #ifdef FEAT_CLIENTSERVER |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
689 EXTERN char e_unable_to_read_server_reply[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
690 INIT(= N_("E277: Unable to read a server reply")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
691 #endif |
27034
b31cc7630773
patch 8.2.4046: some error messages not in the right place
Bram Moolenaar <Bram@vim.org>
parents:
27030
diff
changeset
|
692 // E278 unused |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
693 #if defined(FEAT_TERMINAL) && !defined(UNIX) && !defined(MSWIN) |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
694 EXTERN char e_sorry_plusplusshell_not_supported_on_this_system[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
695 INIT(= N_("E279: Sorry, ++shell is not supported on this system")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
696 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
697 #ifdef FEAT_TCL |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
698 EXTERN char e_tcl_fatal_error_reflist_corrupt_please_report_this[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
699 INIT(= N_("E280: TCL FATAL ERROR: reflist corrupt!? Please report this to vim-dev@vim.org")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
700 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
701 // E281 unused |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
702 EXTERN char e_cannot_read_from_str_2[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
703 INIT(= N_("E282: Cannot read from \"%s\"")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
704 EXTERN char e_no_marks_matching_str[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
705 INIT(= N_("E283: No marks matching \"%s\"")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
706 #ifdef FEAT_XIM |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
707 # ifndef FEAT_GUI_GTK |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
708 EXTERN char e_cannot_set_ic_values[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
709 INIT(= N_("E284: Cannot set IC values")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
710 # endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
711 # ifdef FEAT_GUI_X11 |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
712 EXTERN char e_failed_to_create_input_context[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
713 INIT(= N_("E285: Failed to create input context")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
714 EXTERN char e_failed_to_open_input_method[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
715 INIT(= N_("E286: Failed to open input method")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
716 EXTERN char e_warning_could_not_set_destroy_callback_to_im[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
717 INIT(= N_("E287: Warning: Could not set destroy callback to IM")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
718 EXTERN char e_input_method_doesnt_support_any_style[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
719 INIT(= N_("E288: Input method doesn't support any style")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
720 EXTERN char e_input_method_doesnt_support_my_preedit_type[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
721 INIT(= N_("E289: Input method doesn't support my preedit type")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
722 # endif |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
723 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
724 #ifdef FEAT_SEARCH_EXTRA |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
725 EXTERN char e_list_or_number_required[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
726 INIT(= N_("E290: List or number required")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
727 #endif |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
728 // E291 unused |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
729 EXTERN char e_invalid_count_for_del_bytes_nr[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
730 INIT(= N_("E292: Invalid count for del_bytes(): %ld")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
731 EXTERN char e_block_was_not_locked[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
732 INIT(= N_("E293: Block was not locked")); |
26897
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
733 EXTERN char e_seek_error_in_swap_file_read[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
734 INIT(= N_("E294: Seek error in swap file read")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
735 EXTERN char e_read_error_in_swap_file[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
736 INIT(= N_("E295: Read error in swap file")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
737 EXTERN char e_seek_error_in_swap_file_write[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
738 INIT(= N_("E296: Seek error in swap file write")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
739 EXTERN char e_write_error_in_swap_file[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
740 INIT(= N_("E297: Write error in swap file")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
741 EXTERN char e_didnt_get_block_nr_zero[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
742 INIT(= N_("E298: Didn't get block nr 0?")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
743 EXTERN char e_didnt_get_block_nr_one[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
744 INIT(= N_("E298: Didn't get block nr 1?")); |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
745 EXTERN char e_didnt_get_block_nr_two[] |
d02d40f0261c
patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26893
diff
changeset
|
746 INIT(= N_("E298: Didn't get block nr 2?")); |
27436
4c683d6c0a9d
patch 8.2.4246: one error message not in errors.h
Bram Moolenaar <Bram@vim.org>
parents:
27424
diff
changeset
|
747 #ifdef FEAT_PERL |
4c683d6c0a9d
patch 8.2.4246: one error message not in errors.h
Bram Moolenaar <Bram@vim.org>
parents:
27424
diff
changeset
|
748 EXTERN char e_perl_evaluation_forbidden_in_sandbox_without_safe_module[] |
4c683d6c0a9d
patch 8.2.4246: one error message not in errors.h
Bram Moolenaar <Bram@vim.org>
parents:
27424
diff
changeset
|
749 INIT(= N_("E299: Perl evaluation forbidden in sandbox without the Safe module")); |
4c683d6c0a9d
patch 8.2.4246: one error message not in errors.h
Bram Moolenaar <Bram@vim.org>
parents:
27424
diff
changeset
|
750 #endif |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
751 EXTERN char e_swap_file_already_exists_symlink_attack[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
752 INIT(= N_("E300: Swap file already exists (symlink attack?)")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
753 EXTERN char e_oops_lost_the_swap_file[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
754 INIT(= N_("E301: Oops, lost the swap file!!!")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
755 EXTERN char e_could_not_rename_swap_file[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
756 INIT(= N_("E302: Could not rename swap file")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
757 EXTERN char e_unable_to_open_swap_file_for_str_recovery_impossible[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
758 INIT(= N_("E303: Unable to open swap file for \"%s\", recovery impossible")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
759 EXTERN char e_ml_upd_block0_didnt_get_block_zero[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
760 INIT(= N_("E304: ml_upd_block0(): Didn't get block 0??")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
761 EXTERN char e_no_swap_file_found_for_str[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
762 INIT(= N_("E305: No swap file found for %s")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
763 EXTERN char e_cannot_open_str[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
764 INIT(= N_("E306: Cannot open %s")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
765 EXTERN char e_str_does_not_look_like_vim_swap_file[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
766 INIT(= N_("E307: %s does not look like a Vim swap file")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
767 EXTERN char e_warning_original_file_may_have_been_changed[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
768 INIT(= N_("E308: Warning: Original file may have been changed")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
769 EXTERN char e_unable_to_read_block_one_from_str[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
770 INIT(= N_("E309: Unable to read block 1 from %s")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
771 EXTERN char e_block_one_id_wrong_str_not_swp_file[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
772 INIT(= N_("E310: Block 1 ID wrong (%s not a .swp file?)")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
773 EXTERN char e_recovery_interrupted[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
774 INIT(= N_("E311: Recovery Interrupted")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
775 EXTERN char e_errors_detected_while_recovering_look_for_lines_starting_with_questions[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
776 INIT(= N_("E312: Errors detected while recovering; look for lines starting with ???")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
777 EXTERN char e_cannot_preserve_there_is_no_swap_file[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
778 INIT(= N_("E313: Cannot preserve, there is no swap file")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
779 EXTERN char e_preserve_failed[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
780 INIT(= N_("E314: Preserve failed")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
781 EXTERN char e_ml_get_invalid_lnum_nr[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
782 INIT(= N_("E315: ml_get: Invalid lnum: %ld")); |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
783 EXTERN char e_ml_get_cannot_find_line_nr_in_buffer_nr_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
784 INIT(= N_("E316: ml_get: Cannot find line %ld in buffer %d %s")); |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
785 EXTERN char e_pointer_block_id_wrong[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
786 INIT(= N_("E317: Pointer block id wrong")); |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
787 EXTERN char e_pointer_block_id_wrong_two[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
788 INIT(= N_("E317: Pointer block id wrong 2")); |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
789 EXTERN char e_pointer_block_id_wrong_three[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
790 INIT(= N_("E317: Pointer block id wrong 3")); |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
791 EXTERN char e_pointer_block_id_wrong_four[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
792 INIT(= N_("E317: Pointer block id wrong 4")); |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
793 EXTERN char e_updated_too_many_blocks[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
794 INIT(= N_("E318: Updated too many blocks?")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
795 EXTERN char e_sorry_command_is_not_available_in_this_version[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
796 INIT(= N_("E319: Sorry, the command is not available in this version")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
797 EXTERN char e_cannot_find_line_nr[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
798 INIT(= N_("E320: Cannot find line %ld")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
799 EXTERN char e_could_not_reload_str[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
800 INIT(= N_("E321: Could not reload \"%s\"")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
801 EXTERN char e_line_number_out_of_range_nr_past_the_end[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
802 INIT(= N_("E322: Line number out of range: %ld past the end")); |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
803 EXTERN char e_line_count_wrong_in_block_nr[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
804 INIT(= N_("E323: Line count wrong in block %ld")); |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
805 #ifdef FEAT_POSTSCRIPT |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
806 EXTERN char e_cant_open_postscript_output_file[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
807 INIT(= N_("E324: Can't open PostScript output file")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
808 #endif |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
809 EXTERN char e_attention[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
810 INIT(= N_("E325: ATTENTION")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
811 EXTERN char e_too_many_swap_files_found[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
812 INIT(= N_("E326: Too many swap files found")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
813 #ifdef FEAT_MENU |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
814 EXTERN char_u e_part_of_menu_item_path_is_not_sub_menu[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
815 INIT(= N_("E327: Part of menu-item path is not sub-menu")); |
26887
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
816 EXTERN char e_menu_only_exists_in_another_mode[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
817 INIT(= N_("E328: Menu only exists in another mode")); |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
818 EXTERN char_u e_no_menu_str[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
819 INIT(= N_("E329: No menu \"%s\"")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
820 EXTERN char e_menu_path_must_not_lead_to_sub_menu[] |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
821 INIT(= N_("E330: Menu path must not lead to a sub-menu")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
822 EXTERN char e_must_not_add_menu_items_directly_to_menu_bar[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
823 INIT(= N_("E331: Must not add menu items directly to menu bar")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
824 EXTERN char e_separator_cannot_be_part_of_menu_path[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
825 INIT(= N_("E332: Separator cannot be part of a menu path")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
826 EXTERN char e_menu_path_must_lead_to_menu_item[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
827 INIT(= N_("E333: Menu path must lead to a menu item")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
828 EXTERN char e_menu_not_found_str[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
829 INIT(= N_("E334: Menu not found: %s")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
830 EXTERN char e_menu_not_defined_for_str_mode[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
831 INIT(= N_("E335: Menu not defined for %s mode")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
832 EXTERN char e_menu_path_must_lead_to_sub_menu[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
833 INIT(= N_("E336: Menu path must lead to a sub-menu")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
834 EXTERN char e_menu_not_found_check_menu_names[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
835 INIT(= N_("E337: Menu not found - check menu names")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
836 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
837 #ifdef FEAT_BROWSE |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
838 EXTERN char e_sorry_no_file_browser_in_console_mode[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
839 INIT(= N_("E338: Sorry, no file browser in console mode")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
840 #endif |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
841 EXTERN char e_pattern_too_long[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
842 INIT(= N_("E339: Pattern too long")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
843 // E340 unused |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
844 EXTERN char e_internal_error_lalloc_zero[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
845 INIT(= N_("E341: Internal error: lalloc(0, )")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
846 EXTERN char e_out_of_memory_allocating_nr_bytes[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
847 INIT(= N_("E342: Out of memory! (allocating %lu bytes)")); |
26909
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
848 EXTERN char e_invalid_path_number_must_be_at_end_of_path_or_be_followed_by_str[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
849 INIT(= N_("E343: Invalid path: '**[number]' must be at the end of the path or be followed by '%s'.")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
850 EXTERN char e_cant_find_directory_str_in_cdpath[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
851 INIT(= N_("E344: Can't find directory \"%s\" in cdpath")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
852 EXTERN char e_cant_find_file_str_in_path[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
853 INIT(= N_("E345: Can't find file \"%s\" in path")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
854 EXTERN char e_no_more_directory_str_found_in_cdpath[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
855 INIT(= N_("E346: No more directory \"%s\" found in cdpath")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
856 EXTERN char e_no_more_file_str_found_in_path[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
857 INIT(= N_("E347: No more file \"%s\" found in path")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
858 EXTERN char e_no_string_under_cursor[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
859 INIT(= N_("E348: No string under cursor")); |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
860 EXTERN char e_no_identifier_under_cursor[] |
aa65d1808bd0
patch 8.2.3983: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26899
diff
changeset
|
861 INIT(= N_("E349: No identifier under cursor")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
862 #ifdef FEAT_FOLDING |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
863 EXTERN char e_cannot_create_fold_with_current_foldmethod[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
864 INIT(= N_("E350: Cannot create fold with current 'foldmethod'")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
865 EXTERN char e_cannot_delete_fold_with_current_foldmethod[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
866 INIT(= N_("E351: Cannot delete fold with current 'foldmethod'")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
867 EXTERN char e_cannot_erase_folds_with_current_foldmethod[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
868 INIT(= N_("E352: Cannot erase folds with current 'foldmethod'")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
869 #endif |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
870 EXTERN char e_nothing_in_register_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
871 INIT(= N_("E353: Nothing in register %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
872 EXTERN char e_invalid_register_name_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
873 INIT(= N_("E354: Invalid register name: '%s'")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
874 EXTERN char e_unknown_option_str_2[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
875 INIT(= N_("E355: Unknown option: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
876 EXTERN char e_get_varp_error[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
877 INIT(= N_("E356: get_varp ERROR")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
878 #ifdef FEAT_LANGMAP |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
879 EXTERN char e_langmap_matching_character_missing_for_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
880 INIT(= N_("E357: 'langmap': Matching character missing for %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
881 EXTERN char e_langmap_extra_characters_after_semicolon_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
882 INIT(= N_("E358: 'langmap': Extra characters after semicolon: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
883 #endif |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
884 #if defined(AMIGA) || defined(MACOS_X) || defined(MSWIN) \ |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
885 || defined(UNIX) || defined(VMS) |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
886 EXTERN char e_screen_mode_setting_not_supported[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
887 INIT(= N_("E359: Screen mode setting not supported")); |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
888 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
889 #ifdef AMIGA |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
890 EXTERN char e_cannot_execute_shell_with_f_option[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
891 INIT(= N_("E360: Cannot execute shell with -f option")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
892 #endif |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
893 // E361 unused |
30310
029c59bf78f1
patch 9.0.0491: no good reason to build without the float feature
Bram Moolenaar <Bram@vim.org>
parents:
30306
diff
changeset
|
894 #if defined(FEAT_EVAL) |
27034
b31cc7630773
patch 8.2.4046: some error messages not in the right place
Bram Moolenaar <Bram@vim.org>
parents:
27030
diff
changeset
|
895 EXTERN char e_using_boolean_value_as_float[] |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
896 INIT(= N_("E362: Using a boolean value as a Float")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
897 #endif |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
898 EXTERN char e_pattern_uses_more_memory_than_maxmempattern[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
899 INIT(= N_("E363: Pattern uses more memory than 'maxmempattern'")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
900 #ifdef FEAT_LIBCALL |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
901 EXTERN char e_library_call_failed_for_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
902 INIT(= N_("E364: Library call failed for \"%s()\"")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
903 #endif |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
904 #ifdef FEAT_POSTSCRIPT |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
905 EXTERN char e_failed_to_print_postscript_file[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
906 INIT(= N_("E365: Failed to print PostScript file")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
907 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
908 #ifdef FEAT_PROP_POPUP |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
909 EXTERN char e_not_allowed_to_enter_popup_window[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
910 INIT(= N_("E366: Not allowed to enter a popup window")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
911 #endif |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
912 EXTERN char e_no_such_group_str[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
913 INIT(= N_("E367: No such group: \"%s\"")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
914 #ifdef FEAT_LIBCALL |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
915 EXTERN char e_got_sig_str_in_libcall[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
916 INIT(= N_("E368: Got SIG%s in libcall()")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
917 #endif |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
918 EXTERN char e_invalid_item_in_str_brackets[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
919 INIT(= N_("E369: Invalid item in %s%%[]")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
920 #ifdef USING_LOAD_LIBRARY |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
921 EXTERN char e_could_not_load_library_str_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
922 INIT(= N_("E370: Could not load library %s: %s")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
923 #endif |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
924 #ifdef FEAT_GUI_MSWIN |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
925 EXTERN char e_command_not_found[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
926 INIT(= N_("E371: Command not found")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
927 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
928 #ifdef FEAT_QUICKFIX |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
929 EXTERN char e_too_many_chr_in_format_string[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
930 INIT(= N_("E372: Too many %%%c in format string")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
931 EXTERN char e_unexpected_chr_in_format_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
932 INIT(= N_("E373: Unexpected %%%c in format string")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
933 EXTERN char e_missing_rsb_in_format_string[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
934 INIT(= N_("E374: Missing ] in format string")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
935 EXTERN char e_unsupported_chr_in_format_string[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
936 INIT(= N_("E375: Unsupported %%%c in format string")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
937 EXTERN char e_invalid_chr_in_format_string_prefix[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
938 INIT(= N_("E376: Invalid %%%c in format string prefix")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
939 EXTERN char e_invalid_chr_in_format_string[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
940 INIT(= N_("E377: Invalid %%%c in format string")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
941 EXTERN char e_errorformat_contains_no_pattern[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
942 INIT(= N_("E378: 'errorformat' contains no pattern")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
943 EXTERN char e_missing_or_empty_directory_name[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
944 INIT(= N_("E379: Missing or empty directory name")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
945 EXTERN char e_at_bottom_of_quickfix_stack[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
946 INIT(= N_("E380: At bottom of quickfix stack")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
947 EXTERN char e_at_top_of_quickfix_stack[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
948 INIT(= N_("E381: At top of quickfix stack")); |
29849
6c7eddcce52c
patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
29822
diff
changeset
|
949 #endif |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
950 EXTERN char e_cannot_write_buftype_option_is_set[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
951 INIT(= N_("E382: Cannot write, 'buftype' option is set")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
952 EXTERN char e_invalid_search_string_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
953 INIT(= N_("E383: Invalid search string: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
954 EXTERN char e_search_hit_top_without_match_for_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
955 INIT(= N_("E384: Search hit TOP without match for: %s")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
956 EXTERN char e_search_hit_bottom_without_match_for_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
957 INIT(= N_("E385: Search hit BOTTOM without match for: %s")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
958 EXTERN char e_expected_question_or_slash_after_semicolon[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
959 INIT(= N_("E386: Expected '?' or '/' after ';'")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
960 #ifdef FEAT_FIND_ID |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
961 EXTERN char e_match_is_on_current_line[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
962 INIT(= N_("E387: Match is on current line")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
963 EXTERN char e_couldnt_find_definition[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
964 INIT(= N_("E388: Couldn't find definition")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
965 EXTERN char e_couldnt_find_pattern[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
966 INIT(= N_("E389: Couldn't find pattern")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
967 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
968 #ifdef FEAT_SYN_HL |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
969 EXTERN char e_illegal_argument_str_2[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
970 INIT(= N_("E390: Illegal argument: %s")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
971 EXTERN char e_no_such_syntax_cluster_str_1[] |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
972 INIT(= N_("E391: No such syntax cluster: %s")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
973 EXTERN char e_no_such_syntax_cluster_str_2[] |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
974 INIT(= N_("E392: No such syntax cluster: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
975 EXTERN char e_groupthere_not_accepted_here[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
976 INIT(= N_("E393: group[t]here not accepted here")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
977 EXTERN char e_didnt_find_region_item_for_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
978 INIT(= N_("E394: Didn't find region item for %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
979 EXTERN char e_contains_argument_not_accepted_here[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
980 INIT(= N_("E395: Contains argument not accepted here")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
981 // E396 unused |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
982 EXTERN char e_filename_required[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
983 INIT(= N_("E397: Filename required")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
984 EXTERN char e_missing_equal_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
985 INIT(= N_("E398: Missing '=': %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
986 EXTERN char e_not_enough_arguments_syntax_region_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
987 INIT(= N_("E399: Not enough arguments: syntax region %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
988 EXTERN char e_no_cluster_specified[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
989 INIT(= N_("E400: No cluster specified")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
990 EXTERN char e_pattern_delimiter_not_found_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
991 INIT(= N_("E401: Pattern delimiter not found: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
992 EXTERN char e_garbage_after_pattern_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
993 INIT(= N_("E402: Garbage after pattern: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
994 EXTERN char e_syntax_sync_line_continuations_pattern_specified_twice[] |
28819
caaa99d1250a
patch 8.2.4933: a few more capitalization mistakes in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28790
diff
changeset
|
995 INIT(= N_("E403: syntax sync: Line continuations pattern specified twice")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
996 EXTERN char e_illegal_arguments_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
997 INIT(= N_("E404: Illegal arguments: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
998 EXTERN char e_missing_equal_sign_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
999 INIT(= N_("E405: Missing equal sign: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1000 EXTERN char e_empty_argument_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1001 INIT(= N_("E406: Empty argument: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1002 EXTERN char e_str_not_allowed_here[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1003 INIT(= N_("E407: %s not allowed here")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1004 EXTERN char e_str_must_be_first_in_contains_list[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1005 INIT(= N_("E408: %s must be first in contains list")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1006 EXTERN char e_unknown_group_name_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1007 INIT(= N_("E409: Unknown group name: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1008 EXTERN char e_invalid_syntax_subcommand_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1009 INIT(= N_("E410: Invalid :syntax subcommand: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1010 #endif |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1011 EXTERN char e_highlight_group_name_not_found_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1012 INIT(= N_("E411: Highlight group not found: %s")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1013 EXTERN char e_not_enough_arguments_highlight_link_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1014 INIT(= N_("E412: Not enough arguments: \":highlight link %s\"")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1015 EXTERN char e_too_many_arguments_highlight_link_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1016 INIT(= N_("E413: Too many arguments: \":highlight link %s\"")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1017 EXTERN char e_group_has_settings_highlight_link_ignored[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1018 INIT(= N_("E414: Group has settings, highlight link ignored")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1019 EXTERN char e_unexpected_equal_sign_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1020 INIT(= N_("E415: Unexpected equal sign: %s")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1021 EXTERN char e_missing_equal_sign_str_2[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1022 INIT(= N_("E416: Missing equal sign: %s")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1023 EXTERN char e_missing_argument_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1024 INIT(= N_("E417: Missing argument: %s")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1025 EXTERN char e_illegal_value_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1026 INIT(= N_("E418: Illegal value: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1027 EXTERN char e_fg_color_unknown[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1028 INIT(= N_("E419: FG color unknown")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1029 EXTERN char e_bg_color_unknown[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1030 INIT(= N_("E420: BG color unknown")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
1031 EXTERN char e_color_name_or_number_not_recognized_str[] |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1032 INIT(= N_("E421: Color name or number not recognized: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1033 EXTERN char e_terminal_code_too_long_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1034 INIT(= N_("E422: Terminal code too long: %s")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1035 EXTERN char e_illegal_argument_str_3[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1036 INIT(= N_("E423: Illegal argument: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1037 EXTERN char e_too_many_different_highlighting_attributes_in_use[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1038 INIT(= N_("E424: Too many different highlighting attributes in use")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1039 EXTERN char e_cannot_go_before_first_matching_tag[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1040 INIT(= N_("E425: Cannot go before first matching tag")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1041 EXTERN char e_tag_not_found_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1042 INIT(= N_("E426: Tag not found: %s")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1043 EXTERN char e_there_is_only_one_matching_tag[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1044 INIT(= N_("E427: There is only one matching tag")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1045 EXTERN char e_cannot_go_beyond_last_matching_tag[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1046 INIT(= N_("E428: Cannot go beyond last matching tag")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1047 EXTERN char e_file_str_does_not_exist[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1048 INIT(= N_("E429: File \"%s\" does not exist")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1049 #ifdef FEAT_EMACS_TAGS |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1050 EXTERN char e_tag_file_path_truncated_for_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1051 INIT(= N_("E430: Tag file path truncated for %s\n")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1052 #endif |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1053 EXTERN char e_format_error_in_tags_file_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1054 INIT(= N_("E431: Format error in tags file \"%s\"")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1055 EXTERN char e_tags_file_not_sorted_str[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1056 INIT(= N_("E432: Tags file not sorted: %s")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1057 EXTERN char e_no_tags_file[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1058 INIT(= N_("E433: No tags file")); |
30986
360f286b5869
patch 9.0.0828: various typos
Bram Moolenaar <Bram@vim.org>
parents:
30972
diff
changeset
|
1059 EXTERN char e_cannot_find_tag_pattern[] |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1060 INIT(= N_("E434: Can't find tag pattern")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1061 EXTERN char e_couldnt_find_tag_just_guessing[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1062 INIT(= N_("E435: Couldn't find tag, just guessing!")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1063 EXTERN char e_no_str_entry_in_termcap[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1064 INIT(= N_("E436: No \"%s\" entry in termcap")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1065 EXTERN char e_terminal_capability_cm_required[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1066 INIT(= N_("E437: Terminal capability \"cm\" required")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1067 EXTERN char e_u_undo_line_numbers_wrong[] |
28819
caaa99d1250a
patch 8.2.4933: a few more capitalization mistakes in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28790
diff
changeset
|
1068 INIT(= N_("E438: u_undo: Line numbers wrong")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1069 EXTERN char e_undo_list_corrupt[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1070 INIT(= N_("E439: Undo list corrupt")); |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1071 EXTERN char e_undo_line_missing[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1072 INIT(= N_("E440: Undo line missing")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1073 #ifdef FEAT_QUICKFIX |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1074 EXTERN char e_there_is_no_preview_window[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1075 INIT(= N_("E441: There is no preview window")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1076 #endif |
26913
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1077 EXTERN char e_cant_split_topleft_and_botright_at_the_same_time[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1078 INIT(= N_("E442: Can't split topleft and botright at the same time")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1079 EXTERN char e_cannot_rotate_when_another_window_is_split[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1080 INIT(= N_("E443: Cannot rotate when another window is split")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1081 EXTERN char e_cannot_close_last_window[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1082 INIT(= N_("E444: Cannot close last window")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1083 EXTERN char e_other_window_contains_changes[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1084 INIT(= N_("E445: Other window contains changes")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1085 EXTERN char e_no_file_name_under_cursor[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1086 INIT(= N_("E446: No file name under cursor")); |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1087 EXTERN char e_cant_find_file_str_in_path_2[] |
d4e61d61afd9
patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26909
diff
changeset
|
1088 INIT(= N_("E447: Can't find file \"%s\" in path")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1089 #ifdef USING_LOAD_LIBRARY |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1090 EXTERN char e_could_not_load_library_function_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1091 INIT(= N_("E448: Could not load library function %s")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1092 #endif |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1093 #ifdef FEAT_CLIENTSERVER |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1094 EXTERN char e_invalid_expression_received[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1095 INIT(= N_("E449: Invalid expression received")); |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1096 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1097 #ifdef FEAT_PROP_POPUP |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1098 EXTERN char e_buffer_number_text_or_list_required[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1099 INIT(= N_("E450: Buffer number, text or a list required")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1100 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1101 #ifdef FEAT_EVAL |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1102 EXTERN char e_expected_right_curly_str[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1103 INIT(= N_("E451: Expected }: %s")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1104 EXTERN char e_double_semicolon_in_list_of_variables[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1105 INIT(= N_("E452: Double ; in list of variables")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1106 #endif |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1107 EXTERN char e_ul_color_unknown[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1108 INIT(= N_("E453: UL color unknown")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1109 #ifdef FEAT_EVAL |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1110 EXTERN char e_function_list_was_modified[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1111 INIT(= N_("E454: Function list was modified")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1112 #endif |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1113 #ifdef FEAT_POSTSCRIPT |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1114 EXTERN char e_error_writing_to_postscript_output_file[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1115 INIT(= N_("E455: Error writing to PostScript output file")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1116 EXTERN char e_cant_open_file_str_2[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1117 INIT(= N_("E456: Can't open file \"%s\"")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1118 EXTERN char e_cant_find_postscript_resource_file_str_ps[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1119 INIT(= N_("E456: Can't find PostScript resource file \"%s.ps\"")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1120 EXTERN char e_cant_read_postscript_resource_file_str[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1121 INIT(= N_("E457: Can't read PostScript resource file \"%s\"")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1122 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1123 #ifdef FEAT_GUI_X11 |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1124 EXTERN char e_cannot_allocate_colormap_entry_some_colors_may_be_incorrect[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1125 INIT(= N_("E458: Cannot allocate colormap entry, some colors may be incorrect")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1126 #endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1127 #if defined(UNIX) || defined(FEAT_SESSION) |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1128 EXTERN char e_cannot_go_back_to_previous_directory[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1129 INIT(= N_("E459: Cannot go back to previous directory")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1130 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1131 #ifdef FEAT_EVAL |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1132 EXTERN char e_entries_missing_in_mapset_dict_argument[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1133 INIT(= N_("E460: Entries missing in mapset() dict argument")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1134 EXTERN char e_illegal_variable_name_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1135 INIT(= N_("E461: Illegal variable name: %s")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1136 #endif |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1137 EXTERN char e_could_not_prepare_for_reloading_str[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1138 INIT(= N_("E462: Could not prepare for reloading \"%s\"")); |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1139 #ifdef FEAT_NETBEANS_INTG |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1140 EXTERN char e_region_is_guarded_cannot_modify[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1141 INIT(= N_("E463: Region is guarded, cannot modify")); |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1142 #endif |
23513
872239543313
patch 8.2.2299: Vim9: invalid memory access making error message flaky
Bram Moolenaar <Bram@vim.org>
parents:
23446
diff
changeset
|
1143 EXTERN char e_ambiguous_use_of_user_defined_command[] |
872239543313
patch 8.2.2299: Vim9: invalid memory access making error message flaky
Bram Moolenaar <Bram@vim.org>
parents:
23446
diff
changeset
|
1144 INIT(= N_("E464: Ambiguous use of user-defined command")); |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
1145 #ifdef FEAT_EVAL |
27237
44cb142c8615
patch 8.2.4147: E464 does not always include the offending command
Bram Moolenaar <Bram@vim.org>
parents:
27215
diff
changeset
|
1146 EXTERN char e_ambiguous_use_of_user_defined_command_str[] |
44cb142c8615
patch 8.2.4147: E464 does not always include the offending command
Bram Moolenaar <Bram@vim.org>
parents:
27215
diff
changeset
|
1147 INIT(= N_("E464: Ambiguous use of user-defined command: %s")); |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
1148 #endif |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1149 EXTERN char e_winsize_requires_two_number_arguments[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1150 INIT(= N_("E465: :winsize requires two number arguments")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1151 EXTERN char e_winpos_requires_two_number_arguments[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1152 INIT(= N_("E466: :winpos requires two number arguments")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1153 #ifdef FEAT_EVAL |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1154 EXTERN char e_custom_completion_requires_function_argument[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1155 INIT(= N_("E467: Custom completion requires a function argument")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1156 #endif |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1157 EXTERN char e_completion_argument_only_allowed_for_custom_completion[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1158 INIT(= N_("E468: Completion argument only allowed for custom completion")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1159 #ifdef FEAT_CSCOPE |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1160 EXTERN char e_invalid_cscopequickfix_flag_chr_for_chr[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1161 INIT(= N_("E469: Invalid cscopequickfix flag %c for %c")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1162 #endif |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1163 EXTERN char e_command_aborted[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1164 INIT(= N_("E470: Command aborted")); |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1165 EXTERN char e_argument_required[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1166 INIT(= N_("E471: Argument required")); |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1167 EXTERN char e_command_failed[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1168 INIT(= N_("E472: Command failed")); |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1169 EXTERN char e_internal_error_in_regexp[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1170 INIT(= N_("E473: Internal error in regexp")); |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1171 EXTERN char e_invalid_argument[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1172 INIT(= N_("E474: Invalid argument")); |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1173 EXTERN char e_invalid_argument_str[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1174 INIT(= N_("E475: Invalid argument: %s")); |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1175 EXTERN char e_invalid_value_for_argument_str[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1176 INIT(= N_("E475: Invalid value for argument %s")); |
29016
aadeddf38d9b
patch 8.2.5030: autocmd_add() can only handle one event and pattern
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
1177 #if defined(FEAT_JOB_CHANNEL) || defined(FEAT_PROP_POPUP) || defined(FEAT_EVAL) |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1178 EXTERN char e_invalid_value_for_argument_str_str[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1179 INIT(= N_("E475: Invalid value for argument %s: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1180 #endif |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
1181 EXTERN char e_invalid_command[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
1182 INIT(= N_("E476: Invalid command")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
1183 EXTERN char e_invalid_command_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
1184 INIT(= N_("E476: Invalid command: %s")); |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
1185 #ifdef FEAT_EVAL |
31970
fe66019e7a23
patch 9.0.1317: crash when using an unset object variable
Bram Moolenaar <Bram@vim.org>
parents:
31833
diff
changeset
|
1186 EXTERN char e_invalid_command_str_expected_str[] |
fe66019e7a23
patch 9.0.1317: crash when using an unset object variable
Bram Moolenaar <Bram@vim.org>
parents:
31833
diff
changeset
|
1187 INIT(= N_("E476: Invalid command: %s, expected %s")); |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
1188 #endif |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1189 EXTERN char e_no_bang_allowed[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1190 INIT(= N_("E477: No ! allowed")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1191 EXTERN char e_dont_panic[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1192 INIT(= N_("E478: Don't panic!")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1193 EXTERN char e_no_match[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1194 INIT(= N_("E479: No match")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1195 EXTERN char e_no_match_str_2[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1196 INIT(= N_("E480: No match: %s")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1197 EXTERN char e_no_range_allowed[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1198 INIT(= N_("E481: No range allowed")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1199 EXTERN char e_cant_create_file_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1200 INIT(= N_("E482: Can't create file %s")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1201 EXTERN char e_cant_get_temp_file_name[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1202 INIT(= N_("E483: Can't get temp file name")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1203 EXTERN char e_cant_open_file_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1204 INIT(= N_("E484: Can't open file %s")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1205 EXTERN char e_cant_read_file_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1206 INIT(= N_("E485: Can't read file %s")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1207 EXTERN char e_pattern_not_found[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1208 INIT(= N_("E486: Pattern not found")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1209 EXTERN char e_pattern_not_found_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1210 INIT(= N_("E486: Pattern not found: %s")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1211 EXTERN char e_argument_must_be_positive[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1212 INIT(= N_("E487: Argument must be positive")); |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
1213 #ifdef FEAT_PROP_POPUP |
29816
bbe62ea78aac
patch 9.0.0247: cannot add padding to virtual text without highlight
Bram Moolenaar <Bram@vim.org>
parents:
29788
diff
changeset
|
1214 EXTERN char e_argument_must_be_positive_str[] |
bbe62ea78aac
patch 9.0.0247: cannot add padding to virtual text without highlight
Bram Moolenaar <Bram@vim.org>
parents:
29788
diff
changeset
|
1215 INIT(= N_("E487: Argument must be positive: %s")); |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
1216 #endif |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1217 EXTERN char e_trailing_characters[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1218 INIT(= N_("E488: Trailing characters")); |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1219 EXTERN char e_trailing_characters_str[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1220 INIT(= N_("E488: Trailing characters: %s")); |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1221 EXTERN char e_no_call_stack_to_substitute_for_stack[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1222 INIT(= N_("E489: No call stack to substitute for \"<stack>\"")); |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1223 #ifdef FEAT_FOLDING |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1224 EXTERN char e_no_fold_found[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1225 INIT(= N_("E490: No fold found")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1226 #endif |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1227 #ifdef FEAT_EVAL |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1228 EXTERN char e_json_decode_error_at_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1229 INIT(= N_("E491: JSON decode error at '%s'")); |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1230 #endif |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1231 EXTERN char e_not_an_editor_command[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1232 INIT(= N_("E492: Not an editor command")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1233 EXTERN char e_backwards_range_given[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1234 INIT(= N_("E493: Backwards range given")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1235 EXTERN char e_use_w_or_w_gt_gt[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1236 INIT(= N_("E494: Use w or w>>")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1237 EXTERN char e_no_autocommand_file_name_to_substitute_for_afile[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1238 INIT(= N_("E495: No autocommand file name to substitute for \"<afile>\"")); |
32357
5e2f81645b10
patch 9.0.1510: misleading variable name for error message
Bram Moolenaar <Bram@vim.org>
parents:
32290
diff
changeset
|
1239 EXTERN char e_no_autocommand_buffer_number_to_substitute_for_abuf[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1240 INIT(= N_("E496: No autocommand buffer number to substitute for \"<abuf>\"")); |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1241 EXTERN char e_no_autocommand_match_name_to_substitute_for_amatch[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1242 INIT(= N_("E497: No autocommand match name to substitute for \"<amatch>\"")); |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1243 EXTERN char e_no_source_file_name_to_substitute_for_sfile[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1244 INIT(= N_("E498: No :source file name to substitute for \"<sfile>\"")); |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1245 EXTERN char e_empty_file_name_for_percent_or_hash_only_works_with_ph[] |
27152
c83631ad3d2a
patch 8.2.4105: translation related comment in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
27043
diff
changeset
|
1246 // xgettext:no-c-format |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1247 INIT(= N_("E499: Empty file name for '%' or '#', only works with \":p:h\"")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1248 EXTERN char e_evaluates_to_an_empty_string[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1249 INIT(= N_("E500: Evaluates to an empty string")); |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1250 EXTERN char e_at_end_of_file[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1251 INIT(= N_("E501: At end-of-file")); |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1252 // E502 |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1253 EXTERN char e_is_a_directory[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1254 INIT(= N_("is a directory")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1255 // E503 |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1256 EXTERN char e_is_not_file_or_writable_device[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1257 INIT(= N_("is not a file or writable device")); |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1258 EXTERN char e_str_is_not_file_or_writable_device[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1259 INIT(= N_("E503: \"%s\" is not a file or writable device")); |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1260 // E504 |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1261 EXTERN char e_is_read_only_cannot_override_W_in_cpoptions[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1262 INIT(= N_("is read-only (cannot override: \"W\" in 'cpoptions')")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1263 // E505 |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1264 EXTERN char e_is_read_only_add_bang_to_override[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1265 INIT(= N_("is read-only (add ! to override)")); |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1266 EXTERN char e_str_is_read_only_add_bang_to_override[] |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1267 INIT(= N_("E505: \"%s\" is read-only (add ! to override)")); |
30986
360f286b5869
patch 9.0.0828: various typos
Bram Moolenaar <Bram@vim.org>
parents:
30972
diff
changeset
|
1268 EXTERN char e_cant_write_to_backup_file_add_bang_to_override[] |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1269 INIT(= N_("E506: Can't write to backup file (add ! to override)")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1270 EXTERN char e_close_error_for_backup_file_add_bang_to_write_anyway[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1271 INIT(= N_("E507: Close error for backup file (add ! to write anyway)")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1272 EXTERN char e_cant_read_file_for_backup_add_bang_to_write_anyway[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1273 INIT(= N_("E508: Can't read file for backup (add ! to write anyway)")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1274 EXTERN char e_cannot_create_backup_file_add_bang_to_write_anyway[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1275 INIT(= N_("E509: Cannot create backup file (add ! to override)")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1276 EXTERN char e_cant_make_backup_file_add_bang_to_write_anyway[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1277 INIT(= N_("E510: Can't make backup file (add ! to write anyway)")); |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1278 #ifdef FEAT_NETBEANS_INTG |
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1279 EXTERN char e_netbeans_already_connected[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1280 INIT(= N_("E511: NetBeans already connected")); |
26915
3631d2deb36c
patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26913
diff
changeset
|
1281 #endif |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1282 EXTERN char e_close_failed[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1283 INIT(= N_("E512: Close failed")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1284 EXTERN char e_write_error_conversion_failed_make_fenc_empty_to_override[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1285 INIT(= N_("E513: Write error, conversion failed (make 'fenc' empty to override)")); |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1286 EXTERN char e_write_error_conversion_failed_in_line_nr_make_fenc_empty_to_override[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1287 INIT(= N_("E513: Write error, conversion failed in line %ld (make 'fenc' empty to override)")); |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1288 EXTERN char e_write_error_file_system_full[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1289 INIT(= N_("E514: Write error (file system full?)")); |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1290 EXTERN char e_no_buffers_were_unloaded[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1291 INIT(= N_("E515: No buffers were unloaded")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1292 EXTERN char e_no_buffers_were_deleted[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1293 INIT(= N_("E516: No buffers were deleted")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1294 EXTERN char e_no_buffers_were_wiped_out[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1295 INIT(= N_("E517: No buffers were wiped out")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1296 EXTERN char e_unknown_option[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1297 INIT(= N_("E518: Unknown option")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1298 EXTERN char e_option_not_supported[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1299 INIT(= N_("E519: Option not supported")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1300 EXTERN char e_not_allowed_in_modeline[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1301 INIT(= N_("E520: Not allowed in a modeline")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1302 EXTERN char e_number_required_after_equal[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1303 INIT(= N_("E521: Number required after =")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1304 EXTERN char e_number_required_after_str_equal_str[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1305 INIT(= N_("E521: Number required: &%s = '%s'")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1306 EXTERN char e_not_found_in_termcap[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1307 INIT(= N_("E522: Not found in termcap")); |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1308 EXTERN char e_not_allowed_here[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1309 INIT(= N_("E523: Not allowed here")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1310 EXTERN char e_missing_colon[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1311 INIT(= N_("E524: Missing colon")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1312 EXTERN char e_zero_length_string[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1313 INIT(= N_("E525: Zero length string")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1314 #ifdef FEAT_VIMINFO |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1315 EXTERN char e_missing_number_after_angle_str_angle[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1316 INIT(= N_("E526: Missing number after <%s>")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1317 EXTERN char e_missing_comma[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1318 INIT(= N_("E527: Missing comma")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1319 EXTERN char e_must_specify_a_value[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1320 INIT(= N_("E528: Must specify a ' value")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1321 #endif |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1322 EXTERN char e_cannot_set_term_to_empty_string[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1323 INIT(= N_("E529: Cannot set 'term' to empty string")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1324 #ifdef FEAT_GUI |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1325 EXTERN char e_cannot_change_term_in_GUI[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1326 INIT(= N_("E530: Cannot change 'term' in the GUI")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1327 EXTERN char e_use_gui_to_start_GUI[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1328 INIT(= N_("E531: Use \":gui\" to start the GUI")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1329 #endif |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1330 #ifdef FEAT_NETBEANS_INTG |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1331 EXTERN char e_highlighting_color_name_too_long_in_defineAnnoType[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1332 INIT(= N_("E532: Highlighting color name too long in defineAnnoType")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1333 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1334 #ifdef FEAT_GUI |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1335 EXTERN char e_cant_select_wide_font[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1336 INIT(= N_("E533: Can't select wide font")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1337 EXTERN char e_invalid_wide_font[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1338 INIT(= N_("E534: Invalid wide font")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1339 #endif |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1340 EXTERN char e_illegal_character_after_chr[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1341 INIT(= N_("E535: Illegal character after <%c>")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1342 #ifdef FEAT_FOLDING |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1343 EXTERN char e_comma_required[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1344 INIT(= N_("E536: Comma required")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1345 EXTERN char e_commentstring_must_be_empty_or_contain_str[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1346 INIT(= N_("E537: 'commentstring' must be empty or contain %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1347 #endif |
27962
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27960
diff
changeset
|
1348 EXTERN char e_pattern_found_in_every_line_str[] |
0fa3be75ddc7
patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents:
27960
diff
changeset
|
1349 INIT(= N_("E538: Pattern found in every line: %s")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1350 EXTERN char e_illegal_character_str[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1351 INIT(= N_("E539: Illegal character <%s>")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1352 #ifdef FEAT_STL_OPT |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1353 EXTERN char e_unclosed_expression_sequence[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1354 INIT(= N_("E540: Unclosed expression sequence")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1355 // E541 unused |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1356 EXTERN char e_unbalanced_groups[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1357 INIT(= N_("E542: Unbalanced groups")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1358 #endif |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1359 #ifdef MSWIN |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1360 EXTERN char e_not_valid_codepage[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1361 INIT(= N_("E543: Not a valid codepage")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1362 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1363 #ifdef FEAT_KEYMAP |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1364 EXTERN char e_keymap_file_not_found[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1365 INIT(= N_("E544: Keymap file not found")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1366 #endif |
26919
52158ae06d37
patch 8.2.3988: tiny build fails
Bram Moolenaar <Bram@vim.org>
parents:
26917
diff
changeset
|
1367 #ifdef CURSOR_SHAPE |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1368 EXTERN char e_missing_colon_2[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1369 INIT(= N_("E545: Missing colon")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1370 EXTERN char e_illegal_mode[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1371 INIT(= N_("E546: Illegal mode")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1372 #endif |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1373 #ifdef FEAT_MOUSESHAPE |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1374 EXTERN char e_illegal_mouseshape[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1375 INIT(= N_("E547: Illegal mouseshape")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1376 #endif |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
1377 #ifdef CURSOR_SHAPE |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1378 EXTERN char e_digit_expected[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1379 INIT(= N_("E548: Digit expected")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1380 EXTERN char e_illegal_percentage[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1381 INIT(= N_("E549: Illegal percentage")); |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
1382 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1383 #ifdef FEAT_PRINTER |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1384 EXTERN char e_missing_colon_3[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1385 INIT(= N_("E550: Missing colon")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1386 EXTERN char e_illegal_component[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1387 INIT(= N_("E551: Illegal component")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1388 EXTERN char e_digit_expected_2[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1389 INIT(= N_("E552: Digit expected")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1390 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1391 #ifdef FEAT_QUICKFIX |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1392 EXTERN char e_no_more_items[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1393 INIT(= N_("E553: No more items")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1394 #endif |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1395 EXTERN char e_syntax_error_in_str_curlies[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1396 INIT(= N_("E554: Syntax error in %s{...}")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1397 EXTERN char e_at_bottom_of_tag_stack[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1398 INIT(= N_("E555: At bottom of tag stack")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1399 EXTERN char e_at_top_of_tag_stack[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1400 INIT(= N_("E556: At top of tag stack")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1401 EXTERN char e_cannot_open_termcap_file[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1402 INIT(= N_("E557: Cannot open termcap file")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1403 EXTERN char e_terminal_entry_not_found_in_terminfo[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1404 INIT(= N_("E558: Terminal entry not found in terminfo")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1405 #if defined(HAVE_TGETENT) && !defined(TERMINFO) |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1406 EXTERN char e_terminal_entry_not_found_in_termcap[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1407 INIT(= N_("E559: Terminal entry not found in termcap")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1408 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1409 #ifdef FEAT_CSCOPE |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1410 EXTERN char e_usage_cscope_str[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1411 INIT(= N_("E560: Usage: cs[cope] %s")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1412 EXTERN char e_unknown_cscope_search_type[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1413 INIT(= N_("E561: Unknown cscope search type")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1414 EXTERN char e_usage_cstag_ident[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1415 INIT(= N_("E562: Usage: cstag <ident>")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1416 EXTERN char e_stat_str_error_nr[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1417 INIT(= N_("E563: stat(%s) error: %d")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1418 EXTERN char e_str_is_not_directory_or_valid_cscope_database[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1419 INIT(= N_("E564: %s is not a directory or a valid cscope database")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1420 #endif |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1421 EXTERN char e_not_allowed_to_change_text_or_change_window[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1422 INIT(= N_("E565: Not allowed to change text or change window")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1423 #ifdef FEAT_CSCOPE |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1424 EXTERN char e_could_not_create_cscope_pipes[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1425 INIT(= N_("E566: Could not create cscope pipes")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1426 EXTERN char e_no_cscope_connections[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1427 INIT(= N_("E567: No cscope connections")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1428 EXTERN char e_duplicate_cscope_database_not_added[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1429 INIT(= N_("E568: Duplicate cscope database not added")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1430 // E569 unused |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1431 EXTERN char e_fatal_error_in_cs_manage_matches[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1432 INIT(= N_("E570: Fatal error in cs_manage_matches")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1433 #endif |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1434 #ifdef DYNAMIC_TCL |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1435 EXTERN char e_sorry_this_command_is_disabled_tcl_library_could_not_be_loaded[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1436 INIT(= N_("E571: Sorry, this command is disabled: the Tcl library could not be loaded.")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1437 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1438 #ifdef FEAT_TCL |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1439 EXTERN char e_exit_code_nr[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1440 INIT(= N_("E572: Exit code %d")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1441 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1442 #ifdef FEAT_CLIENTSERVER |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1443 EXTERN char e_invalid_server_id_used_str[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1444 INIT(= N_("E573: Invalid server id used: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1445 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1446 #ifdef FEAT_VIMINFO |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1447 EXTERN char e_unknown_register_type_nr[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1448 INIT(= N_("E574: Unknown register type %d")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1449 // E575 |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1450 EXTERN char e_illegal_starting_char[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1451 INIT(= N_("Illegal starting char")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1452 // E576 |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1453 EXTERN char e_nonr_missing_gt[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1454 INIT(= N_("Missing '>'")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1455 // E577 |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1456 EXTERN char e_illegal_register_name[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1457 INIT(= N_("Illegal register name")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1458 #endif |
29014
45c182c4f7e9
patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents:
28962
diff
changeset
|
1459 // E578 unused |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1460 #ifdef FEAT_EVAL |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1461 EXTERN char e_if_nesting_too_deep[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1462 INIT(= N_("E579: :if nesting too deep")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1463 EXTERN char e_block_nesting_too_deep[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1464 INIT(= N_("E579: Block nesting too deep")); |
26887
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1465 EXTERN char e_endif_without_if[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1466 INIT(= N_("E580: :endif without :if")); |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1467 EXTERN char e_else_without_if[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1468 INIT(= N_("E581: :else without :if")); |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1469 EXTERN char e_elseif_without_if[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1470 INIT(= N_("E582: :elseif without :if")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1471 EXTERN char e_multiple_else[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1472 INIT(= N_("E583: Multiple :else")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1473 EXTERN char e_elseif_after_else[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1474 INIT(= N_("E584: :elseif after :else")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1475 EXTERN char e_while_for_nesting_too_deep[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1476 INIT(= N_("E585: :while/:for nesting too deep")); |
26887
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1477 EXTERN char e_continue_without_while_or_for[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1478 INIT(= N_("E586: :continue without :while or :for")); |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1479 EXTERN char e_break_without_while_or_for[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1480 INIT(= N_("E587: :break without :while or :for")); |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1481 EXTERN char e_endwhile_without_while[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1482 INIT(= N_("E588: :endwhile without :while")); |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1483 EXTERN char e_endfor_without_for[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1484 INIT(= N_("E588: :endfor without :for")); |
26889
4508f62e5318
patch 8.2.3973: tiny build fails
Bram Moolenaar <Bram@vim.org>
parents:
26887
diff
changeset
|
1485 #endif |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1486 EXTERN char e_backupext_and_patchmode_are_equal[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1487 INIT(= N_("E589: 'backupext' and 'patchmode' are equal")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1488 #ifdef FEAT_QUICKFIX |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1489 EXTERN char e_preview_window_already_exists[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1490 INIT(= N_("E590: A preview window already exists")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1491 #endif |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1492 EXTERN char e_winheight_cannot_be_smaller_than_winminheight[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1493 INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'")); |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1494 EXTERN char e_winwidth_cannot_be_smaller_than_winminwidth[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1495 INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1496 EXTERN char e_need_at_least_nr_lines[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1497 INIT(= N_("E593: Need at least %d lines")); |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1498 EXTERN char e_need_at_least_nr_columns[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1499 INIT(= N_("E594: Need at least %d columns")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1500 #ifdef FEAT_LINEBREAK |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1501 EXTERN char e_showbreak_contains_unprintable_or_wide_character[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1502 INIT(= N_("E595: 'showbreak' contains unprintable or wide character")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1503 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1504 #ifdef FEAT_GUI |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1505 EXTERN char e_invalid_fonts[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1506 INIT(= N_("E596: Invalid font(s)")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1507 # ifdef FEAT_XFONTSET |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1508 EXTERN char e_cant_select_fontset[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1509 INIT(= N_("E597: Can't select fontset")); |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1510 EXTERN char e_invalid_fontset[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1511 INIT(= N_("E598: Invalid fontset")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1512 # endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1513 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1514 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
26917
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1515 EXTERN char e_value_of_imactivatekey_is_invalid[] |
d91aea2a612c
patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26915
diff
changeset
|
1516 INIT(= N_("E599: Value of 'imactivatekey' is invalid")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1517 #endif |
26889
4508f62e5318
patch 8.2.3973: tiny build fails
Bram Moolenaar <Bram@vim.org>
parents:
26887
diff
changeset
|
1518 #ifdef FEAT_EVAL |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1519 EXTERN char e_missing_endtry[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1520 INIT(= N_("E600: Missing :endtry")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1521 EXTERN char e_try_nesting_too_deep[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1522 INIT(= N_("E601: :try nesting too deep")); |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1523 EXTERN char e_endtry_without_try[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1524 INIT(= N_("E602: :endtry without :try")); |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1525 EXTERN char e_catch_without_try[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1526 INIT(= N_("E603: :catch without :try")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1527 EXTERN char e_catch_after_finally[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1528 INIT(= N_("E604: :catch after :finally")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1529 EXTERN char e_exception_not_caught_str[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1530 INIT(= N_("E605: Exception not caught: %s")); |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1531 EXTERN char e_finally_without_try[] |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1532 INIT(= N_("E606: :finally without :try")); |
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1533 EXTERN char e_multiple_finally[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1534 INIT(= N_("E607: Multiple :finally")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1535 EXTERN char e_cannot_throw_exceptions_with_vim_prefix[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1536 INIT(= N_("E608: Cannot :throw exceptions with 'Vim' prefix")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1537 #endif |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1538 #ifdef FEAT_CSCOPE |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1539 EXTERN char e_cscope_error_str[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1540 INIT(= N_("E609: Cscope error: %s")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1541 #endif |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1542 EXTERN char e_no_argument_to_delete[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1543 INIT(= N_("E610: No argument to delete")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1544 #ifdef FEAT_EVAL |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1545 EXTERN char e_using_special_as_number[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1546 INIT(= N_("E611: Using a Special as a Number")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1547 #endif |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1548 #ifdef FEAT_SIGNS |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1549 EXTERN char e_too_many_signs_defined[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1550 INIT(= N_("E612: Too many signs defined")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1551 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1552 #if defined(MSWIN) && defined(FEAT_PRINTER) |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1553 EXTERN char e_unknown_printer_font_str[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1554 INIT(= N_("E613: Unknown printer font: %s")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1555 #endif |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
1556 // E614 unused |
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
1557 // E615 unused |
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
1558 // E616 unused |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1559 #ifdef FEAT_GUI_GTK |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1560 EXTERN char e_cannot_be_changed_in_gtk_GUI[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1561 INIT(= N_("E617: Cannot be changed in the GTK GUI")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1562 #endif |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1563 #ifdef FEAT_POSTSCRIPT |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1564 EXTERN char e_file_str_is_not_postscript_resource_file[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1565 INIT(= N_("E618: File \"%s\" is not a PostScript resource file")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1566 EXTERN char e_file_str_is_not_supported_postscript_resource_file[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1567 INIT(= N_("E619: File \"%s\" is not a supported PostScript resource file")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1568 EXTERN char e_unable_to_convert_to_print_encoding_str[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1569 INIT(= N_("E620: Unable to convert to print encoding \"%s\"")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1570 EXTERN char e_str_resource_file_has_wrong_version[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1571 INIT(= N_("E621: \"%s\" resource file has wrong version")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1572 #endif |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1573 #ifdef FEAT_CSCOPE |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1574 EXTERN char e_could_not_fork_for_cscope[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1575 INIT(= N_("E622: Could not fork for cscope")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1576 # ifndef UNIX |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1577 EXTERN char e_could_not_spawn_cscope_process[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1578 INIT(= N_("E623: Could not spawn cscope process")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1579 # endif |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1580 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1581 #if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT) |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1582 EXTERN char e_cant_open_file_str_3[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1583 INIT(= N_("E624: Can't open file \"%s\"")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1584 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1585 #if defined(FEAT_CSCOPE) && !defined(UNIX) |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1586 EXTERN char e_cannot_open_cscope_database_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1587 INIT(= N_("E625: Cannot open cscope database: %s")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1588 EXTERN char e_cannot_get_cscope_database_information[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1589 INIT(= N_("E626: Cannot get cscope database information")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1590 #endif |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1591 #ifdef FEAT_NETBEANS_INTG |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1592 EXTERN char e_missing_colon_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1593 INIT(= "E627: Missing colon: %s"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1594 EXTERN char e_missing_bang_or_slash_in_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1595 INIT(= "E628: Missing ! or / in: %s"); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1596 #ifdef NBDEBUG |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1597 EXTERN char e_bad_return_from_nb_do_cmd[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1598 INIT(= "E629: Bad return from nb_do_cmd"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1599 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1600 #endif |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1601 #ifdef FEAT_JOB_CHANNEL |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1602 EXTERN char e_str_write_while_not_connected[] |
28819
caaa99d1250a
patch 8.2.4933: a few more capitalization mistakes in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28790
diff
changeset
|
1603 INIT(= N_("E630: %s(): Write while not connected")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1604 EXTERN char e_str_write_failed[] |
28819
caaa99d1250a
patch 8.2.4933: a few more capitalization mistakes in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28790
diff
changeset
|
1605 INIT(= N_("E631: %s(): Write failed")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1606 #endif |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1607 #ifdef FEAT_NETBEANS_INTG |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1608 EXTERN char e_invalid_buffer_identifier_in_getlength[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1609 INIT(= "E632: Invalid buffer identifier in getLength"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1610 EXTERN char e_invalid_buffer_identifier_in_gettext[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1611 INIT(= "E633: Invalid buffer identifier in getText"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1612 EXTERN char e_invalid_buffer_identifier_in_remove[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1613 INIT(= "E634: Invalid buffer identifier in remove"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1614 EXTERN char e_invalid_buffer_identifier_in_insert[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1615 INIT(= "E635: Invalid buffer identifier in insert"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1616 EXTERN char e_invalid_buffer_identifier_in_create[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1617 INIT(= "E636: Invalid buffer identifier in create"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1618 EXTERN char e_invalid_buffer_identifier_in_startdocumentlisten[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1619 INIT(= "E637: Invalid buffer identifier in startDocumentListen"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1620 EXTERN char e_invalid_buffer_identifier_in_stopdocumentlisten[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1621 INIT(= "E638: Invalid buffer identifier in stopDocumentListen"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1622 EXTERN char e_invalid_buffer_identifier_in_settitle[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1623 INIT(= "E639: Invalid buffer identifier in setTitle"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1624 EXTERN char e_invalid_buffer_identifier_in_initdone[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1625 INIT(= "E640: Invalid buffer identifier in initDone"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1626 EXTERN char e_invalid_buffer_identifier_in_setbuffernumber[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1627 INIT(= "E641: Invalid buffer identifier in setBufferNumber"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1628 EXTERN char e_file_str_not_found_in_setbuffernumber[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1629 INIT(= "E642: File %s not found in setBufferNumber"); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1630 EXTERN char e_invalid_buffer_identifier_in_setfullname[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1631 INIT(= "E643: Invalid buffer identifier in setFullName"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1632 EXTERN char e_invalid_buffer_identifier_in_editfile[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1633 INIT(= "E644: Invalid buffer identifier in editFile"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1634 EXTERN char e_invalid_buffer_identifier_in_setvisible[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1635 INIT(= "E645: Invalid buffer identifier in setVisible"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1636 EXTERN char e_invalid_buffer_identifier_in_setmodified[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1637 INIT(= "E646: Invalid buffer identifier in setModified"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1638 EXTERN char e_invalid_buffer_identifier_in_setdot[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1639 INIT(= "E647: Invalid buffer identifier in setDot"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1640 EXTERN char e_invalid_buffer_identifier_in_close[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1641 INIT(= "E648: Invalid buffer identifier in close"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1642 EXTERN char e_invalid_buffer_identifier_in_close_2[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1643 INIT(= "E649: Invalid buffer identifier in close"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1644 EXTERN char e_invalid_buffer_identifier_in_defineannotype[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1645 INIT(= "E650: Invalid buffer identifier in defineAnnoType"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1646 EXTERN char e_invalid_buffer_identifier_in_addanno[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1647 INIT(= "E651: Invalid buffer identifier in addAnno"); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1648 EXTERN char e_invalid_buffer_identifier_in_getanno[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1649 INIT(= "E652: Invalid buffer identifier in getAnno"); |
26865
bce848ec8b1b
patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26863
diff
changeset
|
1650 #endif |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1651 // E653 unused |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1652 EXTERN char e_missing_delimiter_after_search_pattern_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1653 INIT(= N_("E654: Missing delimiter after search pattern: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1654 #ifdef FEAT_EVAL |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1655 EXTERN char e_too_many_symbolic_links_cycle[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1656 INIT(= N_("E655: Too many symbolic links (cycle?)")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1657 #endif |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1658 #ifdef FEAT_NETBEANS_INTG |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1659 // E656 |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1660 EXTERN char e_netbeans_disallows_writes_of_unmodified_buffers[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1661 INIT(= N_("NetBeans disallows writes of unmodified buffers")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1662 // E657 |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1663 EXTERN char e_partial_writes_disallowed_for_netbeans_buffers[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1664 INIT(= N_("Partial writes disallowed for NetBeans buffers")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1665 EXTERN char e_netbeans_connection_lost_for_buffer_nr[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1666 INIT(= N_("E658: NetBeans connection lost for buffer %d")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1667 #endif |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1668 #ifdef FEAT_PYTHON |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1669 EXTERN char e_cannot_invoke_python_recursively[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1670 INIT(= N_("E659: Cannot invoke Python recursively")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1671 #endif |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1672 #ifdef FEAT_NETBEANS_INTG |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1673 EXTERN char e_cannot_open_netbeans_connection_info_file[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1674 INIT(= "E660: Cannot open NetBeans connection info file"); |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1675 #endif |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1676 #ifdef FEAT_MULTI_LANG |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1677 EXTERN char e_sorry_no_str_help_for_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1678 INIT(= N_("E661: Sorry, no '%s' help for %s")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1679 #endif |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1680 EXTERN char e_at_start_of_changelist[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1681 INIT(= N_("E662: At start of changelist")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1682 EXTERN char e_at_end_of_changelist[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1683 INIT(= N_("E663: At end of changelist")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1684 EXTERN char e_changelist_is_empty[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1685 INIT(= N_("E664: Changelist is empty")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1686 #ifdef FEAT_GUI |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1687 EXTERN char e_cannot_start_gui_no_valid_font_found[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1688 INIT(= N_("E665: Cannot start GUI, no valid font found")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1689 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1690 #ifdef FEAT_EVAL |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1691 EXTERN char e_compiler_not_supported_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1692 INIT(= N_("E666: Compiler not supported: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1693 #endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1694 #ifdef HAVE_FSYNC |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1695 EXTERN char e_fsync_failed[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1696 INIT(= N_("E667: Fsync failed")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1697 #endif |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1698 #ifdef FEAT_NETBEANS_INTG |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1699 EXTERN char e_wrong_access_mode_for_netbeans_connection_info_file_str[] |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1700 INIT(= N_("E668: Wrong access mode for NetBeans connection info file: \"%s\"")); |
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
1701 #endif |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1702 EXTERN char e_unprintable_character_in_group_name[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1703 INIT(= N_("E669: Unprintable character in group name")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1704 EXTERN char e_mix_of_help_file_encodings_within_language_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1705 INIT(= N_("E670: Mix of help file encodings within a language: %s")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1706 #ifdef FEAT_GUI_MSWIN |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1707 EXTERN char e_cannot_find_window_title_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1708 INIT(= N_("E671: Cannot find window title \"%s\"")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1709 EXTERN char e_unable_to_open_window_inside_mdi_application[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1710 INIT(= N_("E672: Unable to open window inside MDI application")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1711 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1712 #if defined(FEAT_PRINTER) && defined(FEAT_POSTSCRIPT) |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1713 EXTERN char e_incompatible_multi_byte_encoding_and_character_set[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1714 INIT(= N_("E673: Incompatible multi-byte encoding and character set")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1715 EXTERN char e_printmbcharset_cannot_be_empty_with_multi_byte_encoding[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1716 INIT(= N_("E674: printmbcharset cannot be empty with multi-byte encoding.")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1717 EXTERN char e_no_default_font_specified_for_multi_byte_printing[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1718 INIT(= N_("E675: No default font specified for multi-byte printing.")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1719 #endif |
30347
ea2935ec4435
patch 9.0.0509: confusing error for "saveas" command with "nofile" buffer
Bram Moolenaar <Bram@vim.org>
parents:
30333
diff
changeset
|
1720 EXTERN char e_no_matching_autocommands_for_buftype_str_buffer[] |
ea2935ec4435
patch 9.0.0509: confusing error for "saveas" command with "nofile" buffer
Bram Moolenaar <Bram@vim.org>
parents:
30333
diff
changeset
|
1721 INIT(= N_("E676: No matching autocommands for buftype=%s buffer")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1722 #ifdef FEAT_SYN_HL |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1723 EXTERN char e_error_writing_temp_file[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1724 INIT(= N_("E677: Error writing temp file")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1725 #endif |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1726 EXTERN char e_invalid_character_after_str_2[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1727 INIT(= N_("E678: Invalid character after %s%%[dxouU]")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1728 #ifdef FEAT_SYN_HL |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1729 EXTERN char e_recursive_loop_loading_syncolor_vim[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1730 INIT(= N_("E679: Recursive loop loading syncolor.vim")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1731 #endif |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1732 EXTERN char e_buffer_nr_invalid_buffer_number[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
1733 INIT(= N_("E680: <buffer=%d>: invalid buffer number")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1734 #ifdef FEAT_QUICKFIX |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1735 EXTERN char e_buffer_is_not_loaded[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1736 INIT(= N_("E681: Buffer is not loaded")); |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1737 EXTERN char e_invalid_search_pattern_or_delimiter[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1738 INIT(= N_("E682: Invalid search pattern or delimiter")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1739 EXTERN char e_file_name_missing_or_invalid_pattern[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1740 INIT(= N_("E683: File name missing or invalid pattern")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1741 #endif |
26869
659e30d7eeb7
patch 8.2.3963: build failure with tiny and small features
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
1742 #ifdef FEAT_EVAL |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1743 EXTERN char e_list_index_out_of_range_nr[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1744 INIT(= N_("E684: List index out of range: %ld")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1745 #endif |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1746 EXTERN char e_internal_error_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1747 INIT(= N_("E685: Internal error: %s")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1748 #ifdef FEAT_EVAL |
26887
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1749 EXTERN char e_argument_of_str_must_be_list[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1750 INIT(= N_("E686: Argument of %s must be a List")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1751 EXTERN char e_less_targets_than_list_items[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1752 INIT(= N_("E687: Less targets than List items")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1753 EXTERN char e_more_targets_than_list_items[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1754 INIT(= N_("E688: More targets than List items")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1755 EXTERN char e_can_only_index_list_dictionary_or_blob[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1756 INIT(= N_("E689: Can only index a List, Dictionary or Blob")); |
26887
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1757 EXTERN char e_missing_in_after_for[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1758 INIT(= N_("E690: Missing \"in\" after :for")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1759 EXTERN char e_can_only_compare_list_with_list[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1760 INIT(= N_("E691: Can only compare List with List")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1761 EXTERN char e_invalid_operation_for_list[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1762 INIT(= N_("E692: Invalid operation for List")); |
26887
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1763 // E693 unused |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1764 EXTERN char e_invalid_operation_for_funcrefs[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1765 INIT(= N_("E694: Invalid operation for Funcrefs")); |
26646
6f8d3470fa90
patch 8.2.3852: Vim9: not enough tests
Bram Moolenaar <Bram@vim.org>
parents:
26638
diff
changeset
|
1766 EXTERN char e_cannot_index_a_funcref[] |
6f8d3470fa90
patch 8.2.3852: Vim9: not enough tests
Bram Moolenaar <Bram@vim.org>
parents:
26638
diff
changeset
|
1767 INIT(= N_("E695: Cannot index a Funcref")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1768 EXTERN char e_missing_comma_in_list_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1769 INIT(= N_("E696: Missing comma in List: %s")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1770 EXTERN char e_missing_end_of_list_rsb_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1771 INIT(= N_("E697: Missing end of List ']': %s")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1772 EXTERN char e_variable_nested_too_deep_for_making_copy[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1773 INIT(= N_("E698: Variable nested too deep for making a copy")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1774 EXTERN char e_too_many_arguments[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1775 INIT(= N_("E699: Too many arguments")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1776 EXTERN char e_unknown_function_str_2[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1777 INIT(= N_("E700: Unknown function: %s")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1778 EXTERN char e_invalid_type_for_len[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1779 INIT(= N_("E701: Invalid type for len()")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1780 EXTERN char e_sort_compare_function_failed[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1781 INIT(= N_("E702: Sort compare function failed")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1782 EXTERN char e_using_funcref_as_number[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1783 INIT(= N_("E703: Using a Funcref as a Number")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1784 EXTERN char e_funcref_variable_name_must_start_with_capital_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1785 INIT(= N_("E704: Funcref variable name must start with a capital: %s")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1786 EXTERN char e_variable_name_conflicts_with_existing_function_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1787 INIT(= N_("E705: Variable name conflicts with existing function: %s")); |
26887
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
1788 // E706 unused |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1789 EXTERN char e_function_name_conflicts_with_variable_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1790 INIT(= N_("E707: Function name conflicts with variable: %s")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1791 EXTERN char e_slice_must_come_last[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1792 INIT(= N_("E708: [:] must come last")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1793 EXTERN char e_slice_requires_list_or_blob_value[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1794 INIT(= N_("E709: [:] requires a List or Blob value")); |
22975
a943b175586a
patch 8.2.2034: Vim9: list unpack in for statement not compiled yet
Bram Moolenaar <Bram@vim.org>
parents:
22936
diff
changeset
|
1795 EXTERN char e_list_value_has_more_items_than_targets[] |
a943b175586a
patch 8.2.2034: Vim9: list unpack in for statement not compiled yet
Bram Moolenaar <Bram@vim.org>
parents:
22936
diff
changeset
|
1796 INIT(= N_("E710: List value has more items than targets")); |
a943b175586a
patch 8.2.2034: Vim9: list unpack in for statement not compiled yet
Bram Moolenaar <Bram@vim.org>
parents:
22936
diff
changeset
|
1797 EXTERN char e_list_value_does_not_have_enough_items[] |
a943b175586a
patch 8.2.2034: Vim9: list unpack in for statement not compiled yet
Bram Moolenaar <Bram@vim.org>
parents:
22936
diff
changeset
|
1798 INIT(= N_("E711: List value does not have enough items")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1799 EXTERN char e_argument_of_str_must_be_list_or_dictionary[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1800 INIT(= N_("E712: Argument of %s must be a List or Dictionary")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1801 EXTERN char e_cannot_use_empty_key_for_dictionary[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1802 INIT(= N_("E713: Cannot use empty key for Dictionary")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1803 EXTERN char e_list_required[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1804 INIT(= N_("E714: List required")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1805 EXTERN char e_dictionary_required[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1806 INIT(= N_("E715: Dictionary required")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
1807 EXTERN char e_key_not_present_in_dictionary_str[] |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1808 INIT(= N_("E716: Key not present in Dictionary: \"%s\"")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1809 EXTERN char e_dictionary_entry_already_exists[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1810 INIT(= N_("E717: Dictionary entry already exists")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1811 EXTERN char e_funcref_required[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1812 INIT(= N_("E718: Funcref required")); |
21833
e3f9528bddda
patch 8.2.1466: Vim9: cannot index or slice a variable with type "any"
Bram Moolenaar <Bram@vim.org>
parents:
21831
diff
changeset
|
1813 EXTERN char e_cannot_slice_dictionary[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
1814 INIT(= N_("E719: Cannot slice a Dictionary")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
1815 EXTERN char e_missing_colon_in_dictionary_str[] |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1816 INIT(= N_("E720: Missing colon in Dictionary: %s")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
1817 EXTERN char e_duplicate_key_in_dictionary_str[] |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1818 INIT(= N_("E721: Duplicate key in Dictionary: \"%s\"")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
1819 EXTERN char e_missing_comma_in_dictionary_str[] |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1820 INIT(= N_("E722: Missing comma in Dictionary: %s")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
1821 EXTERN char e_missing_dict_end_str[] |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1822 INIT(= N_("E723: Missing end of Dictionary '}': %s")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1823 EXTERN char e_variable_nested_too_deep_for_displaying[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1824 INIT(= N_("E724: Variable nested too deep for displaying")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1825 EXTERN char e_calling_dict_function_without_dictionary_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1826 INIT(= N_("E725: Calling dict function without Dictionary: %s")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1827 EXTERN char e_stride_is_zero[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1828 INIT(= N_("E726: Stride is zero")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1829 EXTERN char e_start_past_end[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1830 INIT(= N_("E727: Start past end")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1831 EXTERN char e_using_dictionary_as_number[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1832 INIT(= N_("E728: Using a Dictionary as a Number")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1833 EXTERN char e_using_funcref_as_string[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1834 INIT(= N_("E729: Using a Funcref as a String")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1835 EXTERN char e_using_list_as_string[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1836 INIT(= N_("E730: Using a List as a String")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1837 EXTERN char e_using_dictionary_as_string[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1838 INIT(= N_("E731: Using a Dictionary as a String")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1839 EXTERN char e_using_endfor_with_while[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1840 INIT(= N_("E732: Using :endfor with :while")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1841 EXTERN char e_using_endwhile_with_for[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1842 INIT(= N_("E733: Using :endwhile with :for")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1843 EXTERN char e_wrong_variable_type_for_str_equal[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1844 INIT(= N_("E734: Wrong variable type for %s=")); |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1845 EXTERN char e_can_only_compare_dictionary_with_dictionary[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1846 INIT(= N_("E735: Can only compare Dictionary with Dictionary")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1847 EXTERN char e_invalid_operation_for_dictionary[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1848 INIT(= N_("E736: Invalid operation for Dictionary")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1849 EXTERN char e_key_already_exists_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1850 INIT(= N_("E737: Key already exists: %s")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1851 EXTERN char e_cant_list_variables_for_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1852 INIT(= N_("E738: Can't list variables for %s")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1853 EXTERN char e_cannot_create_directory_str[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1854 INIT(= N_("E739: Cannot create directory: %s")); |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1855 EXTERN char e_too_many_arguments_for_function_str_2[] |
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
1856 INIT(= N_("E740: Too many arguments for function %s")); |
26624
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1857 EXTERN char e_value_is_locked[] |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1858 INIT(= N_("E741: Value is locked")); |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1859 EXTERN char e_value_is_locked_str[] |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1860 INIT(= N_("E741: Value is locked: %s")); |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1861 EXTERN char e_cannot_change_value[] |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1862 INIT(= N_("E742: Cannot change value")); |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1863 EXTERN char e_cannot_change_value_of_str[] |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
1864 INIT(= N_("E742: Cannot change value of %s")); |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1865 EXTERN char e_variable_nested_too_deep_for_unlock[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1866 INIT(= N_("E743: Variable nested too deep for (un)lock")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1867 #endif |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1868 #ifdef FEAT_NETBEANS_INTG |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1869 EXTERN char e_netbeans_does_not_allow_changes_in_read_only_files[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1870 INIT(= N_("E744: NetBeans does not allow changes in read-only files")); |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1871 #endif |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1872 #ifdef FEAT_EVAL |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1873 EXTERN char e_using_list_as_number[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1874 INIT(= N_("E745: Using a List as a Number")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1875 EXTERN char e_function_name_does_not_match_script_file_name_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1876 INIT(= N_("E746: Function name does not match script file name: %s")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1877 #endif |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1878 EXTERN char e_cannot_change_directory_buffer_is_modified_add_bang_to_override[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1879 INIT(= N_("E747: Cannot change directory, buffer is modified (add ! to override)")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1880 EXTERN char e_no_previously_used_register[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1881 INIT(= N_("E748: No previously used register")); |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1882 EXTERN char e_empty_buffer[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1883 INIT(= N_("E749: Empty buffer")); |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1884 #ifdef FEAT_PROFILE |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1885 EXTERN char e_first_use_profile_start_fname[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1886 INIT(= N_("E750: First use \":profile start {fname}\"")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1887 #endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1888 #ifdef FEAT_SPELL |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1889 EXTERN char e_output_file_name_must_not_have_region_name[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1890 INIT(= N_("E751: Output file name must not have region name")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1891 EXTERN char e_no_previous_spell_replacement[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1892 INIT(= N_("E752: No previous spell replacement")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1893 EXTERN char e_not_found_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1894 INIT(= N_("E753: Not found: %s")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1895 EXTERN char e_only_up_to_nr_regions_supported[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1896 INIT(= N_("E754: Only up to %d regions supported")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1897 EXTERN char e_invalid_region_in_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1898 INIT(= N_("E755: Invalid region in %s")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1899 EXTERN char e_spell_checking_is_not_possible[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1900 INIT(= N_("E756: Spell checking is not possible")); |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1901 EXTERN char e_this_does_not_look_like_spell_file[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1902 INIT(= N_("E757: This does not look like a spell file")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1903 EXTERN char e_truncated_spell_file[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1904 INIT(= N_("E758: Truncated spell file")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1905 EXTERN char e_format_error_in_spell_file[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1906 INIT(= N_("E759: Format error in spell file")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1907 EXTERN char e_no_word_count_in_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1908 INIT(= N_("E760: No word count in %s")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1909 EXTERN char e_format_error_in_affix_file_fol_low_or_upp[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1910 INIT(= N_("E761: Format error in affix file FOL, LOW or UPP")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1911 EXTERN char e_character_in_fol_low_or_upp_is_out_of_range[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1912 INIT(= N_("E762: Character in FOL, LOW or UPP is out of range")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1913 EXTERN char e_word_characters_differ_between_spell_files[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1914 INIT(= N_("E763: Word characters differ between spell files")); |
26968
014c9414ce02
patch 8.2.4013: build failure without the spell feature
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
1915 #endif |
30825
c7983f593fa7
patch 9.0.0747: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
30645
diff
changeset
|
1916 #if defined(FEAT_SYN_HL) || defined(FEAT_COMPL_FUNC) || defined(FEAT_SPELL) |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1917 EXTERN char e_option_str_is_not_set[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1918 INIT(= N_("E764: Option '%s' is not set")); |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
1919 #endif |
26968
014c9414ce02
patch 8.2.4013: build failure without the spell feature
Bram Moolenaar <Bram@vim.org>
parents:
26966
diff
changeset
|
1920 #ifdef FEAT_SPELL |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1921 EXTERN char e_spellfile_does_not_have_nr_entries[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1922 INIT(= N_("E765: 'spellfile' does not have %d entries")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1923 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1924 #ifdef FEAT_EVAL |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1925 EXTERN char e_insufficient_arguments_for_printf[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1926 INIT(= N_("E766: Insufficient arguments for printf()")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1927 #endif |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1928 EXTERN char e_too_many_arguments_to_printf[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1929 INIT(= N_("E767: Too many arguments for printf()")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1930 EXTERN char e_swap_file_exists_str_silent_overrides[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1931 INIT(= N_("E768: Swap file exists: %s (:silent! overrides)")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1932 EXTERN char e_missing_rsb_after_str_lsb[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1933 INIT(= N_("E769: Missing ] after %s[")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1934 #ifdef FEAT_SPELL |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1935 EXTERN char e_unsupported_section_in_spell_file[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1936 INIT(= N_("E770: Unsupported section in spell file")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1937 EXTERN char e_old_spell_file_needs_to_be_updated[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1938 INIT(= N_("E771: Old spell file, needs to be updated")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1939 EXTERN char e_spell_file_is_for_newer_version_of_vim[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1940 INIT(= N_("E772: Spell file is for newer version of Vim")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1941 #endif |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1942 EXTERN char e_symlink_loop_for_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1943 INIT(= N_("E773: Symlink loop for \"%s\"")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1944 #ifdef FEAT_EVAL |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1945 EXTERN char e_operatorfunc_is_empty[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1946 INIT(= N_("E774: 'operatorfunc' is empty")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1947 #else |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1948 EXTERN char e_eval_feature_not_available[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1949 INIT(= N_("E775: Eval feature not available")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1950 #endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1951 #ifdef FEAT_QUICKFIX |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1952 EXTERN char e_no_location_list[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
1953 INIT(= N_("E776: No location list")); |
29022
e79bfdc53aee
patch 8.2.5033: build error with +eval but without +quickfix
Bram Moolenaar <Bram@vim.org>
parents:
29016
diff
changeset
|
1954 #endif |
e79bfdc53aee
patch 8.2.5033: build error with +eval but without +quickfix
Bram Moolenaar <Bram@vim.org>
parents:
29016
diff
changeset
|
1955 #ifdef FEAT_EVAL |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1956 EXTERN char e_string_or_list_expected[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1957 INIT(= N_("E777: String or List expected")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1958 #endif |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1959 #ifdef FEAT_SPELL |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1960 EXTERN char e_this_does_not_look_like_sug_file_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1961 INIT(= N_("E778: This does not look like a .sug file: %s")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1962 EXTERN char e_old_sug_file_needs_to_be_updated_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1963 INIT(= N_("E779: Old .sug file, needs to be updated: %s")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1964 EXTERN char e_sug_file_is_for_newer_version_of_vim_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1965 INIT(= N_("E780: .sug file is for newer version of Vim: %s")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1966 EXTERN char e_sug_file_doesnt_match_spl_file_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1967 INIT(= N_("E781: .sug file doesn't match .spl file: %s")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1968 EXTERN char e_error_while_reading_sug_file_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1969 INIT(= N_("E782: Error while reading .sug file: %s")); |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1970 EXTERN char e_duplicate_char_in_map_entry[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
1971 INIT(= N_("E783: Duplicate char in MAP entry")); |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1972 #endif |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1973 EXTERN char e_cannot_close_last_tab_page[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1974 INIT(= N_("E784: Cannot close last tab page")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1975 #ifdef FEAT_EVAL |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1976 # ifdef FEAT_COMPL_FUNC |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1977 EXTERN char e_complete_can_only_be_used_in_insert_mode[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1978 INIT(= N_("E785: complete() can only be used in Insert mode")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1979 # endif |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1980 EXTERN char e_range_not_allowed[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1981 INIT(= N_("E786: Range not allowed")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1982 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1983 #ifdef FEAT_DIFF |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1984 EXTERN char e_buffer_changed_unexpectedly[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1985 INIT(= N_("E787: Buffer changed unexpectedly")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1986 #endif |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1987 EXTERN char e_not_allowed_to_edit_another_buffer_now[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1988 INIT(= N_("E788: Not allowed to edit another buffer now")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1989 #ifdef FEAT_SYN_HL |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1990 EXTERN char e_error_missing_rsb_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1991 INIT(= N_("E789: Missing ']': %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1992 #endif |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1993 EXTERN char e_undojoin_is_not_allowed_after_undo[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1994 INIT(= N_("E790: undojoin is not allowed after undo")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1995 #ifdef FEAT_KEYMAP |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1996 EXTERN char e_empty_keymap_entry[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
1997 INIT(= N_("E791: Empty keymap entry")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1998 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
1999 #ifdef FEAT_MENU |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2000 EXTERN char e_empty_menu_name[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2001 INIT(= N_("E792: Empty menu name")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2002 #endif |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2003 #ifdef FEAT_DIFF |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2004 EXTERN char e_no_other_buffer_in_diff_mode_is_modifiable[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2005 INIT(= N_("E793: No other buffer in diff mode is modifiable")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2006 #endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2007 #ifdef FEAT_EVAL |
26624
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
2008 EXTERN char e_cannot_set_variable_in_sandbox[] |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
2009 INIT(= N_("E794: Cannot set variable in the sandbox")); |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
2010 EXTERN char e_cannot_set_variable_in_sandbox_str[] |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
2011 INIT(= N_("E794: Cannot set variable in the sandbox: \"%s\"")); |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
2012 EXTERN char e_cannot_delete_variable[] |
bdf11d8e3df3
patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents:
26602
diff
changeset
|
2013 INIT(= N_("E795: Cannot delete variable")); |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2014 EXTERN char e_cannot_delete_variable_str[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2015 INIT(= N_("E795: Cannot delete variable %s")); |
30200
499c766d0c14
patch 9.0.0436: CI: running tests in parallel causes flakiness
Bram Moolenaar <Bram@vim.org>
parents:
30192
diff
changeset
|
2016 #endif |
499c766d0c14
patch 9.0.0436: CI: running tests in parallel causes flakiness
Bram Moolenaar <Bram@vim.org>
parents:
30192
diff
changeset
|
2017 #ifdef MSWIN |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2018 // E796 |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2019 EXTERN char e_writing_to_device_disabled_with_opendevice_option[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2020 INIT(= N_("writing to device disabled with 'opendevice' option")); |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2021 #endif |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2022 #ifdef FEAT_SPELL |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2023 EXTERN char e_spellfilemising_autocommand_deleted_buffer[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2024 INIT(= N_("E797: SpellFileMissing autocommand deleted buffer")); |
26024
cb5f2515a450
patch 8.2.3546: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
26022
diff
changeset
|
2025 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2026 #ifdef FEAT_SEARCH_EXTRA |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2027 EXTERN char e_id_is_reserved_for_match_nr[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2028 INIT(= N_("E798: ID is reserved for \":match\": %d")); |
26964
5de60e0d65fa
patch 8.2.4011: test fails because of changed error number
Bram Moolenaar <Bram@vim.org>
parents:
26962
diff
changeset
|
2029 EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_1[] |
5de60e0d65fa
patch 8.2.4011: test fails because of changed error number
Bram Moolenaar <Bram@vim.org>
parents:
26962
diff
changeset
|
2030 INIT(= N_("E799: Invalid ID: %d (must be greater than or equal to 1)")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2031 #endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2032 #ifndef FEAT_ARABIC |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2033 EXTERN char e_arabic_cannot_be_used_not_enabled_at_compile_time[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2034 INIT(= N_("E800: Arabic cannot be used: Not enabled at compile time\n")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2035 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2036 #ifdef FEAT_SEARCH_EXTRA |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2037 EXTERN char e_id_already_taken_nr[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2038 INIT(= N_("E801: ID already taken: %d")); |
26964
5de60e0d65fa
patch 8.2.4011: test fails because of changed error number
Bram Moolenaar <Bram@vim.org>
parents:
26962
diff
changeset
|
2039 EXTERN char e_invalid_id_nr_must_be_greater_than_or_equal_to_one_2[] |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2040 INIT(= N_("E802: Invalid ID: %d (must be greater than or equal to 1)")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2041 EXTERN char e_id_not_found_nr[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2042 INIT(= N_("E803: ID not found: %d")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2043 #endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2044 #ifdef FEAT_EVAL |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2045 EXTERN char e_cannot_use_percent_with_float[] |
27152
c83631ad3d2a
patch 8.2.4105: translation related comment in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
27043
diff
changeset
|
2046 // xgettext:no-c-format |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2047 INIT(= N_("E804: Cannot use '%' with Float")); |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2048 EXTERN char e_using_float_as_number[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2049 INIT(= N_("E805: Using a Float as a Number")); |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2050 EXTERN char e_using_float_as_string[] |
29822
5d9fd7b1217b
patch 9.0.0250: slightly inconsistent error messages
Bram Moolenaar <Bram@vim.org>
parents:
29816
diff
changeset
|
2051 INIT(= N_("E806: Using a Float as a String")); |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2052 EXTERN char e_expected_float_argument_for_printf[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2053 INIT(= N_("E807: Expected Float argument for printf()")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2054 EXTERN char e_number_or_float_required[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2055 INIT(= N_("E808: Number or Float required")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2056 #endif |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2057 #ifndef FEAT_EVAL |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2058 EXTERN char e_hashsmall_is_not_available_without_the_eval_feature[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2059 INIT(= N_("E809: #< is not available without the +eval feature")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2060 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2061 #ifdef FEAT_DIFF |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2062 EXTERN char e_cannot_read_or_write_temp_files[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2063 INIT(= N_("E810: Cannot read or write temp files")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2064 #endif |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2065 EXTERN char e_not_allowed_to_change_buffer_information_now[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2066 INIT(= N_("E811: Not allowed to change buffer information now")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2067 EXTERN char e_autocommands_changed_buffer_or_buffer_name[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2068 INIT(= N_("E812: Autocommands changed buffer or buffer name")); |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2069 EXTERN char e_cannot_close_autocmd_or_popup_window[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2070 INIT(= N_("E813: Cannot close autocmd or popup window")); |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2071 EXTERN char e_cannot_close_window_only_autocmd_window_would_remain[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2072 INIT(= N_("E814: Cannot close window, only autocmd window would remain")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2073 #ifdef FEAT_MZSCHEME |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2074 EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_libraries_could_not_be_loaded[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2075 INIT(= N_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded.")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2076 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2077 #ifdef FEAT_DIFF |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2078 EXTERN char e_cannot_read_patch_output[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2079 INIT(= N_("E816: Cannot read patch output")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2080 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2081 #ifdef FEAT_CRYPT |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2082 EXTERN char e_blowfish_big_little_endian_use_wrong[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2083 INIT(= N_("E817: Blowfish big/little endian use wrong")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2084 EXTERN char e_sha256_test_failed[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2085 INIT(= N_("E818: sha256 test failed")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2086 EXTERN char e_blowfish_test_failed[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2087 INIT(= N_("E819: Blowfish test failed")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2088 EXTERN char e_sizeof_uint32_isnot_four[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2089 INIT(= N_("E820: sizeof(uint32_t) != 4")); |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2090 EXTERN char e_file_is_encrypted_with_unknown_method[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2091 INIT(= N_("E821: File is encrypted with unknown method")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2092 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2093 #ifdef FEAT_PERSISTENT_UNDO |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2094 EXTERN char e_cannot_open_undo_file_for_reading_str[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2095 INIT(= N_("E822: Cannot open undo file for reading: %s")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2096 EXTERN char e_not_an_undo_file_str[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2097 INIT(= N_("E823: Not an undo file: %s")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2098 EXTERN char e_incompatible_undo_file_str[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2099 INIT(= N_("E824: Incompatible undo file: %s")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2100 EXTERN char e_corrupted_undo_file_str_str[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2101 INIT(= N_("E825: Corrupted undo file (%s): %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2102 # ifdef FEAT_CRYPT |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2103 EXTERN char e_undo_file_decryption_failed[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2104 INIT(= N_("E826: Undo file decryption failed: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2105 # else |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2106 EXTERN char e_undo_file_is_encrypted_str[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2107 INIT(= N_("E827: Undo file is encrypted: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2108 # endif |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2109 EXTERN char e_cannot_open_undo_file_for_writing_str[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2110 INIT(= N_("E828: Cannot open undo file for writing: %s")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2111 EXTERN char e_write_error_in_undo_file_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2112 INIT(= N_("E829: Write error in undo file: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2113 #endif |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2114 EXTERN char e_undo_number_nr_not_found[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2115 INIT(= N_("E830: Undo number %ld not found")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2116 #ifdef FEAT_CRYPT |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2117 EXTERN char e_bf_key_init_called_with_empty_password[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2118 INIT(= N_("E831: bf_key_init() called with empty password")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2119 # ifdef FEAT_PERSISTENT_UNDO |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2120 EXTERN char e_non_encrypted_file_has_encrypted_undo_file_str[] |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2121 INIT(= N_("E832: Non-encrypted file has encrypted undo file: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2122 # endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2123 #else |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2124 EXTERN char e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2125 INIT(= N_("E833: %s is encrypted and this version of Vim does not support encryption")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2126 #endif |
26022
30e60bfd5fb3
patch 8.2.3545: setcellwidths() may make 'listchars' or 'fillchars' invalid
Bram Moolenaar <Bram@vim.org>
parents:
25982
diff
changeset
|
2127 EXTERN char e_conflicts_with_value_of_listchars[] |
30e60bfd5fb3
patch 8.2.3545: setcellwidths() may make 'listchars' or 'fillchars' invalid
Bram Moolenaar <Bram@vim.org>
parents:
25982
diff
changeset
|
2128 INIT(= N_("E834: Conflicts with value of 'listchars'")); |
30e60bfd5fb3
patch 8.2.3545: setcellwidths() may make 'listchars' or 'fillchars' invalid
Bram Moolenaar <Bram@vim.org>
parents:
25982
diff
changeset
|
2129 EXTERN char e_conflicts_with_value_of_fillchars[] |
30e60bfd5fb3
patch 8.2.3545: setcellwidths() may make 'listchars' or 'fillchars' invalid
Bram Moolenaar <Bram@vim.org>
parents:
25982
diff
changeset
|
2130 INIT(= N_("E835: Conflicts with value of 'fillchars'")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2131 #ifdef DYNAMIC_PYTHON |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2132 EXTERN char e_this_vim_cannot_execute_python_after_using_py3[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2133 INIT(= N_("E836: This Vim cannot execute :python after using :py3")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2134 EXTERN char e_this_vim_cannot_execute_py3_after_using_python[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2135 INIT(= N_("E837: This Vim cannot execute :py3 after using :python")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2136 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2137 #if defined(FEAT_NETBEANS_INTG) && defined(FEAT_GUI) |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
2138 EXTERN char e_netbeans_is_not_supported_with_this_GUI[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2139 INIT(= N_("E838: NetBeans is not supported with this GUI")); |
26948
51ddf6740ac6
patch 8.2.4003: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26919
diff
changeset
|
2140 #endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2141 // E839 unused |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2142 # ifdef FEAT_COMPL_FUNC |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2143 EXTERN char e_complete_function_deleted_text[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2144 INIT(= N_("E840: Completion function deleted text")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2145 # endif |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2146 EXTERN char e_reserved_name_cannot_be_used_for_user_defined_command[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2147 INIT(= N_("E841: Reserved name, cannot be used for user defined command")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2148 EXTERN char e_no_line_number_to_use_for_slnum[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2149 INIT(= N_("E842: No line number to use for \"<slnum>\"")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2150 #ifdef FEAT_CRYPT |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2151 EXTERN char e_error_while_updating_swap_file_crypt[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2152 INIT(= N_("E843: Error while updating swap file crypt")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2153 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2154 #ifdef FEAT_CONCEAL |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2155 EXTERN char e_invalid_cchar_value[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2156 INIT(= N_("E844: Invalid cchar value")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2157 #endif |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2158 #ifdef FEAT_SPELL |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2159 EXTERN char e_insufficient_memory_word_list_will_be_incomplete[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2160 INIT(= N_("E845: Insufficient memory, word list will be incomplete")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2161 #endif |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2162 EXTERN char e_key_code_not_set[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2163 INIT(= N_("E846: Key code not set")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2164 #ifdef FEAT_SYN_HL |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2165 EXTERN char e_too_many_syntax_includes[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2166 INIT(= N_("E847: Too many syntax includes")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2167 EXTERN char e_too_many_syntax_clusters[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2168 INIT(= N_("E848: Too many syntax clusters")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2169 #endif |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2170 EXTERN char e_too_many_highlight_and_syntax_groups[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2171 INIT(= N_("E849: Too many highlight and syntax groups")); |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2172 #ifndef FEAT_CLIPBOARD |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2173 EXTERN char e_invalid_register_name[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2174 INIT(= N_("E850: Invalid register name")); |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2175 #endif |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2176 #ifdef FEAT_GUI |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2177 EXTERN char e_failed_to_create_new_process_for_GUI[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2178 INIT(= N_("E851: Failed to create a new process for the GUI")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2179 EXTERN char e_the_child_process_failed_to_start_GUI[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2180 INIT(= N_("E852: The child process failed to start the GUI")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2181 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2182 #ifdef FEAT_EVAL |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2183 EXTERN char e_duplicate_argument_name_str[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2184 INIT(= N_("E853: Duplicate argument name: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2185 #endif |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2186 EXTERN char e_path_too_long_for_completion[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2187 INIT(= N_("E854: Path too long for completion")); |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2188 EXTERN char e_autocommands_caused_command_to_abort[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2189 INIT(= N_("E855: Autocommands caused command to abort")); |
26024
cb5f2515a450
patch 8.2.3546: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
26022
diff
changeset
|
2190 #ifdef FEAT_EVAL |
22165
c512e6f57ff2
patch 8.2.1632: not checking the context of test_fails()
Bram Moolenaar <Bram@vim.org>
parents:
21975
diff
changeset
|
2191 EXTERN char e_assert_fails_second_arg[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2192 INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2193 EXTERN char e_dictionary_key_str_required[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2194 INIT(= N_("E857: Dictionary key \"%s\" required")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2195 #endif |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2196 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2197 EXTERN char e_eval_did_not_return_valid_python_object[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2198 INIT(= N_("E858: Eval did not return a valid python object")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2199 EXTERN char e_failed_to_convert_returned_python_object_to_vim_value[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2200 INIT(= N_("E859: Failed to convert returned python object to a Vim value")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2201 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2202 #ifdef FEAT_PROP_POPUP |
29788
d08aa1bfe319
patch 9.0.0233: removing multiple text properties takes many calls
Bram Moolenaar <Bram@vim.org>
parents:
29780
diff
changeset
|
2203 EXTERN char e_need_id_and_type_or_types_with_both[] |
d08aa1bfe319
patch 9.0.0233: removing multiple text properties takes many calls
Bram Moolenaar <Bram@vim.org>
parents:
29780
diff
changeset
|
2204 INIT(= N_("E860: Need 'id' and 'type' or 'types' with 'both'")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2205 # ifdef FEAT_TERMINAL |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2206 EXTERN char e_cannot_open_second_popup_with_terminal[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2207 INIT(= N_("E861: Cannot open a second popup with a terminal")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2208 # endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2209 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2210 #ifdef FEAT_EVAL |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2211 EXTERN char e_cannot_use_g_here[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2212 INIT(= N_("E862: Cannot use g: here")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2213 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2214 #if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL) |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2215 EXTERN char e_not_allowed_for_terminal_in_popup_window[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2216 INIT(= N_("E863: Not allowed for a terminal in a popup window")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2217 #endif |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2218 EXTERN char e_percent_hash_can_only_be_followed_by_zero_one_two_automatic_engine_will_be_used[] |
27152
c83631ad3d2a
patch 8.2.4105: translation related comment in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
27043
diff
changeset
|
2219 // xgettext:no-c-format |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2220 INIT(= N_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2221 EXTERN char e_nfa_regexp_end_encountered_prematurely[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2222 INIT(= N_("E865: (NFA) Regexp end encountered prematurely")); |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2223 EXTERN char e_nfa_regexp_misplaced_chr[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2224 INIT(= N_("E866: (NFA regexp) Misplaced %c")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2225 EXTERN char e_nfa_regexp_unknown_operator_z_chr[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2226 INIT(= N_("E867: (NFA regexp) Unknown operator '\\z%c'")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2227 EXTERN char e_nfa_regexp_unknown_operator_percent_chr[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2228 INIT(= N_("E867: (NFA regexp) Unknown operator '\\%%%c'")); |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2229 EXTERN char e_error_building_nfa_with_equivalence_class[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2230 INIT(= N_("E868: Error building NFA with equivalence class!")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2231 EXTERN char e_nfa_regexp_unknown_operator_at_chr[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2232 INIT(= N_("E869: (NFA regexp) Unknown operator '\\@%c'")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2233 EXTERN char e_nfa_regexp_error_reading_repetition_limits[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2234 INIT(= N_("E870: (NFA regexp) Error reading repetition limits")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2235 EXTERN char e_nfa_regexp_cant_have_multi_follow_multi[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2236 INIT(= N_("E871: (NFA regexp) Can't have a multi follow a multi")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2237 EXTERN char e_nfa_regexp_too_many_parens[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2238 INIT(= N_("E872: (NFA regexp) Too many '('")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2239 EXTERN char e_nfa_regexp_proper_termination_error[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2240 INIT(= N_("E873: (NFA regexp) proper termination error")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2241 EXTERN char e_nfa_regexp_could_not_pop_stack[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2242 INIT(= N_("E874: (NFA regexp) Could not pop the stack!")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2243 EXTERN char e_nfa_regexp_while_converting_from_postfix_to_nfa_too_many_stats_left_on_stack[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2244 INIT(= N_("E875: (NFA regexp) (While converting from postfix to NFA), too many states left on stack")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2245 EXTERN char e_nfa_regexp_not_enough_space_to_store_whole_nfa[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2246 INIT(= N_("E876: (NFA regexp) Not enough space to store the whole NFA")); |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2247 EXTERN char e_nfa_regexp_invalid_character_class_nr[] |
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2248 INIT(= N_("E877: (NFA regexp) Invalid character class: %d")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2249 EXTERN char e_nfa_regexp_could_not_allocate_memory_for_branch_traversal[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2250 INIT(= N_("E878: (NFA regexp) Could not allocate memory for branch traversal!")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2251 #ifdef FEAT_SYN_HL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2252 EXTERN char e_nfa_regexp_too_many_z[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2253 INIT(= N_("E879: (NFA regexp) Too many \\z(")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2254 #endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2255 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2256 EXTERN char e_cant_handle_systemexit_of_python_exception_in_vim[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2257 INIT(= N_("E880: Can't handle SystemExit of python exception in vim")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2258 #endif |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2259 EXTERN char e_line_count_changed_unexpectedly[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2260 INIT(= N_("E881: Line count changed unexpectedly")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2261 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2262 EXTERN char e_uniq_compare_function_failed[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2263 INIT(= N_("E882: Uniq compare function failed")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2264 EXTERN char e_search_pattern_and_expression_register_may_not_contain_two_or_more_lines[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2265 INIT(= N_("E883: Search pattern and expression register may not contain two or more lines")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2266 EXTERN char e_function_name_cannot_contain_colon_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2267 INIT(= N_("E884: Function name cannot contain a colon: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2268 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2269 #ifdef FEAT_SIGNS |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2270 EXTERN char e_not_possible_to_change_sign_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2271 INIT(= N_("E885: Not possible to change sign %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2272 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2273 #ifdef FEAT_VIMINFO |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2274 EXTERN char e_cant_rename_viminfo_file_to_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2275 INIT(= N_("E886: Can't rename viminfo file to %s!")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2276 #endif |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
2277 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2278 EXTERN char e_sorry_this_command_is_disabled_python_side_module_could_not_be_loaded[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2279 INIT(= N_("E887: Sorry, this command is disabled, the Python's site module could not be loaded.")); |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
2280 #endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2281 EXTERN char e_nfa_regexp_cannot_repeat_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2282 INIT(= N_("E888: (NFA regexp) cannot repeat %s")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2283 #ifdef FEAT_PROP_POPUP |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2284 EXTERN char e_number_required[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2285 INIT(= N_("E889: Number required")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2286 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2287 #ifdef FEAT_SYN_HL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2288 EXTERN char e_trailing_char_after_rsb_str_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2289 INIT(= N_("E890: Trailing char after ']': %s]%s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2290 #endif |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
2291 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2292 EXTERN char e_using_funcref_as_float[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2293 INIT(= N_("E891: Using a Funcref as a Float")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2294 EXTERN char e_using_string_as_float[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2295 INIT(= N_("E892: Using a String as a Float")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2296 EXTERN char e_using_list_as_float[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2297 INIT(= N_("E893: Using a List as a Float")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2298 EXTERN char e_using_dictionary_as_float[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2299 INIT(= N_("E894: Using a Dictionary as a Float")); |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
2300 #endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2301 #ifdef FEAT_MZSCHEME |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2302 EXTERN char e_sorry_this_command_is_disabled_the_mzscheme_racket_base_module_could_not_be_loaded[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2303 INIT(= N_("E895: Sorry, this command is disabled, the MzScheme's racket/base module could not be loaded.")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2304 #endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2305 #ifdef FEAT_EVAL |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2306 EXTERN char e_argument_of_str_must_be_list_dictionary_or_blob[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2307 INIT(= N_("E896: Argument of %s must be a List, Dictionary or Blob")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2308 EXTERN char e_list_or_blob_required[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2309 INIT(= N_("E897: List or Blob required")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2310 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2311 #ifdef FEAT_JOB_CHANNEL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2312 EXTERN char e_socket_in_channel_connect[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2313 INIT(= N_("E898: socket() in channel_connect()")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2314 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2315 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2316 EXTERN char e_argument_of_str_must_be_list_or_blob[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2317 INIT(= N_("E899: Argument of %s must be a List or Blob")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2318 EXTERN char e_maxdepth_must_be_non_negative_number[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2319 INIT(= N_("E900: maxdepth must be non-negative number")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2320 #endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2321 #ifdef FEAT_JOB_CHANNEL |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2322 EXTERN char e_getaddrinfo_in_channel_open_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2323 INIT(= N_("E901: getaddrinfo() in channel_open(): %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2324 # ifndef FEAT_IPV6 |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2325 EXTERN char e_gethostbyname_in_channel_open[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2326 INIT(= N_("E901: gethostbyname() in channel_open()")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2327 # endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2328 EXTERN char e_cannot_connect_to_port[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2329 INIT(= N_("E902: Cannot connect to port")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2330 EXTERN char e_received_command_with_non_string_argument[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2331 INIT(= N_("E903: Received command with non-string argument")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2332 EXTERN char e_last_argument_for_expr_call_must_be_number[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2333 INIT(= N_("E904: Last argument for expr/call must be a number")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2334 EXTERN char e_third_argument_for_call_must_be_list[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2335 INIT(= N_("E904: Third argument for call must be a list")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2336 EXTERN char e_received_unknown_command_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2337 INIT(= N_("E905: Received unknown command: %s")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2338 EXTERN char e_not_an_open_channel[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2339 INIT(= N_("E906: Not an open channel")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2340 #endif |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
2341 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2342 EXTERN char e_using_special_value_as_float[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2343 INIT(= N_("E907: Using a special value as a Float")); |
24614
07b3d21a8b4b
patch 8.2.2846: Vim9: "echo Func()" does not give an error for using void
Bram Moolenaar <Bram@vim.org>
parents:
24543
diff
changeset
|
2344 EXTERN char e_using_invalid_value_as_string_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2345 INIT(= N_("E908: Using an invalid value as a String: %s")); |
21833
e3f9528bddda
patch 8.2.1466: Vim9: cannot index or slice a variable with type "any"
Bram Moolenaar <Bram@vim.org>
parents:
21831
diff
changeset
|
2346 EXTERN char e_cannot_index_special_variable[] |
e3f9528bddda
patch 8.2.1466: Vim9: cannot index or slice a variable with type "any"
Bram Moolenaar <Bram@vim.org>
parents:
21831
diff
changeset
|
2347 INIT(= N_("E909: Cannot index a special variable")); |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2348 #endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2349 #ifdef FEAT_JOB_CHANNEL |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2350 EXTERN char e_using_job_as_number[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2351 INIT(= N_("E910: Using a Job as a Number")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2352 EXTERN char e_using_job_as_float[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2353 INIT(= N_("E911: Using a Job as a Float")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2354 EXTERN char e_cannot_use_evalexpr_sendexpr_with_raw_or_nl_channel[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2355 INIT(= N_("E912: Cannot use ch_evalexpr()/ch_sendexpr() with a raw or nl channel")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2356 EXTERN char e_using_channel_as_number[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2357 INIT(= N_("E913: Using a Channel as a Number")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2358 EXTERN char e_using_channel_as_float[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2359 INIT(= N_("E914: Using a Channel as a Float")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2360 EXTERN char e_in_io_buffer_requires_in_buf_or_in_name_to_be_set[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2361 INIT(= N_("E915: in_io buffer requires in_buf or in_name to be set")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2362 EXTERN char e_not_valid_job[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2363 INIT(= N_("E916: Not a valid job")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2364 EXTERN char e_cannot_use_callback_with_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2365 INIT(= N_("E917: Cannot use a callback with %s()")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2366 EXTERN char e_buffer_must_be_loaded_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2367 INIT(= N_("E918: Buffer must be loaded: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2368 #endif |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2369 EXTERN char e_directory_not_found_in_str_str[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2370 INIT(= N_("E919: Directory not found in '%s': \"%s\"")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2371 #ifdef FEAT_JOB_CHANNEL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2372 EXTERN char e_io_file_requires_name_to_be_set[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2373 INIT(= N_("E920: _io file requires _name to be set")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2374 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2375 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2376 EXTERN char e_invalid_callback_argument[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2377 INIT(= N_("E921: Invalid callback argument")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2378 EXTERN char e_second_argument_of_function_must_be_list_or_dict[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2379 INIT(= N_("E923: Second argument of function() must be a list or a dict")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2380 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2381 #ifdef FEAT_QUICKFIX |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2382 EXTERN char e_current_window_was_closed[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2383 INIT(= N_("E924: Current window was closed")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2384 EXTERN char e_current_quickfix_list_was_changed[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2385 INIT(= N_("E925: Current quickfix list was changed")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2386 EXTERN char e_current_location_list_was_changed[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2387 INIT(= N_("E926: Current location list was changed")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2388 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2389 #ifdef FEAT_EVAL |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2390 # ifdef FEAT_QUICKFIX |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2391 EXTERN char e_invalid_action_str_1[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2392 INIT(= N_("E927: Invalid action: '%s'")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2393 # endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2394 EXTERN char e_string_required[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2395 INIT(= N_("E928: String required")); |
23390
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23362
diff
changeset
|
2396 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2397 #ifdef FEAT_VIMINFO |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2398 EXTERN char e_too_many_viminfo_temp_files_like_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2399 INIT(= N_("E929: Too many viminfo temp files, like %s!")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2400 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2401 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2402 EXTERN char e_cannot_use_redir_inside_execute[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2403 INIT(= N_("E930: Cannot use :redir inside execute()")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2404 #endif |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2405 EXTERN char e_buffer_cannot_be_registered[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2406 INIT(= N_("E931: Buffer cannot be registered")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2407 #ifdef FEAT_EVAL |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2408 EXTERN char e_closure_function_should_not_be_at_top_level_str[] |
26952
b34ddbca305c
patch 8.2.4005: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26948
diff
changeset
|
2409 INIT(= N_("E932: Closure function should not be at top level: %s")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2410 EXTERN char e_function_was_deleted_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2411 INIT(= N_("E933: Function was deleted: %s")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2412 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2413 #ifdef FEAT_SIGNS |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2414 EXTERN char e_cannot_jump_to_buffer_that_does_not_have_name[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2415 INIT(= N_("E934: Cannot jump to a buffer that does not have a name")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2416 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2417 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2418 EXTERN char e_invalid_submatch_number_nr[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2419 INIT(= N_("E935: Invalid submatch number: %d")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2420 #endif |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2421 EXTERN char e_cannot_delete_current_group[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2422 INIT(= N_("E936: Cannot delete the current group")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2423 EXTERN char e_attempt_to_delete_buffer_that_is_in_use_str[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2424 INIT(= N_("E937: Attempt to delete a buffer that is in use: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2425 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2426 EXTERN char e_duplicate_key_in_json_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2427 INIT(= N_("E938: Duplicate key in JSON: \"%s\"")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2428 #endif |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2429 EXTERN char e_positive_count_required[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2430 INIT(= N_("E939: Positive count required")); |
26887
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
2431 #ifdef FEAT_EVAL |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
2432 EXTERN char e_cannot_lock_or_unlock_variable_str[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
2433 INIT(= N_("E940: Cannot lock or unlock variable %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2434 # ifdef FEAT_CLIENTSERVER |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2435 EXTERN char e_already_started_server[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2436 INIT(= N_("E941: Already started a server")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2437 # else |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2438 EXTERN char e_clientserver_feature_not_available[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2439 INIT(= N_("E942: +clientserver feature not available")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2440 # endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2441 #endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2442 EXTERN char e_command_table_needs_to_be_updated_run_make_cmdidxs[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2443 INIT(= N_("E943: Command table needs to be updated, run 'make cmdidxs'")); |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2444 EXTERN char e_reverse_range_in_character_class[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2445 INIT(= N_("E944: Reverse range in character class")); |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2446 EXTERN char e_range_too_large_in_character_class[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2447 INIT(= N_("E945: Range too large in character class")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2448 #ifdef FEAT_TERMINAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2449 EXTERN char e_cannot_make_terminal_with_running_job_modifiable[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2450 INIT(= N_("E946: Cannot make a terminal with running job modifiable")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2451 EXTERN char e_job_still_running_in_buffer_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2452 INIT(= N_("E947: Job still running in buffer \"%s\"")); |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2453 EXTERN char e_job_still_running[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2454 INIT(= N_("E948: Job still running")); |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2455 EXTERN char e_job_still_running_add_bang_to_end_the_job[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2456 INIT(= N_("E948: Job still running (add ! to end the job)")); |
26869
659e30d7eeb7
patch 8.2.3963: build failure with tiny and small features
Bram Moolenaar <Bram@vim.org>
parents:
26865
diff
changeset
|
2457 #endif |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2458 EXTERN char e_file_changed_while_writing[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2459 INIT(= N_("E949: File changed while writing")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2460 EXTERN char e_cannot_convert_between_str_and_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2461 INIT(= N_("E950: Cannot convert between %s and %s")); |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2462 EXTERN char e_percent_value_too_large[] |
27152
c83631ad3d2a
patch 8.2.4105: translation related comment in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
27043
diff
changeset
|
2463 // xgettext:no-c-format |
26962
85866e069c24
patch 8.2.4010: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26958
diff
changeset
|
2464 INIT(= N_("E951: \\% value too large")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2465 #if defined(FEAT_EVAL) && defined(FEAT_QUICKFIX) |
26883
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2466 EXTERN char e_autocommand_caused_recursive_behavior[] |
7f150a4936f2
patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26877
diff
changeset
|
2467 INIT(= N_("E952: Autocommand caused recursive behavior")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2468 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2469 #ifdef FEAT_TERMINAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2470 EXTERN char e_file_exists_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2471 INIT(= N_("E953: File exists: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2472 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2473 #if defined(FEAT_TERMGUICOLORS) && defined(FEAT_VTP) |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2474 EXTERN char e_24_bit_colors_are_not_supported_on_this_environment[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2475 INIT(= N_("E954: 24-bit colors are not supported on this environment")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2476 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2477 #ifdef FEAT_TERMINAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2478 EXTERN char e_not_terminal_buffer[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2479 INIT(= N_("E955: Not a terminal buffer")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2480 #endif |
26958
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2481 EXTERN char e_cannot_use_pattern_recursively[] |
d92e0d85923f
patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26952
diff
changeset
|
2482 INIT(= N_("E956: Cannot use pattern recursively")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2483 #ifdef FEAT_EVAL |
26887
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
2484 EXTERN char e_invalid_window_number[] |
612339679616
patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26883
diff
changeset
|
2485 INIT(= N_("E957: Invalid window number")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2486 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2487 #ifdef FEAT_TERMINAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2488 EXTERN char e_job_already_finished[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2489 INIT(= N_("E958: Job already finished")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2490 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2491 #ifdef FEAT_DIFF |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2492 EXTERN char e_invalid_diff_format[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2493 INIT(= N_("E959: Invalid diff format.")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2494 EXTERN char e_problem_creating_internal_diff[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2495 INIT(= N_("E960: Problem creating the internal diff")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2496 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2497 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2498 EXTERN char e_no_line_number_to_use_for_sflnum[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2499 INIT(= N_("E961: No line number to use for \"<sflnum>\"")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2500 EXTERN char e_invalid_action_str_2[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2501 INIT(= N_("E962: Invalid action: '%s'")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2502 EXTERN char e_setting_str_to_value_with_wrong_type[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2503 INIT(= N_("E963: Setting %s to value with wrong type")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2504 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2505 #ifdef FEAT_PROP_POPUP |
26775
2df40c348c70
patch 8.2.3916: no error for passing an invalid line number to append()
Bram Moolenaar <Bram@vim.org>
parents:
26757
diff
changeset
|
2506 EXTERN char_u e_invalid_column_number_nr[] |
2df40c348c70
patch 8.2.3916: no error for passing an invalid line number to append()
Bram Moolenaar <Bram@vim.org>
parents:
26757
diff
changeset
|
2507 INIT(= N_("E964: Invalid column number: %ld")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2508 EXTERN char e_missing_property_type_name[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2509 INIT(= N_("E965: Missing property type name")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2510 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2511 #ifdef FEAT_EVAL |
26775
2df40c348c70
patch 8.2.3916: no error for passing an invalid line number to append()
Bram Moolenaar <Bram@vim.org>
parents:
26757
diff
changeset
|
2512 EXTERN char_u e_invalid_line_number_nr[] |
2df40c348c70
patch 8.2.3916: no error for passing an invalid line number to append()
Bram Moolenaar <Bram@vim.org>
parents:
26757
diff
changeset
|
2513 INIT(= N_("E966: Invalid line number: %ld")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2514 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2515 #ifdef FEAT_PROP_POPUP |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2516 EXTERN char e_text_property_info_corrupted[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2517 INIT(= N_("E967: Text property info corrupted")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2518 EXTERN char e_need_at_least_one_of_id_or_type[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2519 INIT(= N_("E968: Need at least one of 'id' or 'type'")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2520 EXTERN char e_property_type_str_already_defined[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2521 INIT(= N_("E969: Property type %s already defined")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2522 EXTERN char e_unknown_highlight_group_name_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2523 INIT(= N_("E970: Unknown highlight group name: '%s'")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2524 EXTERN char e_property_type_str_does_not_exist[] |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2525 INIT(= N_("E971: Property type %s does not exist")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2526 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2527 #ifdef FEAT_EVAL |
26863
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2528 EXTERN char e_blob_value_does_not_have_right_number_of_bytes[] |
6ee19c6ae8a2
patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26861
diff
changeset
|
2529 INIT(= N_("E972: Blob value does not have the right number of bytes")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2530 EXTERN char e_blob_literal_should_have_an_even_number_of_hex_characters[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2531 INIT(= N_("E973: Blob literal should have an even number of hex characters")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2532 EXTERN char e_using_blob_as_number[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2533 INIT(= N_("E974: Using a Blob as a Number")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2534 EXTERN char e_using_blob_as_float[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2535 INIT(= N_("E975: Using a Blob as a Float")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2536 EXTERN char e_using_blob_as_string[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2537 INIT(= N_("E976: Using a Blob as a String")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2538 EXTERN char e_can_only_compare_blob_with_blob[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2539 INIT(= N_("E977: Can only compare Blob with Blob")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2540 EXTERN char e_invalid_operation_for_blob[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2541 INIT(= N_("E978: Invalid operation for Blob")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2542 EXTERN char e_blob_index_out_of_range_nr[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2543 INIT(= N_("E979: Blob index out of range: %ld")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2544 # ifndef USE_INPUT_BUF |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2545 EXTERN char e_lowlevel_input_not_supported[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2546 INIT(= N_("E980: Lowlevel input not supported")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2547 # endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2548 #endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2549 EXTERN char e_command_not_allowed_in_rvim[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2550 INIT(= N_("E981: Command not allowed in rvim")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2551 #if defined(FEAT_TERMINAL) && defined(MSWIN) |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2552 EXTERN char e_conpty_is_not_available[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2553 INIT(= N_("E982: ConPTY is not available")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2554 #endif |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2555 EXTERN char e_duplicate_argument_str[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2556 INIT(= N_("E983: Duplicate argument: %s")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2557 EXTERN char e_scriptversion_used_outside_of_sourced_file[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2558 INIT(= N_("E984: :scriptversion used outside of a sourced file")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2559 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2560 EXTERN char e_dot_equal_not_supported_with_script_version_two[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2561 INIT(= N_("E985: .= is not supported with script version >= 2")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2562 EXTERN char e_cannot_modify_tag_stack_within_tagfunc[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2563 INIT(= N_("E986: Cannot modify the tag stack within tagfunc")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2564 EXTERN char e_invalid_return_value_from_tagfunc[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2565 INIT(= N_("E987: Invalid return value from tagfunc")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2566 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2567 #ifdef GUI_MAY_SPAWN |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2568 EXTERN char e_gui_cannot_be_used_cannot_execute_gvim_exe[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2569 INIT(= N_("E988: GUI cannot be used. Cannot execute gvim.exe.")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2570 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2571 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2572 EXTERN char e_non_default_argument_follows_default_argument[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2573 INIT(= N_("E989: Non-default argument follows default argument")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2574 EXTERN char e_missing_end_marker_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2575 INIT(= N_("E990: Missing end marker '%s'")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2576 EXTERN char e_cannot_use_heredoc_here[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2577 INIT(= N_("E991: Cannot use =<< here")); |
26972
cd1da076adb4
patch 8.2.4015: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
26968
diff
changeset
|
2578 #endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2579 EXTERN char e_not_allowed_in_modeline_when_modelineexpr_is_off[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2580 INIT(= N_("E992: Not allowed in a modeline when 'modelineexpr' is off")); |
26972
cd1da076adb4
patch 8.2.4015: build failure with tiny features
Bram Moolenaar <Bram@vim.org>
parents:
26968
diff
changeset
|
2581 #ifdef FEAT_EVAL |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2582 EXTERN char e_window_nr_is_not_popup_window[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
2583 INIT(= N_("E993: Window %d is not a popup window")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2584 EXTERN char e_not_allowed_in_popup_window[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2585 INIT(= N_("E994: Not allowed in a popup window")); |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2586 EXTERN char e_cannot_modify_existing_variable[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2587 INIT(= N_("E995: Cannot modify existing variable")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2588 EXTERN char e_cannot_lock_range[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2589 INIT(= N_("E996: Cannot lock a range")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2590 EXTERN char e_cannot_lock_option[] |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2591 INIT(= N_("E996: Cannot lock an option")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2592 EXTERN char e_cannot_lock_list_or_dict[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2593 INIT(= N_("E996: Cannot lock a list or dict")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2594 EXTERN char e_cannot_lock_environment_variable[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2595 INIT(= N_("E996: Cannot lock an environment variable")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2596 EXTERN char e_cannot_lock_register[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2597 INIT(= N_("E996: Cannot lock a register")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2598 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2599 #ifdef FEAT_PROP_POPUP |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2600 EXTERN char e_tabpage_not_found_nr[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2601 INIT(= N_("E997: Tabpage not found: %d")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2602 #endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2603 #ifdef FEAT_EVAL |
26877
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2604 EXTERN char e_reduce_of_an_empty_str_with_no_initial_value[] |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2605 INIT(= N_("E998: Reduce of an empty %s with no initial value")); |
06a137af96f8
patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26869
diff
changeset
|
2606 #endif |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2607 EXTERN char e_scriptversion_not_supported_nr[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2608 INIT(= N_("E999: scriptversion not supported: %d")); |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2609 // E1000 unused |
23390
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23362
diff
changeset
|
2610 #ifdef FEAT_EVAL |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2611 EXTERN char e_variable_not_found_str[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2612 INIT(= N_("E1001: Variable not found: %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2613 EXTERN char e_syntax_error_at_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2614 INIT(= N_("E1002: Syntax error at %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2615 EXTERN char e_missing_return_value[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2616 INIT(= N_("E1003: Missing return value")); |
23446
b1dbbc81a011
patch 8.2.2266: Vim9: it can be hard to see where white space is missing
Bram Moolenaar <Bram@vim.org>
parents:
23442
diff
changeset
|
2617 EXTERN char e_white_space_required_before_and_after_str_at_str[] |
b1dbbc81a011
patch 8.2.2266: Vim9: it can be hard to see where white space is missing
Bram Moolenaar <Bram@vim.org>
parents:
23442
diff
changeset
|
2618 INIT(= N_("E1004: White space required before and after '%s' at \"%s\"")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2619 EXTERN char e_too_many_argument_types[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2620 INIT(= N_("E1005: Too many argument types")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2621 EXTERN char e_str_is_used_as_argument[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2622 INIT(= N_("E1006: %s is used as an argument")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2623 EXTERN char e_mandatory_argument_after_optional_argument[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2624 INIT(= N_("E1007: Mandatory argument after optional argument")); |
29780
9f8dd1b77563
patch 9.0.0229: Vim9: error message for missing type is not clear
Bram Moolenaar <Bram@vim.org>
parents:
29696
diff
changeset
|
2625 EXTERN char e_missing_type_after_str[] |
9f8dd1b77563
patch 9.0.0229: Vim9: error message for missing type is not clear
Bram Moolenaar <Bram@vim.org>
parents:
29696
diff
changeset
|
2626 INIT(= N_("E1008: Missing <type> after %s")); |
9f8dd1b77563
patch 9.0.0229: Vim9: error message for missing type is not clear
Bram Moolenaar <Bram@vim.org>
parents:
29696
diff
changeset
|
2627 EXTERN char e_missing_gt_after_type_str[] |
9f8dd1b77563
patch 9.0.0229: Vim9: error message for missing type is not clear
Bram Moolenaar <Bram@vim.org>
parents:
29696
diff
changeset
|
2628 INIT(= N_("E1009: Missing > after type: %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2629 EXTERN char e_type_not_recognized_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2630 INIT(= N_("E1010: Type not recognized: %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2631 EXTERN char e_name_too_long_str[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2632 INIT(= N_("E1011: Name too long: %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2633 EXTERN char e_type_mismatch_expected_str_but_got_str[] |
22284
6b385c2b9ff5
patch 8.2.1691: Vim9: list<any> is not accepted where list<number> is expected
Bram Moolenaar <Bram@vim.org>
parents:
22272
diff
changeset
|
2634 INIT(= N_("E1012: Type mismatch; expected %s but got %s")); |
25326
cfbf40f749b0
patch 8.2.3200: Vim9: hard to guess where a type error is given
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
2635 EXTERN char e_type_mismatch_expected_str_but_got_str_in_str[] |
cfbf40f749b0
patch 8.2.3200: Vim9: hard to guess where a type error is given
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
2636 INIT(= N_("E1012: Type mismatch; expected %s but got %s in %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2637 EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2638 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s")); |
25326
cfbf40f749b0
patch 8.2.3200: Vim9: hard to guess where a type error is given
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
2639 EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str_in_str[] |
cfbf40f749b0
patch 8.2.3200: Vim9: hard to guess where a type error is given
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
2640 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s in %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2641 EXTERN char e_invalid_key_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2642 INIT(= N_("E1014: Invalid key: %s")); |
23183
4d5d12138b36
patch 8.2.2137: Vim9: :echo and :execute give error for empty argument
Bram Moolenaar <Bram@vim.org>
parents:
23175
diff
changeset
|
2643 EXTERN char e_name_expected_str[] |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2644 INIT(= N_("E1015: Name expected: %s")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2645 EXTERN char e_cannot_declare_a_scope_variable_str[] |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2646 INIT(= N_("E1016: Cannot declare a %s variable: %s")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2647 EXTERN char e_cannot_declare_an_environment_variable_str[] |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2648 INIT(= N_("E1016: Cannot declare an environment variable: %s")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2649 EXTERN char e_variable_already_declared_str[] |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2650 INIT(= N_("E1017: Variable already declared: %s")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2651 EXTERN char e_cannot_assign_to_constant_str[] |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2652 INIT(= N_("E1018: Cannot assign to a constant: %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2653 EXTERN char e_can_only_concatenate_to_string[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2654 INIT(= N_("E1019: Can only concatenate to string")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2655 EXTERN char e_cannot_use_operator_on_new_variable_str[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2656 INIT(= N_("E1020: Cannot use an operator on a new variable: %s")); |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2657 EXTERN char e_const_requires_a_value[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2658 INIT(= N_("E1021: Const requires a value")); |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2659 EXTERN char e_type_or_initialization_required[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2660 INIT(= N_("E1022: Type or initialization required")); |
21913
9fc27a955f00
patch 8.2.1506: Vim9: no error when using a number other than 0 or 1 as bool
Bram Moolenaar <Bram@vim.org>
parents:
21909
diff
changeset
|
2661 EXTERN char e_using_number_as_bool_nr[] |
23650
83a69ada0274
patch 8.2.2367: test failures on some less often used systems
Bram Moolenaar <Bram@vim.org>
parents:
23555
diff
changeset
|
2662 INIT(= N_("E1023: Using a Number as a Bool: %lld")); |
21833
e3f9528bddda
patch 8.2.1466: Vim9: cannot index or slice a variable with type "any"
Bram Moolenaar <Bram@vim.org>
parents:
21831
diff
changeset
|
2663 EXTERN char e_using_number_as_string[] |
e3f9528bddda
patch 8.2.1466: Vim9: cannot index or slice a variable with type "any"
Bram Moolenaar <Bram@vim.org>
parents:
21831
diff
changeset
|
2664 INIT(= N_("E1024: Using a Number as a String")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2665 EXTERN char e_using_rcurly_outside_if_block_scope[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2666 INIT(= N_("E1025: Using } outside of a block scope")); |
25388
83e906028a9d
patch 8.2.3231: build failure with small features
Bram Moolenaar <Bram@vim.org>
parents:
25384
diff
changeset
|
2667 #endif |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2668 EXTERN char e_missing_rcurly[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2669 INIT(= N_("E1026: Missing }")); |
25388
83e906028a9d
patch 8.2.3231: build failure with small features
Bram Moolenaar <Bram@vim.org>
parents:
25384
diff
changeset
|
2670 #ifdef FEAT_EVAL |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2671 EXTERN char e_missing_return_statement[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2672 INIT(= N_("E1027: Missing return statement")); |
22614
048a3033d19c
patch 8.2.1855: Vim9: get error message when nothing is wrong
Bram Moolenaar <Bram@vim.org>
parents:
22612
diff
changeset
|
2673 EXTERN char e_compiling_def_function_failed[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2674 INIT(= N_("E1028: Compiling :def function failed")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2675 EXTERN char e_expected_str_but_got_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2676 INIT(= N_("E1029: Expected %s but got %s")); |
22860
53acb89ec9f2
patch 8.2.1977: Vim9: error for using a string in a condition is confusing
Bram Moolenaar <Bram@vim.org>
parents:
22802
diff
changeset
|
2677 EXTERN char e_using_string_as_number_str[] |
53acb89ec9f2
patch 8.2.1977: Vim9: error for using a string in a condition is confusing
Bram Moolenaar <Bram@vim.org>
parents:
22802
diff
changeset
|
2678 INIT(= N_("E1030: Using a String as a Number: \"%s\"")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2679 EXTERN char e_cannot_use_void_value[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2680 INIT(= N_("E1031: Cannot use void value")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2681 EXTERN char e_missing_catch_or_finally[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2682 INIT(= N_("E1032: Missing :catch or :finally")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2683 EXTERN char e_catch_unreachable_after_catch_all[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2684 INIT(= N_("E1033: Catch unreachable after catch-all")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2685 EXTERN char e_cannot_use_reserved_name_str[] |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2686 INIT(= N_("E1034: Cannot use reserved name %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2687 EXTERN char e_percent_requires_number_arguments[] |
27152
c83631ad3d2a
patch 8.2.4105: translation related comment in the wrong place
Bram Moolenaar <Bram@vim.org>
parents:
27043
diff
changeset
|
2688 // xgettext:no-c-format |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2689 INIT(= N_("E1035: % requires number arguments")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2690 EXTERN char e_char_requires_number_or_float_arguments[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2691 INIT(= N_("E1036: %c requires number or float arguments")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2692 EXTERN char e_cannot_use_str_with_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2693 INIT(= N_("E1037: Cannot use \"%s\" with %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2694 EXTERN char e_vim9script_can_only_be_used_in_script[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2695 INIT(= N_("E1038: \"vim9script\" can only be used in a script")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2696 EXTERN char e_vim9script_must_be_first_command_in_script[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2697 INIT(= N_("E1039: \"vim9script\" must be the first command in a script")); |
23390
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23362
diff
changeset
|
2698 #endif |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2699 EXTERN char e_cannot_use_scriptversion_after_vim9script[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2700 INIT(= N_("E1040: Cannot use :scriptversion after :vim9script")); |
23390
9a5f12b36273
patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
23362
diff
changeset
|
2701 #ifdef FEAT_EVAL |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2702 EXTERN char e_redefining_script_item_str[] |
28160
859b037faea8
patch 8.2.4604: error for redefining a script item may be confusing
Bram Moolenaar <Bram@vim.org>
parents:
28115
diff
changeset
|
2703 INIT(= N_("E1041: Redefining script item: \"%s\"")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2704 EXTERN char e_export_can_only_be_used_in_vim9script[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2705 INIT(= N_("E1042: Export can only be used in vim9script")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2706 EXTERN char e_invalid_command_after_export[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2707 INIT(= N_("E1043: Invalid command after :export")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2708 EXTERN char e_export_with_invalid_argument[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2709 INIT(= N_("E1044: Export with invalid argument")); |
27356
84682ad16c31
patch 8.2.4206: condition with many "(" causes a crash
Bram Moolenaar <Bram@vim.org>
parents:
27291
diff
changeset
|
2710 // E1045 not used |
84682ad16c31
patch 8.2.4206: condition with many "(" causes a crash
Bram Moolenaar <Bram@vim.org>
parents:
27291
diff
changeset
|
2711 // E1046 not used |
25755
33ebec729787
patch 8.2.3413: Vim9: too many characters are allowed in import name
Bram Moolenaar <Bram@vim.org>
parents:
25751
diff
changeset
|
2712 EXTERN char e_syntax_error_in_import_str[] |
33ebec729787
patch 8.2.3413: Vim9: too many characters are allowed in import name
Bram Moolenaar <Bram@vim.org>
parents:
25751
diff
changeset
|
2713 INIT(= N_("E1047: Syntax error in import: %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2714 EXTERN char e_item_not_found_in_script_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2715 INIT(= N_("E1048: Item not found in script: %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2716 EXTERN char e_item_not_exported_in_script_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2717 INIT(= N_("E1049: Item not exported in script: %s")); |
30604
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
30576
diff
changeset
|
2718 #endif |
23346
2060f53b7c17
patch 8.2.2216: Vim9: range with missing colon can be hard to spot
Bram Moolenaar <Bram@vim.org>
parents:
23330
diff
changeset
|
2719 EXTERN char e_colon_required_before_range_str[] |
2060f53b7c17
patch 8.2.2216: Vim9: range with missing colon can be hard to spot
Bram Moolenaar <Bram@vim.org>
parents:
23330
diff
changeset
|
2720 INIT(= N_("E1050: Colon required before a range: %s")); |
30604
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
30576
diff
changeset
|
2721 #ifdef FEAT_EVAL |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2722 EXTERN char e_wrong_argument_type_for_plus[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2723 INIT(= N_("E1051: Wrong argument type for +")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2724 EXTERN char e_cannot_declare_an_option_str[] |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2725 INIT(= N_("E1052: Cannot declare an option: %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2726 EXTERN char e_could_not_import_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2727 INIT(= N_("E1053: Could not import \"%s\"")); |
24033
308d29307910
patch 8.2.2558: no error if a lambda argument shadows a variable
Bram Moolenaar <Bram@vim.org>
parents:
23982
diff
changeset
|
2728 EXTERN char e_variable_already_declared_in_script_str[] |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2729 INIT(= N_("E1054: Variable already declared in the script: %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2730 EXTERN char e_missing_name_after_dots[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2731 INIT(= N_("E1055: Missing name after ...")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2732 EXTERN char e_expected_type_str[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2733 INIT(= N_("E1056: Expected a type: %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2734 EXTERN char e_missing_enddef[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2735 INIT(= N_("E1057: Missing :enddef")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2736 EXTERN char e_function_nesting_too_deep[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2737 INIT(= N_("E1058: Function nesting too deep")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2738 EXTERN char e_no_white_space_allowed_before_colon_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2739 INIT(= N_("E1059: No white space allowed before colon: %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2740 EXTERN char e_expected_dot_after_name_str[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2741 INIT(= N_("E1060: Expected dot after name: %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2742 EXTERN char e_cannot_find_function_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2743 INIT(= N_("E1061: Cannot find function %s")); |
21833
e3f9528bddda
patch 8.2.1466: Vim9: cannot index or slice a variable with type "any"
Bram Moolenaar <Bram@vim.org>
parents:
21831
diff
changeset
|
2744 EXTERN char e_cannot_index_number[] |
e3f9528bddda
patch 8.2.1466: Vim9: cannot index or slice a variable with type "any"
Bram Moolenaar <Bram@vim.org>
parents:
21831
diff
changeset
|
2745 INIT(= N_("E1062: Cannot index a Number")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2746 EXTERN char e_type_mismatch_for_v_variable[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2747 INIT(= N_("E1063: Type mismatch for v: variable")); |
26386
712648e62913
patch 8.2.3724: build error for missing error message in small build
Bram Moolenaar <Bram@vim.org>
parents:
26380
diff
changeset
|
2748 #endif |
26380
ac0e63cbf00b
patch 8.2.3721: using memory freed by losing the clipboard selection
Bram Moolenaar <Bram@vim.org>
parents:
26378
diff
changeset
|
2749 EXTERN char e_yank_register_changed_while_using_it[] |
ac0e63cbf00b
patch 8.2.3721: using memory freed by losing the clipboard selection
Bram Moolenaar <Bram@vim.org>
parents:
26378
diff
changeset
|
2750 INIT(= N_("E1064: Yank register changed while using it")); |
27978
442ca2007bec
patch 8.2.4514: Vim9: some flow commands can be shortened
Bram Moolenaar <Bram@vim.org>
parents:
27970
diff
changeset
|
2751 EXTERN char e_command_cannot_be_shortened_str[] |
27970
212c5894b8b1
patch 8.2.4510: Vim9: shortening commands leads to confusing script
Bram Moolenaar <Bram@vim.org>
parents:
27968
diff
changeset
|
2752 INIT(= N_("E1065: Command cannot be shortened: %s")); |
26386
712648e62913
patch 8.2.3724: build error for missing error message in small build
Bram Moolenaar <Bram@vim.org>
parents:
26380
diff
changeset
|
2753 #ifdef FEAT_EVAL |
21909
a211bca98bc3
patch 8.2.1504: Vim9: white space checks are only done for a :def function
Bram Moolenaar <Bram@vim.org>
parents:
21833
diff
changeset
|
2754 EXTERN char e_cannot_declare_a_register_str[] |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2755 INIT(= N_("E1066: Cannot declare a register: %s")); |
21909
a211bca98bc3
patch 8.2.1504: Vim9: white space checks are only done for a :def function
Bram Moolenaar <Bram@vim.org>
parents:
21833
diff
changeset
|
2756 EXTERN char e_separator_mismatch_str[] |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2757 INIT(= N_("E1067: Separator mismatch: %s")); |
23888
d95403445b6b
patch 8.2.2486: Vim9: some errors for white space do not show context
Bram Moolenaar <Bram@vim.org>
parents:
23880
diff
changeset
|
2758 EXTERN char e_no_white_space_allowed_before_str_str[] |
d95403445b6b
patch 8.2.2486: Vim9: some errors for white space do not show context
Bram Moolenaar <Bram@vim.org>
parents:
23880
diff
changeset
|
2759 INIT(= N_("E1068: No white space allowed before '%s': %s")); |
23877
85cf06ddb2a8
patch 8.2.2480: Vim9: some errors for white space do not show context
Bram Moolenaar <Bram@vim.org>
parents:
23869
diff
changeset
|
2760 EXTERN char e_white_space_required_after_str_str[] |
85cf06ddb2a8
patch 8.2.2480: Vim9: some errors for white space do not show context
Bram Moolenaar <Bram@vim.org>
parents:
23869
diff
changeset
|
2761 INIT(= N_("E1069: White space required after '%s': %s")); |
26980
8796f1384750
patch 8.2.4019: Vim9: import mechanism is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
26972
diff
changeset
|
2762 EXTERN char e_invalid_string_for_import_str[] |
8796f1384750
patch 8.2.4019: Vim9: import mechanism is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
26972
diff
changeset
|
2763 INIT(= N_("E1071: Invalid string for :import: %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2764 EXTERN char e_cannot_compare_str_with_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2765 INIT(= N_("E1072: Cannot compare %s with %s")); |
21909
a211bca98bc3
patch 8.2.1504: Vim9: white space checks are only done for a :def function
Bram Moolenaar <Bram@vim.org>
parents:
21833
diff
changeset
|
2766 EXTERN char e_name_already_defined_str[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2767 INIT(= N_("E1073: Name already defined: %s")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2768 EXTERN char e_no_white_space_allowed_after_dot[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2769 INIT(= N_("E1074: No white space allowed after dot")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2770 EXTERN char e_namespace_not_supported_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2771 INIT(= N_("E1075: Namespace not supported: %s")); |
30310
029c59bf78f1
patch 9.0.0491: no good reason to build without the float feature
Bram Moolenaar <Bram@vim.org>
parents:
30306
diff
changeset
|
2772 // E1076 was deleted |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2773 EXTERN char e_missing_argument_type_for_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2774 INIT(= N_("E1077: Missing argument type for %s")); |
27960
be693de40634
patch 8.2.4505: Vim9: outdated "autocmd nested" still works
Bram Moolenaar <Bram@vim.org>
parents:
27950
diff
changeset
|
2775 #endif |
be693de40634
patch 8.2.4505: Vim9: outdated "autocmd nested" still works
Bram Moolenaar <Bram@vim.org>
parents:
27950
diff
changeset
|
2776 EXTERN char e_invalid_command_nested_did_you_mean_plusplus_nested[] |
be693de40634
patch 8.2.4505: Vim9: outdated "autocmd nested" still works
Bram Moolenaar <Bram@vim.org>
parents:
27950
diff
changeset
|
2777 INIT(= N_("E1078: Invalid command \"nested\", did you mean \"++nested\"?")); |
be693de40634
patch 8.2.4505: Vim9: outdated "autocmd nested" still works
Bram Moolenaar <Bram@vim.org>
parents:
27950
diff
changeset
|
2778 #ifdef FEAT_EVAL |
27950
aacc98a38cf3
patch 8.2.4500: Vim9: can declare a global variable on the command line
Bram Moolenaar <Bram@vim.org>
parents:
27869
diff
changeset
|
2779 EXTERN char e_cannot_declare_variable_on_command_line[] |
aacc98a38cf3
patch 8.2.4500: Vim9: can declare a global variable on the command line
Bram Moolenaar <Bram@vim.org>
parents:
27869
diff
changeset
|
2780 INIT(= N_("E1079: Cannot declare a variable on the command line")); |
27738
d754ac2f5ac5
patch 8.2.4395: some code lines not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
27718
diff
changeset
|
2781 EXTERN char e_invalid_assignment[] |
d754ac2f5ac5
patch 8.2.4395: some code lines not covered by tests
Bram Moolenaar <Bram@vim.org>
parents:
27718
diff
changeset
|
2782 INIT(= N_("E1080: Invalid assignment")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2783 EXTERN char e_cannot_unlet_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2784 INIT(= N_("E1081: Cannot unlet %s")); |
27718
3c71a65a389a
patch 8.2.4385: cannot build tiny version
Bram Moolenaar <Bram@vim.org>
parents:
27716
diff
changeset
|
2785 #endif |
27716
4097434c7c67
patch 8.2.4384: Vim9: error message not tested, some code not tested
Bram Moolenaar <Bram@vim.org>
parents:
27690
diff
changeset
|
2786 EXTERN char e_command_modifier_without_command[] |
4097434c7c67
patch 8.2.4384: Vim9: error message not tested, some code not tested
Bram Moolenaar <Bram@vim.org>
parents:
27690
diff
changeset
|
2787 INIT(= N_("E1082: Command modifier without command")); |
27718
3c71a65a389a
patch 8.2.4385: cannot build tiny version
Bram Moolenaar <Bram@vim.org>
parents:
27716
diff
changeset
|
2788 #ifdef FEAT_EVAL |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2789 EXTERN char e_missing_backtick[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2790 INIT(= N_("E1083: Missing backtick")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2791 EXTERN char e_cannot_delete_vim9_script_function_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2792 INIT(= N_("E1084: Cannot delete Vim9 script function %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2793 EXTERN char e_not_callable_type_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2794 INIT(= N_("E1085: Not a callable type: %s")); |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
2795 // E1086 unused |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2796 EXTERN char e_cannot_use_index_when_declaring_variable[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2797 INIT(= N_("E1087: Cannot use an index when declaring a variable")); |
27607
db1831f585a4
patch 8.2.4330: Vim9: no error if script imports itself
Bram Moolenaar <Bram@vim.org>
parents:
27595
diff
changeset
|
2798 EXTERN char e_script_cannot_import_itself[] |
db1831f585a4
patch 8.2.4330: Vim9: no error if script imports itself
Bram Moolenaar <Bram@vim.org>
parents:
27595
diff
changeset
|
2799 INIT(= N_("E1088: Script cannot import itself")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2800 EXTERN char e_unknown_variable_str[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2801 INIT(= N_("E1089: Unknown variable: %s")); |
31602
53c3df37a2b0
patch 9.0.1133: error message names do not match the items
Bram Moolenaar <Bram@vim.org>
parents:
31592
diff
changeset
|
2802 EXTERN char e_cannot_assign_to_argument_str[] |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2803 INIT(= N_("E1090: Cannot assign to argument %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2804 EXTERN char e_function_is_not_compiled_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2805 INIT(= N_("E1091: Function is not compiled: %s")); |
27527
92fe6aca4907
patch 8.2.4291: error number used twice
Bram Moolenaar <Bram@vim.org>
parents:
27472
diff
changeset
|
2806 EXTERN char e_cannot_nest_redir[] |
92fe6aca4907
patch 8.2.4291: error number used twice
Bram Moolenaar <Bram@vim.org>
parents:
27472
diff
changeset
|
2807 INIT(= N_("E1092: Cannot nest :redir")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2808 EXTERN char e_expected_nr_items_but_got_nr[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2809 INIT(= N_("E1093: Expected %d items but got %d")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2810 EXTERN char e_import_can_only_be_used_in_script[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2811 INIT(= N_("E1094: Import can only be used in a script")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2812 EXTERN char e_unreachable_code_after_return[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2813 INIT(= N_("E1095: Unreachable code after :return")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2814 EXTERN char e_returning_value_in_function_without_return_type[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2815 INIT(= N_("E1096: Returning a value in a function without a return type")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2816 EXTERN char e_line_incomplete[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2817 INIT(= N_("E1097: Line incomplete")); |
25495
7144d2ffc86b
patch 8.2.3284: no error for insert() or remove() changing a locked blob
Bram Moolenaar <Bram@vim.org>
parents:
25491
diff
changeset
|
2818 EXTERN char e_string_list_or_blob_required[] |
7144d2ffc86b
patch 8.2.3284: no error for insert() or remove() changing a locked blob
Bram Moolenaar <Bram@vim.org>
parents:
25491
diff
changeset
|
2819 INIT(= N_("E1098: String, List or Blob required")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2820 EXTERN char e_unknown_error_while_executing_str[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2821 INIT(= N_("E1099: Unknown error while executing %s")); |
26966
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2822 EXTERN char e_command_not_supported_in_vim9_script_missing_var_str[] |
ac75c145f0a9
patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
26964
diff
changeset
|
2823 INIT(= N_("E1100: Command not supported in Vim9 script (missing :var?): %s")); |
27669
5c4ab8d4472c
patch 8.2.4360: Vim9: allowing use of "s:" leads to inconsistencies
Bram Moolenaar <Bram@vim.org>
parents:
27607
diff
changeset
|
2824 EXTERN char e_cannot_declare_script_variable_in_function_str[] |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2825 INIT(= N_("E1101: Cannot declare a script variable in a function: %s")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2826 EXTERN char e_lambda_function_not_found_str[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2827 INIT(= N_("E1102: Lambda function not found: %s")); |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2828 EXTERN char e_dictionary_not_set[] |
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2829 INIT(= N_("E1103: Dictionary not set")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2830 EXTERN char e_missing_gt[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2831 INIT(= N_("E1104: Missing >")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2832 EXTERN char e_cannot_convert_str_to_string[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2833 INIT(= N_("E1105: Cannot convert %s to string")); |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2834 EXTERN char e_one_argument_too_many[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2835 INIT(= N_("E1106: One argument too many")); |
21821
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2836 EXTERN char e_nr_arguments_too_many[] |
0deb6f96a5a3
patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents:
21789
diff
changeset
|
2837 INIT(= N_("E1106: %d arguments too many")); |
21831
d8422de73113
patch 8.2.1465: Vim9: subscript not handled properly
Bram Moolenaar <Bram@vim.org>
parents:
21826
diff
changeset
|
2838 EXTERN char e_string_list_dict_or_blob_required[] |
d8422de73113
patch 8.2.1465: Vim9: subscript not handled properly
Bram Moolenaar <Bram@vim.org>
parents:
21826
diff
changeset
|
2839 INIT(= N_("E1107: String, List, Dict or Blob required")); |
21971
0bc43a704f56
patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents:
21913
diff
changeset
|
2840 EXTERN char e_list_item_nr_is_not_list[] |
0bc43a704f56
patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents:
21913
diff
changeset
|
2841 INIT(= N_("E1109: List item %d is not a List")); |
0bc43a704f56
patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents:
21913
diff
changeset
|
2842 EXTERN char e_list_item_nr_does_not_contain_3_numbers[] |
0bc43a704f56
patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents:
21913
diff
changeset
|
2843 INIT(= N_("E1110: List item %d does not contain 3 numbers")); |
0bc43a704f56
patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents:
21913
diff
changeset
|
2844 EXTERN char e_list_item_nr_range_invalid[] |
0bc43a704f56
patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents:
21913
diff
changeset
|
2845 INIT(= N_("E1111: List item %d range invalid")); |
0bc43a704f56
patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents:
21913
diff
changeset
|
2846 EXTERN char e_list_item_nr_cell_width_invalid[] |
0bc43a704f56
patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents:
21913
diff
changeset
|
2847 INIT(= N_("E1112: List item %d cell width invalid")); |
0bc43a704f56
patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents:
21913
diff
changeset
|
2848 EXTERN char e_overlapping_ranges_for_nr[] |
21975
2030f8267db9
patch 8.2.1537: memory acccess error when using setcellwidths()
Bram Moolenaar <Bram@vim.org>
parents:
21971
diff
changeset
|
2849 INIT(= N_("E1113: Overlapping ranges for 0x%lx")); |
31782
a19ef442c77a
patch 9.0.1223: cannot use setcellwidths() below 0x100
Bram Moolenaar <Bram@vim.org>
parents:
31732
diff
changeset
|
2850 EXTERN char e_only_values_of_0x80_and_higher_supported[] |
a19ef442c77a
patch 9.0.1223: cannot use setcellwidths() below 0x100
Bram Moolenaar <Bram@vim.org>
parents:
31732
diff
changeset
|
2851 INIT(= N_("E1114: Only values of 0x80 and higher supported")); |
22165
c512e6f57ff2
patch 8.2.1632: not checking the context of test_fails()
Bram Moolenaar <Bram@vim.org>
parents:
21975
diff
changeset
|
2852 EXTERN char e_assert_fails_fourth_argument[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2853 INIT(= N_("E1115: \"assert_fails()\" fourth argument must be a number")); |
22165
c512e6f57ff2
patch 8.2.1632: not checking the context of test_fails()
Bram Moolenaar <Bram@vim.org>
parents:
21975
diff
changeset
|
2854 EXTERN char e_assert_fails_fifth_argument[] |
22296
006b8ab9d554
patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents:
22284
diff
changeset
|
2855 INIT(= N_("E1116: \"assert_fails()\" fifth argument must be a string")); |
22216
f9b4576a618b
patch 8.2.1657: Vim9: no proper error for nested ":def!"
Bram Moolenaar <Bram@vim.org>
parents:
22165
diff
changeset
|
2856 EXTERN char e_cannot_use_bang_with_nested_def[] |
f9b4576a618b
patch 8.2.1657: Vim9: no proper error for nested ":def!"
Bram Moolenaar <Bram@vim.org>
parents:
22165
diff
changeset
|
2857 INIT(= N_("E1117: Cannot use ! with nested :def")); |
27394
69a48bcd1d80
patch 8.2.4225: Vim9: depth argument of :lockvar not parsed in :def function
Bram Moolenaar <Bram@vim.org>
parents:
27356
diff
changeset
|
2858 EXTERN char e_cannot_change_locked_list[] |
69a48bcd1d80
patch 8.2.4225: Vim9: depth argument of :lockvar not parsed in :def function
Bram Moolenaar <Bram@vim.org>
parents:
27356
diff
changeset
|
2859 INIT(= N_("E1118: Cannot change locked list")); |
69a48bcd1d80
patch 8.2.4225: Vim9: depth argument of :lockvar not parsed in :def function
Bram Moolenaar <Bram@vim.org>
parents:
27356
diff
changeset
|
2860 EXTERN char e_cannot_change_locked_list_item[] |
69a48bcd1d80
patch 8.2.4225: Vim9: depth argument of :lockvar not parsed in :def function
Bram Moolenaar <Bram@vim.org>
parents:
27356
diff
changeset
|
2861 INIT(= N_("E1119: Cannot change locked list item")); |
22272
eb1f5f618c75
patch 8.2.1685: Vim9: cannot declare a constant value
Bram Moolenaar <Bram@vim.org>
parents:
22216
diff
changeset
|
2862 EXTERN char e_cannot_change_dict[] |
eb1f5f618c75
patch 8.2.1685: Vim9: cannot declare a constant value
Bram Moolenaar <Bram@vim.org>
parents:
22216
diff
changeset
|
2863 INIT(= N_("E1120: Cannot change dict")); |
eb1f5f618c75
patch 8.2.1685: Vim9: cannot declare a constant value
Bram Moolenaar <Bram@vim.org>
parents:
22216
diff
changeset
|
2864 EXTERN char e_cannot_change_dict_item[] |
eb1f5f618c75
patch 8.2.1685: Vim9: cannot declare a constant value
Bram Moolenaar <Bram@vim.org>
parents:
22216
diff
changeset
|
2865 INIT(= N_("E1121: Cannot change dict item")); |
22300
528bb8e6e877
patch 8.2.1699: build failure due to missing error message
Bram Moolenaar <Bram@vim.org>
parents:
22296
diff
changeset
|
2866 EXTERN char e_variable_is_locked_str[] |
528bb8e6e877
patch 8.2.1699: build failure due to missing error message
Bram Moolenaar <Bram@vim.org>
parents:
22296
diff
changeset
|
2867 INIT(= N_("E1122: Variable is locked: %s")); |
22341
fc3350a38389
patch 8.2.1719: Vim9: no error if comma is missing in between arguments
Bram Moolenaar <Bram@vim.org>
parents:
22300
diff
changeset
|
2868 EXTERN char e_missing_comma_before_argument_str[] |
fc3350a38389
patch 8.2.1719: Vim9: no error if comma is missing in between arguments
Bram Moolenaar <Bram@vim.org>
parents:
22300
diff
changeset
|
2869 INIT(= N_("E1123: Missing comma before argument: %s")); |
22391
a9fb7efa31d6
patch 8.2.1744: Vim9: using ":const!" is weird
Bram Moolenaar <Bram@vim.org>
parents:
22341
diff
changeset
|
2870 EXTERN char e_str_cannot_be_used_in_legacy_vim_script[] |
a9fb7efa31d6
patch 8.2.1744: Vim9: using ":const!" is weird
Bram Moolenaar <Bram@vim.org>
parents:
22341
diff
changeset
|
2871 INIT(= N_("E1124: \"%s\" cannot be used in legacy Vim script")); |
a9fb7efa31d6
patch 8.2.1744: Vim9: using ":const!" is weird
Bram Moolenaar <Bram@vim.org>
parents:
22341
diff
changeset
|
2872 EXTERN char e_final_requires_a_value[] |
a9fb7efa31d6
patch 8.2.1744: Vim9: using ":const!" is weird
Bram Moolenaar <Bram@vim.org>
parents:
22341
diff
changeset
|
2873 INIT(= N_("E1125: Final requires a value")); |
22415
1cefe1c013ac
patch 8.2.1756: Vim9: :let will soon be disallowed
Bram Moolenaar <Bram@vim.org>
parents:
22391
diff
changeset
|
2874 EXTERN char e_cannot_use_let_in_vim9_script[] |
1cefe1c013ac
patch 8.2.1756: Vim9: :let will soon be disallowed
Bram Moolenaar <Bram@vim.org>
parents:
22391
diff
changeset
|
2875 INIT(= N_("E1126: Cannot use :let in Vim9 script")); |
22482
a1b3804163ca
patch 8.2.1789: Vim9: crash with invalid list constant
Bram Moolenaar <Bram@vim.org>
parents:
22415
diff
changeset
|
2876 EXTERN char e_missing_name_after_dot[] |
a1b3804163ca
patch 8.2.1789: Vim9: crash with invalid list constant
Bram Moolenaar <Bram@vim.org>
parents:
22415
diff
changeset
|
2877 INIT(= N_("E1127: Missing name after dot")); |
22555
7d25264c246c
patch 8.2.1826: Vim9: cannot use a {} block at script level
Bram Moolenaar <Bram@vim.org>
parents:
22482
diff
changeset
|
2878 EXTERN char e_endblock_without_block[] |
7d25264c246c
patch 8.2.1826: Vim9: cannot use a {} block at script level
Bram Moolenaar <Bram@vim.org>
parents:
22482
diff
changeset
|
2879 INIT(= N_("E1128: } without {")); |
22612
b08f435d5b86
patch 8.2.1854: Vim9: crash when throwing exception for NULL string
Bram Moolenaar <Bram@vim.org>
parents:
22555
diff
changeset
|
2880 EXTERN char e_throw_with_empty_string[] |
b08f435d5b86
patch 8.2.1854: Vim9: crash when throwing exception for NULL string
Bram Moolenaar <Bram@vim.org>
parents:
22555
diff
changeset
|
2881 INIT(= N_("E1129: Throw with empty string")); |
22633
6589dae9696c
patch 8.2.1865: Vim9: add() does not check type of argument
Bram Moolenaar <Bram@vim.org>
parents:
22614
diff
changeset
|
2882 EXTERN char e_cannot_add_to_null_list[] |
6589dae9696c
patch 8.2.1865: Vim9: add() does not check type of argument
Bram Moolenaar <Bram@vim.org>
parents:
22614
diff
changeset
|
2883 INIT(= N_("E1130: Cannot add to null list")); |
22637
4d4042683371
patch 8.2.1867: Vim9: argument to add() not checked for blob
Bram Moolenaar <Bram@vim.org>
parents:
22633
diff
changeset
|
2884 EXTERN char e_cannot_add_to_null_blob[] |
4d4042683371
patch 8.2.1867: Vim9: argument to add() not checked for blob
Bram Moolenaar <Bram@vim.org>
parents:
22633
diff
changeset
|
2885 INIT(= N_("E1131: Cannot add to null blob")); |
22794
42bb78d46354
patch 8.2.1945: crash when passing NULL function to reduce()
Bram Moolenaar <Bram@vim.org>
parents:
22740
diff
changeset
|
2886 EXTERN char e_missing_function_argument[] |
42bb78d46354
patch 8.2.1945: crash when passing NULL function to reduce()
Bram Moolenaar <Bram@vim.org>
parents:
22740
diff
changeset
|
2887 INIT(= N_("E1132: Missing function argument")); |
22802
3e0f909ca1f2
patch 8.2.1949: Vim9: using extend() on null dict is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
22794
diff
changeset
|
2888 EXTERN char e_cannot_extend_null_dict[] |
3e0f909ca1f2
patch 8.2.1949: Vim9: using extend() on null dict is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
22794
diff
changeset
|
2889 INIT(= N_("E1133: Cannot extend a null dict")); |
3e0f909ca1f2
patch 8.2.1949: Vim9: using extend() on null dict is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
22794
diff
changeset
|
2890 EXTERN char e_cannot_extend_null_list[] |
3e0f909ca1f2
patch 8.2.1949: Vim9: using extend() on null dict is silently ignored
Bram Moolenaar <Bram@vim.org>
parents:
22794
diff
changeset
|
2891 INIT(= N_("E1134: Cannot extend a null list")); |
22860
53acb89ec9f2
patch 8.2.1977: Vim9: error for using a string in a condition is confusing
Bram Moolenaar <Bram@vim.org>
parents:
22802
diff
changeset
|
2892 EXTERN char e_using_string_as_bool_str[] |
53acb89ec9f2
patch 8.2.1977: Vim9: error for using a string in a condition is confusing
Bram Moolenaar <Bram@vim.org>
parents:
22802
diff
changeset
|
2893 INIT(= N_("E1135: Using a String as a Bool: \"%s\"")); |
21789
f84625b961a8
patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2894 #endif |
22862
6d50182e7e24
patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents:
22860
diff
changeset
|
2895 EXTERN char e_cmd_mapping_must_end_with_cr_before_second_cmd[] |
26717
3f209f13883d
patch 8.2.3887: E1135 is used for two different errors
Bram Moolenaar <Bram@vim.org>
parents:
26660
diff
changeset
|
2896 INIT(= N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>")); |
32369
ffbae151e462
patch 9.0.1516: cannot use special keys in <Cmd> mapping
Bram Moolenaar <Bram@vim.org>
parents:
32357
diff
changeset
|
2897 // E1137 unused |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2898 #ifdef FEAT_EVAL |
22930
84567584951f
patch 8.2.2012: Vim9: confusing error message when using bool wrongly
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
2899 EXTERN char e_using_bool_as_number[] |
84567584951f
patch 8.2.2012: Vim9: confusing error message when using bool wrongly
Bram Moolenaar <Bram@vim.org>
parents:
22862
diff
changeset
|
2900 INIT(= N_("E1138: Using a Bool as a Number")); |
22936
00b0275ffe7f
patch 8.2.2015: Vim9: literal dict #{} is not like any other language
Bram Moolenaar <Bram@vim.org>
parents:
22930
diff
changeset
|
2901 EXTERN char e_missing_matching_bracket_after_dict_key[] |
00b0275ffe7f
patch 8.2.2015: Vim9: literal dict #{} is not like any other language
Bram Moolenaar <Bram@vim.org>
parents:
22930
diff
changeset
|
2902 INIT(= N_("E1139: Missing matching bracket after dict key")); |
22975
a943b175586a
patch 8.2.2034: Vim9: list unpack in for statement not compiled yet
Bram Moolenaar <Bram@vim.org>
parents:
22936
diff
changeset
|
2903 EXTERN char e_for_argument_must_be_sequence_of_lists[] |
25034
8d660d1cca8d
patch 8.2.3054: Vim9: unpack assignment using "_" after semicolon fails
Bram Moolenaar <Bram@vim.org>
parents:
25022
diff
changeset
|
2904 INIT(= N_("E1140: :for argument must be a sequence of lists")); |
23033
b98003d73150
patch 8.2.2063: Vim9: only one level of indexing supported
Bram Moolenaar <Bram@vim.org>
parents:
22975
diff
changeset
|
2905 EXTERN char e_indexable_type_required[] |
b98003d73150
patch 8.2.2063: Vim9: only one level of indexing supported
Bram Moolenaar <Bram@vim.org>
parents:
22975
diff
changeset
|
2906 INIT(= N_("E1141: Indexable type required")); |
27412
557a50b0d10b
patch 8.2.4234: test_garbagecollect_now() does not check v:testing
Bram Moolenaar <Bram@vim.org>
parents:
27394
diff
changeset
|
2907 EXTERN char e_calling_test_garbagecollect_now_while_v_testing_is_not_set[] |
557a50b0d10b
patch 8.2.4234: test_garbagecollect_now() does not check v:testing
Bram Moolenaar <Bram@vim.org>
parents:
27394
diff
changeset
|
2908 INIT(= N_("E1142: Calling test_garbagecollect_now() while v:testing is not set")); |
23183
4d5d12138b36
patch 8.2.2137: Vim9: :echo and :execute give error for empty argument
Bram Moolenaar <Bram@vim.org>
parents:
23175
diff
changeset
|
2909 EXTERN char e_empty_expression_str[] |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
23183
diff
changeset
|
2910 INIT(= N_("E1143: Empty expression: \"%s\"")); |
24543
b3bd27751e09
patch 8.2.2811: Vim9: error for missing white space doesn't say where
Bram Moolenaar <Bram@vim.org>
parents:
24490
diff
changeset
|
2911 EXTERN char e_command_str_not_followed_by_white_space_str[] |
b3bd27751e09
patch 8.2.2811: Vim9: error for missing white space doesn't say where
Bram Moolenaar <Bram@vim.org>
parents:
24490
diff
changeset
|
2912 INIT(= N_("E1144: Command \"%s\" is not followed by white space: %s")); |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
23183
diff
changeset
|
2913 EXTERN char e_missing_heredoc_end_marker_str[] |
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
23183
diff
changeset
|
2914 INIT(= N_("E1145: Missing heredoc end marker: %s")); |
23254
4b7e996354e0
patch 8.2.2173: Vim9: get internal error when assigning to undefined variable
Bram Moolenaar <Bram@vim.org>
parents:
23185
diff
changeset
|
2915 EXTERN char e_command_not_recognized_str[] |
4b7e996354e0
patch 8.2.2173: Vim9: get internal error when assigning to undefined variable
Bram Moolenaar <Bram@vim.org>
parents:
23185
diff
changeset
|
2916 INIT(= N_("E1146: Command not recognized: %s")); |
23266
00f7cd9b6033
patch 8.2.2179: Vim9: crash when indexing a dict with a number
Bram Moolenaar <Bram@vim.org>
parents:
23254
diff
changeset
|
2917 EXTERN char e_list_not_set[] |
00f7cd9b6033
patch 8.2.2179: Vim9: crash when indexing a dict with a number
Bram Moolenaar <Bram@vim.org>
parents:
23254
diff
changeset
|
2918 INIT(= N_("E1147: List not set")); |
00f7cd9b6033
patch 8.2.2179: Vim9: crash when indexing a dict with a number
Bram Moolenaar <Bram@vim.org>
parents:
23254
diff
changeset
|
2919 EXTERN char e_cannot_index_str[] |
00f7cd9b6033
patch 8.2.2179: Vim9: crash when indexing a dict with a number
Bram Moolenaar <Bram@vim.org>
parents:
23254
diff
changeset
|
2920 INIT(= N_("E1148: Cannot index a %s")); |
23330
e8eb4fd44902
patch 8.2.2208: Vim9: after reloading a script variable index may be invalid
Bram Moolenaar <Bram@vim.org>
parents:
23266
diff
changeset
|
2921 EXTERN char e_script_variable_invalid_after_reload_in_function_str[] |
e8eb4fd44902
patch 8.2.2208: Vim9: after reloading a script variable index may be invalid
Bram Moolenaar <Bram@vim.org>
parents:
23266
diff
changeset
|
2922 INIT(= N_("E1149: Script variable is invalid after reload in function %s")); |
23362
f181fe2150ab
patch 8.2.2224: Vim9: crash if script reloaded with different variable type
Bram Moolenaar <Bram@vim.org>
parents:
23346
diff
changeset
|
2923 EXTERN char e_script_variable_type_changed[] |
f181fe2150ab
patch 8.2.2224: Vim9: crash if script reloaded with different variable type
Bram Moolenaar <Bram@vim.org>
parents:
23346
diff
changeset
|
2924 INIT(= N_("E1150: Script variable type changed")); |
23442
f00d6ff51046
patch 8.2.2264: Vim9: no error for mismatched :endfunc or :enddef
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
2925 EXTERN char e_mismatched_endfunction[] |
f00d6ff51046
patch 8.2.2264: Vim9: no error for mismatched :endfunc or :enddef
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
2926 INIT(= N_("E1151: Mismatched endfunction")); |
f00d6ff51046
patch 8.2.2264: Vim9: no error for mismatched :endfunc or :enddef
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
2927 EXTERN char e_mismatched_enddef[] |
f00d6ff51046
patch 8.2.2264: Vim9: no error for mismatched :endfunc or :enddef
Bram Moolenaar <Bram@vim.org>
parents:
23390
diff
changeset
|
2928 INIT(= N_("E1152: Mismatched enddef")); |
25278
55c85c3a43a0
patch 8.2.3176: Vim9: no type error for comparing number with string
Bram Moolenaar <Bram@vim.org>
parents:
25272
diff
changeset
|
2929 EXTERN char e_invalid_operation_for_str[] |
55c85c3a43a0
patch 8.2.3176: Vim9: no type error for comparing number with string
Bram Moolenaar <Bram@vim.org>
parents:
25272
diff
changeset
|
2930 INIT(= N_("E1153: Invalid operation for %s")); |
23673
6d35bc0f161e
patch 8.2.2378: Vim9: no error message for dividing by zero
Bram Moolenaar <Bram@vim.org>
parents:
23650
diff
changeset
|
2931 EXTERN char e_divide_by_zero[] |
6d35bc0f161e
patch 8.2.2378: Vim9: no error message for dividing by zero
Bram Moolenaar <Bram@vim.org>
parents:
23650
diff
changeset
|
2932 INIT(= N_("E1154: Divide by zero")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2933 #endif |
23758
97296182d336
patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents:
23673
diff
changeset
|
2934 EXTERN char e_cannot_define_autocommands_for_all_events[] |
97296182d336
patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents:
23673
diff
changeset
|
2935 INIT(= N_("E1155: Cannot define autocommands for ALL events")); |
23764
c4208c7ba1cb
patch 8.2.2423: missing error message
Bram Moolenaar <Bram@vim.org>
parents:
23758
diff
changeset
|
2936 EXTERN char e_cannot_change_arglist_recursively[] |
c4208c7ba1cb
patch 8.2.2423: missing error message
Bram Moolenaar <Bram@vim.org>
parents:
23758
diff
changeset
|
2937 INIT(= N_("E1156: Cannot change the argument list recursively")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2938 #ifdef FEAT_EVAL |
23808
baf9069f64ca
patch 8.2.2445: Vim9: no proper error for lambda missing return type
Bram Moolenaar <Bram@vim.org>
parents:
23764
diff
changeset
|
2939 EXTERN char e_missing_return_type[] |
baf9069f64ca
patch 8.2.2445: Vim9: no proper error for lambda missing return type
Bram Moolenaar <Bram@vim.org>
parents:
23764
diff
changeset
|
2940 INIT(= N_("E1157: Missing return type")); |
23816
525c9e218c69
patch 8.2.2449: Vim9: flatten() always changes the list type
Bram Moolenaar <Bram@vim.org>
parents:
23808
diff
changeset
|
2941 EXTERN char e_cannot_use_flatten_in_vim9_script[] |
27424
b17fe5191b49
patch 8.2.4240: error for using flatten() in Vim9 script is unclear
Bram Moolenaar <Bram@vim.org>
parents:
27412
diff
changeset
|
2942 INIT(= N_("E1158: Cannot use flatten() in Vim9 script, use flattennew()")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2943 #endif |
23869
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23816
diff
changeset
|
2944 EXTERN char e_cannot_split_window_when_closing_buffer[] |
5a4f9c5c1b99
patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents:
23816
diff
changeset
|
2945 INIT(= N_("E1159: Cannot split a window when closing the buffer")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2946 #ifdef FEAT_EVAL |
23880
6559c0d6eb4c
patch 8.2.2482: build error
Bram Moolenaar <Bram@vim.org>
parents:
23877
diff
changeset
|
2947 EXTERN char e_cannot_use_default_for_variable_arguments[] |
6559c0d6eb4c
patch 8.2.2482: build error
Bram Moolenaar <Bram@vim.org>
parents:
23877
diff
changeset
|
2948 INIT(= N_("E1160: Cannot use a default for variable arguments")); |
23891
650070143c56
patch 8.2.2488: json_encode() gives generic argument error
Bram Moolenaar <Bram@vim.org>
parents:
23888
diff
changeset
|
2949 EXTERN char e_cannot_json_encode_str[] |
650070143c56
patch 8.2.2488: json_encode() gives generic argument error
Bram Moolenaar <Bram@vim.org>
parents:
23888
diff
changeset
|
2950 INIT(= N_("E1161: Cannot json encode a %s")); |
23909
5db7d275543c
patch 8.2.2497: no error when using more than one character for a register
Bram Moolenaar <Bram@vim.org>
parents:
23891
diff
changeset
|
2951 EXTERN char e_register_name_must_be_one_char_str[] |
5db7d275543c
patch 8.2.2497: no error when using more than one character for a register
Bram Moolenaar <Bram@vim.org>
parents:
23891
diff
changeset
|
2952 INIT(= N_("E1162: Register name must be one character: %s")); |
23917
4b417b776b95
patch 8.2.2501: not always clear where an error is reported
Bram Moolenaar <Bram@vim.org>
parents:
23909
diff
changeset
|
2953 EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str[] |
4b417b776b95
patch 8.2.2501: not always clear where an error is reported
Bram Moolenaar <Bram@vim.org>
parents:
23909
diff
changeset
|
2954 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s")); |
25326
cfbf40f749b0
patch 8.2.3200: Vim9: hard to guess where a type error is given
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
2955 EXTERN char e_variable_nr_type_mismatch_expected_str_but_got_str_in_str[] |
cfbf40f749b0
patch 8.2.3200: Vim9: hard to guess where a type error is given
Bram Moolenaar <Bram@vim.org>
parents:
25320
diff
changeset
|
2956 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s in %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2957 #endif |
23938
2a885d095bff
patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some places
Bram Moolenaar <Bram@vim.org>
parents:
23917
diff
changeset
|
2958 EXTERN char e_vim9cmd_must_be_followed_by_command[] |
2a885d095bff
patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some places
Bram Moolenaar <Bram@vim.org>
parents:
23917
diff
changeset
|
2959 INIT(= N_("E1164: vim9cmd must be followed by a command")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2960 #ifdef FEAT_EVAL |
23982
9fcd71d0db89
patch 8.2.2533: Vim9: cannot use a range with :unlet
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
2961 EXTERN char e_cannot_use_range_with_assignment_str[] |
9fcd71d0db89
patch 8.2.2533: Vim9: cannot use a range with :unlet
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
2962 INIT(= N_("E1165: Cannot use a range with an assignment: %s")); |
9fcd71d0db89
patch 8.2.2533: Vim9: cannot use a range with :unlet
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
2963 EXTERN char e_cannot_use_range_with_dictionary[] |
9fcd71d0db89
patch 8.2.2533: Vim9: cannot use a range with :unlet
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
2964 INIT(= N_("E1166: Cannot use a range with a dictionary")); |
24033
308d29307910
patch 8.2.2558: no error if a lambda argument shadows a variable
Bram Moolenaar <Bram@vim.org>
parents:
23982
diff
changeset
|
2965 EXTERN char e_argument_name_shadows_existing_variable_str[] |
308d29307910
patch 8.2.2558: no error if a lambda argument shadows a variable
Bram Moolenaar <Bram@vim.org>
parents:
23982
diff
changeset
|
2966 INIT(= N_("E1167: Argument name shadows existing variable: %s")); |
308d29307910
patch 8.2.2558: no error if a lambda argument shadows a variable
Bram Moolenaar <Bram@vim.org>
parents:
23982
diff
changeset
|
2967 EXTERN char e_argument_already_declared_in_script_str[] |
308d29307910
patch 8.2.2558: no error if a lambda argument shadows a variable
Bram Moolenaar <Bram@vim.org>
parents:
23982
diff
changeset
|
2968 INIT(= N_("E1168: Argument already declared in the script: %s")); |
27356
84682ad16c31
patch 8.2.4206: condition with many "(" causes a crash
Bram Moolenaar <Bram@vim.org>
parents:
27291
diff
changeset
|
2969 EXTERN char e_expression_too_recursive_str[] |
84682ad16c31
patch 8.2.4206: condition with many "(" causes a crash
Bram Moolenaar <Bram@vim.org>
parents:
27291
diff
changeset
|
2970 INIT(= N_("E1169: Expression too recursive: %s")); |
29631
9d54c8e6c682
patch 9.0.0156: giving E1170 only in an expression is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29619
diff
changeset
|
2971 EXTERN char e_cannot_use_hash_curly_to_start_comment[] |
9d54c8e6c682
patch 9.0.0156: giving E1170 only in an expression is confusing
Bram Moolenaar <Bram@vim.org>
parents:
29619
diff
changeset
|
2972 INIT(= N_("E1170: Cannot use #{ to start a comment")); |
24188
c20e763bc73c
patch 8.2.2635: Vim9: cannot define an inline function
Bram Moolenaar <Bram@vim.org>
parents:
24176
diff
changeset
|
2973 EXTERN char e_missing_end_block[] |
c20e763bc73c
patch 8.2.2635: Vim9: cannot define an inline function
Bram Moolenaar <Bram@vim.org>
parents:
24176
diff
changeset
|
2974 INIT(= N_("E1171: Missing } after inline function")); |
c20e763bc73c
patch 8.2.2635: Vim9: cannot define an inline function
Bram Moolenaar <Bram@vim.org>
parents:
24176
diff
changeset
|
2975 EXTERN char e_cannot_use_default_values_in_lambda[] |
c20e763bc73c
patch 8.2.2635: Vim9: cannot define an inline function
Bram Moolenaar <Bram@vim.org>
parents:
24176
diff
changeset
|
2976 INIT(= N_("E1172: Cannot use default values in a lambda")); |
26792
30d8377ea1b1
patch 8.2.3924: Vim9: no error if something follows :enddef
Bram Moolenaar <Bram@vim.org>
parents:
26775
diff
changeset
|
2977 EXTERN char e_text_found_after_str_str[] |
30d8377ea1b1
patch 8.2.3924: Vim9: no error if something follows :enddef
Bram Moolenaar <Bram@vim.org>
parents:
26775
diff
changeset
|
2978 INIT(= N_("E1173: Text found after %s: %s")); |
24210
083f07f99e20
patch 8.2.2646: Vim9: error for not using string doesn't mentionargument
Bram Moolenaar <Bram@vim.org>
parents:
24208
diff
changeset
|
2979 EXTERN char e_string_required_for_argument_nr[] |
083f07f99e20
patch 8.2.2646: Vim9: error for not using string doesn't mentionargument
Bram Moolenaar <Bram@vim.org>
parents:
24208
diff
changeset
|
2980 INIT(= N_("E1174: String required for argument %d")); |
083f07f99e20
patch 8.2.2646: Vim9: error for not using string doesn't mentionargument
Bram Moolenaar <Bram@vim.org>
parents:
24208
diff
changeset
|
2981 EXTERN char e_non_empty_string_required_for_argument_nr[] |
24224
115c0196588d
patch 8.2.2653: build failure
Bram Moolenaar <Bram@vim.org>
parents:
24210
diff
changeset
|
2982 INIT(= N_("E1175: Non-empty string required for argument %d")); |
115c0196588d
patch 8.2.2653: build failure
Bram Moolenaar <Bram@vim.org>
parents:
24210
diff
changeset
|
2983 EXTERN char e_misplaced_command_modifier[] |
115c0196588d
patch 8.2.2653: build failure
Bram Moolenaar <Bram@vim.org>
parents:
24210
diff
changeset
|
2984 INIT(= N_("E1176: Misplaced command modifier")); |
24234
7ffc795288dd
patch 8.2.2658: :for cannot loop over a string
Bram Moolenaar <Bram@vim.org>
parents:
24224
diff
changeset
|
2985 EXTERN char e_for_loop_on_str_not_supported[] |
7ffc795288dd
patch 8.2.2658: :for cannot loop over a string
Bram Moolenaar <Bram@vim.org>
parents:
24224
diff
changeset
|
2986 INIT(= N_("E1177: For loop on %s not supported")); |
24262
d0e86f1b34e7
patch 8.2.2672: Vim9: cannot use :lockvar and :unlockvar in compiled script
Bram Moolenaar <Bram@vim.org>
parents:
24234
diff
changeset
|
2987 EXTERN char e_cannot_lock_unlock_local_variable[] |
d0e86f1b34e7
patch 8.2.2672: Vim9: cannot use :lockvar and :unlockvar in compiled script
Bram Moolenaar <Bram@vim.org>
parents:
24234
diff
changeset
|
2988 INIT(= N_("E1178: Cannot lock or unlock a local variable")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2989 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2990 #ifdef FEAT_TERMINAL |
24270
3564fd251bb6
patch 8.2.2676: missing error message
Bram Moolenaar <Bram@vim.org>
parents:
24262
diff
changeset
|
2991 EXTERN char e_failed_to_extract_pwd_from_str_check_your_shell_config[] |
3564fd251bb6
patch 8.2.2676: missing error message
Bram Moolenaar <Bram@vim.org>
parents:
24262
diff
changeset
|
2992 INIT(= N_("E1179: Failed to extract PWD from %s, check your shell's config related to OSC 7")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2993 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
2994 #ifdef FEAT_EVAL |
24400
62e978382fa0
patch 8.2.2740: Vim9: lambda with varargs doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
24270
diff
changeset
|
2995 EXTERN char e_variable_arguments_type_must_be_list_str[] |
62e978382fa0
patch 8.2.2740: Vim9: lambda with varargs doesn't work
Bram Moolenaar <Bram@vim.org>
parents:
24270
diff
changeset
|
2996 INIT(= N_("E1180: Variable arguments type must be a list: %s")); |
24408
96e0b898d5b4
patch 8.2.2744: Vim9: no way to explicitly ignore an argument
Bram Moolenaar <Bram@vim.org>
parents:
24400
diff
changeset
|
2997 EXTERN char e_cannot_use_underscore_here[] |
96e0b898d5b4
patch 8.2.2744: Vim9: no way to explicitly ignore an argument
Bram Moolenaar <Bram@vim.org>
parents:
24400
diff
changeset
|
2998 INIT(= N_("E1181: Cannot use an underscore here")); |
27869
6a0ecde89d35
patch 8.2.4460: Vim9: wrong error for defining dict function
Bram Moolenaar <Bram@vim.org>
parents:
27764
diff
changeset
|
2999 EXTERN char e_cannot_define_dict_func_in_vim9_script_str[] |
6a0ecde89d35
patch 8.2.4460: Vim9: wrong error for defining dict function
Bram Moolenaar <Bram@vim.org>
parents:
27764
diff
changeset
|
3000 INIT(= N_("E1182: Cannot define a dict function in Vim9 script: %s")); |
24450
3e1886f1e875
patch 8.2.2765: Vim9: not all blob operations work
Bram Moolenaar <Bram@vim.org>
parents:
24434
diff
changeset
|
3001 EXTERN char e_cannot_use_range_with_assignment_operator_str[] |
3e1886f1e875
patch 8.2.2765: Vim9: not all blob operations work
Bram Moolenaar <Bram@vim.org>
parents:
24434
diff
changeset
|
3002 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3003 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3004 #ifdef FEAT_EVAL |
24475
96905804bf5a
patch 8.2.2777: Vim9: blob operations not tested in all ways
Bram Moolenaar <Bram@vim.org>
parents:
24450
diff
changeset
|
3005 EXTERN char e_blob_not_set[] |
96905804bf5a
patch 8.2.2777: Vim9: blob operations not tested in all ways
Bram Moolenaar <Bram@vim.org>
parents:
24450
diff
changeset
|
3006 INIT(= N_("E1184: Blob not set")); |
24490
08050e45bd06
patch 8.2.2785: Vim9: cannot redirect to local variable
Bram Moolenaar <Bram@vim.org>
parents:
24475
diff
changeset
|
3007 EXTERN char e_missing_redir_end[] |
08050e45bd06
patch 8.2.2785: Vim9: cannot redirect to local variable
Bram Moolenaar <Bram@vim.org>
parents:
24475
diff
changeset
|
3008 INIT(= N_("E1185: Missing :redir END")); |
24614
07b3d21a8b4b
patch 8.2.2846: Vim9: "echo Func()" does not give an error for using void
Bram Moolenaar <Bram@vim.org>
parents:
24543
diff
changeset
|
3009 EXTERN char e_expression_does_not_result_in_value_str[] |
07b3d21a8b4b
patch 8.2.2846: Vim9: "echo Func()" does not give an error for using void
Bram Moolenaar <Bram@vim.org>
parents:
24543
diff
changeset
|
3010 INIT(= N_("E1186: Expression does not result in a value: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3011 #endif |
24733
08eced3add83
patch 8.2.2905: no error when defaults.vim cannot be loaded
Bram Moolenaar <Bram@vim.org>
parents:
24614
diff
changeset
|
3012 EXTERN char e_failed_to_source_defaults[] |
08eced3add83
patch 8.2.2905: no error when defaults.vim cannot be loaded
Bram Moolenaar <Bram@vim.org>
parents:
24614
diff
changeset
|
3013 INIT(= N_("E1187: Failed to source defaults.vim")); |
30645
101f08b49ed3
patch 9.0.0657: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
30604
diff
changeset
|
3014 #if defined(FEAT_TERMINAL) |
24739
68e3adbeaf20
patch 8.2.2908: crash when using a terminal popup window from cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
24733
diff
changeset
|
3015 EXTERN char e_cannot_open_terminal_from_command_line_window[] |
68e3adbeaf20
patch 8.2.2908: crash when using a terminal popup window from cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
24733
diff
changeset
|
3016 INIT(= N_("E1188: Cannot open a terminal from the command line window")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3017 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3018 #ifdef FEAT_EVAL |
24776
7464d4c927f5
patch 8.2.2926: Vim9: no good error for using :legacy in a :def function
Bram Moolenaar <Bram@vim.org>
parents:
24739
diff
changeset
|
3019 EXTERN char e_cannot_use_legacy_with_command_str[] |
7464d4c927f5
patch 8.2.2926: Vim9: no good error for using :legacy in a :def function
Bram Moolenaar <Bram@vim.org>
parents:
24739
diff
changeset
|
3020 INIT(= N_("E1189: Cannot use :legacy with this command: %s")); |
24808
0bc60e26a2b5
patch 8.2.2942: Vim9: error when calling function with too few arguments
Bram Moolenaar <Bram@vim.org>
parents:
24776
diff
changeset
|
3021 EXTERN char e_one_argument_too_few[] |
0bc60e26a2b5
patch 8.2.2942: Vim9: error when calling function with too few arguments
Bram Moolenaar <Bram@vim.org>
parents:
24776
diff
changeset
|
3022 INIT(= N_("E1190: One argument too few")); |
0bc60e26a2b5
patch 8.2.2942: Vim9: error when calling function with too few arguments
Bram Moolenaar <Bram@vim.org>
parents:
24776
diff
changeset
|
3023 EXTERN char e_nr_arguments_too_few[] |
0bc60e26a2b5
patch 8.2.2942: Vim9: error when calling function with too few arguments
Bram Moolenaar <Bram@vim.org>
parents:
24776
diff
changeset
|
3024 INIT(= N_("E1190: %d arguments too few")); |
24854
c9ccb1976049
patch 8.2.2965: Vim9: crash when calling function that failed to compile
Bram Moolenaar <Bram@vim.org>
parents:
24808
diff
changeset
|
3025 EXTERN char e_call_to_function_that_failed_to_compile_str[] |
c9ccb1976049
patch 8.2.2965: Vim9: crash when calling function that failed to compile
Bram Moolenaar <Bram@vim.org>
parents:
24808
diff
changeset
|
3026 INIT(= N_("E1191: Call to function that failed to compile: %s")); |
24878
f67773e26cfa
patch 8.2.2977: crash when using a null function reference
Bram Moolenaar <Bram@vim.org>
parents:
24854
diff
changeset
|
3027 EXTERN char e_empty_function_name[] |
f67773e26cfa
patch 8.2.2977: crash when using a null function reference
Bram Moolenaar <Bram@vim.org>
parents:
24854
diff
changeset
|
3028 INIT(= N_("E1192: Empty function name")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3029 #endif |
24970
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3030 // libsodium |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3031 #ifdef FEAT_CRYPT |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3032 # ifndef FEAT_SODIUM |
24970
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3033 EXTERN char e_libsodium_not_built_in[] |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3034 INIT(= N_("E1193: cryptmethod xchacha20 not built into this Vim")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3035 # else |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3036 # if 0 |
24970
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3037 EXTERN char e_libsodium_cannot_encrypt_header[] |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3038 INIT(= N_("E1194: Cannot encrypt header, not enough space")); |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3039 EXTERN char e_libsodium_cannot_encrypt_buffer[] |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3040 INIT(= N_("E1195: Cannot encrypt buffer, not enough space")); |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3041 EXTERN char e_libsodium_cannot_decrypt_header[] |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3042 INIT(= N_("E1196: Cannot decrypt header, not enough space")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3043 # endif |
24970
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3044 EXTERN char e_libsodium_cannot_allocate_buffer[] |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3045 INIT(= N_("E1197: Cannot allocate_buffer for encryption")); |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3046 EXTERN char e_libsodium_decryption_failed_header_incomplete[] |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3047 INIT(= N_("E1198: Decryption failed: Header incomplete!")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3048 # if 0 |
24970
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3049 EXTERN char e_libsodium_cannot_decrypt_buffer[] |
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3050 INIT(= N_("E1199: Cannot decrypt buffer, not enough space")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3051 # endif |
24986
fa31a0ea09e1
patch 8.2.3030: Coverity reports a memory leak
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
3052 EXTERN char e_libsodium_decryption_failed[] |
24990
85d1e82ed134
patch 8.2.3032: build problems with MSVC, other crypt issues with libsodium
Bram Moolenaar <Bram@vim.org>
parents:
24986
diff
changeset
|
3053 INIT(= N_("E1200: Decryption failed!")); |
24986
fa31a0ea09e1
patch 8.2.3030: Coverity reports a memory leak
Bram Moolenaar <Bram@vim.org>
parents:
24970
diff
changeset
|
3054 EXTERN char e_libsodium_decryption_failed_premature[] |
24970
7e9e53a0368f
patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents:
24878
diff
changeset
|
3055 INIT(= N_("E1201: Decryption failed: pre-mature end of file!")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3056 # endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3057 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3058 #ifdef FEAT_EVAL |
25022
39551b6e0112
patch 8.2.3048: strange error for white space after ++ command
Bram Moolenaar <Bram@vim.org>
parents:
24990
diff
changeset
|
3059 EXTERN char e_no_white_space_allowed_after_str_str[] |
39551b6e0112
patch 8.2.3048: strange error for white space after ++ command
Bram Moolenaar <Bram@vim.org>
parents:
24990
diff
changeset
|
3060 INIT(= N_("E1202: No white space allowed after '%s': %s")); |
25036
3b8d3b383fd6
patch 8.2.3055: strange error for assigning to "x.key" on non-dictionary
Bram Moolenaar <Bram@vim.org>
parents:
25034
diff
changeset
|
3061 EXTERN char e_dot_can_only_be_used_on_dictionary_str[] |
3b8d3b383fd6
patch 8.2.3055: strange error for assigning to "x.key" on non-dictionary
Bram Moolenaar <Bram@vim.org>
parents:
25034
diff
changeset
|
3062 INIT(= N_("E1203: Dot can only be used on a dictionary: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3063 #endif |
28325
a3a760ee765f
patch 8.2.4688: new regexp engine does not give an error for "%v"
Bram Moolenaar <Bram@vim.org>
parents:
28255
diff
changeset
|
3064 EXTERN char e_regexp_number_after_dot_pos_search_chr[] |
25147
10b269321459
patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents:
25064
diff
changeset
|
3065 INIT(= N_("E1204: No Number allowed after .: '\\%%%c'")); |
25174
b32c83317492
patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents:
25147
diff
changeset
|
3066 EXTERN char e_no_white_space_allowed_between_option_and[] |
b32c83317492
patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents:
25147
diff
changeset
|
3067 INIT(= N_("E1205: No white space allowed between option and")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3068 #ifdef FEAT_EVAL |
25198
eafc0e07b188
patch 8.2.3135: Vim9: builtin function arguments not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
3069 EXTERN char e_dict_required_for_argument_nr[] |
eafc0e07b188
patch 8.2.3135: Vim9: builtin function arguments not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25174
diff
changeset
|
3070 INIT(= N_("E1206: Dictionary required for argument %d")); |
25202
e5d85e83a887
patch 8.2.3137: Vim9: no error when a line only has a variable name
Bram Moolenaar <Bram@vim.org>
parents:
25198
diff
changeset
|
3071 EXTERN char e_expression_without_effect_str[] |
e5d85e83a887
patch 8.2.3137: Vim9: no error when a line only has a variable name
Bram Moolenaar <Bram@vim.org>
parents:
25198
diff
changeset
|
3072 INIT(= N_("E1207: Expression without an effect: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3073 #endif |
25491
b9419c9d3da6
patch 8.2.3282: Vim9: error about using -complete without -nargs is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25443
diff
changeset
|
3074 EXTERN char e_complete_used_without_allowing_arguments[] |
b9419c9d3da6
patch 8.2.3282: Vim9: error about using -complete without -nargs is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25443
diff
changeset
|
3075 INIT(= N_("E1208: -complete used without allowing arguments")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3076 #ifdef FEAT_EVAL |
25216
9ead67e3c696
patch 8.2.3144: Vim9: no error when using an invalid value for a line number
Bram Moolenaar <Bram@vim.org>
parents:
25210
diff
changeset
|
3077 EXTERN char e_invalid_value_for_line_number_str[] |
9ead67e3c696
patch 8.2.3144: Vim9: no error when using an invalid value for a line number
Bram Moolenaar <Bram@vim.org>
parents:
25210
diff
changeset
|
3078 INIT(= N_("E1209: Invalid value for a line number: \"%s\"")); |
25252
acda780ffc3e
patch 8.2.3162: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25216
diff
changeset
|
3079 EXTERN char e_number_required_for_argument_nr[] |
acda780ffc3e
patch 8.2.3162: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25216
diff
changeset
|
3080 INIT(= N_("E1210: Number required for argument %d")); |
25272
712e867f9721
patch 8.2.3173: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25252
diff
changeset
|
3081 EXTERN char e_list_required_for_argument_nr[] |
712e867f9721
patch 8.2.3173: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25252
diff
changeset
|
3082 INIT(= N_("E1211: List required for argument %d")); |
712e867f9721
patch 8.2.3173: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25252
diff
changeset
|
3083 EXTERN char e_bool_required_for_argument_nr[] |
25292
eaf013720ec8
patch 8.2.3183: duplicate error numbers
Bram Moolenaar <Bram@vim.org>
parents:
25284
diff
changeset
|
3084 INIT(= N_("E1212: Bool required for argument %d")); |
25284
29191571eceb
patch 8.2.3179: Vim9: cannot assign to an imported variable at script level
Bram Moolenaar <Bram@vim.org>
parents:
25278
diff
changeset
|
3085 EXTERN char e_redefining_imported_item_str[] |
25298
90fa50a31994
patch 8.2.3186: Vim9: not all failures for import tested
Bram Moolenaar <Bram@vim.org>
parents:
25294
diff
changeset
|
3086 INIT(= N_("E1213: Redefining imported item \"%s\"")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3087 #endif |
30825
c7983f593fa7
patch 9.0.0747: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
30645
diff
changeset
|
3088 #if defined(FEAT_DIGRAPHS) |
25294
c626fd34b66f
patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents:
25292
diff
changeset
|
3089 EXTERN char e_digraph_must_be_just_two_characters_str[] |
c626fd34b66f
patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents:
25292
diff
changeset
|
3090 INIT(= N_("E1214: Digraph must be just two characters: %s")); |
c626fd34b66f
patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents:
25292
diff
changeset
|
3091 EXTERN char e_digraph_argument_must_be_one_character_str[] |
c626fd34b66f
patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents:
25292
diff
changeset
|
3092 INIT(= N_("E1215: Digraph must be one character: %s")); |
25378
890fd8211202
patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents:
25338
diff
changeset
|
3093 EXTERN char e_digraph_setlist_argument_must_be_list_of_lists_with_two_items[] |
890fd8211202
patch 8.2.3226: new digraph functions use old naming scheme
Bram Moolenaar <Bram@vim.org>
parents:
25338
diff
changeset
|
3094 INIT(= N_("E1216: digraph_setlist() argument must be a list of lists with two items")); |
25294
c626fd34b66f
patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents:
25292
diff
changeset
|
3095 #endif |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3096 #ifdef FEAT_EVAL |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
3097 # ifdef FEAT_JOB_CHANNEL |
25302
4d3c68196d05
patch 8.2.3188: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25298
diff
changeset
|
3098 EXTERN char e_chan_or_job_required_for_argument_nr[] |
25338
e2be9f3c5907
patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25326
diff
changeset
|
3099 INIT(= N_("E1217: Channel or Job required for argument %d")); |
25302
4d3c68196d05
patch 8.2.3188: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25298
diff
changeset
|
3100 EXTERN char e_job_required_for_argument_nr[] |
25338
e2be9f3c5907
patch 8.2.3206: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents:
25326
diff
changeset
|
3101 INIT(= N_("E1218: Job required for argument %d")); |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
3102 # endif |
25384
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3103 EXTERN char e_float_or_number_required_for_argument_nr[] |
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3104 INIT(= N_("E1219: Float or Number required for argument %d")); |
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3105 EXTERN char e_string_or_number_required_for_argument_nr[] |
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3106 INIT(= N_("E1220: String or Number required for argument %d")); |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
3107 # ifdef FEAT_JOB_CHANNEL |
25384
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3108 EXTERN char e_string_or_blob_required_for_argument_nr[] |
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3109 INIT(= N_("E1221: String or Blob required for argument %d")); |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
3110 # endif |
25384
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3111 EXTERN char e_string_or_list_required_for_argument_nr[] |
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3112 INIT(= N_("E1222: String or List required for argument %d")); |
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3113 EXTERN char e_string_or_dict_required_for_argument_nr[] |
25443
9ed6587bcc0f
patch 8.2.3258: error messages have the wrong text
Bram Moolenaar <Bram@vim.org>
parents:
25417
diff
changeset
|
3114 INIT(= N_("E1223: String or Dictionary required for argument %d")); |
9ed6587bcc0f
patch 8.2.3258: error messages have the wrong text
Bram Moolenaar <Bram@vim.org>
parents:
25417
diff
changeset
|
3115 EXTERN char e_string_number_or_list_required_for_argument_nr[] |
9ed6587bcc0f
patch 8.2.3258: error messages have the wrong text
Bram Moolenaar <Bram@vim.org>
parents:
25417
diff
changeset
|
3116 INIT(= N_("E1224: String, Number or List required for argument %d")); |
9ed6587bcc0f
patch 8.2.3258: error messages have the wrong text
Bram Moolenaar <Bram@vim.org>
parents:
25417
diff
changeset
|
3117 EXTERN char e_string_list_or_dict_required_for_argument_nr[] |
9ed6587bcc0f
patch 8.2.3258: error messages have the wrong text
Bram Moolenaar <Bram@vim.org>
parents:
25417
diff
changeset
|
3118 INIT(= N_("E1225: String, List or Dictionary required for argument %d")); |
25384
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3119 EXTERN char e_list_or_blob_required_for_argument_nr[] |
25443
9ed6587bcc0f
patch 8.2.3258: error messages have the wrong text
Bram Moolenaar <Bram@vim.org>
parents:
25417
diff
changeset
|
3120 INIT(= N_("E1226: List or Blob required for argument %d")); |
25384
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3121 EXTERN char e_list_or_dict_required_for_argument_nr[] |
e8e2c4d33b9b
patch 8.2.3229: Vim9: runtime and compile time type checks are not the same
Bram Moolenaar <Bram@vim.org>
parents:
25378
diff
changeset
|
3122 INIT(= N_("E1227: List or Dictionary required for argument %d")); |
25443
9ed6587bcc0f
patch 8.2.3258: error messages have the wrong text
Bram Moolenaar <Bram@vim.org>
parents:
25417
diff
changeset
|
3123 EXTERN char e_list_dict_or_blob_required_for_argument_nr[] |
9ed6587bcc0f
patch 8.2.3258: error messages have the wrong text
Bram Moolenaar <Bram@vim.org>
parents:
25417
diff
changeset
|
3124 INIT(= N_("E1228: List, Dictionary or Blob required for argument %d")); |
25403
9203b28ab453
patch 8.2.3238: Vim9: error message does not indicate the location
Bram Moolenaar <Bram@vim.org>
parents:
25388
diff
changeset
|
3125 EXTERN char e_expected_dictionary_for_using_key_str_but_got_str[] |
9203b28ab453
patch 8.2.3238: Vim9: error message does not indicate the location
Bram Moolenaar <Bram@vim.org>
parents:
25388
diff
changeset
|
3126 INIT(= N_("E1229: Expected dictionary for using key \"%s\", but got %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3127 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3128 #ifdef FEAT_SODIUM |
25417
1919361a53da
patch 8.2.3245: the crypt key may appear in a swap partition
Bram Moolenaar <Bram@vim.org>
parents:
25403
diff
changeset
|
3129 EXTERN char e_encryption_sodium_mlock_failed[] |
25521
2063b858cad9
patch 8.2.3297: cannot use all commands inside a {} block
Bram Moolenaar <Bram@vim.org>
parents:
25495
diff
changeset
|
3130 INIT(= N_("E1230: Encryption: sodium_mlock() failed")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3131 #endif |
25521
2063b858cad9
patch 8.2.3297: cannot use all commands inside a {} block
Bram Moolenaar <Bram@vim.org>
parents:
25495
diff
changeset
|
3132 EXTERN char e_cannot_use_bar_to_separate_commands_here_str[] |
2063b858cad9
patch 8.2.3297: cannot use all commands inside a {} block
Bram Moolenaar <Bram@vim.org>
parents:
25495
diff
changeset
|
3133 INIT(= N_("E1231: Cannot use a bar to separate commands here: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3134 #ifdef FEAT_EVAL |
25555
446f478d6fb1
patch 8.2.3314: behavior of exists() in a :def function is unpredictable
Bram Moolenaar <Bram@vim.org>
parents:
25521
diff
changeset
|
3135 EXTERN char e_argument_of_exists_compiled_must_be_literal_string[] |
446f478d6fb1
patch 8.2.3314: behavior of exists() in a :def function is unpredictable
Bram Moolenaar <Bram@vim.org>
parents:
25521
diff
changeset
|
3136 INIT(= N_("E1232: Argument of exists_compiled() must be a literal string")); |
446f478d6fb1
patch 8.2.3314: behavior of exists() in a :def function is unpredictable
Bram Moolenaar <Bram@vim.org>
parents:
25521
diff
changeset
|
3137 EXTERN char e_exists_compiled_can_only_be_used_in_def_function[] |
446f478d6fb1
patch 8.2.3314: behavior of exists() in a :def function is unpredictable
Bram Moolenaar <Bram@vim.org>
parents:
25521
diff
changeset
|
3138 INIT(= N_("E1233: exists_compiled() can only be used in a :def function")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3139 #endif |
25622
15b54e0a576b
patch 8.2.3347: check for legacy script is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
25555
diff
changeset
|
3140 EXTERN char e_legacy_must_be_followed_by_command[] |
15b54e0a576b
patch 8.2.3347: check for legacy script is incomplete
Bram Moolenaar <Bram@vim.org>
parents:
25555
diff
changeset
|
3141 INIT(= N_("E1234: legacy must be followed by a command")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3142 #ifdef FEAT_EVAL |
28405
473cfd79bcd8
patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents:
28403
diff
changeset
|
3143 // E1235 unused |
26980
8796f1384750
patch 8.2.4019: Vim9: import mechanism is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
26972
diff
changeset
|
3144 EXTERN char e_cannot_use_str_itself_it_is_imported[] |
8796f1384750
patch 8.2.4019: Vim9: import mechanism is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
26972
diff
changeset
|
3145 INIT(= N_("E1236: Cannot use %s itself, it is imported")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3146 #endif |
25796
60e4892dfa45
patch 8.2.3433: :delcommand does not take a -buffer option
Bram Moolenaar <Bram@vim.org>
parents:
25755
diff
changeset
|
3147 EXTERN char e_no_such_user_defined_command_in_current_buffer_str[] |
60e4892dfa45
patch 8.2.3433: :delcommand does not take a -buffer option
Bram Moolenaar <Bram@vim.org>
parents:
25755
diff
changeset
|
3148 INIT(= N_("E1237: No such user-defined command in current buffer: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3149 #ifdef FEAT_EVAL |
25806
8d55e978f95b
patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents:
25796
diff
changeset
|
3150 EXTERN char e_blob_required_for_argument_nr[] |
8d55e978f95b
patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents:
25796
diff
changeset
|
3151 INIT(= N_("E1238: Blob required for argument %d")); |
8d55e978f95b
patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents:
25796
diff
changeset
|
3152 EXTERN char e_invalid_value_for_blob_nr[] |
8d55e978f95b
patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents:
25796
diff
changeset
|
3153 INIT(= N_("E1239: Invalid value for blob: %d")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3154 #endif |
25917
79a5c8238a5d
patch 8.2.3492: crash when pasting too many times
Bram Moolenaar <Bram@vim.org>
parents:
25806
diff
changeset
|
3155 EXTERN char e_resulting_text_too_long[] |
79a5c8238a5d
patch 8.2.3492: crash when pasting too many times
Bram Moolenaar <Bram@vim.org>
parents:
25806
diff
changeset
|
3156 INIT(= N_("E1240: Resulting text too long")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3157 #ifdef FEAT_EVAL |
25939
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25917
diff
changeset
|
3158 EXTERN char e_separator_not_supported_str[] |
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25917
diff
changeset
|
3159 INIT(= N_("E1241: Separator not supported: %s")); |
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25917
diff
changeset
|
3160 EXTERN char e_no_white_space_allowed_before_separator_str[] |
377a7686a52f
patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents:
25917
diff
changeset
|
3161 INIT(= N_("E1242: No white space allowed before separator: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3162 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3163 #ifdef FEAT_GUI_GTK |
25982
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25939
diff
changeset
|
3164 EXTERN char e_ascii_code_not_in_range[] |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25939
diff
changeset
|
3165 INIT(= N_("E1243: ASCII code not in 32-127 range")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3166 #endif |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3167 #ifdef FEAT_EVAL |
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3168 # if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) |
26057
92c424550367
patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents:
26024
diff
changeset
|
3169 EXTERN char e_bad_color_string_str[] |
92c424550367
patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents:
26024
diff
changeset
|
3170 INIT(= N_("E1244: Bad color string: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3171 # endif |
26230
8b8470b511f5
patch 8.2.3646: using <sfile> in a function gives an unexpected result
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
3172 EXTERN char e_cannot_expand_sfile_in_vim9_function[] |
8b8470b511f5
patch 8.2.3646: using <sfile> in a function gives an unexpected result
Bram Moolenaar <Bram@vim.org>
parents:
26057
diff
changeset
|
3173 INIT(= N_("E1245: Cannot expand <sfile> in a Vim9 function")); |
26240
640b62dbf6cb
patch 8.2.3651: Vim9: no error for :lock or :unlock with unknown variable
Bram Moolenaar <Bram@vim.org>
parents:
26230
diff
changeset
|
3174 EXTERN char e_cannot_find_variable_to_unlock_str[] |
640b62dbf6cb
patch 8.2.3651: Vim9: no error for :lock or :unlock with unknown variable
Bram Moolenaar <Bram@vim.org>
parents:
26230
diff
changeset
|
3175 INIT(= N_("E1246: Cannot find variable to (un)lock: %s")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3176 #endif |
26256
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26240
diff
changeset
|
3177 EXTERN char e_line_number_out_of_range[] |
92fbed13ca4d
patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents:
26240
diff
changeset
|
3178 INIT(= N_("E1247: Line number out of range")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3179 #ifdef FEAT_EVAL |
26378
a926ccd92ae1
patch 8.2.3720: Vim9: Internal error when invoking closure in legacy context
Bram Moolenaar <Bram@vim.org>
parents:
26346
diff
changeset
|
3180 EXTERN char e_closure_called_from_invalid_context[] |
a926ccd92ae1
patch 8.2.3720: Vim9: Internal error when invoking closure in legacy context
Bram Moolenaar <Bram@vim.org>
parents:
26346
diff
changeset
|
3181 INIT(= N_("E1248: Closure called from invalid context")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3182 #endif |
26454
9998318235cd
patch 8.2.3757: an overlong highlight group name is silently truncated
Bram Moolenaar <Bram@vim.org>
parents:
26439
diff
changeset
|
3183 EXTERN char e_highlight_group_name_too_long[] |
9998318235cd
patch 8.2.3757: an overlong highlight group name is silently truncated
Bram Moolenaar <Bram@vim.org>
parents:
26439
diff
changeset
|
3184 INIT(= N_("E1249: Highlight group name too long")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3185 #ifdef FEAT_EVAL |
26578
06693d1afc48
patch 8.2.3818: cannot filter or map characters in a string
Bram Moolenaar <Bram@vim.org>
parents:
26454
diff
changeset
|
3186 EXTERN char e_argument_of_str_must_be_list_string_dictionary_or_blob[] |
06693d1afc48
patch 8.2.3818: cannot filter or map characters in a string
Bram Moolenaar <Bram@vim.org>
parents:
26454
diff
changeset
|
3187 INIT(= N_("E1250: Argument of %s must be a List, String, Dictionary or Blob")); |
26585
0d2a709e2ff0
patch 8.2.3822: leaking memory in map() and filter(), no string in Vim9
Bram Moolenaar <Bram@vim.org>
parents:
26578
diff
changeset
|
3188 EXTERN char e_list_dict_blob_or_string_required_for_argument_nr[] |
26638
6fd15d82e898
patch 8.2.3848: cannot use reduce() for a string
Bram Moolenaar <Bram@vim.org>
parents:
26624
diff
changeset
|
3189 INIT(= N_("E1251: List, Dictionary, Blob or String required for argument %d")); |
6fd15d82e898
patch 8.2.3848: cannot use reduce() for a string
Bram Moolenaar <Bram@vim.org>
parents:
26624
diff
changeset
|
3190 EXTERN char e_string_list_or_blob_required_for_argument_nr[] |
6fd15d82e898
patch 8.2.3848: cannot use reduce() for a string
Bram Moolenaar <Bram@vim.org>
parents:
26624
diff
changeset
|
3191 INIT(= N_("E1252: String, List or Blob required for argument %d")); |
26660
2b17f87b7bd1
patch 8.2.3859: Vim9: some code lines not tested
Bram Moolenaar <Bram@vim.org>
parents:
26646
diff
changeset
|
3192 EXTERN char e_cannot_use_script_variable_in_for_loop[] |
2b17f87b7bd1
patch 8.2.3859: Vim9: some code lines not tested
Bram Moolenaar <Bram@vim.org>
parents:
26646
diff
changeset
|
3193 INIT(= N_("E1254: Cannot use script variable in for loop")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3194 #endif |
26717
3f209f13883d
patch 8.2.3887: E1135 is used for two different errors
Bram Moolenaar <Bram@vim.org>
parents:
26660
diff
changeset
|
3195 EXTERN char e_cmd_mapping_must_end_with_cr[] |
3f209f13883d
patch 8.2.3887: E1135 is used for two different errors
Bram Moolenaar <Bram@vim.org>
parents:
26660
diff
changeset
|
3196 INIT(= N_("E1255: <Cmd> mapping must end with <CR>")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3197 #ifdef FEAT_EVAL |
26731
7f4cc4e58f75
patch 8.2.3894: Vim9: no proper type check for first argument of call()
Bram Moolenaar <Bram@vim.org>
parents:
26717
diff
changeset
|
3198 EXTERN char e_string_or_function_required_for_argument_nr[] |
7f4cc4e58f75
patch 8.2.3894: Vim9: no proper type check for first argument of call()
Bram Moolenaar <Bram@vim.org>
parents:
26717
diff
changeset
|
3199 INIT(= N_("E1256: String or function required for argument %d")); |
26992
8433e5c87651
patch 8.2.4025: error for import not ending in .vim does not work for .vimrc
Bram Moolenaar <Bram@vim.org>
parents:
26980
diff
changeset
|
3200 EXTERN char e_imported_script_must_use_as_or_end_in_dot_vim_str[] |
8433e5c87651
patch 8.2.4025: error for import not ending in .vim does not work for .vimrc
Bram Moolenaar <Bram@vim.org>
parents:
26980
diff
changeset
|
3201 INIT(= N_("E1257: Imported script must use \"as\" or end in .vim: %s")); |
26980
8796f1384750
patch 8.2.4019: Vim9: import mechanism is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
26972
diff
changeset
|
3202 EXTERN char e_no_dot_after_imported_name_str[] |
8796f1384750
patch 8.2.4019: Vim9: import mechanism is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
26972
diff
changeset
|
3203 INIT(= N_("E1258: No '.' after imported name: %s")); |
8796f1384750
patch 8.2.4019: Vim9: import mechanism is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
26972
diff
changeset
|
3204 EXTERN char e_missing_name_after_imported_name_str[] |
8796f1384750
patch 8.2.4019: Vim9: import mechanism is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
26972
diff
changeset
|
3205 INIT(= N_("E1259: Missing name after imported name: %s")); |
8796f1384750
patch 8.2.4019: Vim9: import mechanism is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
26972
diff
changeset
|
3206 EXTERN char e_cannot_unlet_imported_item_str[] |
8796f1384750
patch 8.2.4019: Vim9: import mechanism is too complicated
Bram Moolenaar <Bram@vim.org>
parents:
26972
diff
changeset
|
3207 INIT(= N_("E1260: Cannot unlet an imported item: %s")); |
26992
8433e5c87651
patch 8.2.4025: error for import not ending in .vim does not work for .vimrc
Bram Moolenaar <Bram@vim.org>
parents:
26980
diff
changeset
|
3208 EXTERN char e_cannot_import_dot_vim_without_using_as[] |
8433e5c87651
patch 8.2.4025: error for import not ending in .vim does not work for .vimrc
Bram Moolenaar <Bram@vim.org>
parents:
26980
diff
changeset
|
3209 INIT(= N_("E1261: Cannot import .vim without using \"as\"")); |
27030
c8809b8d19de
patch 8.2.4044: Vim9: no error when importing the same script twice
Bram Moolenaar <Bram@vim.org>
parents:
26992
diff
changeset
|
3210 EXTERN char e_cannot_import_same_script_twice_str[] |
c8809b8d19de
patch 8.2.4044: Vim9: no error when importing the same script twice
Bram Moolenaar <Bram@vim.org>
parents:
26992
diff
changeset
|
3211 INIT(= N_("E1262: Cannot import the same script twice: %s")); |
27472
55613f0d59bc
patch 8.2.4264: Vim9: can use old style autoload function name
Bram Moolenaar <Bram@vim.org>
parents:
27436
diff
changeset
|
3212 EXTERN char e_cannot_use_name_with_hash_in_vim9_script_use_export_instead[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
3213 INIT(= N_("E1263: Cannot use name with # in Vim9 script, use export instead")); |
27043
15f40772e10a
patch 8.2.4050: Vim9: need to prefix every item in an autoload script
Bram Moolenaar <Bram@vim.org>
parents:
27037
diff
changeset
|
3214 EXTERN char e_autoload_import_cannot_use_absolute_or_relative_path[] |
15f40772e10a
patch 8.2.4050: Vim9: need to prefix every item in an autoload script
Bram Moolenaar <Bram@vim.org>
parents:
27037
diff
changeset
|
3215 INIT(= N_("E1264: Autoload import cannot use absolute or relative path: %s")); |
27173
04af0c68dba8
patch 8.2.4115: cannot use a method with a complex expression
Bram Moolenaar <Bram@vim.org>
parents:
27152
diff
changeset
|
3216 EXTERN char e_cannot_use_partial_here[] |
04af0c68dba8
patch 8.2.4115: cannot use a method with a complex expression
Bram Moolenaar <Bram@vim.org>
parents:
27152
diff
changeset
|
3217 INIT(= N_("E1265: Cannot use a partial here")); |
27037
a0a37337428a
patch 8.2.4047: depending on the build features error messages are unused
Bram Moolenaar <Bram@vim.org>
parents:
27034
diff
changeset
|
3218 #endif |
27581
78e3b38b0d33
patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents:
27527
diff
changeset
|
3219 #if defined(FEAT_PYTHON3) && defined(MSWIN) |
78e3b38b0d33
patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents:
27527
diff
changeset
|
3220 EXTERN char e_critical_error_in_python3_initialization_check_your_installation[] |
78e3b38b0d33
patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents:
27527
diff
changeset
|
3221 INIT(= N_("E1266: Critical error in python3 initialization, check your python3 installation")); |
78e3b38b0d33
patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation fails
Bram Moolenaar <Bram@vim.org>
parents:
27527
diff
changeset
|
3222 #endif |
27595
d504745607bc
patch 8.2.4324: Vim9: script-local function name can start with "_"
Bram Moolenaar <Bram@vim.org>
parents:
27581
diff
changeset
|
3223 #ifdef FEAT_EVAL |
d504745607bc
patch 8.2.4324: Vim9: script-local function name can start with "_"
Bram Moolenaar <Bram@vim.org>
parents:
27581
diff
changeset
|
3224 EXTERN char e_function_name_must_start_with_capital_str[] |
d504745607bc
patch 8.2.4324: Vim9: script-local function name can start with "_"
Bram Moolenaar <Bram@vim.org>
parents:
27581
diff
changeset
|
3225 INIT(= N_("E1267: Function name must start with a capital: %s")); |
27669
5c4ab8d4472c
patch 8.2.4360: Vim9: allowing use of "s:" leads to inconsistencies
Bram Moolenaar <Bram@vim.org>
parents:
27607
diff
changeset
|
3226 EXTERN char e_cannot_use_s_colon_in_vim9_script_str[] |
5c4ab8d4472c
patch 8.2.4360: Vim9: allowing use of "s:" leads to inconsistencies
Bram Moolenaar <Bram@vim.org>
parents:
27607
diff
changeset
|
3227 INIT(= N_("E1268: Cannot use s: in Vim9 script: %s")); |
27690
fae9567b8024
patch 8.2.4371: Vim9: can create a script variable from a legacy function
Bram Moolenaar <Bram@vim.org>
parents:
27669
diff
changeset
|
3228 EXTERN char e_cannot_create_vim9_script_variable_in_function_str[] |
fae9567b8024
patch 8.2.4371: Vim9: can create a script variable from a legacy function
Bram Moolenaar <Bram@vim.org>
parents:
27669
diff
changeset
|
3229 INIT(= N_("E1269: Cannot create a Vim9 script variable in a function: %s")); |
27982
06c6563d3768
patch 8.2.4516: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
27980
diff
changeset
|
3230 #endif |
27980
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27978
diff
changeset
|
3231 EXTERN char e_cannot_use_s_backslash_in_vim9_script[] |
40e35cefeac6
patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents:
27978
diff
changeset
|
3232 INIT(= N_("E1270: Cannot use :s\\/sub/ in Vim9 script")); |
28097
632a84e2ce92
patch 8.2.4573: a nested function is compiled for debugging without context
Bram Moolenaar <Bram@vim.org>
parents:
27982
diff
changeset
|
3233 #ifdef FEAT_EVAL |
632a84e2ce92
patch 8.2.4573: a nested function is compiled for debugging without context
Bram Moolenaar <Bram@vim.org>
parents:
27982
diff
changeset
|
3234 EXTERN char e_compiling_closure_without_context_str[] |
28731
3632627d5c81
patch 8.2.4890: inconsistent capitalization in error messages
Bram Moolenaar <Bram@vim.org>
parents:
28718
diff
changeset
|
3235 INIT(= N_("E1271: Compiling closure without context: %s")); |
28115
62a57c60edc1
patch 8.2.4582: useless code handling a type declaration
Bram Moolenaar <Bram@vim.org>
parents:
28097
diff
changeset
|
3236 EXTERN char e_using_type_not_in_script_context_str[] |
62a57c60edc1
patch 8.2.4582: useless code handling a type declaration
Bram Moolenaar <Bram@vim.org>
parents:
28097
diff
changeset
|
3237 INIT(= N_("E1272: Using type not in a script context: %s")); |
28097
632a84e2ce92
patch 8.2.4573: a nested function is compiled for debugging without context
Bram Moolenaar <Bram@vim.org>
parents:
27982
diff
changeset
|
3238 #endif |
28325
a3a760ee765f
patch 8.2.4688: new regexp engine does not give an error for "%v"
Bram Moolenaar <Bram@vim.org>
parents:
28255
diff
changeset
|
3239 EXTERN char e_nfa_regexp_missing_value_in_chr[] |
a3a760ee765f
patch 8.2.4688: new regexp engine does not give an error for "%v"
Bram Moolenaar <Bram@vim.org>
parents:
28255
diff
changeset
|
3240 INIT(= N_("E1273: (NFA regexp) missing value in '\\%%%c'")); |
28403
2655935b5ccc
patch 8.2.4726: cannot use expand() to get the script name
Bram Moolenaar <Bram@vim.org>
parents:
28325
diff
changeset
|
3241 EXTERN char e_no_script_file_name_to_substitute_for_script[] |
2655935b5ccc
patch 8.2.4726: cannot use expand() to get the script name
Bram Moolenaar <Bram@vim.org>
parents:
28325
diff
changeset
|
3242 INIT(= N_("E1274: No script file name to substitute for \"<script>\"")); |
28499
a35d54d01ade
patch 8.2.4774: crash when using a number for lambda name
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
3243 #ifdef FEAT_EVAL |
a35d54d01ade
patch 8.2.4774: crash when using a number for lambda name
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
3244 EXTERN char e_string_or_function_required_for_arrow_parens_expr[] |
a35d54d01ade
patch 8.2.4774: crash when using a number for lambda name
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
3245 INIT(= N_("E1275: String or function required for ->(expr)")); |
28674
38f7a132bba3
patch 8.2.4861: it is not easy to restore saved mappings
Bram Moolenaar <Bram@vim.org>
parents:
28499
diff
changeset
|
3246 EXTERN char e_illegal_map_mode_string_str[] |
38f7a132bba3
patch 8.2.4861: it is not easy to restore saved mappings
Bram Moolenaar <Bram@vim.org>
parents:
28499
diff
changeset
|
3247 INIT(= N_("E1276: Illegal map mode string: '%s'")); |
28678
a16dae0be398
patch 8.2.4863: accessing freed memory in test without the +channel feature
Bram Moolenaar <Bram@vim.org>
parents:
28674
diff
changeset
|
3248 # if !defined(FEAT_JOB_CHANNEL) |
a16dae0be398
patch 8.2.4863: accessing freed memory in test without the +channel feature
Bram Moolenaar <Bram@vim.org>
parents:
28674
diff
changeset
|
3249 EXTERN char e_channel_job_feature_not_available[] |
a16dae0be398
patch 8.2.4863: accessing freed memory in test without the +channel feature
Bram Moolenaar <Bram@vim.org>
parents:
28674
diff
changeset
|
3250 INIT(= N_("E1277: Channel and job feature is not available")); |
a16dae0be398
patch 8.2.4863: accessing freed memory in test without the +channel feature
Bram Moolenaar <Bram@vim.org>
parents:
28674
diff
changeset
|
3251 # endif |
28718
723c7d940cba
patch 8.2.4883: string interpolation only works in heredoc
Bram Moolenaar <Bram@vim.org>
parents:
28678
diff
changeset
|
3252 EXTERN char e_stray_closing_curly_str[] |
723c7d940cba
patch 8.2.4883: string interpolation only works in heredoc
Bram Moolenaar <Bram@vim.org>
parents:
28678
diff
changeset
|
3253 INIT(= N_("E1278: Stray '}' without a matching '{': %s")); |
723c7d940cba
patch 8.2.4883: string interpolation only works in heredoc
Bram Moolenaar <Bram@vim.org>
parents:
28678
diff
changeset
|
3254 EXTERN char e_missing_close_curly_str[] |
723c7d940cba
patch 8.2.4883: string interpolation only works in heredoc
Bram Moolenaar <Bram@vim.org>
parents:
28678
diff
changeset
|
3255 INIT(= N_("E1279: Missing '}': %s")); |
28499
a35d54d01ade
patch 8.2.4774: crash when using a number for lambda name
Bram Moolenaar <Bram@vim.org>
parents:
28405
diff
changeset
|
3256 #endif |
28790
a161c262e947
patch 8.2.4919: can add invalid bytes with :spellgood
Bram Moolenaar <Bram@vim.org>
parents:
28731
diff
changeset
|
3257 #ifdef FEAT_SPELL |
a161c262e947
patch 8.2.4919: can add invalid bytes with :spellgood
Bram Moolenaar <Bram@vim.org>
parents:
28731
diff
changeset
|
3258 EXTERN char e_illegal_character_in_word[] |
a161c262e947
patch 8.2.4919: can add invalid bytes with :spellgood
Bram Moolenaar <Bram@vim.org>
parents:
28731
diff
changeset
|
3259 INIT(= N_("E1280: Illegal character in word")); |
a161c262e947
patch 8.2.4919: can add invalid bytes with :spellgood
Bram Moolenaar <Bram@vim.org>
parents:
28731
diff
changeset
|
3260 #endif |
28911
e25196adb7c1
patch 8.2.4978: no error if engine selection atom is not at the start
Bram Moolenaar <Bram@vim.org>
parents:
28819
diff
changeset
|
3261 EXTERN char e_atom_engine_must_be_at_start_of_pattern[] |
e25196adb7c1
patch 8.2.4978: no error if engine selection atom is not at the start
Bram Moolenaar <Bram@vim.org>
parents:
28819
diff
changeset
|
3262 INIT(= N_("E1281: Atom '\\%%#=%c' must be at the start of the pattern")); |
28962
abdea69d21b6
patch 8.2.5003: cannot do bitwise shifts
Bram Moolenaar <Bram@vim.org>
parents:
28911
diff
changeset
|
3263 #ifdef FEAT_EVAL |
abdea69d21b6
patch 8.2.5003: cannot do bitwise shifts
Bram Moolenaar <Bram@vim.org>
parents:
28911
diff
changeset
|
3264 EXTERN char e_bitshift_ops_must_be_number[] |
29016
aadeddf38d9b
patch 8.2.5030: autocmd_add() can only handle one event and pattern
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
3265 INIT(= N_("E1282: Bitshift operands must be numbers")); |
30986
360f286b5869
patch 9.0.0828: various typos
Bram Moolenaar <Bram@vim.org>
parents:
30972
diff
changeset
|
3266 EXTERN char e_bitshift_ops_must_be_positive[] |
29016
aadeddf38d9b
patch 8.2.5030: autocmd_add() can only handle one event and pattern
Bram Moolenaar <Bram@vim.org>
parents:
29014
diff
changeset
|
3267 INIT(= N_("E1283: Bitshift amount must be a positive number")); |
28962
abdea69d21b6
patch 8.2.5003: cannot do bitwise shifts
Bram Moolenaar <Bram@vim.org>
parents:
28911
diff
changeset
|
3268 #endif |
29034
f3c014fe5c16
patch 8.2.5039: confusing error if first argument of popup_create() is wrong
Bram Moolenaar <Bram@vim.org>
parents:
29022
diff
changeset
|
3269 #if defined(FEAT_PROP_POPUP) |
f3c014fe5c16
patch 8.2.5039: confusing error if first argument of popup_create() is wrong
Bram Moolenaar <Bram@vim.org>
parents:
29022
diff
changeset
|
3270 EXTERN char e_argument_1_list_item_nr_dictionary_required[] |
f3c014fe5c16
patch 8.2.5039: confusing error if first argument of popup_create() is wrong
Bram Moolenaar <Bram@vim.org>
parents:
29022
diff
changeset
|
3271 INIT(= N_("E1284: Argument 1, list item %d: Dictionary required")); |
f3c014fe5c16
patch 8.2.5039: confusing error if first argument of popup_create() is wrong
Bram Moolenaar <Bram@vim.org>
parents:
29022
diff
changeset
|
3272 #endif |
29071
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3273 #ifdef FEAT_RELTIME |
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3274 EXTERN char e_could_not_clear_timeout_str[] |
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3275 INIT(= N_("E1285: Could not clear timeout: %s")); |
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3276 EXTERN char e_could_not_set_timeout_str[] |
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3277 INIT(= N_("E1286: Could not set timeout: %s")); |
32238
b2cce50602ca
patch 9.0.1450: MacOS: building fails if clock_gettime() is not available
Bram Moolenaar <Bram@vim.org>
parents:
32144
diff
changeset
|
3278 #ifndef PROF_NSEC |
29071
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3279 EXTERN char e_could_not_set_handler_for_timeout_str[] |
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3280 INIT(= N_("E1287: Could not set handler for timeout: %s")); |
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3281 EXTERN char e_could_not_reset_handler_for_timeout_str[] |
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3282 INIT(= N_("E1288: Could not reset handler for timeout: %s")); |
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3283 EXTERN char e_could_not_check_for_pending_sigalrm_str[] |
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3284 INIT(= N_("E1289: Could not check for pending SIGALRM: %s")); |
b90bca860b5a
patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents:
29034
diff
changeset
|
3285 #endif |
32144
f3987fde6dea
patch 9.0.1403: unused variables and functions
Bram Moolenaar <Bram@vim.org>
parents:
32088
diff
changeset
|
3286 #endif |
29255
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
3287 #ifdef FEAT_EVAL |
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
3288 EXTERN char e_substitute_nesting_too_deep[] |
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
3289 INIT(= N_("E1290: substitute nesting too deep")); |
29432
339fe2968690
patch 9.0.0058: Win32: cannot test low level events
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
3290 EXTERN char e_invalid_argument_nr[] |
339fe2968690
patch 9.0.0058: Win32: cannot test low level events
Bram Moolenaar <Bram@vim.org>
parents:
29255
diff
changeset
|
3291 INIT(= N_("E1291: Invalid argument: %ld")); |
29255
5ebc561444fe
patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents:
29071
diff
changeset
|
3292 #endif |
29444
44bb4a607125
patch 9.0.0064: confusing error when using "q:" in command line window
Bram Moolenaar <Bram@vim.org>
parents:
29432
diff
changeset
|
3293 EXTERN char e_cmdline_window_already_open[] |
44bb4a607125
patch 9.0.0064: confusing error when using "q:" in command line window
Bram Moolenaar <Bram@vim.org>
parents:
29432
diff
changeset
|
3294 INIT(= N_("E1292: Command-line window is already open")); |
29451
057c26b5c33a
patch 9.0.0067: cannot show virtual text
Bram Moolenaar <Bram@vim.org>
parents:
29444
diff
changeset
|
3295 #ifdef FEAT_PROP_POPUP |
057c26b5c33a
patch 9.0.0067: cannot show virtual text
Bram Moolenaar <Bram@vim.org>
parents:
29444
diff
changeset
|
3296 EXTERN char e_cannot_use_negative_id_after_adding_textprop_with_text[] |
29499
13a57ebccde1
patch 9.0.0091: duplicate error number
Bram Moolenaar <Bram@vim.org>
parents:
29451
diff
changeset
|
3297 INIT(= N_("E1293: Cannot use a negative id after adding a textprop with text")); |
29696
c1c599a367d4
patch 9.0.0188: strange effects when using "text_align" with non-zero column
Bram Moolenaar <Bram@vim.org>
parents:
29631
diff
changeset
|
3298 EXTERN char e_can_only_use_text_align_when_column_is_zero[] |
c1c599a367d4
patch 9.0.0188: strange effects when using "text_align" with non-zero column
Bram Moolenaar <Bram@vim.org>
parents:
29631
diff
changeset
|
3299 INIT(= N_("E1294: Can only use text_align when column is zero")); |
29451
057c26b5c33a
patch 9.0.0067: cannot show virtual text
Bram Moolenaar <Bram@vim.org>
parents:
29444
diff
changeset
|
3300 #endif |
29788
d08aa1bfe319
patch 9.0.0233: removing multiple text properties takes many calls
Bram Moolenaar <Bram@vim.org>
parents:
29780
diff
changeset
|
3301 #ifdef FEAT_PROP_POPUP |
d08aa1bfe319
patch 9.0.0233: removing multiple text properties takes many calls
Bram Moolenaar <Bram@vim.org>
parents:
29780
diff
changeset
|
3302 EXTERN char e_cannot_specify_both_type_and_types[] |
d08aa1bfe319
patch 9.0.0233: removing multiple text properties takes many calls
Bram Moolenaar <Bram@vim.org>
parents:
29780
diff
changeset
|
3303 INIT(= N_("E1295: Cannot specify both 'type' and 'types'")); |
29816
bbe62ea78aac
patch 9.0.0247: cannot add padding to virtual text without highlight
Bram Moolenaar <Bram@vim.org>
parents:
29788
diff
changeset
|
3304 EXTERN char e_can_only_use_left_padding_when_column_is_zero[] |
bbe62ea78aac
patch 9.0.0247: cannot add padding to virtual text without highlight
Bram Moolenaar <Bram@vim.org>
parents:
29788
diff
changeset
|
3305 INIT(= N_("E1296: Can only use left padding when column is zero")); |
29788
d08aa1bfe319
patch 9.0.0233: removing multiple text properties takes many calls
Bram Moolenaar <Bram@vim.org>
parents:
29780
diff
changeset
|
3306 #endif |
30015
adb0de8be4ce
patch 9.0.0345: error message for list argument could be clearer
Bram Moolenaar <Bram@vim.org>
parents:
29994
diff
changeset
|
3307 #ifdef FEAT_EVAL |
29994
86eb4aba16c3
patch 9.0.0335: checks for Dictionary argument often give a vague error
Bram Moolenaar <Bram@vim.org>
parents:
29863
diff
changeset
|
3308 EXTERN char e_non_null_dict_required_for_argument_nr[] |
86eb4aba16c3
patch 9.0.0335: checks for Dictionary argument often give a vague error
Bram Moolenaar <Bram@vim.org>
parents:
29863
diff
changeset
|
3309 INIT(= N_("E1297: Non-NULL Dictionary required for argument %d")); |
30015
adb0de8be4ce
patch 9.0.0345: error message for list argument could be clearer
Bram Moolenaar <Bram@vim.org>
parents:
29994
diff
changeset
|
3310 EXTERN char e_non_null_list_required_for_argument_nr[] |
adb0de8be4ce
patch 9.0.0345: error message for list argument could be clearer
Bram Moolenaar <Bram@vim.org>
parents:
29994
diff
changeset
|
3311 INIT(= N_("E1298: Non-NULL List required for argument %d")); |
adb0de8be4ce
patch 9.0.0345: error message for list argument could be clearer
Bram Moolenaar <Bram@vim.org>
parents:
29994
diff
changeset
|
3312 #endif |
30106
0e9b58353412
patch 9.0.0389: crash when 'tagfunc' closes the window
Bram Moolenaar <Bram@vim.org>
parents:
30015
diff
changeset
|
3313 EXTERN char e_window_unexpectedly_close_while_searching_for_tags[] |
0e9b58353412
patch 9.0.0389: crash when 'tagfunc' closes the window
Bram Moolenaar <Bram@vim.org>
parents:
30015
diff
changeset
|
3314 INIT(= N_("E1299: Window unexpectedly closed while searching for tags")); |
30108
0352577f1ba5
patch 9.0.0390: cannot use a partial with :defer
Bram Moolenaar <Bram@vim.org>
parents:
30106
diff
changeset
|
3315 #ifdef FEAT_EVAL |
0352577f1ba5
patch 9.0.0390: cannot use a partial with :defer
Bram Moolenaar <Bram@vim.org>
parents:
30106
diff
changeset
|
3316 EXTERN char e_cannot_use_partial_with_dictionary_for_defer[] |
0352577f1ba5
patch 9.0.0390: cannot use a partial with :defer
Bram Moolenaar <Bram@vim.org>
parents:
30106
diff
changeset
|
3317 INIT(= N_("E1300: Cannot use a partial with dictionary for :defer")); |
30188
ba22d5536d3e
patch 9.0.0430: cannot use repeat() with a blob
Bram Moolenaar <Bram@vim.org>
parents:
30108
diff
changeset
|
3318 EXTERN char e_string_number_list_or_blob_required_for_argument_nr[] |
ba22d5536d3e
patch 9.0.0430: cannot use repeat() with a blob
Bram Moolenaar <Bram@vim.org>
parents:
30108
diff
changeset
|
3319 INIT(= N_("E1301: String, Number, List or Blob required for argument %d")); |
30192
9f8b1f584395
patch 9.0.0432: crash when using for loop variable in closure
Bram Moolenaar <Bram@vim.org>
parents:
30188
diff
changeset
|
3320 EXTERN char e_script_variable_was_deleted[] |
9f8b1f584395
patch 9.0.0432: crash when using for loop variable in closure
Bram Moolenaar <Bram@vim.org>
parents:
30188
diff
changeset
|
3321 INIT(= N_("E1302: Script variable was deleted")); |
30203
a3016780f346
patch 9.0.0437: no error when custom completion function returns wrong type
Bram Moolenaar <Bram@vim.org>
parents:
30200
diff
changeset
|
3322 EXTERN char e_custom_list_completion_function_does_not_return_list_but_str[] |
a3016780f346
patch 9.0.0437: no error when custom completion function returns wrong type
Bram Moolenaar <Bram@vim.org>
parents:
30200
diff
changeset
|
3323 INIT(= N_("E1303: Custom list completion function does not return a List but a %s")); |
30217
e0cb5fb44859
patch 9.0.0444: trying to declare g:variable gives confusing error
Bram Moolenaar <Bram@vim.org>
parents:
30203
diff
changeset
|
3324 EXTERN char e_cannot_use_type_with_this_variable_str[] |
e0cb5fb44859
patch 9.0.0444: trying to declare g:variable gives confusing error
Bram Moolenaar <Bram@vim.org>
parents:
30203
diff
changeset
|
3325 INIT(= N_("E1304: Cannot use type with this variable: %s")); |
e0cb5fb44859
patch 9.0.0444: trying to declare g:variable gives confusing error
Bram Moolenaar <Bram@vim.org>
parents:
30203
diff
changeset
|
3326 #endif |
30306
43d942ff32ce
patch 9.0.0489: using "end_lnum" with virtual text causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30217
diff
changeset
|
3327 #ifdef FEAT_PROP_POPUP |
43d942ff32ce
patch 9.0.0489: using "end_lnum" with virtual text causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30217
diff
changeset
|
3328 EXTERN char e_cannot_use_length_endcol_and_endlnum_with_text[] |
43d942ff32ce
patch 9.0.0489: using "end_lnum" with virtual text causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30217
diff
changeset
|
3329 INIT(= N_("E1305: Cannot use \"length\", \"end_col\" and \"end_lnum\" with \"text\"")); |
43d942ff32ce
patch 9.0.0489: using "end_lnum" with virtual text causes problems
Bram Moolenaar <Bram@vim.org>
parents:
30217
diff
changeset
|
3330 #endif |
30333
fc0830246f49
patch 9.0.0502: a closure in a nested loop in a :def function does not work
Bram Moolenaar <Bram@vim.org>
parents:
30329
diff
changeset
|
3331 #ifdef FEAT_EVAL |
fc0830246f49
patch 9.0.0502: a closure in a nested loop in a :def function does not work
Bram Moolenaar <Bram@vim.org>
parents:
30329
diff
changeset
|
3332 EXTERN char e_loop_nesting_too_deep[] |
fc0830246f49
patch 9.0.0502: a closure in a nested loop in a :def function does not work
Bram Moolenaar <Bram@vim.org>
parents:
30329
diff
changeset
|
3333 INIT(= N_("E1306: Loop nesting too deep")); |
30576
72e6073a2822
patch 9.0.0623: error for modifying a const is not detected at compile time
Bram Moolenaar <Bram@vim.org>
parents:
30347
diff
changeset
|
3334 EXTERN char e_argument_nr_trying_to_modify_const_str[] |
72e6073a2822
patch 9.0.0623: error for modifying a const is not detected at compile time
Bram Moolenaar <Bram@vim.org>
parents:
30347
diff
changeset
|
3335 INIT(= N_("E1307: Argument %d: Trying to modify a const %s")); |
30972
62a42d860d87
patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
3336 EXTERN char e_cannot_resize_window_in_another_tab_page[] |
62a42d860d87
patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
3337 INIT(= N_("E1308: Cannot resize a window in another tab page")); |
30333
fc0830246f49
patch 9.0.0502: a closure in a nested loop in a :def function does not work
Bram Moolenaar <Bram@vim.org>
parents:
30329
diff
changeset
|
3338 #endif |
31077
6a2b04cd0213
patch 9.0.0873: using freed memory when executing mapclear at more prompt
Bram Moolenaar <Bram@vim.org>
parents:
30986
diff
changeset
|
3339 EXTERN char e_cannot_change_mappings_while_listing[] |
6a2b04cd0213
patch 9.0.0873: using freed memory when executing mapclear at more prompt
Bram Moolenaar <Bram@vim.org>
parents:
30986
diff
changeset
|
3340 INIT(= N_("E1309: Cannot change mappings while listing")); |
31079
082f526cfb96
patch 9.0.0874: using freed memory when executing unmenu at more prompt
Bram Moolenaar <Bram@vim.org>
parents:
31077
diff
changeset
|
3341 #if defined(FEAT_MENU) |
082f526cfb96
patch 9.0.0874: using freed memory when executing unmenu at more prompt
Bram Moolenaar <Bram@vim.org>
parents:
31077
diff
changeset
|
3342 EXTERN char e_cannot_change_menus_while_listing[] |
082f526cfb96
patch 9.0.0874: using freed memory when executing unmenu at more prompt
Bram Moolenaar <Bram@vim.org>
parents:
31077
diff
changeset
|
3343 INIT(= N_("E1310: Cannot change menus while listing")); |
082f526cfb96
patch 9.0.0874: using freed memory when executing unmenu at more prompt
Bram Moolenaar <Bram@vim.org>
parents:
31077
diff
changeset
|
3344 #endif |
31085
8c10a0b22015
patch 9.0.0877: using freed memory with :comclear while listing commands
Bram Moolenaar <Bram@vim.org>
parents:
31079
diff
changeset
|
3345 EXTERN char e_cannot_change_user_commands_while_listing[] |
8c10a0b22015
patch 9.0.0877: using freed memory with :comclear while listing commands
Bram Moolenaar <Bram@vim.org>
parents:
31079
diff
changeset
|
3346 INIT(= N_("E1311: Cannot change user commands while listing")); |
31146
f6d4c6a3b41c
patch 9.0.0907: restoring window after WinScrolled may fail
Bram Moolenaar <Bram@vim.org>
parents:
31085
diff
changeset
|
3347 EXTERN char e_not_allowed_to_change_window_layout_in_this_autocmd[] |
f6d4c6a3b41c
patch 9.0.0907: restoring window after WinScrolled may fail
Bram Moolenaar <Bram@vim.org>
parents:
31085
diff
changeset
|
3348 INIT(= N_("E1312: Not allowed to change the window layout in this autocmd")); |
31231
684e6dfa2fba
patch 9.0.0949: crash when unletting a variable while listing variables
Bram Moolenaar <Bram@vim.org>
parents:
31146
diff
changeset
|
3349 EXTERN char e_not_allowed_to_add_or_remove_entries_str[] |
684e6dfa2fba
patch 9.0.0949: crash when unletting a variable while listing variables
Bram Moolenaar <Bram@vim.org>
parents:
31146
diff
changeset
|
3350 INIT(= N_("E1313: Not allowed to add or remove entries (%s)")); |
31335
5acc0d2cf4f7
patch 9.0.1001: classes are not documented or implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
3351 #ifdef FEAT_EVAL |
5acc0d2cf4f7
patch 9.0.1001: classes are not documented or implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
3352 EXTERN char e_class_name_must_start_with_uppercase_letter_str[] |
5acc0d2cf4f7
patch 9.0.1001: classes are not documented or implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31231
diff
changeset
|
3353 INIT(= N_("E1314: Class name must start with an uppercase letter: %s")); |
31635
5c1b7a87466e
patch 9.0.1150: :interface is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31602
diff
changeset
|
3354 EXTERN char e_white_space_required_after_name_str[] |
5c1b7a87466e
patch 9.0.1150: :interface is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31602
diff
changeset
|
3355 INIT(= N_("E1315: White space required after name: %s")); |
31396
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3356 EXTERN char e_class_can_only_be_defined_in_vim9_script[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3357 INIT(= N_("E1316: Class can only be defined in Vim9 script")); |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3358 EXTERN char e_invalid_object_member_declaration_str[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3359 INIT(= N_("E1317: Invalid object member declaration: %s")); |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3360 EXTERN char e_not_valid_command_in_class_str[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3361 INIT(= N_("E1318: Not a valid command in a class: %s")); |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3362 EXTERN char e_using_class_as_number[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3363 INIT(= N_("E1319: Using a class as a Number")); |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3364 EXTERN char e_using_object_as_number[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3365 INIT(= N_("E1320: Using an object as a Number")); |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3366 EXTERN char e_using_class_as_float[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3367 INIT(= N_("E1321: Using a class as a Float")); |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3368 EXTERN char e_using_object_as_float[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3369 INIT(= N_("E1322: Using an object as a Float")); |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3370 EXTERN char e_using_class_as_string[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3371 INIT(= N_("E1323: Using a class as a String")); |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3372 EXTERN char e_using_object_as_string[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3373 INIT(= N_("E1324: Using an object as a String")); |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3374 EXTERN char e_method_not_found_on_class_str_str[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3375 INIT(= N_("E1325: Method not found on class \"%s\": %s")); |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3376 EXTERN char e_member_not_found_on_object_str_str[] |
307f68a41b03
patch 9.0.1031: Vim9 class is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31339
diff
changeset
|
3377 INIT(= N_("E1326: Member not found on object \"%s\": %s")); |
31416
f088f1d97eee
patch 9.0.1041: cannot define a method in a class
Bram Moolenaar <Bram@vim.org>
parents:
31396
diff
changeset
|
3378 EXTERN char e_object_required_found_str[] |
f088f1d97eee
patch 9.0.1041: cannot define a method in a class
Bram Moolenaar <Bram@vim.org>
parents:
31396
diff
changeset
|
3379 INIT(= N_("E1327: Object required, found %s")); |
31441
e572ff386670
patch 9.0.1053: default constructor arguments are not optional
Bram Moolenaar <Bram@vim.org>
parents:
31416
diff
changeset
|
3380 EXTERN char e_constructor_default_value_must_be_vnone_str[] |
e572ff386670
patch 9.0.1053: default constructor arguments are not optional
Bram Moolenaar <Bram@vim.org>
parents:
31416
diff
changeset
|
3381 INIT(= N_("E1328: Constructor default value must be v:none: %s")); |
31443
9ae3720f9bd9
patch 9.0.1054: object member can't get type from initializer
Bram Moolenaar <Bram@vim.org>
parents:
31441
diff
changeset
|
3382 EXTERN char e_cannot_get_object_member_type_from_initializer_str[] |
9ae3720f9bd9
patch 9.0.1054: object member can't get type from initializer
Bram Moolenaar <Bram@vim.org>
parents:
31441
diff
changeset
|
3383 INIT(= N_("E1329: Cannot get object member type from initializer: %s")); |
9ae3720f9bd9
patch 9.0.1054: object member can't get type from initializer
Bram Moolenaar <Bram@vim.org>
parents:
31441
diff
changeset
|
3384 EXTERN char e_invalid_type_for_object_member_str[] |
9ae3720f9bd9
patch 9.0.1054: object member can't get type from initializer
Bram Moolenaar <Bram@vim.org>
parents:
31441
diff
changeset
|
3385 INIT(= N_("E1330: Invalid type for object member: %s")); |
31483
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3386 EXTERN char e_public_must_be_followed_by_this_or_static[] |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3387 INIT(= N_("E1331: Public must be followed by \"this\" or \"static\"")); |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3388 EXTERN char e_public_member_name_cannot_start_with_underscore_str[] |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3389 INIT(= N_("E1332: Public member name cannot start with underscore: %s")); |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3390 EXTERN char e_cannot_access_private_member_str[] |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3391 INIT(= N_("E1333: Cannot access private member: %s")); |
31455
5ef28f5ff357
patch 9.0.1060: private and public object members are not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31443
diff
changeset
|
3392 EXTERN char e_object_member_not_found_str[] |
5ef28f5ff357
patch 9.0.1060: private and public object members are not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31443
diff
changeset
|
3393 INIT(= N_("E1334: Object member not found: %s")); |
31483
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3394 EXTERN char e_member_is_not_writable_str[] |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3395 INIT(= N_("E1335: Member is not writable: %s")); |
31455
5ef28f5ff357
patch 9.0.1060: private and public object members are not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31443
diff
changeset
|
3396 #endif |
31463
db72745d328c
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Bram Moolenaar <Bram@vim.org>
parents:
31455
diff
changeset
|
3397 EXTERN char e_internal_error_shortmess_too_long[] |
db72745d328c
patch 9.0.1064: code for making 'shortmess' temporarily empty is repeated
Bram Moolenaar <Bram@vim.org>
parents:
31455
diff
changeset
|
3398 INIT(= N_("E1336: Internal error: shortmess too long")); |
31483
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3399 #ifdef FEAT_EVAL |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3400 EXTERN char e_class_member_not_found_str[] |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3401 INIT(= N_("E1337: Class member not found: %s")); |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3402 EXTERN char e_member_not_found_on_class_str_str[] |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3403 INIT(= N_("E1338: Member not found on class \"%s\": %s")); |
1bebc2093e6b
patch 9.0.1074: class members are not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31463
diff
changeset
|
3404 #endif |
31489
966c87c57912
patch 9.0.1077: can add text property with negative ID before virtual text
Bram Moolenaar <Bram@vim.org>
parents:
31483
diff
changeset
|
3405 #ifdef FEAT_PROP_POPUP |
966c87c57912
patch 9.0.1077: can add text property with negative ID before virtual text
Bram Moolenaar <Bram@vim.org>
parents:
31483
diff
changeset
|
3406 EXTERN char e_cannot_add_textprop_with_text_after_using_textprop_with_negative_id[] |
966c87c57912
patch 9.0.1077: can add text property with negative ID before virtual text
Bram Moolenaar <Bram@vim.org>
parents:
31483
diff
changeset
|
3407 INIT(= N_("E1339: Cannot add a textprop with text after using a textprop with a negative id")); |
966c87c57912
patch 9.0.1077: can add text property with negative ID before virtual text
Bram Moolenaar <Bram@vim.org>
parents:
31483
diff
changeset
|
3408 #endif |
31592
65a2bae18b27
patch 9.0.1128: build failure
Bram Moolenaar <Bram@vim.org>
parents:
31489
diff
changeset
|
3409 #ifdef FEAT_EVAL |
65a2bae18b27
patch 9.0.1128: build failure
Bram Moolenaar <Bram@vim.org>
parents:
31489
diff
changeset
|
3410 EXTERN char e_argument_already_declared_in_class_str[] |
65a2bae18b27
patch 9.0.1128: build failure
Bram Moolenaar <Bram@vim.org>
parents:
31489
diff
changeset
|
3411 INIT(= N_("E1340: Argument already declared in the class: %s")); |
65a2bae18b27
patch 9.0.1128: build failure
Bram Moolenaar <Bram@vim.org>
parents:
31489
diff
changeset
|
3412 EXTERN char e_variable_already_declared_in_class_str[] |
65a2bae18b27
patch 9.0.1128: build failure
Bram Moolenaar <Bram@vim.org>
parents:
31489
diff
changeset
|
3413 INIT(= N_("E1341: Variable already declared in the class: %s")); |
31635
5c1b7a87466e
patch 9.0.1150: :interface is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31602
diff
changeset
|
3414 EXTERN char e_interface_can_only_be_defined_in_vim9_script[] |
5c1b7a87466e
patch 9.0.1150: :interface is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31602
diff
changeset
|
3415 INIT(= N_("E1342: Interface can only be defined in Vim9 script")); |
5c1b7a87466e
patch 9.0.1150: :interface is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31602
diff
changeset
|
3416 EXTERN char e_interface_name_must_start_with_uppercase_letter_str[] |
5c1b7a87466e
patch 9.0.1150: :interface is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31602
diff
changeset
|
3417 INIT(= N_("E1343: Interface name must start with an uppercase letter: %s")); |
5c1b7a87466e
patch 9.0.1150: :interface is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31602
diff
changeset
|
3418 EXTERN char e_cannot_initialize_member_in_interface[] |
5c1b7a87466e
patch 9.0.1150: :interface is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31602
diff
changeset
|
3419 INIT(= N_("E1344: Cannot initialize a member in an interface")); |
5c1b7a87466e
patch 9.0.1150: :interface is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31602
diff
changeset
|
3420 EXTERN char e_not_valid_command_in_interface_str[] |
5c1b7a87466e
patch 9.0.1150: :interface is not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31602
diff
changeset
|
3421 INIT(= N_("E1345: Not a valid command in an interface: %s")); |
31639
62237ea155d9
patch 9.0.1152: class "implements" argument not implemented
Bram Moolenaar <Bram@vim.org>
parents:
31635
diff
changeset
|
3422 EXTERN char e_interface_name_not_found_str[] |
62237ea155d9
patch 9.0.1152: class "implements" argument not implemented
Bram Moolenaar <Bram@vim.org>
parents:
31635
diff
changeset
|
3423 INIT(= N_("E1346: Interface name not found: %s")); |
62237ea155d9
patch 9.0.1152: class "implements" argument not implemented
Bram Moolenaar <Bram@vim.org>
parents:
31635
diff
changeset
|
3424 EXTERN char e_not_valid_interface_str[] |
62237ea155d9
patch 9.0.1152: class "implements" argument not implemented
Bram Moolenaar <Bram@vim.org>
parents:
31635
diff
changeset
|
3425 INIT(= N_("E1347: Not a valid interface: %s")); |
62237ea155d9
patch 9.0.1152: class "implements" argument not implemented
Bram Moolenaar <Bram@vim.org>
parents:
31635
diff
changeset
|
3426 EXTERN char e_member_str_of_interface_str_not_implemented[] |
62237ea155d9
patch 9.0.1152: class "implements" argument not implemented
Bram Moolenaar <Bram@vim.org>
parents:
31635
diff
changeset
|
3427 INIT(= N_("E1348: Member \"%s\" of interface \"%s\" not implemented")); |
62237ea155d9
patch 9.0.1152: class "implements" argument not implemented
Bram Moolenaar <Bram@vim.org>
parents:
31635
diff
changeset
|
3428 EXTERN char e_function_str_of_interface_str_not_implemented[] |
62237ea155d9
patch 9.0.1152: class "implements" argument not implemented
Bram Moolenaar <Bram@vim.org>
parents:
31635
diff
changeset
|
3429 INIT(= N_("E1349: Function \"%s\" of interface \"%s\" not implemented")); |
31649
520857d1fda7
patch 9.0.1157: "implements" only handles one interface name
Bram Moolenaar <Bram@vim.org>
parents:
31639
diff
changeset
|
3430 EXTERN char e_duplicate_implements[] |
520857d1fda7
patch 9.0.1157: "implements" only handles one interface name
Bram Moolenaar <Bram@vim.org>
parents:
31639
diff
changeset
|
3431 INIT(= N_("E1350: Duplicate \"implements\"")); |
520857d1fda7
patch 9.0.1157: "implements" only handles one interface name
Bram Moolenaar <Bram@vim.org>
parents:
31639
diff
changeset
|
3432 EXTERN char e_duplicate_interface_after_implements_str[] |
520857d1fda7
patch 9.0.1157: "implements" only handles one interface name
Bram Moolenaar <Bram@vim.org>
parents:
31639
diff
changeset
|
3433 INIT(= N_("E1351: Duplicate interface after \"implements\": %s")); |
31653
ec76f9d2319e
patch 9.0.1159: extends argument for class not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31649
diff
changeset
|
3434 EXTERN char e_duplicate_extends[] |
ec76f9d2319e
patch 9.0.1159: extends argument for class not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31649
diff
changeset
|
3435 INIT(= N_("E1352: Duplicate \"extends\"")); |
ec76f9d2319e
patch 9.0.1159: extends argument for class not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31649
diff
changeset
|
3436 EXTERN char e_class_name_not_found_str[] |
ec76f9d2319e
patch 9.0.1159: extends argument for class not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31649
diff
changeset
|
3437 INIT(= N_("E1353: Class name not found: %s")); |
ec76f9d2319e
patch 9.0.1159: extends argument for class not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31649
diff
changeset
|
3438 EXTERN char e_cannot_extend_str[] |
ec76f9d2319e
patch 9.0.1159: extends argument for class not implemented yet
Bram Moolenaar <Bram@vim.org>
parents:
31649
diff
changeset
|
3439 INIT(= N_("E1354: Cannot extend %s")); |
31692
2f1af1b2f82d
patch 9.0.1178: a child class cannot override functions from a base class
Bram Moolenaar <Bram@vim.org>
parents:
31653
diff
changeset
|
3440 EXTERN char e_duplicate_function_str[] |
2f1af1b2f82d
patch 9.0.1178: a child class cannot override functions from a base class
Bram Moolenaar <Bram@vim.org>
parents:
31653
diff
changeset
|
3441 INIT(= N_("E1355: Duplicate function: %s")); |
2f1af1b2f82d
patch 9.0.1178: a child class cannot override functions from a base class
Bram Moolenaar <Bram@vim.org>
parents:
31653
diff
changeset
|
3442 EXTERN char e_super_must_be_followed_by_dot[] |
2f1af1b2f82d
patch 9.0.1178: a child class cannot override functions from a base class
Bram Moolenaar <Bram@vim.org>
parents:
31653
diff
changeset
|
3443 INIT(= N_("E1356: \"super\" must be followed by a dot")); |
2f1af1b2f82d
patch 9.0.1178: a child class cannot override functions from a base class
Bram Moolenaar <Bram@vim.org>
parents:
31653
diff
changeset
|
3444 EXTERN char e_using_super_not_in_class_function[] |
2f1af1b2f82d
patch 9.0.1178: a child class cannot override functions from a base class
Bram Moolenaar <Bram@vim.org>
parents:
31653
diff
changeset
|
3445 INIT(= N_("E1357: Using \"super\" not in a class function")); |
31694
2f61e308b997
patch 9.0.1179: not all errors around inheritance are tested
Bram Moolenaar <Bram@vim.org>
parents:
31692
diff
changeset
|
3446 EXTERN char e_using_super_not_in_child_class[] |
2f61e308b997
patch 9.0.1179: not all errors around inheritance are tested
Bram Moolenaar <Bram@vim.org>
parents:
31692
diff
changeset
|
3447 INIT(= N_("E1358: Using \"super\" not in a child class")); |
31732
ef7a9a7eb197
patch 9.0.1198: abstract class not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31694
diff
changeset
|
3448 EXTERN char e_cannot_define_new_function_in_abstract_class[] |
ef7a9a7eb197
patch 9.0.1198: abstract class not supported yet
Bram Moolenaar <Bram@vim.org>
parents:
31694
diff
changeset
|
3449 INIT(= N_("E1359: Cannot define a \"new\" function in an abstract class")); |
31970
fe66019e7a23
patch 9.0.1317: crash when using an unset object variable
Bram Moolenaar <Bram@vim.org>
parents:
31833
diff
changeset
|
3450 EXTERN char e_using_null_object[] |
fe66019e7a23
patch 9.0.1317: crash when using an unset object variable
Bram Moolenaar <Bram@vim.org>
parents:
31833
diff
changeset
|
3451 INIT(= N_("E1360: Using a null object")); |
fe66019e7a23
patch 9.0.1317: crash when using an unset object variable
Bram Moolenaar <Bram@vim.org>
parents:
31833
diff
changeset
|
3452 #endif |
31992
a509eb37a813
patch 9.0.1328: error when using "none" for GUI color is confusing
Bram Moolenaar <Bram@vim.org>
parents:
31970
diff
changeset
|
3453 EXTERN char e_cannot_use_color_none_did_you_mean_none[] |
a509eb37a813
patch 9.0.1328: error when using "none" for GUI color is confusing
Bram Moolenaar <Bram@vim.org>
parents:
31970
diff
changeset
|
3454 INIT(= N_("E1361: Cannot use color \"none\", did you mean \"NONE\"?")); |
32051
e8c60d35fce3
patch 9.0.1357: using null_object results in an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31992
diff
changeset
|
3455 #ifdef FEAT_EVAL |
e8c60d35fce3
patch 9.0.1357: using null_object results in an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31992
diff
changeset
|
3456 EXTERN char e_cannot_use_non_null_object[] |
e8c60d35fce3
patch 9.0.1357: using null_object results in an internal error
Bram Moolenaar <Bram@vim.org>
parents:
31992
diff
changeset
|
3457 INIT(= N_("E1362: Cannot use a non-null object")); |
32088
cdab211f342a
patch 9.0.1375: crash when getting member of obj of unknown class
Bram Moolenaar <Bram@vim.org>
parents:
32051
diff
changeset
|
3458 EXTERN char e_incomplete_type[] |
cdab211f342a
patch 9.0.1375: crash when getting member of obj of unknown class
Bram Moolenaar <Bram@vim.org>
parents:
32051
diff
changeset
|
3459 INIT(= N_("E1363: Incomplete type")); |
cdab211f342a
patch 9.0.1375: crash when getting member of obj of unknown class
Bram Moolenaar <Bram@vim.org>
parents:
32051
diff
changeset
|
3460 #endif |
32290
9b0c304500cc
patch 9.0.1477: crash when recovering from corrupted swap file
Bram Moolenaar <Bram@vim.org>
parents:
32238
diff
changeset
|
3461 EXTERN char e_warning_pointer_block_corrupted[] |
9b0c304500cc
patch 9.0.1477: crash when recovering from corrupted swap file
Bram Moolenaar <Bram@vim.org>
parents:
32238
diff
changeset
|
3462 INIT(= N_("E1364: Warning: Pointer block corrupted")); |