comparison src/errors.h @ 22296:006b8ab9d554 v8.2.1697

patch 8.2.1697: inconsistent capitalization of error messages Commit: https://github.com/vim/vim/commit/7707228aace9aff16434edf5377a354c6ad07316 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 16 17:55:40 2020 +0200 patch 8.2.1697: inconsistent capitalization of error messages Problem: Inconsistent capitalization of error messages. Solution: Always start with a capital.
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Sep 2020 18:00:04 +0200
parents 6b385c2b9ff5
children 528bb8e6e877
comparison
equal deleted inserted replaced
22295:dbcb2b62f53a 22296:006b8ab9d554
20 INIT(= N_("E476: Invalid command")); 20 INIT(= N_("E476: Invalid command"));
21 #ifdef FEAT_EVAL 21 #ifdef FEAT_EVAL
22 EXTERN char e_invalid_command_str[] 22 EXTERN char e_invalid_command_str[]
23 INIT(= N_("E476: Invalid command: %s")); 23 INIT(= N_("E476: Invalid command: %s"));
24 EXTERN char e_cannot_slice_dictionary[] 24 EXTERN char e_cannot_slice_dictionary[]
25 INIT(= N_("E719: cannot slice a Dictionary")); 25 INIT(= N_("E719: Cannot slice a Dictionary"));
26 EXTERN char e_assert_fails_second_arg[] 26 EXTERN char e_assert_fails_second_arg[]
27 INIT(= N_("E856: assert_fails() second argument must be a string or a list with one or two strings")); 27 INIT(= N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings"));
28 EXTERN char e_cannot_index_special_variable[] 28 EXTERN char e_cannot_index_special_variable[]
29 INIT(= N_("E909: Cannot index a special variable")); 29 INIT(= N_("E909: Cannot index a special variable"));
30 EXTERN char e_missing_let_str[] 30 EXTERN char e_missing_let_str[]
31 INIT(= N_("E1100: Missing :let: %s")); 31 INIT(= N_("E1100: Missing :let: %s"));
32 EXTERN char e_variable_not_found_str[] 32 EXTERN char e_variable_not_found_str[]
33 INIT(= N_("E1001: variable not found: %s")); 33 INIT(= N_("E1001: Variable not found: %s"));
34 EXTERN char e_syntax_error_at_str[] 34 EXTERN char e_syntax_error_at_str[]
35 INIT(= N_("E1002: Syntax error at %s")); 35 INIT(= N_("E1002: Syntax error at %s"));
36 EXTERN char e_missing_return_value[] 36 EXTERN char e_missing_return_value[]
37 INIT(= N_("E1003: Missing return value")); 37 INIT(= N_("E1003: Missing return value"));
38 EXTERN char e_white_space_required_before_and_after_str[] 38 EXTERN char e_white_space_required_before_and_after_str[]
39 INIT(= N_("E1004: white space required before and after '%s'")); 39 INIT(= N_("E1004: White space required before and after '%s'"));
40 EXTERN char e_too_many_argument_types[] 40 EXTERN char e_too_many_argument_types[]
41 INIT(= N_("E1005: Too many argument types")); 41 INIT(= N_("E1005: Too many argument types"));
42 EXTERN char e_str_is_used_as_argument[] 42 EXTERN char e_str_is_used_as_argument[]
43 INIT(= N_("E1006: %s is used as an argument")); 43 INIT(= N_("E1006: %s is used as an argument"));
44 EXTERN char e_mandatory_argument_after_optional_argument[] 44 EXTERN char e_mandatory_argument_after_optional_argument[]
45 INIT(= N_("E1007: mandatory argument after optional argument")); 45 INIT(= N_("E1007: Mandatory argument after optional argument"));
46 EXTERN char e_missing_type[] 46 EXTERN char e_missing_type[]
47 INIT(= N_("E1008: Missing <type>")); 47 INIT(= N_("E1008: Missing <type>"));
48 EXTERN char e_missing_gt_after_type[] 48 EXTERN char e_missing_gt_after_type[]
49 INIT(= N_("E1009: Missing > after type")); 49 INIT(= N_("E1009: Missing > after type"));
50 EXTERN char e_type_not_recognized_str[] 50 EXTERN char e_type_not_recognized_str[]
51 INIT(= N_("E1010: Type not recognized: %s")); 51 INIT(= N_("E1010: Type not recognized: %s"));
52 EXTERN char e_name_too_long_str[] 52 EXTERN char e_name_too_long_str[]
53 INIT(= N_("E1011: name too long: %s")); 53 INIT(= N_("E1011: Name too long: %s"));
54 EXTERN char e_type_mismatch_expected_str_but_got_str[] 54 EXTERN char e_type_mismatch_expected_str_but_got_str[]
55 INIT(= N_("E1012: Type mismatch; expected %s but got %s")); 55 INIT(= N_("E1012: Type mismatch; expected %s but got %s"));
56 EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str[] 56 EXTERN char e_argument_nr_type_mismatch_expected_str_but_got_str[]
57 INIT(= N_("E1013: argument %d: type mismatch, expected %s but got %s")); 57 INIT(= N_("E1013: Argument %d: type mismatch, expected %s but got %s"));
58 EXTERN char e_invalid_key_str[] 58 EXTERN char e_invalid_key_str[]
59 INIT(= N_("E1014: Invalid key: %s")); 59 INIT(= N_("E1014: Invalid key: %s"));
60 EXTERN char e_name_expected[] 60 EXTERN char e_name_expected[]
61 INIT(= N_("E1015: Name expected: %s")); 61 INIT(= N_("E1015: Name expected: %s"));
62 EXTERN char e_cannot_declare_a_scope_variable[] 62 EXTERN char e_cannot_declare_a_scope_variable[]
68 EXTERN char e_cannot_assign_to_constant[] 68 EXTERN char e_cannot_assign_to_constant[]
69 INIT(= N_("E1018: Cannot assign to a constant: %s")); 69 INIT(= N_("E1018: Cannot assign to a constant: %s"));
70 EXTERN char e_can_only_concatenate_to_string[] 70 EXTERN char e_can_only_concatenate_to_string[]
71 INIT(= N_("E1019: Can only concatenate to string")); 71 INIT(= N_("E1019: Can only concatenate to string"));
72 EXTERN char e_cannot_use_operator_on_new_variable[] 72 EXTERN char e_cannot_use_operator_on_new_variable[]
73 INIT(= N_("E1020: cannot use an operator on a new variable: %s")); 73 INIT(= N_("E1020: Cannot use an operator on a new variable: %s"));
74 EXTERN char e_const_requires_a_value[] 74 EXTERN char e_const_requires_a_value[]
75 INIT(= N_("E1021: const requires a value")); 75 INIT(= N_("E1021: Const requires a value"));
76 EXTERN char e_type_or_initialization_required[] 76 EXTERN char e_type_or_initialization_required[]
77 INIT(= N_("E1022: type or initialization required")); 77 INIT(= N_("E1022: Type or initialization required"));
78 EXTERN char e_using_number_as_bool_nr[] 78 EXTERN char e_using_number_as_bool_nr[]
79 INIT(= N_("E1023: Using a Number as a Bool: %d")); 79 INIT(= N_("E1023: Using a Number as a Bool: %d"));
80 EXTERN char e_using_number_as_string[] 80 EXTERN char e_using_number_as_string[]
81 INIT(= N_("E1024: Using a Number as a String")); 81 INIT(= N_("E1024: Using a Number as a String"));
82 EXTERN char e_using_rcurly_outside_if_block_scope[] 82 EXTERN char e_using_rcurly_outside_if_block_scope[]
83 INIT(= N_("E1025: using } outside of a block scope")); 83 INIT(= N_("E1025: Using } outside of a block scope"));
84 EXTERN char e_missing_rcurly[] 84 EXTERN char e_missing_rcurly[]
85 INIT(= N_("E1026: Missing }")); 85 INIT(= N_("E1026: Missing }"));
86 EXTERN char e_missing_return_statement[] 86 EXTERN char e_missing_return_statement[]
87 INIT(= N_("E1027: Missing return statement")); 87 INIT(= N_("E1027: Missing return statement"));
88 EXTERN char e_compile_def_function_failed[] 88 EXTERN char e_compile_def_function_failed[]
89 INIT(= N_("E1028: compile_def_function failed")); 89 INIT(= N_("E1028: Compiling :def function failed"));
90 EXTERN char e_expected_str_but_got_str[] 90 EXTERN char e_expected_str_but_got_str[]
91 INIT(= N_("E1029: Expected %s but got %s")); 91 INIT(= N_("E1029: Expected %s but got %s"));
92 EXTERN char e_using_string_as_number[] 92 EXTERN char e_using_string_as_number[]
93 INIT(= N_("E1030: Using a String as a Number")); 93 INIT(= N_("E1030: Using a String as a Number"));
94 EXTERN char e_cannot_use_void_value[] 94 EXTERN char e_cannot_use_void_value[]
95 INIT(= N_("E1031: Cannot use void value")); 95 INIT(= N_("E1031: Cannot use void value"));
96 EXTERN char e_missing_catch_or_finally[] 96 EXTERN char e_missing_catch_or_finally[]
97 INIT(= N_("E1032: missing :catch or :finally")); 97 INIT(= N_("E1032: Missing :catch or :finally"));
98 EXTERN char e_catch_unreachable_after_catch_all[] 98 EXTERN char e_catch_unreachable_after_catch_all[]
99 INIT(= N_("E1033: catch unreachable after catch-all")); 99 INIT(= N_("E1033: Catch unreachable after catch-all"));
100 EXTERN char e_cannot_use_reserved_name[] 100 EXTERN char e_cannot_use_reserved_name[]
101 INIT(= N_("E1034: Cannot use reserved name %s")); 101 INIT(= N_("E1034: Cannot use reserved name %s"));
102 EXTERN char e_percent_requires_number_arguments[] 102 EXTERN char e_percent_requires_number_arguments[]
103 INIT(= N_("E1035: % requires number arguments")); 103 INIT(= N_("E1035: % requires number arguments"));
104 EXTERN char e_char_requires_number_or_float_arguments[] 104 EXTERN char e_char_requires_number_or_float_arguments[]
105 INIT(= N_("E1036: %c requires number or float arguments")); 105 INIT(= N_("E1036: %c requires number or float arguments"));
106 EXTERN char e_cannot_use_str_with_str[] 106 EXTERN char e_cannot_use_str_with_str[]
107 INIT(= N_("E1037: Cannot use \"%s\" with %s")); 107 INIT(= N_("E1037: Cannot use \"%s\" with %s"));
108 EXTERN char e_vim9script_can_only_be_used_in_script[] 108 EXTERN char e_vim9script_can_only_be_used_in_script[]
109 INIT(= N_("E1038: vim9script can only be used in a script")); 109 INIT(= N_("E1038: \"vim9script\" can only be used in a script"));
110 EXTERN char e_vim9script_must_be_first_command_in_script[] 110 EXTERN char e_vim9script_must_be_first_command_in_script[]
111 INIT(= N_("E1039: vim9script must be the first command in a script")); 111 INIT(= N_("E1039: \"vim9script\" must be the first command in a script"));
112 EXTERN char e_cannot_use_scriptversion_after_vim9script[] 112 EXTERN char e_cannot_use_scriptversion_after_vim9script[]
113 INIT(= N_("E1040: Cannot use :scriptversion after :vim9script")); 113 INIT(= N_("E1040: Cannot use :scriptversion after :vim9script"));
114 EXTERN char e_redefining_script_item_str[] 114 EXTERN char e_redefining_script_item_str[]
115 INIT(= N_("E1041: Redefining script item %s")); 115 INIT(= N_("E1041: Redefining script item %s"));
116 EXTERN char e_export_can_only_be_used_in_vim9script[] 116 EXTERN char e_export_can_only_be_used_in_vim9script[]
117 INIT(= N_("E1042: export can only be used in vim9script")); 117 INIT(= N_("E1042: Export can only be used in vim9script"));
118 EXTERN char e_invalid_command_after_export[] 118 EXTERN char e_invalid_command_after_export[]
119 INIT(= N_("E1043: Invalid command after :export")); 119 INIT(= N_("E1043: Invalid command after :export"));
120 EXTERN char e_export_with_invalid_argument[] 120 EXTERN char e_export_with_invalid_argument[]
121 INIT(= N_("E1044: export with invalid argument")); 121 INIT(= N_("E1044: Export with invalid argument"));
122 EXTERN char e_missing_as_after_star[] 122 EXTERN char e_missing_as_after_star[]
123 INIT(= N_("E1045: Missing \"as\" after *")); 123 INIT(= N_("E1045: Missing \"as\" after *"));
124 EXTERN char e_missing_comma_in_import[] 124 EXTERN char e_missing_comma_in_import[]
125 INIT(= N_("E1046: Missing comma in import")); 125 INIT(= N_("E1046: Missing comma in import"));
126 EXTERN char e_syntax_error_in_import[] 126 EXTERN char e_syntax_error_in_import[]
127 INIT(= N_("E1047: syntax error in import")); 127 INIT(= N_("E1047: Syntax error in import"));
128 EXTERN char e_item_not_found_in_script_str[] 128 EXTERN char e_item_not_found_in_script_str[]
129 INIT(= N_("E1048: Item not found in script: %s")); 129 INIT(= N_("E1048: Item not found in script: %s"));
130 EXTERN char e_item_not_exported_in_script_str[] 130 EXTERN char e_item_not_exported_in_script_str[]
131 INIT(= N_("E1049: Item not exported in script: %s")); 131 INIT(= N_("E1049: Item not exported in script: %s"));
132 EXTERN char e_colon_required_before_a_range[] 132 EXTERN char e_colon_required_before_a_range[]
133 INIT(= N_("E1050: Colon required before a range")); 133 INIT(= N_("E1050: Colon required before a range"));
134 EXTERN char e_wrong_argument_type_for_plus[] 134 EXTERN char e_wrong_argument_type_for_plus[]
135 INIT(= N_("E1051: wrong argument type for +")); 135 INIT(= N_("E1051: Wrong argument type for +"));
136 EXTERN char e_cannot_declare_an_option[] 136 EXTERN char e_cannot_declare_an_option[]
137 INIT(= N_("E1052: Cannot declare an option: %s")); 137 INIT(= N_("E1052: Cannot declare an option: %s"));
138 EXTERN char e_could_not_import_str[] 138 EXTERN char e_could_not_import_str[]
139 INIT(= N_("E1053: Could not import \"%s\"")); 139 INIT(= N_("E1053: Could not import \"%s\""));
140 EXTERN char e_variable_already_declared_in_script[] 140 EXTERN char e_variable_already_declared_in_script[]
141 INIT(= N_("E1054: Variable already declared in the script: %s")); 141 INIT(= N_("E1054: Variable already declared in the script: %s"));
142 EXTERN char e_missing_name_after_dots[] 142 EXTERN char e_missing_name_after_dots[]
143 INIT(= N_("E1055: Missing name after ...")); 143 INIT(= N_("E1055: Missing name after ..."));
144 EXTERN char e_expected_type_str[] 144 EXTERN char e_expected_type_str[]
145 INIT(= N_("E1056: expected a type: %s")); 145 INIT(= N_("E1056: Expected a type: %s"));
146 EXTERN char e_missing_enddef[] 146 EXTERN char e_missing_enddef[]
147 INIT(= N_("E1057: Missing :enddef")); 147 INIT(= N_("E1057: Missing :enddef"));
148 EXTERN char e_function_nesting_too_deep[] 148 EXTERN char e_function_nesting_too_deep[]
149 INIT(= N_("E1058: function nesting too deep")); 149 INIT(= N_("E1058: Function nesting too deep"));
150 EXTERN char e_no_white_space_allowed_before_colon_str[] 150 EXTERN char e_no_white_space_allowed_before_colon_str[]
151 INIT(= N_("E1059: No white space allowed before colon: %s")); 151 INIT(= N_("E1059: No white space allowed before colon: %s"));
152 EXTERN char e_expected_dot_after_name_str[] 152 EXTERN char e_expected_dot_after_name_str[]
153 INIT(= N_("E1060: expected dot after name: %s")); 153 INIT(= N_("E1060: Expected dot after name: %s"));
154 EXTERN char e_cannot_find_function_str[] 154 EXTERN char e_cannot_find_function_str[]
155 INIT(= N_("E1061: Cannot find function %s")); 155 INIT(= N_("E1061: Cannot find function %s"));
156 EXTERN char e_cannot_index_number[] 156 EXTERN char e_cannot_index_number[]
157 INIT(= N_("E1062: Cannot index a Number")); 157 INIT(= N_("E1062: Cannot index a Number"));
158 EXTERN char e_type_mismatch_for_v_variable[] 158 EXTERN char e_type_mismatch_for_v_variable[]
159 INIT(= N_("E1063: type mismatch for v: variable")); 159 INIT(= N_("E1063: Type mismatch for v: variable"));
160 // E1064 unused 160 // E1064 unused
161 // E1065 unused 161 // E1065 unused
162 EXTERN char e_cannot_declare_a_register_str[] 162 EXTERN char e_cannot_declare_a_register_str[]
163 INIT(= N_("E1066: Cannot declare a register: %s")); 163 INIT(= N_("E1066: Cannot declare a register: %s"));
164 EXTERN char e_separator_mismatch_str[] 164 EXTERN char e_separator_mismatch_str[]
165 INIT(= N_("E1067: Separator mismatch: %s")); 165 INIT(= N_("E1067: Separator mismatch: %s"));
166 EXTERN char e_no_white_space_allowed_before_str[] 166 EXTERN char e_no_white_space_allowed_before_str[]
167 INIT(= N_("E1068: No white space allowed before '%s'")); 167 INIT(= N_("E1068: No white space allowed before '%s'"));
168 EXTERN char e_white_space_required_after_str[] 168 EXTERN char e_white_space_required_after_str[]
169 INIT(= N_("E1069: white space required after '%s'")); 169 INIT(= N_("E1069: White space required after '%s'"));
170 EXTERN char e_missing_from[] 170 EXTERN char e_missing_from[]
171 INIT(= N_("E1070: Missing \"from\"")); 171 INIT(= N_("E1070: Missing \"from\""));
172 EXTERN char e_invalid_string_after_from[] 172 EXTERN char e_invalid_string_after_from[]
173 INIT(= N_("E1071: Invalid string after \"from\"")); 173 INIT(= N_("E1071: Invalid string after \"from\""));
174 EXTERN char e_cannot_compare_str_with_str[] 174 EXTERN char e_cannot_compare_str_with_str[]
175 INIT(= N_("E1072: Cannot compare %s with %s")); 175 INIT(= N_("E1072: Cannot compare %s with %s"));
176 EXTERN char e_name_already_defined_str[] 176 EXTERN char e_name_already_defined_str[]
177 INIT(= N_("E1073: name already defined: %s")); 177 INIT(= N_("E1073: Name already defined: %s"));
178 EXTERN char e_no_white_space_allowed_after_dot[] 178 EXTERN char e_no_white_space_allowed_after_dot[]
179 INIT(= N_("E1074: no white space allowed after dot")); 179 INIT(= N_("E1074: No white space allowed after dot"));
180 EXTERN char e_namespace_not_supported_str[] 180 EXTERN char e_namespace_not_supported_str[]
181 INIT(= N_("E1075: Namespace not supported: %s")); 181 INIT(= N_("E1075: Namespace not supported: %s"));
182 EXTERN char e_this_vim_is_not_compiled_with_float_support[] 182 EXTERN char e_this_vim_is_not_compiled_with_float_support[]
183 INIT(= N_("E1076: This Vim is not compiled with float support")); 183 INIT(= N_("E1076: This Vim is not compiled with float support"));
184 EXTERN char e_missing_argument_type_for_str[] 184 EXTERN char e_missing_argument_type_for_str[]
189 EXTERN char e_cannot_unlet_str[] 189 EXTERN char e_cannot_unlet_str[]
190 INIT(= N_("E1081: Cannot unlet %s")); 190 INIT(= N_("E1081: Cannot unlet %s"));
191 EXTERN char e_cannot_use_namespaced_variable[] 191 EXTERN char e_cannot_use_namespaced_variable[]
192 INIT(= N_("E1082: Cannot use a namespaced variable: %s")); 192 INIT(= N_("E1082: Cannot use a namespaced variable: %s"));
193 EXTERN char e_missing_backtick[] 193 EXTERN char e_missing_backtick[]
194 INIT(= N_("E1083: missing backtick")); 194 INIT(= N_("E1083: Missing backtick"));
195 EXTERN char e_cannot_delete_vim9_script_function_str[] 195 EXTERN char e_cannot_delete_vim9_script_function_str[]
196 INIT(= N_("E1084: Cannot delete Vim9 script function %s")); 196 INIT(= N_("E1084: Cannot delete Vim9 script function %s"));
197 EXTERN char e_not_callable_type_str[] 197 EXTERN char e_not_callable_type_str[]
198 INIT(= N_("E1085: Not a callable type: %s")); 198 INIT(= N_("E1085: Not a callable type: %s"));
199 EXTERN char e_cannot_use_function_inside_def[] 199 EXTERN char e_cannot_use_function_inside_def[]
200 INIT(= N_("E1086: Cannot use :function inside :def")); 200 INIT(= N_("E1086: Cannot use :function inside :def"));
201 EXTERN char e_cannot_use_index_when_declaring_variable[] 201 EXTERN char e_cannot_use_index_when_declaring_variable[]
202 INIT(= N_("E1087: cannot use an index when declaring a variable")); 202 INIT(= N_("E1087: Cannot use an index when declaring a variable"));
203 // E1088 unused 203 // E1088 unused
204 EXTERN char e_unknown_variable_str[] 204 EXTERN char e_unknown_variable_str[]
205 INIT(= N_("E1089: unknown variable: %s")); 205 INIT(= N_("E1089: Unknown variable: %s"));
206 EXTERN char e_cannot_assign_to_argument[] 206 EXTERN char e_cannot_assign_to_argument[]
207 INIT(= N_("E1090: Cannot assign to argument %s")); 207 INIT(= N_("E1090: Cannot assign to argument %s"));
208 EXTERN char e_function_is_not_compiled_str[] 208 EXTERN char e_function_is_not_compiled_str[]
209 INIT(= N_("E1091: Function is not compiled: %s")); 209 INIT(= N_("E1091: Function is not compiled: %s"));
210 EXTERN char e_cannot_use_list_for_declaration[] 210 EXTERN char e_cannot_use_list_for_declaration[]
211 INIT(= N_("E1092: Cannot use a list for a declaration")); 211 INIT(= N_("E1092: Cannot use a list for a declaration"));
212 EXTERN char e_expected_nr_items_but_got_nr[] 212 EXTERN char e_expected_nr_items_but_got_nr[]
213 INIT(= N_("E1093: Expected %d items but got %d")); 213 INIT(= N_("E1093: Expected %d items but got %d"));
214 EXTERN char e_import_can_only_be_used_in_script[] 214 EXTERN char e_import_can_only_be_used_in_script[]
215 INIT(= N_("E1094: import can only be used in a script")); 215 INIT(= N_("E1094: Import can only be used in a script"));
216 EXTERN char e_unreachable_code_after_return[] 216 EXTERN char e_unreachable_code_after_return[]
217 INIT(= N_("E1095: Unreachable code after :return")); 217 INIT(= N_("E1095: Unreachable code after :return"));
218 EXTERN char e_returning_value_in_function_without_return_type[] 218 EXTERN char e_returning_value_in_function_without_return_type[]
219 INIT(= N_("E1096: Returning a value in a function without a return type")); 219 INIT(= N_("E1096: Returning a value in a function without a return type"));
220 EXTERN char e_line_incomplete[] 220 EXTERN char e_line_incomplete[]
221 INIT(= N_("E1097: line incomplete")); 221 INIT(= N_("E1097: Line incomplete"));
222 // E1098 unused 222 // E1098 unused
223 EXTERN char e_unknown_error_while_executing_str[] 223 EXTERN char e_unknown_error_while_executing_str[]
224 INIT(= N_("E1099: Unknown error while executing %s")); 224 INIT(= N_("E1099: Unknown error while executing %s"));
225 EXTERN char e_cannot_declare_script_variable_in_function[] 225 EXTERN char e_cannot_declare_script_variable_in_function[]
226 INIT(= N_("E1101: Cannot declare a script variable in a function: %s")); 226 INIT(= N_("E1101: Cannot declare a script variable in a function: %s"));
227 EXTERN char e_lambda_function_not_found_str[] 227 EXTERN char e_lambda_function_not_found_str[]
228 INIT(= N_("E1102: lambda function not found: %s")); 228 INIT(= N_("E1102: Lambda function not found: %s"));
229 EXTERN char e_dictionary_not_set[] 229 EXTERN char e_dictionary_not_set[]
230 INIT(= N_("E1103: Dictionary not set")); 230 INIT(= N_("E1103: Dictionary not set"));
231 EXTERN char e_missing_gt[] 231 EXTERN char e_missing_gt[]
232 INIT(= N_("E1104: Missing >")); 232 INIT(= N_("E1104: Missing >"));
233 EXTERN char e_cannot_convert_str_to_string[] 233 EXTERN char e_cannot_convert_str_to_string[]
234 INIT(= N_("E1105: Cannot convert %s to string")); 234 INIT(= N_("E1105: Cannot convert %s to string"));
235 EXTERN char e_one_argument_too_many[] 235 EXTERN char e_one_argument_too_many[]
236 INIT(= N_("E1106: one argument too many")); 236 INIT(= N_("E1106: One argument too many"));
237 EXTERN char e_nr_arguments_too_many[] 237 EXTERN char e_nr_arguments_too_many[]
238 INIT(= N_("E1106: %d arguments too many")); 238 INIT(= N_("E1106: %d arguments too many"));
239 EXTERN char e_string_list_dict_or_blob_required[] 239 EXTERN char e_string_list_dict_or_blob_required[]
240 INIT(= N_("E1107: String, List, Dict or Blob required")); 240 INIT(= N_("E1107: String, List, Dict or Blob required"));
241 EXTERN char e_item_not_found_str[] 241 EXTERN char e_item_not_found_str[]
251 EXTERN char e_overlapping_ranges_for_nr[] 251 EXTERN char e_overlapping_ranges_for_nr[]
252 INIT(= N_("E1113: Overlapping ranges for 0x%lx")); 252 INIT(= N_("E1113: Overlapping ranges for 0x%lx"));
253 EXTERN char e_only_values_of_0x100_and_higher_supported[] 253 EXTERN char e_only_values_of_0x100_and_higher_supported[]
254 INIT(= N_("E1114: Only values of 0x100 and higher supported")); 254 INIT(= N_("E1114: Only values of 0x100 and higher supported"));
255 EXTERN char e_assert_fails_fourth_argument[] 255 EXTERN char e_assert_fails_fourth_argument[]
256 INIT(= N_("E1115: assert_fails() fourth argument must be a number")); 256 INIT(= N_("E1115: \"assert_fails()\" fourth argument must be a number"));
257 EXTERN char e_assert_fails_fifth_argument[] 257 EXTERN char e_assert_fails_fifth_argument[]
258 INIT(= N_("E1116: assert_fails() fifth argument must be a string")); 258 INIT(= N_("E1116: \"assert_fails()\" fifth argument must be a string"));
259 EXTERN char e_cannot_use_bang_with_nested_def[] 259 EXTERN char e_cannot_use_bang_with_nested_def[]
260 INIT(= N_("E1117: Cannot use ! with nested :def")); 260 INIT(= N_("E1117: Cannot use ! with nested :def"));
261 EXTERN char e_cannot_change_list[] 261 EXTERN char e_cannot_change_list[]
262 INIT(= N_("E1118: Cannot change list")); 262 INIT(= N_("E1118: Cannot change list"));
263 EXTERN char e_cannot_change_list_item[] 263 EXTERN char e_cannot_change_list_item[]