add option to add items missing from dest/messages.json from en/messages

pull/1306/head
Audric Ackermann 5 years ago
parent 596141723b
commit 86fa77966e
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -11,7 +11,7 @@ import traceback
# "addStart": "&" char to add as start char # "addStart": "&" char to add as start char
# "androidReplace": replace all occurences of key value pair # "androidReplace": replace all occurences of key value pair
allowedItemKeys = ['message', 'description', 'comment', 'placeholders', 'androidKey', 'wordCapitalize', 'androidKeyCount', 'androidReplace', 'addStart'] ALLOWED_ITEM_KEYS = ['message', 'description', 'comment', 'placeholders', 'androidKey', 'wordCapitalize', 'androidKeyCount', 'androidReplace', 'addStart']
SPECIFIC_LOCALES_MAPPING = { SPECIFIC_LOCALES_MAPPING = {
'zh_CN': 'zh-rCN', 'zh_CN': 'zh-rCN',
@ -73,27 +73,30 @@ def findCountInItem(quantityStr, items):
# print(f'findCountInItem: {found}, quantityStr: {quantityStr}') # print(f'findCountInItem: {found}, quantityStr: {quantityStr}')
if len(found) != 1: if len(found) != 1:
raise KeyError(f'quantityStr not found: {quantityStr} ') str = f'quantityStr not found: "{quantityStr}"'
raise KeyError(str)
return dict(found[0]) return dict(found[0])
def findByNameSingular(keySearchedFor, singularString): def findByNameSingular(keySearchedFor, singularString):
found = [item for item in singularString if item['@name'] == keySearchedFor] found = [item for item in singularString if item['@name'] == keySearchedFor]
if len(found) != 1: if len(found) != 1:
raise KeyError(f'android key singular not found: {keySearchedFor} but should have been found') str = f'android key singular not found: "{keySearchedFor}" but should have been found'
raise KeyError(str)
return found[0] return found[0]
def findByNamePlurals(keySearchedFor, pluralsString, quantityStr): def findByNamePlurals(keySearchedFor, pluralsString, quantityStr):
found = [item for item in pluralsString if item['@name'] == keySearchedFor] found = [item for item in pluralsString if item['@name'] == keySearchedFor]
if len(found) != 1: if len(found) != 1:
raise KeyError(f'android key plurals not found: {keySearchedFor} but should have been found') str = f'android key plurals not found: "{keySearchedFor}" but should have been found'
raise KeyError(str)
return findCountInItem(quantityStr, found[0]['item']) return findCountInItem(quantityStr, found[0]['item'])
def validateKeysPresent(items): def validateKeysPresent(items):
for keyItem, valueItem in items: for keyItem, valueItem in items:
if keyItem not in allowedItemKeys: if keyItem not in ALLOWED_ITEM_KEYS:
print(f"Invalid key item: {keyItem}") print(f"Invalid key item: {keyItem}")
exit(1) exit(1)
# print(f"keyItem: '{keyItem}', valueItem: '{valueItem}'") # print(f"keyItem: '{keyItem}', valueItem: '{valueItem}'")
@ -129,6 +132,19 @@ def getAndroidKeyCountFromItem(item):
androidKeyCount = item['androidKeyCount'] androidKeyCount = item['androidKeyCount']
return androidKeyCount return androidKeyCount
def keysDifference(src, dest):
srcKeys = set(src.keys())
destKeys = set(dest.keys())
return list (srcKeys - destKeys)
def addEnglishItemAsPlaceHolder(desktopDest, itemEnDesktop):
# add only if the key does not already exists on desktopDest
if key not in desktopDest.keys():
desktopDest[key] = itemEnDesktop
# number of keys on src which do not exist at all on 'dest'
# print('keysDifference:', len(keysDifference(desktopSrc, desktopDest)))
################### MAIN ##################### ################### MAIN #####################
@ -139,6 +155,8 @@ for key, itemEnDesktop in desktopSrc.items():
if 'androidKey' not in itemEnDesktop.keys(): if 'androidKey' not in itemEnDesktop.keys():
# print('androidKey not found for {key}') # print('androidKey not found for {key}')
missingAndroidKeyCount = missingAndroidKeyCount + 1 missingAndroidKeyCount = missingAndroidKeyCount + 1
# ENABLE ME to add a placeholder item from the EN file when it is missing on the target locale
# addEnglishItemAsPlaceHolder(desktopDest, itemEnDesktop)
continue continue
androidKey = itemEnDesktop['androidKey'] androidKey = itemEnDesktop['androidKey']
androidKeyCount = getAndroidKeyCountFromItem(itemEnDesktop) androidKeyCount = getAndroidKeyCountFromItem(itemEnDesktop)
@ -174,10 +192,11 @@ for key, itemEnDesktop in desktopSrc.items():
else: else:
desktopDest[key]['message'] = textMorphed desktopDest[key]['message'] = textMorphed
except KeyError: except KeyError:
print('KeyError exception:', traceback.format_exc()) print('KeyError exception:', traceback.format_exc())
# write the updated json dict to the file # write the updated json dict to the file
with open(destFilePath, 'w') as outfile: with open(destFilePath, 'w') as outfile:
json.dump(desktopDest, outfile, indent=4, ensure_ascii=False) json.dump(desktopDest, outfile, indent=4, ensure_ascii=False)
@ -187,4 +206,4 @@ with open(destFilePath, 'w') as outfile:
print(f"total keys missing {missingAndroidKeyCount}") # androidKey set on desktop but not found on android EN resources print(f"total keys missing {missingAndroidKeyCount}") # androidKey set on desktop but not found on android EN resources
print(f"total text not matching EN to EN {notMatchingCount}") print(f"total text not matching EN to EN {notMatchingCount}")

Loading…
Cancel
Save