protected function execute(InputInterface $input, OutputInterface $output)
 {
     $download = new DownloadTranslations(new ConsoleLogger($output), new Config());
     $download->setForceDownloadTrlFiles(true);
     try {
         $download->downloadTrlFiles();
     } catch (LingohubException $e) {
         echo "LingohubException: " . $e->getMessage() . "\n";
         return 1;
     }
 }