# HG changeset patch # User Christian Brabandt # Date 1530190807 -7200 # Node ID 1681178c4434a64bc6ce31c54707ad0516b13c73 # Parent 508f1664bd8d7737dc7b97c1cbecd6f3ff819b3c patch 8.1.0122: translators don't always understand the maintainer message commit https://github.com/vim/vim/commit/0c183198727b80fd7e52fb29cc1dcd08d79a281c Author: Bram Moolenaar Date: Thu Jun 28 14:54:43 2018 +0200 patch 8.1.0122: translators don't always understand the maintainer message Problem: Translators don't always understand the maintainer message. Solution: Add a comment that ends up in the generated po file. (Christian Brabandt, closes #3037) diff --git a/src/message.c b/src/message.c --- a/src/message.c +++ b/src/message.c @@ -982,7 +982,11 @@ ex_messages(exarg_T *eap) { s = mch_getenv((char_u *)"LANG"); if (s != NULL && *s != NUL) + // The next comment is extracted by xgettext and put in po file for + // translators to read. msg_attr((char_u *) + // Translator: Please replace the name and email address + // with the appropriate text for your translation. _("Messages maintainer: Bram Moolenaar "), HL_ATTR(HLF_T)); } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -790,6 +790,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 122, +/**/ 121, /**/ 120,