Actions
Bug #21381
closedDescription of the bool option formatter shouldn't translate the values
Difficulty:
trivial
Triaged:
No
Pull request:
Team Backlog:
Description
Description of the bool option formatter now includes possible values in the translated string:
_("One of true/false, yes/no, 1/0.")
I've seen it translated into spanish. To prevent accidental translation to other languages, we should extract the values:
_("One of %s.") % ['true/false', 'yes/no', '1/0'].join(', ')
Actions