minimize-po.py 1.5 KB
Newer Older
1
#!/usr/bin/env python3
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
#
# Copyright (C) 2018-2019 Red Hat, Inc.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library.  If not, see
# <http://www.gnu.org/licenses/>.

import re
import sys

block = []
msgstr = False
empty = False
unused = False
fuzzy = False

for line in sys.stdin:
    if line.isspace():
        if not empty and not unused and not fuzzy:
            for b in block:
                print(b, end='')

        block = []
        msgstr = False
        fuzzy = False
        block.append(line)
    else:
        if line.startswith("msgstr"):
            msgstr = True
            empty = True

        if line[0] == '#' and "fuzzy" in line:
            fuzzy = True
        if line.startswith("#~ msgstr"):
            unused = True
        if msgstr and re.search(r'".+"', line):
            empty = False

        block.append(line)

if not empty and not unused and not fuzzy:
    for b in block:
        print(b, end='')