From 72f14894291fb26413c991aa33e68c0041bbc80a Mon Sep 17 00:00:00 2001 From: Ryan Miller Date: Tue, 17 Sep 2024 14:54:03 +1000 Subject: [PATCH] chore: add ignore list to formatting tag check --- tools/localization/generateLocales.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tools/localization/generateLocales.py b/tools/localization/generateLocales.py index bd9f9b6ba..7ce5c5ee3 100755 --- a/tools/localization/generateLocales.py +++ b/tools/localization/generateLocales.py @@ -21,6 +21,13 @@ from localization.localeTypes import generateLocalesType from util.logger import console from util.fileUtils import createMappedJsonFileDictionary, writeFile +# These string keys are ignored for formatting tag checks +ignored_strings_formatting = { + "pl": [ + # disappearingMessagesTurnedOffYouGroup in pl only has one bold word as the word combines both bold words + "disappearingMessagesTurnedOffYouGroup"] +} + # If the --throw-error-on-missing flag is passed, the script will exit with an error if there are any missing keys or dynamic variables # This is useful for CI/CD pipelines to ensure that all translations are consistent parser = argparse.ArgumentParser(description="Generate locale files") @@ -217,6 +224,8 @@ if problems: printed_locale = False for tag_type, tag_strings in locale_strings.items(): if tag_strings: + if locale in ignored_strings_formatting and tag_strings == ignored_strings_formatting[locale]: + continue if not printed_locale: print(f"{locale} - [Link Here](https://crowdin.com/editor/session-crossplatform-strings/300/en-{locale})") printed_locale = True