Index: localeTools.py |
=================================================================== |
--- a/localeTools.py |
+++ b/localeTools.py |
@@ -241,27 +241,16 @@ def fromJSON(path, data): |
file.write(generateStringEntry(key, value['message'], path)) |
file.close() |
def preprocessChromeLocale(path, metadata, isMaster): |
fileHandle = codecs.open(path, 'rb', encoding='utf-8') |
data = json.load(fileHandle) |
fileHandle.close() |
- # Remove synced keys, these don't need to be translated |
- if metadata.has_section('locale_sync'): |
- for file, stringIDs in metadata.items('locale_sync'): |
- for stringID in re.split(r'\s+', stringIDs): |
- if file == 'remove': |
- key = stringID |
- else: |
- key = re.sub(r'\..*', '', file) + '_' + re.sub(r'\W', '_', stringID) |
- if key in data: |
- del data[key] |
- |
for key, value in data.iteritems(): |
if isMaster: |
# Make sure the key name is listed in the description |
if "description" in value: |
value["description"] = "%s: %s" % (key, value["description"]) |
else: |
value["description"] = key |
else: |