vim-patch:8.2.1697: inconsistent capitalization of error messages (#23476)

Problem:    Inconsistent capitalization of error messages.
Solution:   Always start with a capital.

7707228aac

Most of these errors are Vim9 script only.

Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
zeertzjq
2023-05-04 23:17:43 +08:00
committed by GitHub
parent fe7cdc7cc0
commit b16729f816
4 changed files with 12 additions and 10 deletions

View File

@@ -89,7 +89,7 @@
static const char *e_missbrac = N_("E111: Missing ']'");
static const char *e_list_end = N_("E697: Missing end of List ']': %s");
static const char *e_cannot_slice_dictionary
= N_("E719: cannot slice a Dictionary");
= N_("E719: Cannot slice a Dictionary");
static const char e_cannot_index_special_variable[]
= N_("E909: Cannot index a special variable");
static const char *e_nowhitespace