Actions
Issue #8315
closedFound some instances of bad i18n
Start date:
Due date:
Estimated time:
Severity:
2. Medium
Version:
Platform Release:
OS:
Triaged:
Yes
Groomed:
No
Sprint Candidate:
No
Tags:
Easy Fix
Sprint:
Quarter:
Description
$ grep "_(f" **/*.py
pulpcore/app/models/content.py: _(f"Checksum algorithms {bad_keys} are forbidden for this Pulp instance.")
pulpcore/app/models/content.py: _(f"Missing required checksum algorithms {missing_keys}.")
pulpcore/app/models/content.py: _(f"Checksum algorithm {algorithm} forbidden for this Pulp instance.")
pulpcore/app/models/content.py: _(f"Checksum algorithm {algorithm} forbidden for this Pulp instance.")
pulpcore/app/serializers/content.py: _(f"Checksum algorithms {bad_algs} forbidden for this Pulp instance.")
Variables in f-strings are interpolated before being passed to gettext. We need to switch these to _("{}").format(var)
.
Related issues
Actions
Fix bad i18n
fixes #8315