0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 7.4.2250

Problem:    Some error message cannot be translated.
Solution:   Enclose them in _() and N_(). (Dominique Pelle)
This commit is contained in:
Bram Moolenaar
2016-08-24 22:11:55 +02:00
parent ba2099034f
commit 5b30291785
6 changed files with 19 additions and 17 deletions

View File

@@ -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;
}