/**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $this->manager->truncateTranslations();
     $this->info("All translations are deleted");
     $this->manager->truncateGroups();
     $this->info("All Groups are deleted");
     $this->manager->truncateLocales();
     $this->info("All locales are deleted");
 }