1
0
forked from aniani/vim

patch 9.0.1572: error messages are not translated

Problem:    Error messages are not translated.
Solution:   Add _().
This commit is contained in:
Bram Moolenaar
2023-05-20 16:39:07 +01:00
parent 79cdf026f1
commit 50809a45eb
7 changed files with 46 additions and 44 deletions

View File

@@ -887,7 +887,7 @@ ex_terminal(exarg_T *eap)
tty_type = 'c';
else
{
semsg(e_invalid_value_for_argument_str, "type");
semsg(_(e_invalid_value_for_argument_str), "type");
goto theend;
}
opt.jo_set2 |= JO2_TTY_TYPE;