Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crowdin/generate_desktop_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def convert_all_files(input_directory: str, is_qa_build: bool):
exported_locales = []
glossary_dict = load_glossary_dict(non_translatable_strings_file)

for language in [source_language] + [] if is_qa_build else target_languages:
for language in [source_language] + ([] if is_qa_build else target_languages):
lang_locale = language['locale']
lang_two_letter_code = language['twoLettersCode']
print(f"\033[2K{Fore.WHITE}⏳ Converting translations for {lang_locale} to target format...{Style.RESET_ALL}", end='\r')
Expand Down