summaryrefslogtreecommitdiffstats
path: root/src/spellsuggest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/spellsuggest.c')
-rw-r--r--src/spellsuggest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spellsuggest.c b/src/spellsuggest.c
index f21d55f623..e9f2cd570a 100644
--- a/src/spellsuggest.c
+++ b/src/spellsuggest.c
@@ -481,7 +481,7 @@ spell_suggest(int count)
if (*curwin->w_s->b_p_spl == NUL)
{
- emsg(_(e_no_spell));
+ emsg(_(e_spell_checking_is_not_possible));
return;
}
@@ -935,7 +935,7 @@ spell_suggest_file(suginfo_T *su, char_u *fname)
fd = mch_fopen((char *)fname, "r");
if (fd == NULL)
{
- semsg(_(e_notopen), fname);
+ semsg(_(e_cant_open_file_str), fname);
return;
}