mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.0263: a few new Vim9 messages are not localized
Problem: A few new Vim9 messages are not localized. Solution: Add the gettext wrapper. (Dominique Pelle, closes #5647)
This commit is contained in:
@@ -1611,12 +1611,12 @@ ex_disassemble(exarg_T *eap)
|
||||
vim_free(fname);
|
||||
if (ufunc == NULL)
|
||||
{
|
||||
semsg("E1061: Cannot find function %s", eap->arg);
|
||||
semsg(_("E1061: Cannot find function %s"), eap->arg);
|
||||
return;
|
||||
}
|
||||
if (ufunc->uf_dfunc_idx < 0)
|
||||
{
|
||||
semsg("E1062: Function %s is not compiled", eap->arg);
|
||||
semsg(_("E1062: Function %s is not compiled"), eap->arg);
|
||||
return;
|
||||
}
|
||||
if (ufunc->uf_name_exp != NULL)
|
||||
|
Reference in New Issue
Block a user