blob: f6132760080bc954e23a7732534eb1f1b80910b0 [file] [log] [blame]
Bram Moolenaarbc4c5052020-08-13 22:47:35 +02001/* 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
14EXTERN char e_white_space_required_before_and_after[]
15 INIT(= N_("E1004: white space required before and after '%s'"));
16EXTERN char e_cannot_declare_a_scope_variable[]
17 INIT(= N_("E1016: Cannot declare a %s variable: %s"));
18EXTERN char e_cannot_declare_an_environment_variable[]
19 INIT(= N_("E1016: Cannot declare an environment variable: %s"));
20EXTERN char e_const_requires_a_value[]
21 INIT(= N_("E1021: const requires a value"));
22EXTERN char e_type_or_initialization_required[]
23 INIT(= N_("E1022: type or initialization required"));
24EXTERN char e_colon_required_before_a_range[]
25 INIT(= N_("E1050: Colon required before a range"));
26EXTERN char e_no_white_space_allowed_before[]
27 INIT(= N_("E1068: No white space allowed before '%s'"));
28EXTERN char e_white_space_required_after[]
29 INIT(= N_("E1069: white space required after '%s'"));
30EXTERN char e_name_already_defined[]
31 INIT(= N_("E1073: name already defined: %s"));
32EXTERN char e_list_dict_or_blob_required[]
33 INIT(= N_("E1090: List, Dict or Blob required"));
34EXTERN char e_dictionary_not_set[]
35 INIT(= N_("E1103: Dictionary not set"));
36#endif