# HG changeset patch # User Bram Moolenaar # Date 1598809503 -7200 # Node ID 4d5081260d5a652ab0821d4e1e41bffe4a7e0d9b # Parent b67dc7207a8e2458c8c30d49091cdb6717757023 patch 8.2.1548: cannot move position of "%%" in message translations Commit: https://github.com/vim/vim/commit/0b8cf278eca45241033033f9bf389e54669a8654 Author: Bram Moolenaar Date: Sun Aug 30 19:42:06 2020 +0200 patch 8.2.1548: cannot move position of "%%" in message translations Problem: Cannot move position of "%%" in message translations. (Emir Sar?) Solution: Improve the check script. diff --git a/src/po/check.vim b/src/po/check.vim --- a/src/po/check.vim +++ b/src/po/check.vim @@ -22,6 +22,7 @@ func! GetMline() " remove '%', not used for formatting. let idline = substitute(idline, "'%'", '', 'g') + let idline = substitute(idline, "%%", '', 'g') " remove '%' used for plural forms. let idline = substitute(idline, '\\nPlural-Forms: .\+;\\n', '', '') diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1548, +/**/ 1547, /**/ 1546,