vim-patch:9.0.1523: some error messages are not marked for translation (#23529)

Problem:    Some error messages are not marked for translation.
Solution:   Surround the messages in _(). (closes vim/vim#12356)

276410e78f
This commit is contained in:
zeertzjq
2023-05-08 08:26:00 +08:00
committed by GitHub
parent 13e7e4e67a
commit e64db1d284
4 changed files with 6 additions and 5 deletions

View File

@@ -1083,7 +1083,7 @@ void pum_show_popupmenu(vimmenu_T *menu)
// When there are only Terminal mode menus, using "popup Edit" results in
// pum_size being zero.
if (pum_size <= 0) {
emsg(e_menuothermode);
emsg(_(e_menu_only_exists_in_another_mode));
return;
}