# HG changeset patch # User Christian Brabandt # Date 1500230703 -7200 # Node ID 325a1dbf662da305bb1ed79448794666db8af36b # Parent 50455b3aeae54b4e87026613247bac3ca0e7e7a7 patch 8.0.0726: translations cleanup script is too conservative commit https://github.com/vim/vim/commit/4d2ba822fd80f5b5ff6d9195a5f0fd802aabf304 Author: Bram Moolenaar Date: Sun Jul 16 20:32:25 2017 +0200 patch 8.0.0726: translations cleanup script is too conservative Problem: Translations cleanup script is too conservative. Solution: Also delete untranslated messages. diff --git a/src/po/cleanup.vim b/src/po/cleanup.vim --- a/src/po/cleanup.vim +++ b/src/po/cleanup.vim @@ -8,12 +8,18 @@ let s:was_diff = &diff setl nodiff -silent g/^#: /d +" untranslated message preceded by c-format or comment +silent g/^#, c-format\n#/.d +silent g/^#\..*\n#/.d + +silent g/^#[:~] /d silent g/^#, fuzzy\(, .*\)\=\nmsgid ""\@!/.+1,/^$/-1s/^/#\~ / silent g/^msgstr"/s//msgstr "/ silent g/^msgid"/s//msgid "/ silent g/^msgstr ""\(\n"\)\@!/?^msgid?,.s/^/#\~ / +silent g/^\n\n\n/.d + if s:was_diff setl diff endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 726, +/**/ 725, /**/ 724,