diff options
author | mkaay <mkaay@mkaay.de> | 2010-12-12 17:45:40 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-12-12 17:45:40 +0100 |
commit | ddc6c0c15c132933e9676d563bad37288a3212f5 (patch) | |
tree | a5d6ecbcc4b96be9f8aead14262f3aa3ec69a5df /locale/generate_locale.py | |
parent | fixed progress when resuming (diff) | |
download | pyload-ddc6c0c15c132933e9676d563bad37288a3212f5.tar.xz |
universal progress (ex. unrar progress), link info now emits update event, updated .pot
Diffstat (limited to 'locale/generate_locale.py')
-rw-r--r-- | locale/generate_locale.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/locale/generate_locale.py b/locale/generate_locale.py index 737ba7a85..41dc9a931 100644 --- a/locale/generate_locale.py +++ b/locale/generate_locale.py @@ -22,7 +22,7 @@ for path, dir, filenames in walk("./module"): f.close() call(["xgettext", "--files-from=includes.txt", "--default-domain=core", "--from-code=utf-8", - "--copyright-holder=pyLoad Team", "--package-name=pyLoad", "--package-version=0.4","--msgid-bugs-address='bugs@pyload.org'"]) + "--copyright-holder=pyLoad Team", "--package-name=pyLoad", "--package-version=0.4.3","--msgid-bugs-address='bugs@pyload.org'"]) f = open("core.po", "rb") @@ -53,7 +53,7 @@ for path, dir, filenames in walk("./module/gui"): f.close() call(["xgettext", "--files-from=includes.txt", "--default-domain=gui", "--from-code=utf-8", - "--copyright-holder=pyLoad Team", "--package-name=pyLoad", "--package-version=0.4","--msgid-bugs-address='bugs@pyload.org'"]) + "--copyright-holder=pyLoad Team", "--package-name=pyLoad", "--package-version=0.4.3","--msgid-bugs-address='bugs@pyload.org'"]) f = open("gui.po", "rb") @@ -76,7 +76,7 @@ f.write("./pyLoadCli.py\n") f.close() call(["xgettext", "--files-from=includes.txt", "--default-domain=cli", "--from-code=utf-8", - "--copyright-holder=pyLoad Team", "--package-name=pyLoad", "--package-version=0.4","--msgid-bugs-address='bugs@pyload.org'"]) + "--copyright-holder=pyLoad Team", "--package-name=pyLoad", "--package-version=0.4.3","--msgid-bugs-address='bugs@pyload.org'"]) f = open("cli.po", "rb") @@ -98,7 +98,7 @@ f.write("./module/setup.py\n") f.close() call(["xgettext", "--files-from=includes.txt", "--default-domain=setup", "--from-code=utf-8", - "--copyright-holder=pyLoad Team", "--package-name=pyLoad", "--package-version=0.4","--msgid-bugs-address='bugs@pyload.org'"]) + "--copyright-holder=pyLoad Team", "--package-name=pyLoad", "--package-version=0.4.3","--msgid-bugs-address='bugs@pyload.org'"]) f = open("setup.po", "rb") @@ -118,4 +118,4 @@ print "TODO: Generate django.po with python manage.py makemessages --all --local call(["mv", "./module/web/locale/en/LC_MESSAGES/django.po", "./locale/django.pot"]) print -print "All finished."
\ No newline at end of file +print "All finished." |