deluge/plugins/WebUi/scripts/extract_template_strings.py

30 lines
790 B
Python
Raw Normal View History

2007-10-07 04:56:01 +00:00
from __future__ import with_statement
import os
import re
2007-11-24 20:39:55 +00:00
template_dirs = ['~/prj/WebUi/templates/deluge',
'~/prj/WebUi/templates/advanced']
2007-10-07 04:56:01 +00:00
2007-11-24 20:39:55 +00:00
template_dirs = [os.path.expanduser(template_dir ) for template_dir in template_dirs]
files = []
for template_dir in template_dirs:
files += [os.path.join(template_dir,fname)
for fname in os.listdir(template_dir)
if fname.endswith('.html')]
2007-10-07 04:56:01 +00:00
all_strings = []
for filename in files:
with open(filename,'r') as f:
content = f.read()
2007-11-06 23:34:23 +00:00
all_strings += re.findall("_\(\"(.*?)\"\)",content)
all_strings += re.findall("_\(\'(.*?)\'\)",content)
2007-10-07 04:56:01 +00:00
all_strings = sorted(set(all_strings))
with open ('./template_strings.py','w') as f:
for value in all_strings:
f.write("_('%s')\n" % value )