diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-08 08:26:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 08:26:00 +0800 |
commit | e64db1d284f0b89672f1ccf89018a88a63865cd6 (patch) | |
tree | edd9d9422910b5a68c1a9d2995166b6a1ea6e808 /src/nvim/popupmenu.c | |
parent | 13e7e4e67ada0cd359977ca1f56ef9d8ce8c938c (diff) | |
download | rneovim-e64db1d284f0b89672f1ccf89018a88a63865cd6.tar.gz rneovim-e64db1d284f0b89672f1ccf89018a88a63865cd6.tar.bz2 rneovim-e64db1d284f0b89672f1ccf89018a88a63865cd6.zip |
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
Diffstat (limited to 'src/nvim/popupmenu.c')
-rw-r--r-- | src/nvim/popupmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |