Skip to content

Commit

Permalink
patch 8.2.1548: cannot move position of "%%" in message translations
Browse files Browse the repository at this point in the history
Problem:    Cannot move position of "%%" in message translations. (Emir Sarı)
Solution:   Improve the check script.
  • Loading branch information
brammool committed Aug 30, 2020
1 parent 02c037a commit 0b8cf27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/po/check.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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', '', '')
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1548,
/**/
1547,
/**/
Expand Down

0 comments on commit 0b8cf27

Please sign in to comment.