diff --git a/.github/scripts/check_language_toml.py b/.github/scripts/check_language_toml.py index 716497197..2afa27c22 100644 --- a/.github/scripts/check_language_toml.py +++ b/.github/scripts/check_language_toml.py @@ -261,7 +261,9 @@ def check_for_differences(reference_file, file_list, branch, actor): ) report.append("") report.append(" Use the following command to remove them:") - report.append(f" `python scripts/translations/translation_merger.py {locale_dir} remove-unused`") + report.append( + f" `python scripts/translations/translation_merger.py {locale_dir} remove-unused`" + ) report.append("") if extra_keys_list: report.append( @@ -269,11 +271,15 @@ def check_for_differences(reference_file, file_list, branch, actor): ) report.append("") report.append(" Use the following command to add them:") - report.append(f" `python scripts/translations/translation_merger.py {locale_dir} add-missing`") + report.append( + f" `python scripts/translations/translation_merger.py {locale_dir} add-missing`" + ) report.append("") if missing_keys_list or extra_keys_list: - report.append(" See: https://github.com/Stirling-Tools/Stirling-PDF/tree/main/scripts/translations#2-translation_mergerpy") + report.append( + " See: https://github.com/Stirling-Tools/Stirling-PDF/tree/main/scripts/translations#2-translation_mergerpy" + ) else: report.append("2. **Test Status:** ✅ **_Passed_**")