Format XML resource: ignore empty Node (which is different than empty String).
This commit is contained in:
parent
89df5380fc
commit
062143012c
1 changed files with 17 additions and 5 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import sys
|
|
||||||
import re
|
import re
|
||||||
|
import sys
|
||||||
from xml.dom import minidom
|
from xml.dom import minidom
|
||||||
|
|
||||||
file = sys.argv[1]
|
file = sys.argv[1]
|
||||||
|
|
@ -19,8 +19,14 @@ resource = dict()
|
||||||
### Strings
|
### Strings
|
||||||
for elem in content.getElementsByTagName('string'):
|
for elem in content.getElementsByTagName('string'):
|
||||||
name = elem.attributes['name'].value
|
name = elem.attributes['name'].value
|
||||||
value = elem.firstChild.nodeValue
|
|
||||||
# Continue if value is empty
|
# Continue if value is empty
|
||||||
|
child = elem.firstChild
|
||||||
|
if child is None:
|
||||||
|
# Print an error to stderr
|
||||||
|
print('Warning: Empty content for string: ' + name + " in file " + file, file=sys.stderr)
|
||||||
|
continue
|
||||||
|
value = child.nodeValue
|
||||||
|
# Continue if string is empty
|
||||||
if value == '""':
|
if value == '""':
|
||||||
# Print an error to stderr
|
# Print an error to stderr
|
||||||
print('Warning: Empty string value for string: ' + name + " in file " + file, file=sys.stderr)
|
print('Warning: Empty string value for string: ' + name + " in file " + file, file=sys.stderr)
|
||||||
|
|
@ -35,11 +41,17 @@ for elem in content.getElementsByTagName('plurals'):
|
||||||
for it in elem.childNodes:
|
for it in elem.childNodes:
|
||||||
if it.nodeType != it.ELEMENT_NODE:
|
if it.nodeType != it.ELEMENT_NODE:
|
||||||
continue
|
continue
|
||||||
value = it.firstChild.nodeValue
|
|
||||||
# Continue if value is empty
|
# Continue if value is empty
|
||||||
|
child = it.firstChild
|
||||||
|
if child is None:
|
||||||
|
# Print an error to stderr
|
||||||
|
print('Warning: Empty content for plurals: ' + name + " in file " + file, file=sys.stderr)
|
||||||
|
continue
|
||||||
|
value = child.nodeValue
|
||||||
|
# Continue if string is empty
|
||||||
if value == '""':
|
if value == '""':
|
||||||
# Print an error to stderr
|
# Print an error to stderr
|
||||||
print('Warning: Empty item value for plural: ' + name + " in file " + file, file=sys.stderr)
|
print('Warning: Empty item value for plurals: ' + name + " in file " + file, file=sys.stderr)
|
||||||
continue
|
continue
|
||||||
plural.appendChild(it.cloneNode(True))
|
plural.appendChild(it.cloneNode(True))
|
||||||
if plural.hasChildNodes():
|
if plural.hasChildNodes():
|
||||||
|
|
@ -59,7 +71,7 @@ result = re.sub(r" ([\?\!\:…])", r" \1", result)
|
||||||
# Special treatment for French wording
|
# Special treatment for French wording
|
||||||
if 'values-fr' in file:
|
if 'values-fr' in file:
|
||||||
## Replace ' with ’
|
## Replace ' with ’
|
||||||
result = re.sub(r"([cdjlmnsu])\\\'", r"\1’", result, flags = re.IGNORECASE)
|
result = re.sub(r"([cdjlmnsu])\\\'", r"\1’", result, flags=re.IGNORECASE)
|
||||||
|
|
||||||
with open(file, "w") as text_file:
|
with open(file, "w") as text_file:
|
||||||
text_file.write(result)
|
text_file.write(result)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue