diff options
Diffstat (limited to 'src/spellsuggest.c')
-rw-r--r-- | src/spellsuggest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spellsuggest.c b/src/spellsuggest.c index f21d55f62..e9f2cd570 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; } |