summaryrefslogtreecommitdiffstats
path: root/locale
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-10-09 18:18:23 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-10-09 18:18:23 +0200
commit57cce481460efd7c9897c59652b544ef65063837 (patch)
treed3e8f4d1465e32c20028258d941c7eb56f15943d /locale
parentadd filejungle.com, fix sharerapid.com (diff)
downloadpyload-57cce481460efd7c9897c59652b544ef65063837.tar.xz
updated js/mootools, some parts now coffeescript
Diffstat (limited to 'locale')
-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()