author | Rémi Cardona <remi.cardona@logilab.fr> |
Fri, 12 Sep 2014 14:10:03 +0200 | |
changeset 9951 | 8cdcbf3f4fd0 |
parent 8695 | 358d8bed9626 |
child 10589 | 7c23b7de2b8d |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
6356
e89f71a41e20
[c-c i18n] namespace/line wrap cleanup + dynamically compute available language + make it works in installed mode
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
18 |
"""Some i18n/gettext utilities.""" |
0 | 19 |
|
20 |
__docformat__ = "restructuredtext en" |
|
21 |
||
22 |
import re |
|
23 |
import os |
|
1132 | 24 |
from os.path import join, basename, splitext, exists |
0 | 25 |
from glob import glob |
26 |
||
27 |
from cubicweb.toolsutils import create_dir |
|
28 |
||
29 |
def extract_from_tal(files, output_file): |
|
30 |
"""extract i18n strings from tal and write them into the given output file |
|
31 |
using standard python gettext marker (_) |
|
32 |
""" |
|
33 |
output = open(output_file, 'w') |
|
34 |
for filepath in files: |
|
35 |
for match in re.finditer('i18n:(content|replace)="([^"]+)"', open(filepath).read()): |
|
7896
4c954e1e73ef
[lint] remove uses of "print >> sys.stderr" (closes #1908571)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7155
diff
changeset
|
36 |
output.write('_("%s")' % match.group(2)) |
0 | 37 |
output.close() |
38 |
||
39 |
||
3275
5247789df541
[gettext] provide GNU contexts to avoid translations ambiguities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3202
diff
changeset
|
40 |
def add_msg(w, msgid, msgctx=None): |
0 | 41 |
"""write an empty pot msgid definition""" |
42 |
if isinstance(msgid, unicode): |
|
43 |
msgid = msgid.encode('utf-8') |
|
3275
5247789df541
[gettext] provide GNU contexts to avoid translations ambiguities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3202
diff
changeset
|
44 |
if msgctx: |
5247789df541
[gettext] provide GNU contexts to avoid translations ambiguities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3202
diff
changeset
|
45 |
if isinstance(msgctx, unicode): |
5247789df541
[gettext] provide GNU contexts to avoid translations ambiguities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3202
diff
changeset
|
46 |
msgctx = msgctx.encode('utf-8') |
5247789df541
[gettext] provide GNU contexts to avoid translations ambiguities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3202
diff
changeset
|
47 |
w('msgctxt "%s"\n' % msgctx) |
0 | 48 |
msgid = msgid.replace('"', r'\"').splitlines() |
49 |
if len(msgid) > 1: |
|
50 |
w('msgid ""\n') |
|
51 |
for line in msgid: |
|
52 |
w('"%s"' % line.replace('"', r'\"')) |
|
53 |
else: |
|
54 |
w('msgid "%s"\n' % msgid[0]) |
|
55 |
w('msgstr ""\n\n') |
|
56 |
||
8620
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
57 |
def execute2(args): |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
58 |
# XXX replace this with check_output in Python 2.7 |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
59 |
from subprocess import Popen, PIPE, CalledProcessError |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
60 |
p = Popen(args, stdout=PIPE, stderr=PIPE) |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
61 |
out, err = p.communicate() |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
62 |
if p.returncode != 0: |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
63 |
exc = CalledProcessError(p.returncode, args[0]) |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
64 |
exc.cmd = args |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
65 |
exc.data = (out, err) |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
66 |
raise exc |
0 | 67 |
|
68 |
def available_catalogs(i18ndir=None): |
|
69 |
if i18ndir is None: |
|
70 |
wildcard = '*.po' |
|
71 |
else: |
|
72 |
wildcard = join(i18ndir, '*.po') |
|
73 |
for popath in glob(wildcard): |
|
74 |
lang = splitext(basename(popath))[0] |
|
75 |
yield lang, popath |
|
76 |
||
77 |
||
78 |
def compile_i18n_catalogs(sourcedirs, destdir, langs): |
|
79 |
"""generate .mo files for a set of languages into the `destdir` i18n directory |
|
80 |
""" |
|
8620
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
81 |
from subprocess import CalledProcessError |
0 | 82 |
from logilab.common.fileutils import ensure_fs_mode |
7155
4bab50b02927
[cwctl] refactor ui messages aiming for consistency and simplicity
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
6356
diff
changeset
|
83 |
print '-> compiling message catalogs to %s' % destdir |
0 | 84 |
errors = [] |
85 |
for lang in langs: |
|
86 |
langdir = join(destdir, lang, 'LC_MESSAGES') |
|
87 |
if not exists(langdir): |
|
88 |
create_dir(langdir) |
|
89 |
pofiles = [join(path, '%s.po' % lang) for path in sourcedirs] |
|
90 |
pofiles = [pof for pof in pofiles if exists(pof)] |
|
91 |
mergedpo = join(destdir, '%s_merged.po' % lang) |
|
92 |
try: |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2395
diff
changeset
|
93 |
# merge instance/cubes messages catalogs with the stdlib's one |
8620
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
94 |
cmd = ['msgcat', '--use-first', '--sort-output', '--strict', |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
95 |
'-o', mergedpo] + pofiles |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
96 |
execute2(cmd) |
3118 | 97 |
# make sure the .mo file is writeable and compiles with *msgfmt* |
0 | 98 |
applmo = join(destdir, lang, 'LC_MESSAGES', 'cubicweb.mo') |
99 |
try: |
|
100 |
ensure_fs_mode(applmo) |
|
101 |
except OSError: |
|
102 |
pass # suppose not exists |
|
8620
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
103 |
execute2(['msgfmt', mergedpo, '-o', applmo]) |
8695
358d8bed9626
[toward-py3k] rewrite to "except AnException as exc:" (part of #2711624)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8620
diff
changeset
|
104 |
except CalledProcessError as exc: |
8620
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
105 |
errors.append(u'while handling language %s:\ncmd:\n%s\nstdout:\n%s\nstderr:\n%s\n' % |
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
106 |
(lang, exc.cmd, repr(exc.data[0]), repr(exc.data[1]))) |
8695
358d8bed9626
[toward-py3k] rewrite to "except AnException as exc:" (part of #2711624)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8620
diff
changeset
|
107 |
except Exception as exc: |
8620
61c4bdd70dd8
[cw-ctl] silence msgcat and msgfmt (closes #2527594)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8225
diff
changeset
|
108 |
errors.append(u'while handling language %s: %s' % (lang, exc)) |
0 | 109 |
try: |
110 |
# clean everything |
|
111 |
os.unlink(mergedpo) |
|
112 |
except Exception: |
|
113 |
continue |
|
114 |
return errors |