summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds2.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-04-29 12:22:56 +0200
committerBram Moolenaar <Bram@vim.org>2018-04-29 12:22:56 +0200
commitc36651b4b946333dce0a916326d821d2562cf39d (patch)
tree9bda30e7d6d0719595e66c123985c6d064fef793 /src/ex_cmds2.c
parent29ce409bfca52bb8a07e2975d06fd788458e9861 (diff)
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/ex_cmds2.c')
-rw-r--r--src/ex_cmds2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index 69283d693c..7fa4907bda 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -4140,7 +4140,8 @@ ex_source(exarg_T *eap)
char_u *fname = NULL;
fname = do_browse(0, (char_u *)_("Source Vim script"), eap->arg,
- NULL, NULL, BROWSE_FILTER_MACROS, NULL);
+ NULL, NULL,
+ (char_u *)_(BROWSE_FILTER_MACROS), NULL);
if (fname != NULL)
{
cmd_source(fname, eap);