summaryrefslogtreecommitdiffstats
path: root/locale/generate_locale.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-10-09 18:29:42 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-10-09 18:29:42 +0200
commit18eb66b6aec6abcb0c18f6fdb333b42484d656b0 (patch)
treee1c4271f3eec0289ece071b156ed92e2ddf31cfc /locale/generate_locale.py
parentAdd tooltips to the Activity bar (diff)
parentupdated js/mootools, some parts now coffeescript (diff)
downloadpyload-18eb66b6aec6abcb0c18f6fdb333b42484d656b0.tar.xz
Merged in mineo/pyload (pull request #1)
Diffstat (limited to 'locale/generate_locale.py')
-rw-r--r--locale/generate_locale.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/locale/generate_locale.py b/locale/generate_locale.py
index e972374ee..15b3fcae0 100644
--- a/locale/generate_locale.py
+++ b/locale/generate_locale.py
@@ -6,7 +6,7 @@ from os.path import join
from subprocess import call
-options = ["--from-code=utf-8", "--copyright-holder=pyLoad Team", "--package-name=pyLoad", "--package-version=0.4.8",
+options = ["--from-code=utf-8", "--copyright-holder=pyLoad Team", "--package-name=pyLoad", "--package-version=0.4.9",
"--msgid-bugs-address='bugs@pyload.org'"]
@@ -99,7 +99,7 @@ f = open("includes.txt", "wb")
for path, dir, filenames in walk("./module/web"):
if [True for x in EXCLUDE if x in path]: continue
for file in filenames:
- if (file.endswith(".py") or file.endswith(".html") or file.endswith(".js")) and file not in EXCLUDE:
+ if (file.endswith(".py") or file.endswith(".html") or file.endswith(".js") or file.endswith(".coffee")) and file not in EXCLUDE:
f.write(join(path, file) + "\n")
f.close()