Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_po.py « po - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c01c4bdc32d98387127c85888ef1f1a57322bfba (plain)
1
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
#!/usr/bin/python

#update all po files in the LANGS

import os

DOMAIN = "blender"
LANGS = (
  "ar",
  "bg",
  "ca",
  "cs",
  "de",
  "el",
  "es",
  "fi",
  "fr",
  "hr",
  "it",
  "ja",
  "ko",
  "nl",
  "pl",
  "pt_BR",
  "ro",
  "ru",
  "sr@Latn",
  "sr",
  "sv",
  "uk",
  "zh_CN",
  "zh_TW"
)
#-o %s.new.po
for lang in LANGS:
    # update po file
    cmd = "msgmerge --update --lang=%s %s.po %s.pot" % (lang, lang, DOMAIN)
    print(cmd)
    os.system( cmd )