[VE] Fix build

This commit is contained in:
Julia Radzhabova
2024-11-18 20:48:41 +03:00
parent 07ffe3c7d4
commit d94d3ba5e9
4 changed files with 222 additions and 3 deletions

View File

@ -17,7 +17,7 @@ def sortByAlphabet(inputStr):
return inputStr.lower()
app_names = ['documenteditor', 'presentationeditor', 'spreadsheeteditor', 'pdfeditor']
app_names = ['documenteditor', 'presentationeditor', 'spreadsheeteditor', 'pdfeditor', 'visioeditor']
app_types = ['embed', 'main', 'forms']
prefix_apps = '../apps/'
prefix_src = 'src/'

View File

@ -70,7 +70,7 @@ def compareJsonInFolder(path):
if os.path.exists(f'{path_to_compare}/en.json'):
compareJsonInFolder(f'{path_to_compare}/en.json')
else:
for editor in ['documenteditor','spreadsheeteditor','presentationeditor','pdfeditor']:
for editor in ['documenteditor','spreadsheeteditor','presentationeditor','pdfeditor','visioeditor']:
path = f'{path_to_compare}/{editor}/main/locale/en.json'
if os.path.exists(path):
compareJsonInFolder(path)