lyx_mirror/po/postats.py

152 lines
4.8 KiB
Python
Raw Permalink Normal View History

#! /usr/bin/python3
# -*- coding: utf-8 -*-
# Copyright (C) 2007 Michael Gerz <michael.gerz@teststep.org>
# Copyright (C) 2007 José Matos <jamatos@lyx.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
"""
This script extracts some information from the po file headers (last
translator, revision date), generates the corresponding gmo files
to retrieve the number of translated/fuzzy/untranslated messages,
and generates a PHP web page.
Invocation:
postats.py lyx_version po_files > "pathToWebPages"/i18n.inc
2024-09-06 21:06:52 +00:00
or simply
make i18n.inc
to create stats only for allowed langauages in LINGUAS file
(typically good for stable branch stats).
"""
from __future__ import print_function
2022-11-23 22:29:11 +00:00
# Modify this when you change branch (e.g. stats for stable branch).
# Note that an empty lyx_branch variable will "do the right thing" for master.
lyx_branch=""
# these po-files will be skipped:
ommitted = ('en.po')
import os
import sys
import codecs
import subprocess
from subprocess import Popen, PIPE
# Reset the locale
import locale
locale.setlocale(locale.LC_ALL, 'C')
os.environ['LC_ALL'] = 'C'
def extract_number(line, issues, prop):
"""
line is a string like
'588 translated messages, 1248 fuzzy translations, 2 untranslated messages.'
Any one of these substrings may not appear if the associated number is 0.
issues is the set of words following the number to be extracted,
ie, 'translated', 'fuzzy', or 'untranslated'.
extract_number returns a list with those numbers, or sets it to
zero if the word is not found in the string.
"""
for issue in issues:
i = line.find(issue)
if i == -1:
prop[issue] = 0
else:
prop[issue] = int(line[:i].split()[-1])
def read_pofile(pofile):
""" Read the header of the pofile and return it as a dictionary"""
header = {}
read_header = False
for line in codecs.open(pofile, encoding='utf8'):
line = line[:-1]
if line[:5] == 'msgid':
if read_header:
break
read_header = True
continue
if not line or line[0] == '#' or line == 'msgstr ""' or not read_header:
continue
line = line.strip('"')
args = line.split(': ')
if len(args) == 1:
continue
header[args[0]] = args[1].strip()[:-2]
return header
def run_msgfmt(pofile):
""" pofile is the name of the po file.
The function runs msgfmt on it and returns corresponding php code.
"""
if not pofile.endswith('.po'):
print("%s is not a po file" % pofile, file=sys.stderr)
sys.exit(1)
dirname = os.path.dirname(pofile)
gmofile = pofile.replace('.po', '.gmo')
header = read_pofile(pofile)
charset= header['Content-Type'].split('charset=')[1]
# po file properties
prop = {}
prop["langcode"] = os.path.basename(pofile)[:-3]
prop["date"] = header['PO-Revision-Date'].split()[0]
prop["email"] = header['Last-Translator'].split('<')[1][:-1]
prop["email"] = prop["email"].replace("@", " () ")
prop["email"] = prop["email"].replace(".", " ! ")
prop["translator"] = header['Last-Translator'].split('<')[0].strip()
msg = subprocess.check_output(["msgfmt", "--statistics",
"-o", gmofile, # FIXME: do we really want a gmofile as side-effect?
pofile], stderr=subprocess.STDOUT)
if sys.version_info[0] > 2:
msg = msg.decode('utf8')
extract_number(msg, ('translated', 'fuzzy', 'untranslated'), prop)
return """
array ( 'langcode' => '%(langcode)s', "date" => "%(date)s",
"msg_tr" => %(translated)d, "msg_fu" => %(fuzzy)d, "msg_nt" => %(untranslated)d,
"translator" => "%(translator)s", "email" => "%(email)s")""" % prop
if __name__ == "__main__":
if lyx_branch:
2013-05-30 18:09:26 +00:00
branch_tag = lyx_branch
else:
2013-05-30 18:09:26 +00:00
branch_tag = "master"
print("""<?php
// The current version
$lyx_version = "%s";
2024-08-22 21:00:50 +00:00
// The branch tag which will be used for git URL pointing to proper .po file
$branch_tag = "%s";
// The data itself
$podata = array (%s
)?>""" % (sys.argv[1], branch_tag,
",".join([run_msgfmt(po) for po in sys.argv[2:]
if po not in ommitted])))