Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/modules/bl_i18n_utils/settings.py
| Context not available. | |||||
| # Check printf mismatches between msgid and msgstr. | # Check printf mismatches between msgid and msgstr. | ||||
| CHECK_PRINTF_FORMAT = ( | CHECK_PRINTF_FORMAT = ( | ||||
| r"(?!<%)(?:%%)*%" # Begining, with handling for crazy things like '%%%%%s' | r"(?!<%)(?:%%)*%" # Beginning, with handling for crazy things like '%%%%%s' | ||||
| r"[-+#0]?" # Flags (note: do not add the ' ' (space) flag here, generates too much false positives!) | r"[-+#0]?" # Flags (note: do not add the ' ' (space) flag here, generates too much false positives!) | ||||
| r"(?:\*|[0-9]+)?" # Width | r"(?:\*|[0-9]+)?" # Width | ||||
| r"(?:\.(?:\*|[0-9]+))?" # Precision | r"(?:\.(?:\*|[0-9]+))?" # Precision | ||||
| Context not available. | |||||