summaryrefslogtreecommitdiff
path: root/src/message.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/message.c
parent29ce409bfca52bb8a07e2975d06fd788458e9861 (diff)
downloadvim-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/message.c')
-rw-r--r--src/message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/message.c b/src/message.c
index 25c22f63e..f9ae0e91f 100644
--- a/src/message.c
+++ b/src/message.c
@@ -4057,7 +4057,7 @@ do_browse(
}
else
fname = gui_mch_browse(flags & BROWSE_SAVE,
- title, dflt, ext, initdir, filter);
+ title, dflt, ext, initdir, (char_u *)_(filter));
/* We hang around in the dialog for a while, the user might do some
* things to our files. The Win32 dialog allows deleting or renaming