summaryrefslogtreecommitdiff
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-24 22:11:55 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-24 22:11:55 +0200
commit5b30291785e6b9be1a607504c14bd03c601b59a6 (patch)
tree86e6c5c0cf7090f485392cfecb80b43602a8b0cd /src/ex_cmds.c
parentba2099034f92a2814494f37bddb0c57d034401b4 (diff)
downloadvim-git-5b30291785e6b9be1a607504c14bd03c601b59a6.tar.gz
patch 7.4.2250v7.4.2250
Problem: Some error message cannot be translated. Solution: Enclose them in _() and N_(). (Dominique Pelle)
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 9e6a72deb..d690f39a2 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -7088,7 +7088,7 @@ helptags_one(
|| filecount == 0)
{
if (!got_int)
- EMSG2("E151: No match: %s", NameBuff);
+ EMSG2(_("E151: No match: %s"), NameBuff);
return;
}
@@ -7331,7 +7331,7 @@ do_helptags(char_u *dirname, int add_help_tags)
EW_FILE|EW_SILENT) == FAIL
|| filecount == 0)
{
- EMSG2("E151: No match: %s", NameBuff);
+ EMSG2(_("E151: No match: %s"), NameBuff);
return;
}