annotate src/errors.h @ 26899:f78ad6ee739a v8.2.3978

patch 8.2.3978: build error when using dynamycally loaded Python 3 Commit: https://github.com/vim/vim/commit/6b1a99dfe33cf5a1d7f82febd81face85ac1b8a6 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 2 01:04:09 2022 +0000 patch 8.2.3978: build error when using dynamycally loaded Python 3 Problem: Build error when using dynamycally loaded Python 3. Solution: Adjust #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Jan 2022 02:15:03 +0100
parents d02d40f0261c
children aa65d1808bd0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 #ifdef FEAT_CMDWIN
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
19 EXTERN char e_invalid_in_cmdline_window[]
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
20 INIT(= N_("E11: Invalid in command-line window; <CR> executes, CTRL-C quits"));
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
21 #endif
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
22 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
23 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
24 EXTERN char e_file_exists[]
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
25 INIT(= N_("E13: File exists (add ! to override)"));
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
26 #ifdef FEAT_EVAL
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
27 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
28 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
29 #endif
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
30 EXTERN char e_invalid_range[]
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
31 INIT(= N_("E16: Invalid range"));
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
32 #if defined(UNIX) || defined(FEAT_SYN_HL) || defined(FEAT_SPELL)
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25036
diff changeset
33 EXTERN char e_src_is_directory[]
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"));
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25310
diff changeset
126 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
127 INIT(= N_("E50: Too many \\z("));
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25310
diff changeset
128 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
129 INIT(= N_("E51: Too many %s("));
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25310
diff changeset
130 EXTERN char e_unmatched_z[]
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25310
diff changeset
131 INIT(= N_("E52: Unmatched \\z("));
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25310
diff changeset
132 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
133 INIT(= N_("E53: Unmatched %s%%("));
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25310
diff changeset
134 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
135 INIT(= N_("E54: Unmatched %s("));
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_close[]
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25310
diff changeset
137 INIT(= N_("E55: 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_invalid_character_after_str_at[]
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25310
diff changeset
139 INIT(= N_("E59: invalid character after %s@"));
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25310
diff changeset
140 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
141 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
142 EXTERN char e_nested_str[]
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
143 INIT(= N_("E61: Nested %s*"));
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
144 EXTERN char e_nested_str_chr[]
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
145 INIT(= N_("E62: Nested %s%c"));
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
146 EXTERN char e_invalid_use_of_underscore[]
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
147 INIT(= N_("E63: invalid use of \\_"));
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
148 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
149 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
150 EXTERN char e_illegal_back_reference[]
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
151 INIT(= N_("E65: Illegal back reference"));
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
152 #ifdef FEAT_SYN_HL
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
153 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
154 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
155 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
156 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
157 #endif
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
158 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
159 INIT(= N_("E69: Missing ] after %s%%["));
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
160 EXTERN char e_empty_str_brackets[]
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
161 INIT(= N_("E70: Empty %s%%[]"));
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
162 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
163 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
164 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
165 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
166 EXTERN char e_tag_stack_empty[]
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
167 INIT(= N_("E73: tag stack empty"));
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
168 EXTERN char e_command_too_complex[]
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
169 INIT(= N_("E74: Command too complex"));
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
170 EXTERN char e_name_too_long[]
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
171 INIT(= N_("E75: Name too long"));
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
172 EXTERN char e_too_many_brackets[]
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
173 INIT(= N_("E76: Too many ["));
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26434
diff changeset
174 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
175 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
176 EXTERN char e_unknown_mark[]
b18f3b0f317c patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
177 INIT(= N_("E78: Unknown mark"));
b18f3b0f317c patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
178 EXTERN char e_cannot_expand_wildcards[]
b18f3b0f317c patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
179 INIT(= N_("E79: Cannot expand wildcards"));
b18f3b0f317c patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
180 EXTERN char e_error_while_writing[]
b18f3b0f317c patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
181 INIT(= N_("E80: Error while writing"));
b18f3b0f317c patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
182 #ifdef FEAT_EVAL
b18f3b0f317c patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
183 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
184 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
185 #endif
b18f3b0f317c patch 8.2.3750: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
186 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
187 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
188 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
189 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
190 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
191 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
192 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
193 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
194 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
195 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
196 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
197 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
198 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
199 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
200 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
201 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
202 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
203 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
204 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
205 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
206 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
207 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
208 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
209 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
210 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
211 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
212 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
213 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
214 #if defined(FEAT_DIFF)
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
215 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
216 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
217 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
218 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
219 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
220 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
221 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
222 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
223 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
224 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
225 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
226 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
227 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
228 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
229 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
230 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
231 #endif
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
232 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
233 INIT(= N_("E104: Escape not allowed in digraph"));
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
234 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
235 INIT(= N_("E105: Using :loadkeymap not in a sourced file"));
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
236 // E106 unused
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
237 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
238 INIT(= N_("E107: Missing parentheses: %s"));
25320
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25310
diff changeset
239 #ifdef FEAT_EVAL
26602
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
240 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
241 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
242 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
243 INIT(= N_("E109: Missing ':' after '?'"));
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
244 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
245 INIT(= N_("E110: Missing ')'"));
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
246 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
247 INIT(= N_("E111: Missing ']'"));
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
248 #endif
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
249 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
250 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
251 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
252 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
253 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
254 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
255 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
256 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
257 #ifdef FEAT_EVAL
fac6673086df patch 8.2.3830: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26585
diff changeset
258 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
259 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
260 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
261 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
262 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
263 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
264 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
265 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
266 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
267 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
268 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
269 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
270 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
271 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
272 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
273 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
274 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
275 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
276 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
277 INIT(= N_("E124: Missing '(': %s"));
3a2b222107a6 patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26731
diff changeset
278 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
279 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
280 EXTERN char e_missing_endfunction[]
3a2b222107a6 patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26731
diff changeset
281 INIT(= N_("E126: Missing :endfunction"));
3a2b222107a6 patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26731
diff changeset
282 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
283 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
284 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
285 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
286 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
287 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
288 // E130 unused
3a2b222107a6 patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26731
diff changeset
289 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
290 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
291 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
292 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
293 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
294 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
295 #endif
26757
3a2b222107a6 patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26731
diff changeset
296 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
297 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
298 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
299 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
300 #if defined(FEAT_VIMINFO)
3a2b222107a6 patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26731
diff changeset
301 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
302 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
303 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
304 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
305 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
306 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
307 #endif
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26792
diff changeset
308 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
309 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
310 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
311 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
312 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
313 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
314 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
315 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
316 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
317 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
318 EXTERN char e_non_numeric_argument_to_z[]
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26792
diff changeset
319 INIT(= N_("E144: non-numeric argument to :z"));
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26792
diff changeset
320 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
321 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
322 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
323 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
324 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
325 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
326 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
327 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
328 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
329 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
330 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
331 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
332 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
333 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
334 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
335 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
336 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
337 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
338 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
339 INIT(= N_("E154: Duplicate tag \"%s\" in file %s/%s"));
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26792
diff changeset
340 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
341 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
342 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
343 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
344 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
345 INIT(= N_("E157: Invalid sign ID: %d"));
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26792
diff changeset
346 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
347 INIT(= N_("E158: Invalid buffer name: %s"));
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26792
diff changeset
348 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
349 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
350 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
351 INIT(= N_("E160: Unknown sign command: %s"));
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26792
diff changeset
352 #ifdef FEAT_EVAL
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26792
diff changeset
353 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
354 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
355 #endif
26857
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
356 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
357 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
358 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
359 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
360 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
361 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
362 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
363 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
364 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
365 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
366 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
367 INIT(= N_("E167: :scriptencoding used outside of a sourced file"));
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
368 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
369 INIT(= N_("E168: :finish used outside of a sourced file"));
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
370 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
371 INIT(= N_("E169: Command too recursive"));
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
372 EXTERN char e_missing_endwhile[]
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
373 INIT(= N_("E170: Missing :endwhile"));
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
374 EXTERN char e_missing_endfor[]
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
375 INIT(= N_("E170: Missing :endfor"));
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
376 EXTERN char e_missing_endif[]
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
377 INIT(= N_("E171: Missing :endif"));
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
378 EXTERN char e_missing_marker[]
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
379 INIT(= N_("E172: Missing marker"));
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
380 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
381 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
382 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
383 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
384 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
385 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
386 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
387 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
388 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
389 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
390 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
391 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
392 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
393 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
394 EXTERN char e_argument_required_for_str[]
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
395 INIT(= N_("E179: argument required for %s"));
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
396 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
397 INIT(= N_("E180: Invalid complete value: %s"));
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
398 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
399 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
400 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
401 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
402 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
403 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
404 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
405 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
406 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
407 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
408 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
409 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
410 EXTERN char e_directory_unknown[]
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
411 INIT(= N_("E187: Directory unknown"));
2aeea8611342 patch 8.2.3957: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
412 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
413 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
414 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
415 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
416 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
417 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
418 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
419 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
420 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
421 INIT(= N_("E192: 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
422 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
423 INIT(= N_("E193: %s not inside a function"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
424 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
425 INIT(= N_("E194: No alternate file name to substitute for '#'"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
426 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
427 INIT(= N_("E195: Cannot open viminfo file for reading"));
25294
c626fd34b66f patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents: 25292
diff changeset
428 #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
429 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
430 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
431 #endif
26861
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
432 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
433 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
434 // E198 unused
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
435 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
436 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
437 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
438 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
439 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
440 INIT(= N_("E201: *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
441 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
442 INIT(= N_("E202: Conversion made file unreadable!"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
443 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
444 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
445 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
446 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
447 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
448 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
449 EXTERN char e_patchmode_cant_touch_empty_original_file[]
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
450 INIT(= N_("E206: patchmode: can't touch empty original file"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
451 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
452 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
453 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
454 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
455 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
456 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
457 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
458 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
459 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
460 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
461 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
462 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
463 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
464 INIT(= N_("E213: Cannot convert (add ! to write without conversion)"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
465 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
466 INIT(= N_("E214: Can't find temp file for writing"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
467 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
468 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
469 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
470 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
471 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
472 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
473 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
474 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
475 EXTERN char e_autocommand_nesting_too_deep[]
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
476 INIT(= N_("E218: autocommand nesting too deep"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
477 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
478 INIT(= N_("E219: Missing {."));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
479 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
480 INIT(= N_("E220: Missing }."));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
481 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
482 INIT(= N_("E221: 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
483 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
484 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
485 EXTERN char e_recursive_mapping[]
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
486 INIT(= N_("E223: recursive mapping"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
487 EXTERN char e_global_abbreviation_already_exists_for_str[]
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
488 INIT(= N_("E224: global abbreviation already exists for %s"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
489 EXTERN char e_global_mapping_already_exists_for_str[]
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
490 INIT(= N_("E225: global mapping already exists for %s"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
491 EXTERN char e_abbreviation_already_exists_for_str[]
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
492 INIT(= N_("E226: abbreviation already exists for %s"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
493 EXTERN char e_mapping_already_exists_for_str[]
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
494 INIT(= N_("E227: mapping already exists for %s"));
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
495 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
496 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
497 #ifdef FEAT_GUI
26861
df2de1e63de0 patch 8.2.3959: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26857
diff changeset
498 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
499 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
500 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
501 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
502 EXTERN char e_guifontwide_invalid[]
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
503 INIT(= N_("E231: 'guifontwide' invalid"));
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
504 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
505 INIT(= N_("E232: 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
506 # 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
507 EXTERN char e_cannot_open_display[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
508 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
509 # endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
510 # if defined(FEAT_XFONTSET)
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
511 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
512 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
513 # endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
514 # 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
515 || 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
516 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
517 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
518 # endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
519 # 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
520 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
521 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
522 # endif
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
523 #endif
26893
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
524 #ifdef MSWIN
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
525 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
526 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
527 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
528 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
529 #endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
530 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
531 INIT(= N_("E239: Invalid sign text: %s"));
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
532 #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
533 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
534 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
535 #endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
536 #ifdef FEAT_CLIENTSERVER
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
537 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
538 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
539 #endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
540 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
541 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
542 #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
543 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
544 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
545 #endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
546 #ifdef MSWIN
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
547 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
548 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
549 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
550 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
551 #endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
552 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
553 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
554 #ifdef FEAT_CLIENTSERVER
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
555 EXTERN char e_no_registered_server_named_str[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
556 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
557 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
558 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
559 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
560 EXTERN char e_window_layout_changed_unexpectedly[]
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
561 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
562 #ifdef FEAT_XFONTSET
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
563 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
564 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
565 #endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
566 #ifdef FEAT_CLIENTSERVER
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
567 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
568 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
569 #endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
570 #ifdef FEAT_GUI_X11
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
571 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
572 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
573 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
574 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
575 #endif
26057
92c424550367 patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents: 26024
diff changeset
576 #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
577 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
578 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
579 #endif
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
580 #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
581 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
582 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
583 #endif
26893
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
584 // E256 unused
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
585 EXTERN char e_cstag_tag_not_founc[]
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
586 INIT(= N_("E257: cstag: tag not found"));
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
587 #ifdef FEAT_CLIENTSERVER
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
588 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
589 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
590 #endif
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
591 #ifdef FEAT_CSCOPE
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
592 EXTERN char e_no_matches_found_for_cscope_query_str_of_str[]
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
593 INIT(= N_("E259: no matches found for cscope query %s of %s"));
79c76ca2c53c patch 8.2.3975: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26889
diff changeset
594 #endif
26897
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
595 #ifdef FEAT_EVAL
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
596 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
597 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
598 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
599 #ifdef FEAT_CSCOPE
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
600 EXTERN char e_cscope_connection_str_not_founc[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
601 INIT(= N_("E261: cscope connection %s not found"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
602 EXTERN char e_error_reading_cscope_connection_nr[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
603 INIT(= N_("E262: error reading cscope connection %d"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
604 #endif
26899
f78ad6ee739a patch 8.2.3978: build error when using dynamycally loaded Python 3
Bram Moolenaar <Bram@vim.org>
parents: 26897
diff changeset
605 #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
606 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
607 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
608 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
609 #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
610 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
611 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
612 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
613 #ifdef FEAT_RUBY
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
614 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
615 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
616 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
617 #ifdef DYNAMIC_RUBY
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
618 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
619 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
620 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
621 #ifdef FEAT_RUBY
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
622 EXTERN char e_unexpected_return[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
623 INIT(= N_("E267: unexpected return"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
624 EXTERN char e_unexpected_next[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
625 INIT(= N_("E268: unexpected next"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
626 EXTERN char e_unexpected_break[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
627 INIT(= N_("E269: unexpected break"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
628 EXTERN char e_unexpected_redo[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
629 INIT(= N_("E270: unexpected redo"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
630 EXTERN char e_retry_outside_of_rescue_clause[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
631 INIT(= N_("E271: retry outside of rescue clause"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
632 EXTERN char e_unhandled_exception[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
633 INIT(= N_("E272: unhandled exception"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
634 EXTERN char e_unknown_longjmp_status_nr[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
635 INIT(= N_("E273: unknown longjmp status %d"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
636 #endif
26887
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
637 #ifdef FEAT_EVAL
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
638 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
639 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
640 #endif
26897
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
641 #ifdef FEAT_PROP_POPUP
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
642 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
643 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
644 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
645 #ifdef FEAT_EVAL
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
646 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
647 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
648 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
649 #ifdef FEAT_CLIENTSERVER
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
650 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
651 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
652 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
653 #ifdef FEAT_TERMINAL
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
654 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
655 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
656 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
657 #ifdef FEAT_TCL
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
658 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
659 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
660 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
661 // E281 unused
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
662 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
663 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
664 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
665 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
666 #ifdef FEAT_XIM
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
667 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
668 INIT(= N_("E284: Cannot set IC values"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
669 # if defined(FEAT_GUI_X11)
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
670 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
671 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
672 # endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
673 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
674 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
675 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
676 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
677 EXTERN char e_input_method_doesnt_support_any_style[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
678 INIT(= N_("E288: input method doesn't support any style"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
679 EXTERN char e_input_method_doesnt_support_my_preedit_type[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
680 INIT(= N_("E289: input method doesn't support my preedit type"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
681 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
682 #ifdef FEAT_SEARCH_EXTRA
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
683 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
684 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
685 #endif
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
686 // E291 unused
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
687 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
688 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
689 EXTERN char e_block_was_not_locked[]
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
690 INIT(= N_("E293: block was not locked"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
691 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
692 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
693 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
694 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
695 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
696 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
697 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
698 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
699 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
700 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
701 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
702 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
703 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
704 INIT(= N_("E298: Didn't get block nr 2?"));
d02d40f0261c patch 8.2.3977: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26893
diff changeset
705 // E299 unused
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
706
26887
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
707 #ifdef FEAT_MENU
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
708 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
709 INIT(= N_("E328: 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
710 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
711 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
712 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
713 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
714 INIT(= N_("E342: Out of memory! (allocating %lu bytes)"));
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
715 #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
716 || defined(UNIX) || defined(VMS)
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
717 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
718 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
719 #endif
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
720 EXTERN char e_pattern_uses_more_memory_than_maxmempattern[]
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
721 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
722 #ifdef FEAT_LIBCALL
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
723 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
724 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
725 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
726 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
727 INIT(= N_("E367: No such group: \"%s\""));
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
728 #ifdef USING_LOAD_LIBRARY
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
729 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
730 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
731 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
732 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
733 INIT(= N_("E382: 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
734
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
735 #ifdef USING_LOAD_LIBRARY
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
736 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
737 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
738 #endif
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
739 #ifdef FEAT_CLIENTSERVER
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
740 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
741 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
742 #endif
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
743 #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
744 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
745 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
746 #endif
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
747 #ifdef FEAT_EVAL
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
748 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
749 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
750 #endif
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
751 #ifdef FEAT_NETBEANS_INTG
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
752 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
753 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
754 #endif
23513
872239543313 patch 8.2.2299: Vim9: invalid memory access making error message flaky
Bram Moolenaar <Bram@vim.org>
parents: 23446
diff changeset
755 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
756 INIT(= N_("E464: Ambiguous use of user-defined command"));
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
757 EXTERN char e_command_aborted[]
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
758 INIT(= N_("E470: Command aborted"));
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
759 EXTERN char e_argument_required[]
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
760 INIT(= N_("E471: Argument required"));
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
761 EXTERN char e_command_failed[]
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
762 INIT(= N_("E472: Command failed"));
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
763 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
764 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
765 EXTERN char e_invalid_argument[]
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
766 INIT(= N_("E474: Invalid argument"));
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
767 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
768 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
769 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
770 INIT(= N_("E475: Invalid value for argument %s"));
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
771 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
772 INIT(= N_("E475: Invalid value for argument %s: %s"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
773 EXTERN char e_invalid_command[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
774 INIT(= N_("E476: Invalid command"));
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
775 EXTERN char e_no_bang_allowed[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
776 INIT(= N_("E477: No ! allowed"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
777 #ifdef FEAT_EVAL
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
778 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
779 INIT(= N_("E476: Invalid command: %s"));
26869
659e30d7eeb7 patch 8.2.3963: build failure with tiny and small features
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
780 #endif
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
781 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
782 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
783 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
784 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
785 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
786 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
787 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
788 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
789 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
790 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
791 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
792 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
793 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
794 INIT(= N_("E487: Argument must be positive"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
795 EXTERN char e_no_match[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
796 INIT(= N_("E479: No match"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
797 EXTERN char e_no_match_str_2[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
798 INIT(= N_("E480: No match: %s"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
799 EXTERN char e_no_range_allowed[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
800 INIT(= N_("E481: No range allowed"));
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
801 EXTERN char e_trailing_characters[]
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
802 INIT(= N_("E488: Trailing characters"));
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
803 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
804 INIT(= N_("E488: Trailing characters: %s"));
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
805
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
806 // E502
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
807 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
808 INIT(= N_("is a directory"));
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
809 // E503
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
810 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
811 INIT(= N_("is not a file or writable device"));
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
812
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
813 // E504
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
814 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
815 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
816 // E505
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
817 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
818 INIT(= N_("is read-only (add ! to override)"));
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
819 EXTERN char e_canot_write_to_backup_file_add_bang_to_override[]
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
820 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
821 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
822 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
823 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
824 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
825 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
826 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
827 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
828 INIT(= N_("E510: Can't make 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
829 EXTERN char e_close_failed[]
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
830 INIT(= N_("E512: Close failed"));
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
831 EXTERN char e_write_error_conversion_failed_make_fenc_empty_to_override[]
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
832 INIT(= N_("E513: write error, conversion failed (make 'fenc' empty to override)"));
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
833 EXTERN char e_write_error_conversion_failed_in_line_nr_make_fenc_empty_to_override[]
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
834 INIT(= N_("E513: write error, conversion failed in line %ld (make 'fenc' empty to override)"));
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
835 EXTERN char e_write_error_file_system_full[]
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
836 INIT(= N_("E514: write error (file system full?)"));
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
837 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
838 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
839 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
840 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
841 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
842 INIT(= N_("E517: No buffers were wiped out"));
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
843 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
844 INIT(= N_("E523: Not allowed here"));
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
845 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
846 INIT(= N_("E565: 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
847 EXTERN char e_not_allowed_to_change_text_here[]
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
848 INIT(= N_("E578: Not allowed to change text here"));
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
849 #ifdef FEAT_EVAL
26887
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
850 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
851 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
852 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
853 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
854 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
855 INIT(= N_("E582: :elseif without :if"));
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
856 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
857 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
858 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
859 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
860 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
861 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
862 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
863 INIT(= N_("E588: :endfor without :for"));
26889
4508f62e5318 patch 8.2.3973: tiny build fails
Bram Moolenaar <Bram@vim.org>
parents: 26887
diff changeset
864 #endif
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
865 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
866 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
867 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
868 INIT(= N_("E592: '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
869
26889
4508f62e5318 patch 8.2.3973: tiny build fails
Bram Moolenaar <Bram@vim.org>
parents: 26887
diff changeset
870 #ifdef FEAT_EVAL
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
871 EXTERN char e_missing_endtry[]
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
872 INIT(= N_("E600: Missing :endtry"));
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
873 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
874 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
875 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
876 INIT(= N_("E603: :catch without :try"));
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
877 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
878 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
879 EXTERN char e_multiple_finally[]
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
880 INIT(= N_("E607: multiple :finally"));
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26863
diff changeset
881 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
882
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
883 EXTERN char e_no_argument_to_delete[]
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
884 INIT(= N_("E610: No argument to delete"));
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
885 #ifdef FEAT_NETBEANS_INTG
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
886 // E656
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
887 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
888 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
889 // E657
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
890 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
891 INIT(= N_("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
892 #endif
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
893 #ifdef HAVE_FSYNC
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
894 EXTERN char e_fsync_failed[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
895 INIT(= N_("E667: Fsync failed"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
896 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
897 EXTERN char e_no_matching_autocommands_for_acwrite_buffer[]
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
898 INIT(= N_("E676: No matching autocommands for acwrite buffer"));
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
899 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
900 INIT(= N_("E680: <buffer=%d>: invalid buffer number"));
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
901 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
902 INIT(= N_("E682: Invalid search pattern or delimiter"));
26869
659e30d7eeb7 patch 8.2.3963: build failure with tiny and small features
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
903 #ifdef FEAT_EVAL
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
904 EXTERN char e_list_index_out_of_range_nr[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
905 INIT(= N_("E684: list index out of range: %ld"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
906 #endif
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
907 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
908 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
909 #ifdef FEAT_EVAL
26887
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
910 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
911 INIT(= N_("E686: Argument of %s must be a List"));
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
912 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
913 INIT(= N_("E690: Missing \"in\" after :for"));
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
914 // E693 unused
26646
6f8d3470fa90 patch 8.2.3852: Vim9: not enough tests
Bram Moolenaar <Bram@vim.org>
parents: 26638
diff changeset
915 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
916 INIT(= N_("E695: Cannot index a Funcref"));
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
917 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
918 INIT(= N_("E697: Missing end of List ']': %s"));
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
919
26887
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
920 // E706 unused
22975
a943b175586a patch 8.2.2034: Vim9: list unpack in for statement not compiled yet
Bram Moolenaar <Bram@vim.org>
parents: 22936
diff changeset
921 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
922 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
923 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
924 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
925 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
926 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
927 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
928 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
929 EXTERN char e_list_required[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
930 INIT(= N_("E714: List required"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
931 EXTERN char e_dictionary_required[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
932 INIT(= N_("E715: Dictionary required"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
933 EXTERN char e_key_not_present_in_dictionary[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
934 INIT(= N_("E716: Key not present in Dictionary: \"%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
935 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
936 INIT(= N_("E719: Cannot slice a Dictionary"));
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
937 EXTERN char e_missing_colon_in_dictionary[]
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
938 INIT(= N_("E720: Missing colon in Dictionary: %s"));
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
939 EXTERN char e_duplicate_key_in_dicitonary[]
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
940 INIT(= N_("E721: Duplicate key in Dictionary: \"%s\""));
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
941 EXTERN char e_missing_comma_in_dictionary[]
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
942 INIT(= N_("E722: Missing comma in Dictionary: %s"));
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
943 EXTERN char e_missing_dict_end[]
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
944 INIT(= N_("E723: Missing end of Dictionary '}': %s"));
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
945 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
946 INIT(= N_("E734: Wrong variable type for %s="));
26624
bdf11d8e3df3 patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents: 26602
diff changeset
947 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
948 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
949 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
950 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
951 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
952 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
953 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
954 INIT(= N_("E742: Cannot change value of %s"));
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
955 #endif
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
956 #ifdef FEAT_NETBEANS_INTG
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
957 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
958 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
959 #endif
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
960 EXTERN char e_empty_buffer[]
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
961 INIT(= N_("E749: empty buffer"));
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
962 #ifdef FEAT_SPELL
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
963 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
964 INIT(= N_("E756: Spell checking is not possible"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
965 #endif
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
966 #if defined(FEAT_SYN_HL) || defined(FEAT_COMPL_FUNC)
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
967 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
968 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
969 #endif
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
970 #ifdef FEAT_QUICKFIX
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
971 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
972 INIT(= N_("E776: No location list"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
973 #endif
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
974 #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
975 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
976 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
977 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
978 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
979 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
980 INIT(= N_("E795: Cannot delete variable"));
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
981 // E796
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
982 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
983 INIT(= N_("writing to device disabled with 'opendevice' option"));
26624
bdf11d8e3df3 patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents: 26602
diff changeset
984 EXTERN char e_cannot_delete_variable_str[]
bdf11d8e3df3 patch 8.2.3841: Vim9: outdated TODO items, disabled tests that work
Bram Moolenaar <Bram@vim.org>
parents: 26602
diff changeset
985 INIT(= N_("E795: Cannot delete variable %s"));
26024
cb5f2515a450 patch 8.2.3546: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 26022
diff changeset
986 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
987
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
988 #ifndef FEAT_ARABIC
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
989 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
990 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
991 #endif
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
992 #ifdef FEAT_EVAL
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
993 EXTERN char e_cannot_use_percent_with_float[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
994 INIT(= N_("E804: Cannot use '%' with Float"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
995 #endif
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
996 #ifdef FEAT_FLOAT
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
997 EXTERN char e_using_float_as_string[]
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
998 INIT(= N_("E806: using Float as a String"));
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
999 #endif
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1000 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
1001 INIT(= N_("E813: Cannot close autocmd or popup window"));
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1002 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
1003 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
1004 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
1005 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
1006 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
1007 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
1008 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
1009 INIT(= N_("E820: sizeof(uint32_t) != 4"));
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1010 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
1011 INIT(= N_("E831: bf_key_init() called with empty password"));
26022
30e60bfd5fb3 patch 8.2.3545: setcellwidths() may make 'listchars' or 'fillchars' invalid
Bram Moolenaar <Bram@vim.org>
parents: 25982
diff changeset
1012 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
1013 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
1014 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
1015 INIT(= N_("E835: Conflicts with value of 'fillchars'"));
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1016 // E839 unused
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1017 #ifndef FEAT_CLIPBOARD
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1018 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
1019 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
1020 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1021 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
1022 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
1023 #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
1024 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
1025 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
1026 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
1027 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
1028 #endif
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1029 #ifdef FEAT_PROP_POPUP
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1030 EXTERN char e_number_required[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1031 INIT(= N_("E889: Number required"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1032 #endif
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1033 #ifdef FEAT_EVAL
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1034 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
1035 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
1036 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
1037 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
1038 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1039
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1040 #ifdef FEAT_EVAL
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
1041 EXTERN char e_using_invalid_value_as_string_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
1042 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
1043 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
1044 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
1045 #endif
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1046 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
1047 INIT(= N_("E919: Directory not found in '%s': \"%s\""));
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1048 #ifdef FEAT_EVAL
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1049 EXTERN char e_string_required[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1050 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
1051 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1052 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
1053 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
1054 #ifdef FEAT_EVAL
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1055 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
1056 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
1057 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1058 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
1059 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
1060 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
1061 INIT(= N_("E937: Attempt to delete a buffer that is in use: %s"));
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1062 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
1063 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
1064 #ifdef FEAT_EVAL
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
1065 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
1066 INIT(= N_("E940: Cannot lock or unlock variable %s"));
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
1067 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1068 #ifdef FEAT_TERMINAL
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1069 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
1070 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
1071 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
1072 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
1073 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1074 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
1075 INIT(= N_("E949: File changed while writing"));
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
1076 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
1077 INIT(= N_("E952: Autocommand caused recursive behavior"));
26887
612339679616 patch 8.2.3972: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
1078 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
1079 INIT(= N_("E957: Invalid window number"));
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
1080 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
1081 INIT(= N_("E964: Invalid column number: %ld"));
2df40c348c70 patch 8.2.3916: no error for passing an invalid line number to append()
Bram Moolenaar <Bram@vim.org>
parents: 26757
diff changeset
1082 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
1083 INIT(= N_("E966: Invalid line number: %ld"));
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1084 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
1085 INIT(= N_("E972: Blob value does not have the right number of bytes"));
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1086 #ifdef FEAT_EVAL
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1087 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
1088 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
1089 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
1090 INIT(= N_("E979: Blob index out of range: %ld"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1091 #endif
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1092 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
1093 INIT(= N_("E983: Duplicate argument: %s"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1094 #ifdef FEAT_EVAL
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1095 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
1096 INIT(= N_("E995: Cannot modify existing variable"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1097 EXTERN char e_cannot_lock_an_option[]
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1098 INIT(= N_("E996: Cannot lock an option"));
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26869
diff changeset
1099 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
1100 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
1101 #endif
26863
6ee19c6ae8a2 patch 8.2.3960: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26861
diff changeset
1102
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
1103 EXTERN char e_command_not_supported_in_vim9_script_missing_var_str[]
9a5f12b36273 patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 23362
diff changeset
1104 INIT(= N_("E1100: Command not supported in Vim9 script (missing :var?): %s"));
9a5f12b36273 patch 8.2.2238: Vim9: cannot load a Vim9 script without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 23362
diff changeset
1105 #ifdef FEAT_EVAL
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1106 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
1107 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
1108 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
1109 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
1110 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
1111 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
1112 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
1113 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
1114 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
1115 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
1116 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
1117 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
1118 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
1119 INIT(= N_("E1007: Mandatory argument after optional argument"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1120 EXTERN char e_missing_type[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1121 INIT(= N_("E1008: Missing <type>"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1122 EXTERN char e_missing_gt_after_type[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1123 INIT(= N_("E1009: Missing > after type"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1124 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
1125 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
1126 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
1127 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
1128 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
1129 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
1130 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
1131 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
1132 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
1133 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
1134 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
1135 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
1136 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
1137 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
1138 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
1139 INIT(= N_("E1015: Name expected: %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
1140 EXTERN char e_cannot_declare_a_scope_variable[]
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1141 INIT(= N_("E1016: Cannot declare a %s variable: %s"));
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1142 EXTERN char e_cannot_declare_an_environment_variable[]
f84625b961a8 patch 8.2.1444: error messages are spread out and names can be confusing
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1143 INIT(= N_("E1016: Cannot declare an environment variable: %s"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1144 EXTERN char e_variable_already_declared[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1145 INIT(= N_("E1017: Variable already declared: %s"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1146 EXTERN char e_cannot_assign_to_constant[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1147 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
1148 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
1149 INIT(= N_("E1019: Can only concatenate to string"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1150 EXTERN char e_cannot_use_operator_on_new_variable[]
22296
006b8ab9d554 patch 8.2.1697: inconsistent capitalization of error messages
Bram Moolenaar <Bram@vim.org>
parents: 22284
diff changeset
1151 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
1152 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
1153 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
1154 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
1155 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
1156 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
1157 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
1158 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
1159 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
1160 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
1161 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
1162 #endif
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1163 EXTERN char e_missing_rcurly[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1164 INIT(= N_("E1026: Missing }"));
25388
83e906028a9d patch 8.2.3231: build failure with small features
Bram Moolenaar <Bram@vim.org>
parents: 25384
diff changeset
1165 #ifdef FEAT_EVAL
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1166 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
1167 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
1168 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
1169 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
1170 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
1171 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
1172 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
1173 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
1174 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
1175 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
1176 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
1177 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
1178 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
1179 INIT(= N_("E1033: Catch unreachable after catch-all"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1180 EXTERN char e_cannot_use_reserved_name[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1181 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
1182 EXTERN char e_percent_requires_number_arguments[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1183 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
1184 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
1185 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
1186 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
1187 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
1188 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
1189 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
1190 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
1191 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
1192 #endif
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1193 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
1194 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
1195 #ifdef FEAT_EVAL
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1196 EXTERN char e_redefining_script_item_str[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1197 INIT(= N_("E1041: Redefining script item %s"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1198 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
1199 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
1200 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
1201 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
1202 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
1203 INIT(= N_("E1044: Export with invalid argument"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1204 EXTERN char e_missing_as_after_star[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1205 INIT(= N_("E1045: Missing \"as\" after *"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1206 EXTERN char e_missing_comma_in_import[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1207 INIT(= N_("E1046: Missing comma in import"));
25755
33ebec729787 patch 8.2.3413: Vim9: too many characters are allowed in import name
Bram Moolenaar <Bram@vim.org>
parents: 25751
diff changeset
1208 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
1209 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
1210 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
1211 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
1212 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
1213 INIT(= N_("E1049: Item not exported in script: %s"));
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
1214 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
1215 INIT(= N_("E1050: Colon required before a range: %s"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1216 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
1217 INIT(= N_("E1051: Wrong argument type for +"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1218 EXTERN char e_cannot_declare_an_option[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1219 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
1220 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
1221 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
1222 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
1223 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
1224 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
1225 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
1226 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
1227 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
1228 EXTERN char e_missing_enddef[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1229 INIT(= N_("E1057: Missing :enddef"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1230 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
1231 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
1232 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
1233 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
1234 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
1235 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
1236 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
1237 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
1238 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
1239 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
1240 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
1241 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
1242 #endif
26380
ac0e63cbf00b patch 8.2.3721: using memory freed by losing the clipboard selection
Bram Moolenaar <Bram@vim.org>
parents: 26378
diff changeset
1243 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
1244 INIT(= N_("E1064: Yank register changed while using it"));
26386
712648e62913 patch 8.2.3724: build error for missing error message in small build
Bram Moolenaar <Bram@vim.org>
parents: 26380
diff changeset
1245 #ifdef FEAT_EVAL
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1246 // E1065 unused
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
1247 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
1248 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
1249 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
1250 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
1251 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
1252 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
1253 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
1254 INIT(= N_("E1069: White space required after '%s': %s"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1255 EXTERN char e_missing_from[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1256 INIT(= N_("E1070: Missing \"from\""));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1257 EXTERN char e_invalid_string_after_from[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1258 INIT(= N_("E1071: Invalid string after \"from\""));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1259 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
1260 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
1261 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
1262 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
1263 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
1264 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
1265 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
1266 INIT(= N_("E1075: Namespace not supported: %s"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1267 EXTERN char e_this_vim_is_not_compiled_with_float_support[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1268 INIT(= N_("E1076: This Vim is not compiled with float support"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1269 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
1270 INIT(= N_("E1077: Missing argument type for %s"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1271 // E1078 unused
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1272 // E1079 unused
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1273 // E1080 unused
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1274 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
1275 INIT(= N_("E1081: Cannot unlet %s"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1276 EXTERN char e_cannot_use_namespaced_variable[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1277 INIT(= N_("E1082: Cannot use a namespaced variable: %s"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1278 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
1279 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
1280 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
1281 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
1282 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
1283 INIT(= N_("E1085: Not a callable type: %s"));
26325
c189c40c9a22 patch 8.2.3693: Coverity warns for possibly using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 26323
diff changeset
1284 EXTERN char e_function_reference_invalid[]
c189c40c9a22 patch 8.2.3693: Coverity warns for possibly using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 26323
diff changeset
1285 INIT(= N_("E1086: Function reference invalid"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1286 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
1287 INIT(= N_("E1087: Cannot use an index when declaring a variable"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1288 // E1088 unused
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1289 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
1290 INIT(= N_("E1089: Unknown variable: %s"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1291 EXTERN char e_cannot_assign_to_argument[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1292 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
1293 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
1294 INIT(= N_("E1091: Function is not compiled: %s"));
26346
8be6413a8e27 patch 8.2.3704: Vim9: cannot use a list declaration in a :def function
Bram Moolenaar <Bram@vim.org>
parents: 26325
diff changeset
1295 // E1092 unused
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1296 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
1297 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
1298 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
1299 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
1300 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
1301 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
1302 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
1303 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
1304 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
1305 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
1306 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
1307 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
1308 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
1309 INIT(= N_("E1099: Unknown error while executing %s"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1310 EXTERN char e_cannot_declare_script_variable_in_function[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1311 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
1312 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
1313 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
1314 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
1315 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
1316 EXTERN char e_missing_gt[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1317 INIT(= N_("E1104: Missing >"));
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1318 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
1319 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
1320 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
1321 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
1322 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
1323 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
1324 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
1325 INIT(= N_("E1107: String, List, Dict or Blob required"));
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1326 EXTERN char e_item_not_found_str[]
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21789
diff changeset
1327 INIT(= N_("E1108: Item not found: %s"));
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
1328 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
1329 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
1330 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
1331 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
1332 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
1333 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
1334 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
1335 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
1336 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
1337 INIT(= N_("E1113: Overlapping ranges for 0x%lx"));
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
1338 EXTERN char e_only_values_of_0x100_and_higher_supported[]
0bc43a704f56 patch 8.2.1535: it is not possible to specify cell widths of characters
Bram Moolenaar <Bram@vim.org>
parents: 21913
diff changeset
1339 INIT(= N_("E1114: Only values of 0x100 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
1340 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
1341 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
1342 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
1343 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
1344 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
1345 INIT(= N_("E1117: Cannot use ! with nested :def"));
22272
eb1f5f618c75 patch 8.2.1685: Vim9: cannot declare a constant value
Bram Moolenaar <Bram@vim.org>
parents: 22216
diff changeset
1346 EXTERN char e_cannot_change_list[]
eb1f5f618c75 patch 8.2.1685: Vim9: cannot declare a constant value
Bram Moolenaar <Bram@vim.org>
parents: 22216
diff changeset
1347 INIT(= N_("E1118: Cannot change list"));
eb1f5f618c75 patch 8.2.1685: Vim9: cannot declare a constant value
Bram Moolenaar <Bram@vim.org>
parents: 22216
diff changeset
1348 EXTERN char e_cannot_change_list_item[]
eb1f5f618c75 patch 8.2.1685: Vim9: cannot declare a constant value
Bram Moolenaar <Bram@vim.org>
parents: 22216
diff changeset
1349 INIT(= N_("E1119: Cannot change list item"));
eb1f5f618c75 patch 8.2.1685: Vim9: cannot declare a constant value
Bram Moolenaar <Bram@vim.org>
parents: 22216
diff changeset
1350 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
1351 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
1352 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
1353 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
1354 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
1355 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
1356 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
1357 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
1358 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
1359 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
1360 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
1361 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
1362 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
1363 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
1364 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
1365 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
1366 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
1367 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
1368 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
1369 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
1370 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
1371 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
1372 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
1373 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
1374 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
1375 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
1376 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
1377 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
1378 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
1379 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
1380 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
1381 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
1382 #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
1383 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
1384 INIT(= N_("E1136: <Cmd> mapping must end with <CR> before second <Cmd>"));
22862
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22860
diff changeset
1385 EXTERN char e_cmd_maping_must_not_include_str_key[]
6d50182e7e24 patch 8.2.1978: making a mapping work in all modes is complicated
Bram Moolenaar <Bram@vim.org>
parents: 22860
diff changeset
1386 INIT(= N_("E1137: <Cmd> mapping must not include %s key"));
22930
84567584951f patch 8.2.2012: Vim9: confusing error message when using bool wrongly
Bram Moolenaar <Bram@vim.org>
parents: 22862
diff changeset
1387 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
1388 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
1389 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
1390 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
1391 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
1392 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
1393 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
1394 INIT(= N_("E1141: Indexable type required"));
23175
d7294a6220ac patch 8.2.2133: Vim9: checking for a non-empty string is too strict
Bram Moolenaar <Bram@vim.org>
parents: 23033
diff changeset
1395 EXTERN char e_non_empty_string_required[]
d7294a6220ac patch 8.2.2133: Vim9: checking for a non-empty string is too strict
Bram Moolenaar <Bram@vim.org>
parents: 23033
diff changeset
1396 INIT(= N_("E1142: Non-empty string required"));
23183
4d5d12138b36 patch 8.2.2137: Vim9: :echo and :execute give error for empty argument
Bram Moolenaar <Bram@vim.org>
parents: 23175
diff changeset
1397 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
1398 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
1399 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
1400 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
1401 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
1402 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
1403 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
1404 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
1405 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
1406 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
1407 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
1408 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
1409 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
1410 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
1411 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
1412 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
1413 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
1414 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
1415 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
1416 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
1417 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
1418 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
1419 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
1420 INIT(= N_("E1154: Divide by zero"));
23758
97296182d336 patch 8.2.2420: too many problems with using all autocommand events
Bram Moolenaar <Bram@vim.org>
parents: 23673
diff changeset
1421 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
1422 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
1423 EXTERN char e_cannot_change_arglist_recursively[]
c4208c7ba1cb patch 8.2.2423: missing error message
Bram Moolenaar <Bram@vim.org>
parents: 23758
diff changeset
1424 INIT(= N_("E1156: Cannot change the argument list recursively"));
23808
baf9069f64ca patch 8.2.2445: Vim9: no proper error for lambda missing return type
Bram Moolenaar <Bram@vim.org>
parents: 23764
diff changeset
1425 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
1426 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
1427 EXTERN char e_cannot_use_flatten_in_vim9_script[]
525c9e218c69 patch 8.2.2449: Vim9: flatten() always changes the list type
Bram Moolenaar <Bram@vim.org>
parents: 23808
diff changeset
1428 INIT(= N_("E1158: Cannot use flatten() in Vim9 script"));
23869
5a4f9c5c1b99 patch 8.2.2476: using freed memory when splitting window while closing buffer
Bram Moolenaar <Bram@vim.org>
parents: 23816
diff changeset
1429 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
1430 INIT(= N_("E1159: Cannot split a window when closing the buffer"));
23880
6559c0d6eb4c patch 8.2.2482: build error
Bram Moolenaar <Bram@vim.org>
parents: 23877
diff changeset
1431 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
1432 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
1433 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
1434 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
1435 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
1436 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
1437 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
1438 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
1439 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
1440 INIT(= N_("E1163: Variable %d: type mismatch, expected %s but got %s in %s"));
23938
2a885d095bff patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some places
Bram Moolenaar <Bram@vim.org>
parents: 23917
diff changeset
1441 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
1442 INIT(= N_("E1164: vim9cmd must be followed by a command"));
23982
9fcd71d0db89 patch 8.2.2533: Vim9: cannot use a range with :unlet
Bram Moolenaar <Bram@vim.org>
parents: 23938
diff changeset
1443 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
1444 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
1445 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
1446 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
1447 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
1448 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
1449 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
1450 INIT(= N_("E1168: Argument already declared in the script: %s"));
24112
0346a59ed5bf patch 8.2.2597: Vim9: "import * as" does not work at script level
Bram Moolenaar <Bram@vim.org>
parents: 24033
diff changeset
1451 EXTERN char e_import_as_name_not_supported_here[]
0346a59ed5bf patch 8.2.2597: Vim9: "import * as" does not work at script level
Bram Moolenaar <Bram@vim.org>
parents: 24033
diff changeset
1452 INIT(= N_("E1169: 'import * as {name}' not supported here"));
24158
93e69703a290 patch 8.2.2620: Vim9: Using #{ for a dictionary gives strange errors
Bram Moolenaar <Bram@vim.org>
parents: 24112
diff changeset
1453 EXTERN char e_cannot_use_hash_curly_to_start_comment[]
24176
12378fbc99bc patch 8.2.2629: Vim9: error for #{{ is not desired
Bram Moolenaar <Bram@vim.org>
parents: 24158
diff changeset
1454 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
1455 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
1456 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
1457 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
1458 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
1459 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
1460 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
1461 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
1462 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
1463 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
1464 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
1465 EXTERN char e_misplaced_command_modifier[]
115c0196588d patch 8.2.2653: build failure
Bram Moolenaar <Bram@vim.org>
parents: 24210
diff changeset
1466 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
1467 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
1468 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
1469 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
1470 INIT(= N_("E1178: Cannot lock or unlock a local variable"));
24270
3564fd251bb6 patch 8.2.2676: missing error message
Bram Moolenaar <Bram@vim.org>
parents: 24262
diff changeset
1471 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
1472 INIT(= N_("E1179: Failed to extract PWD from %s, check your shell's config related to OSC 7"));
24400
62e978382fa0 patch 8.2.2740: Vim9: lambda with varargs doesn't work
Bram Moolenaar <Bram@vim.org>
parents: 24270
diff changeset
1473 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
1474 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
1475 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
1476 INIT(= N_("E1181: Cannot use an underscore here"));
24434
602e528a8e43 patch 8.2.2757: Vim9: blob tests for legacy and Vim9 script are separate
Bram Moolenaar <Bram@vim.org>
parents: 24408
diff changeset
1477 EXTERN char e_blob_required[]
602e528a8e43 patch 8.2.2757: Vim9: blob tests for legacy and Vim9 script are separate
Bram Moolenaar <Bram@vim.org>
parents: 24408
diff changeset
1478 INIT(= N_("E1182: Blob required"));
24450
3e1886f1e875 patch 8.2.2765: Vim9: not all blob operations work
Bram Moolenaar <Bram@vim.org>
parents: 24434
diff changeset
1479 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
1480 INIT(= N_("E1183: Cannot use a range with an assignment operator: %s"));
24475
96905804bf5a patch 8.2.2777: Vim9: blob operations not tested in all ways
Bram Moolenaar <Bram@vim.org>
parents: 24450
diff changeset
1481 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
1482 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
1483 EXTERN char e_cannot_nest_redir[]
08050e45bd06 patch 8.2.2785: Vim9: cannot redirect to local variable
Bram Moolenaar <Bram@vim.org>
parents: 24475
diff changeset
1484 INIT(= N_("E1185: Cannot nest :redir"));
08050e45bd06 patch 8.2.2785: Vim9: cannot redirect to local variable
Bram Moolenaar <Bram@vim.org>
parents: 24475
diff changeset
1485 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
1486 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
1487 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
1488 INIT(= N_("E1186: Expression does not result in a value: %s"));
24733
08eced3add83 patch 8.2.2905: no error when defaults.vim cannot be loaded
Bram Moolenaar <Bram@vim.org>
parents: 24614
diff changeset
1489 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
1490 INIT(= N_("E1187: Failed to source defaults.vim"));
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
1491 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
1492 INIT(= N_("E1188: Cannot open a terminal from the command line window"));
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
1493 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
1494 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
1495 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
1496 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
1497 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
1498 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
1499 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
1500 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
1501 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
1502 INIT(= N_("E1192: Empty function name"));
24970
7e9e53a0368f patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents: 24878
diff changeset
1503 // libsodium
7e9e53a0368f patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents: 24878
diff changeset
1504 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
1505 INIT(= N_("E1193: cryptmethod xchacha20 not built into this Vim"));
7e9e53a0368f patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents: 24878
diff changeset
1506 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
1507 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
1508 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
1509 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
1510 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
1511 INIT(= N_("E1196: Cannot decrypt 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
1512 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
1513 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
1514 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
1515 INIT(= N_("E1198: 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
1516 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
1517 INIT(= N_("E1199: Cannot decrypt buffer, not enough space"));
24986
fa31a0ea09e1 patch 8.2.3030: Coverity reports a memory leak
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1518 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
1519 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
1520 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
1521 INIT(= N_("E1201: Decryption failed: pre-mature end of file!"));
25022
39551b6e0112 patch 8.2.3048: strange error for white space after ++ command
Bram Moolenaar <Bram@vim.org>
parents: 24990
diff changeset
1522 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
1523 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
1524 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
1525 INIT(= N_("E1203: Dot can only be used on a dictionary: %s"));
25147
10b269321459 patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents: 25064
diff changeset
1526 EXTERN char e_regexp_number_after_dot_pos_search[]
10b269321459 patch 8.2.3110: a pattern that matches the cursor position is complicated
Bram Moolenaar <Bram@vim.org>
parents: 25064
diff changeset
1527 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
1528 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
1529 INIT(= N_("E1205: No white space allowed between option and"));
25198
eafc0e07b188 patch 8.2.3135: Vim9: builtin function arguments not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25174
diff changeset
1530 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
1531 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
1532 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
1533 INIT(= N_("E1207: Expression without an effect: %s"));
25491
b9419c9d3da6 patch 8.2.3282: Vim9: error about using -complete without -nargs is confusing
Bram Moolenaar <Bram@vim.org>
parents: 25443
diff changeset
1534 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
1535 INIT(= N_("E1208: -complete used without allowing arguments"));
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
1536 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
1537 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
1538 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
1539 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
1540 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
1541 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
1542 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
1543 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
1544 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
1545 INIT(= N_("E1213: Redefining imported item \"%s\""));
25294
c626fd34b66f patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents: 25292
diff changeset
1546 #if defined(FEAT_DIGRAPHS) && defined(FEAT_EVAL)
c626fd34b66f patch 8.2.3184: cannot add a digraph with a leading space
Bram Moolenaar <Bram@vim.org>
parents: 25292
diff changeset
1547 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
1548 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
1549 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
1550 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
1551 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
1552 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
1553 #endif
25302
4d3c68196d05 patch 8.2.3188: Vim9: argument types are not checked at compile time
Bram Moolenaar <Bram@vim.org>
parents: 25298
diff changeset
1554 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
1555 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
1556 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
1557 INIT(= N_("E1218: Job 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
1558 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
1559 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
1560 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
1561 INIT(= N_("E1220: String 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
1562 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
1563 INIT(= N_("E1221: String or Blob 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
1564 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
1565 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
1566 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
1567 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
1568 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
1569 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
1570 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
1571 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
1572 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
1573 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
1574 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
1575 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
1576 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
1577 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
1578 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
1579 INIT(= N_("E1229: Expected dictionary for using key \"%s\", but got %s"));
25417
1919361a53da patch 8.2.3245: the crypt key may appear in a swap partition
Bram Moolenaar <Bram@vim.org>
parents: 25403
diff changeset
1580 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
1581 INIT(= N_("E1230: Encryption: sodium_mlock() failed"));
2063b858cad9 patch 8.2.3297: cannot use all commands inside a {} block
Bram Moolenaar <Bram@vim.org>
parents: 25495
diff changeset
1582 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
1583 INIT(= N_("E1231: Cannot use a bar to separate commands here: %s"));
25555
446f478d6fb1 patch 8.2.3314: behavior of exists() in a :def function is unpredictable
Bram Moolenaar <Bram@vim.org>
parents: 25521
diff changeset
1584 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
1585 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
1586 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
1587 INIT(= N_("E1233: exists_compiled() can only be used in a :def function"));
25622
15b54e0a576b patch 8.2.3347: check for legacy script is incomplete
Bram Moolenaar <Bram@vim.org>
parents: 25555
diff changeset
1588 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
1589 INIT(= N_("E1234: legacy must be followed by a command"));
25646
99fbffe75217 patch 8.2.3359: Vim9: error for type when variable is not set
Bram Moolenaar <Bram@vim.org>
parents: 25622
diff changeset
1590 EXTERN char e_function_reference_is_not_set[]
99fbffe75217 patch 8.2.3359: Vim9: error for type when variable is not set
Bram Moolenaar <Bram@vim.org>
parents: 25622
diff changeset
1591 INIT(= N_("E1235: Function reference is not set"));
25751
fc8046209eaa patch 8.2.3411: Vim9: crash when using base name of import
Bram Moolenaar <Bram@vim.org>
parents: 25646
diff changeset
1592 EXTERN char e_cannot_use_str_itself_it_is_imported_with_star[]
fc8046209eaa patch 8.2.3411: Vim9: crash when using base name of import
Bram Moolenaar <Bram@vim.org>
parents: 25646
diff changeset
1593 INIT(= N_("E1236: Cannot use %s itself, it is imported with '*'"));
25796
60e4892dfa45 patch 8.2.3433: :delcommand does not take a -buffer option
Bram Moolenaar <Bram@vim.org>
parents: 25755
diff changeset
1594 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
1595 INIT(= N_("E1237: No such user-defined command in current buffer: %s"));
25806
8d55e978f95b patch 8.2.3438: cannot manipulate blobs
Bram Moolenaar <Bram@vim.org>
parents: 25796
diff changeset
1596 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
1597 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
1598 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
1599 INIT(= N_("E1239: Invalid value for blob: %d"));
25917
79a5c8238a5d patch 8.2.3492: crash when pasting too many times
Bram Moolenaar <Bram@vim.org>
parents: 25806
diff changeset
1600 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
1601 INIT(= N_("E1240: Resulting text too long"));
25939
377a7686a52f patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents: 25917
diff changeset
1602 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
1603 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
1604 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
1605 INIT(= N_("E1242: No white space allowed before separator: %s"));
25982
aade8ef975d5 patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents: 25939
diff changeset
1606 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
1607 INIT(= N_("E1243: ASCII code not in 32-127 range"));
26057
92c424550367 patch 8.2.3562: cannot add color names
Bram Moolenaar <Bram@vim.org>
parents: 26024
diff changeset
1608 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
1609 INIT(= N_("E1244: Bad color string: %s"));
26230
8b8470b511f5 patch 8.2.3646: using <sfile> in a function gives an unexpected result
Bram Moolenaar <Bram@vim.org>
parents: 26057
diff changeset
1610 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
1611 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
1612 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
1613 INIT(= N_("E1246: Cannot find variable to (un)lock: %s"));
26256
92fbed13ca4d patch 8.2.3659: integer overflow with large line number
Bram Moolenaar <Bram@vim.org>
parents: 26240
diff changeset
1614 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
1615 INIT(= N_("E1247: Line number out of range"));
26378
a926ccd92ae1 patch 8.2.3720: Vim9: Internal error when invoking closure in legacy context
Bram Moolenaar <Bram@vim.org>
parents: 26346
diff changeset
1616 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
1617 INIT(= N_("E1248: Closure called from invalid context"));
26454
9998318235cd patch 8.2.3757: an overlong highlight group name is silently truncated
Bram Moolenaar <Bram@vim.org>
parents: 26439
diff changeset
1618 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
1619 INIT(= N_("E1249: Highlight group name too long"));
26578
06693d1afc48 patch 8.2.3818: cannot filter or map characters in a string
Bram Moolenaar <Bram@vim.org>
parents: 26454
diff changeset
1620 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
1621 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
1622 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
1623 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
1624 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
1625 INIT(= N_("E1252: String, List or Blob required for argument %d"));
6fd15d82e898 patch 8.2.3848: cannot use reduce() for a string
Bram Moolenaar <Bram@vim.org>
parents: 26624
diff changeset
1626 EXTERN char e_string_expected_for_argument_nr[]
6fd15d82e898 patch 8.2.3848: cannot use reduce() for a string
Bram Moolenaar <Bram@vim.org>
parents: 26624
diff changeset
1627 INIT(= N_("E1253: String expected for argument %d"));
26660
2b17f87b7bd1 patch 8.2.3859: Vim9: some code lines not tested
Bram Moolenaar <Bram@vim.org>
parents: 26646
diff changeset
1628 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
1629 INIT(= N_("E1254: Cannot use script variable in for loop"));
26717
3f209f13883d patch 8.2.3887: E1135 is used for two different errors
Bram Moolenaar <Bram@vim.org>
parents: 26660
diff changeset
1630 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
1631 INIT(= N_("E1255: <Cmd> mapping must end with <CR>"));
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
1632 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
1633 INIT(= N_("E1256: String or function required for argument %d"));