update_po allow comment in the list of files to translate
svn: r20502
This commit is contained in:
parent
2411f22310
commit
54f78b6358
@ -1,3 +1,4 @@
|
||||
#list of all files with to translate strings
|
||||
../gramps/grampsapp.py
|
||||
../gramps/cli/arghandler.py
|
||||
../gramps/cli/argparser.py
|
||||
@ -659,6 +660,7 @@
|
||||
../gramps/plugins/tool/leak.glade
|
||||
../gramps/plugins/tool/finddupes.glade
|
||||
../gramps/plugins/tool/mergecitations.glade
|
||||
# TEST
|
||||
../gramps/plugins/tool/ownereditor.glade
|
||||
../gramps/plugins/tool/patchnames.glade
|
||||
../gramps/plugins/tool/phpgedview.glade
|
||||
|
@ -284,7 +284,7 @@ def listing(name, extensionlist):
|
||||
"""
|
||||
|
||||
f = open('gramps')
|
||||
files = [file.strip() for file in f]
|
||||
files = [file.strip() for file in f if file and not file[0]=='#']
|
||||
f.close()
|
||||
|
||||
temp = open(name, 'w')
|
||||
|
Loading…
Reference in New Issue
Block a user