1
0
forked from aniani/vim

patch 9.0.1594: some internal error messages are translated

Problem:    Some internal error messages are translated.
Solution:   Consistently do not translate internal error messages.
            (closes #12459)
This commit is contained in:
RestorerZ
2023-05-31 17:12:14 +01:00
committed by Bram Moolenaar
parent 3c240f608c
commit 68ebcee023
22 changed files with 91 additions and 91 deletions

View File

@@ -379,7 +379,7 @@ set_string_option_direct(
if (idx < 0) // not found (should not happen)
{
semsg(_(e_internal_error_str), "set_string_option_direct()");
siemsg(_("For option %s"), name);
siemsg("For option %s", name);
return;
}
}