summaryrefslogtreecommitdiffstats
path: root/src/help.c
diff options
context:
space:
mode:
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;
}