Skip to content

Commit

Permalink
Fix PO/MO path typo
Browse files Browse the repository at this point in the history
  • Loading branch information
OzzyCzech committed Jan 9, 2023
1 parent 299b806 commit 435f2c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/DeepLTranslatorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
if ($output->isVeryVerbose()) {
$output->writeln('<comment>Writing new PO File</comment>: ' . $poOutputFile);
}
$potrans->savePoFile($moOutputFile);
$potrans->savePoFile($poOutputFile);

// done!
$output->writeln('<info>DONE!</info>');
Expand Down
2 changes: 1 addition & 1 deletion src/commands/GoogleTranslatorCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
if ($output->isVeryVerbose()) {
$output->writeln('<comment>Writing new PO File</comment>: ' . $poOutputFile);
}
$potrans->savePoFile($moOutputFile);
$potrans->savePoFile($poOutputFile);

// done!
$output->writeln('<info>DONE!</info>');
Expand Down

0 comments on commit 435f2c9

Please sign in to comment.