Skip to content
Snippets Groups Projects
Unverified Commit 5bb8ed73 authored by Sébastien Thuret's avatar Sébastien Thuret
Browse files

Add --disable-files-translation flag

parent 9e272cb8
No related branches found
No related tags found
No related merge requests found
......@@ -115,6 +115,11 @@ _default_options_objects = [
'name': 'SUGGESTIONS',
'default_value': False,
'value_type': 'bool'
},
{
'name': 'DISABLE_FILES_TRANSLATION',
'default_value': False,
'value_type': 'bool'
}
]
......
......@@ -105,6 +105,9 @@ def main():
parser.add_argument(
"--suggestions", default=DEFARGS['SUGGESTIONS'], action="store_true", help="Allow user suggestions"
)
parser.add_argument(
"--disable-files-translation", default=DEFARGS['DISABLE_FILES_TRANSLATION'], action="store_true", help="Disable files translation"
)
args = parser.parse_args()
app = create_app(args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment