Bram Moolenaar | bc4c505 | 2020-08-13 22:47:35 +0200 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
| 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * |
| 5 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 6 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * Definition of error messages, sorted on error number. |
| 11 | */ |
| 12 | |
| 13 | #ifdef FEAT_EVAL |
| 14 | EXTERN char e_white_space_required_before_and_after[] |
| 15 | INIT(= N_("E1004: white space required before and after '%s'")); |
| 16 | EXTERN char e_cannot_declare_a_scope_variable[] |
| 17 | INIT(= N_("E1016: Cannot declare a %s variable: %s")); |
| 18 | EXTERN char e_cannot_declare_an_environment_variable[] |
| 19 | INIT(= N_("E1016: Cannot declare an environment variable: %s")); |
| 20 | EXTERN char e_const_requires_a_value[] |
| 21 | INIT(= N_("E1021: const requires a value")); |
| 22 | EXTERN char e_type_or_initialization_required[] |
| 23 | INIT(= N_("E1022: type or initialization required")); |
| 24 | EXTERN char e_colon_required_before_a_range[] |
| 25 | INIT(= N_("E1050: Colon required before a range")); |
| 26 | EXTERN char e_no_white_space_allowed_before[] |
| 27 | INIT(= N_("E1068: No white space allowed before '%s'")); |
| 28 | EXTERN char e_white_space_required_after[] |
| 29 | INIT(= N_("E1069: white space required after '%s'")); |
| 30 | EXTERN char e_name_already_defined[] |
| 31 | INIT(= N_("E1073: name already defined: %s")); |
| 32 | EXTERN char e_list_dict_or_blob_required[] |
| 33 | INIT(= N_("E1090: List, Dict or Blob required")); |
| 34 | EXTERN char e_dictionary_not_set[] |
| 35 | INIT(= N_("E1103: Dictionary not set")); |
| 36 | #endif |