From f813b4c65a506d227fc0a9eb96132da3f6e3552e Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 13 Aug 2024 20:18:50 +0300 Subject: [PATCH] Fix script for translations --- translation/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translation/check.py b/translation/check.py index 7f693c4de6..11bcd669a2 100644 --- a/translation/check.py +++ b/translation/check.py @@ -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']: + for editor in ['documenteditor','spreadsheeteditor','presentationeditor','pdfeditor']: path = f'{path_to_compare}/{editor}/main/locale/en.json' if os.path.exists(path): compareJsonInFolder(path)