exportTranslations() public method

public exportTranslations ( $group, $recursing )
 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $group = $this->argument('group');
     $this->manager->exportTranslations($group);
     $this->info("Done writing language files for " . ($group == '*' ? 'ALL groups' : $group . " group"));
 }
 public function postPublish($group)
 {
     $this->manager->exportTranslations($group);
     $errors = $this->manager->errors();
     return \Response::json(array('status' => $errors ? 'errors' : 'ok', 'errors' => $errors));
 }