diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-04-29 12:22:56 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-04-29 12:22:56 +0200 |
commit | c36651b4b946333dce0a916326d821d2562cf39d (patch) | |
tree | 9bda30e7d6d0719595e66c123985c6d064fef793 /src/quickfix.c | |
parent | 29ce409bfca52bb8a07e2975d06fd788458e9861 (diff) | |
download | vim-git-c36651b4b946333dce0a916326d821d2562cf39d.tar.gz |
patch 8.0.1773: dialog messages are not translatedv8.0.1773
Problem: Dialog messages are not translated.
Solution: Add N_() and _() where needed. (Sergey Alyoshin)
Diffstat (limited to 'src/quickfix.c')
-rw-r--r-- | src/quickfix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c index 19127027f..acff1ec70 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -4115,7 +4115,8 @@ ex_cfile(exarg_T *eap) if (cmdmod.browse) { char_u *browse_file = do_browse(0, (char_u *)_("Error file"), eap->arg, - NULL, NULL, BROWSE_FILTER_ALL_FILES, NULL); + NULL, NULL, + (char_u *)_(BROWSE_FILTER_ALL_FILES), NULL); if (browse_file == NULL) return; set_string_option_direct((char_u *)"ef", -1, browse_file, OPT_FREE, 0); |