view src/po/cleanup.vim @ 11686:325a1dbf662d v8.0.0726

patch 8.0.0726: translations cleanup script is too conservative commit https://github.com/vim/vim/commit/4d2ba822fd80f5b5ff6d9195a5f0fd802aabf304 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Sun, 16 Jul 2017 20:45:03 +0200
parents 903088c7a7c6
children 5d26e9a7f8f2
line wrap: on
line source

" Vim script to cleanup a .po file:
" - Remove line numbers (avoids that diffs are messy).
" - Comment-out fuzzy and empty messages.
" - Make sure there is a space before the string (required for Solaris).
" Requires Vim 6.0 or later (because of multi-line search patterns).

" Disable diff mode, because it makes this very slow
let s:was_diff = &diff
setl nodiff

" 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