commit | 276410e78f0b82e3123059383994d2f4c578dfbd | [log] [tgz] |
---|---|---|
author | zeertzjq <zeertzjq@outlook.com> | Sun May 07 21:59:33 2023 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun May 07 21:59:33 2023 +0100 |
tree | 3994b117d2fb41e4a8b141d30b36ca04ea94ecf9 | |
parent | e4098457ab9c94225b1b0e3c5e06b82b75587971 [diff] [blame] |
patch 9.0.1523: some error messages are not marked for translation Problem: Some error messages are not marked for translation. Solution: Surround the messages in _(). (closes #12356)
diff --git a/src/popupmenu.c b/src/popupmenu.c index 9cba669..7210420 100644 --- a/src/popupmenu.c +++ b/src/popupmenu.c
@@ -1526,7 +1526,7 @@ // pum_size being zero. if (pum_size <= 0) { - emsg(e_menu_only_exists_in_another_mode); + emsg(_(e_menu_only_exists_in_another_mode)); return; }