From e64db1d284f0b89672f1ccf89018a88a63865cd6 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Mon, 8 May 2023 08:26:00 +0800 Subject: 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) https://github.com/vim/vim/commit/276410e78f0b82e3123059383994d2f4c578dfbd --- src/nvim/popupmenu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/popupmenu.c') diff --git a/src/nvim/popupmenu.c b/src/nvim/popupmenu.c index d404aa9647..6d5d063a75 100644 --- a/src/nvim/popupmenu.c +++ b/src/nvim/popupmenu.c @@ -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; } -- cgit