/**
  * Execute the command
  */
 public function exec()
 {
     $name = $this->argument("name");
     //
     $process = Translator::createDir($name);
     //
     $this->show($process);
 }
 /**
  * Execute the command
  */
 public function exec()
 {
     $schema = true;
     //
     $data = $this->splite(Translator::ListAll());
     //
     $this->show($data);
 }
 /**
  * Execute the command
  */
 public function exec()
 {
     $fileName = $this->argument("fileName");
     $dirName = $this->argument("dirName");
     //
     $process = Translator::createFile($dirName, $fileName);
     //
     $this->show($process);
 }