def add_arguments(self, parser):
parser.add_argument(
"languages",
action="store",
nargs="*",
type=self.__validate_language,
help='Language packages to uninstall in the format of "<from language>_<to language>" in ISO 639 format',
)
parser.add_argument(
"--noinput",
"--no-input",
action="store_false",
dest="interactive",
help="Do not prompt the user for confirmation",
required=False,
)
parser.add_argument(
"--all",
action="store_true",
help="Uninstall all installed language packages",
required=False,
)