Skip to content

Commit

Permalink
Refactor L10N data.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maikuolan committed Sep 19, 2023
1 parent 95147c4 commit 7133256
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CLI.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* License: GNU/GPLv2
* @see LICENSE.txt
*
* This file: CLI handler (last modified: 2023.09.04).
* This file: CLI handler (last modified: 2023.09.19).
*/

namespace phpMussel\CLI;
Expand Down Expand Up @@ -273,7 +273,7 @@ public function recursiveCommand(string $Command, callable $Callable): string
[$Command, $Params] = explode(' ', $Command);
if (is_dir($Params)) {
if (!is_readable($Params)) {
return sprintf($this->Loader->L10N->getString('failed_to_access'), $Params) . "\n";
return sprintf($this->Loader->L10N->getString('Failed to access %s'), $Params) . "\n";
}
$Decal = [':-) - (-:', ':-) \\ (-:', ':-) | (-:', ':-) / (-:'];
$Frame = 0;
Expand Down

0 comments on commit 7133256

Please sign in to comment.