gh-77956: Add the words 'default' and 'version' help text localizable (GH-12711)

Co-authored-by: paul.j3
Co-authored-by: Jérémie Detrey <jdetrey@users.noreply.github.com>
This commit is contained in:
Emmanuel Arias 2024-02-26 16:20:39 -03:00 committed by GitHub
parent 37a13b9413
commit da382aaf52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View file

@ -708,7 +708,7 @@ def _get_help_string(self, action):
if action.default is not SUPPRESS:
defaulting_nargs = [OPTIONAL, ZERO_OR_MORE]
if action.option_strings or action.nargs in defaulting_nargs:
help += ' (default: %(default)s)'
help += _(' (default: %(default)s)')
return help
@ -1159,8 +1159,10 @@ def __init__(self,
version=None,
dest=SUPPRESS,
default=SUPPRESS,
help="show program's version number and exit",
help=None,
deprecated=False):
if help is None:
help = _("show program's version number and exit")
super(_VersionAction, self).__init__(
option_strings=option_strings,
dest=dest,

View file

@ -0,0 +1 @@
Add 'default' and 'version' help text for localization in argparse.