deluge/plugins/WebUi/scripts/extract_template_strings.py

30 lines
756 B
Python
Raw Normal View History

2007-12-23 02:42:22 +00:00
from __future__ import with_statement
import os
import re
template_dirs = ['~/prj/WebUi/templates/deluge',
'~/prj/WebUi/templates/advanced']
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')]
all_strings = []
for filename in files:
2008-01-03 00:57:36 +00:00
f = open(filename,'r')
content = f.read()
all_strings += re.findall("_\(\"(.*?)\"\)",content)
all_strings += re.findall("_\(\'(.*?)\'\)",content)
2007-12-23 02:42:22 +00:00
all_strings = sorted(set(all_strings))
2008-01-03 00:57:36 +00:00
f = open ('./template_strings.py','w')
for value in all_strings:
f.write("_('%s')\n" % value )
2007-12-23 02:42:22 +00:00