diff --git a/cli/cli.dart b/cli/cli.dart index 074c5b12..26190d4c 100644 --- a/cli/cli.dart +++ b/cli/cli.dart @@ -3,6 +3,7 @@ import 'package:args/command_runner.dart'; import 'commands/build.dart'; import 'commands/credits.dart'; import 'commands/install-dependencies.dart'; +import 'commands/translated.dart'; import 'commands/untranslated.dart'; void main(List args) { @@ -14,6 +15,7 @@ void main(List args) { commandRunner.addCommand(InstallDependenciesCommand()); commandRunner.addCommand(BuildCommand()); commandRunner.addCommand(CreditsCommand()); + commandRunner.addCommand(TranslatedCommand()); commandRunner.addCommand(UntranslatedCommand()); commandRunner.run(args);