summaryrefslogtreecommitdiffstats
path: root/src/help.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-04 21:30:47 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-04 21:30:47 +0000
commita6f7929e62c19a6a2418a016b4c59b83eb1887ac (patch)
treedff539628404695bd64e68602c8f7f62d9dd12f7 /src/help.c
parent548911ee145cdd166f20e46aa720d1631e66f64e (diff)
patch 8.2.4005: error messages are spread outv8.2.4005
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/help.c')
-rw-r--r--src/help.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/help.c b/src/help.c
index 519edca2bb..f07a8fc1cc 100644
--- a/src/help.c
+++ b/src/help.c
@@ -104,7 +104,7 @@ ex_help(exarg_T *eap)
{
#ifdef FEAT_MULTI_LANG
if (lang != NULL)
- semsg(_("E661: Sorry, no '%s' help for %s"), lang, arg);
+ semsg(_(e_sorry_no_str_help_for_str), lang, arg);
else
#endif
semsg(_(e_sorry_no_help_for_str), arg);
@@ -1058,7 +1058,7 @@ helptags_one(
utf8 = this_utf8;
else if (utf8 != this_utf8)
{
- semsg(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
+ semsg(_(e_mix_of_help_file_encodings_within_language_str), files[fi]);
mix = !got_int;
got_int = TRUE;
}