Skip to content

Commit 7133256

Browse files
committed
Refactor L10N data.
1 parent 95147c4 commit 7133256

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CLI.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GNU/GPLv2
99
* @see LICENSE.txt
1010
*
11-
* This file: CLI handler (last modified: 2023.09.04).
11+
* This file: CLI handler (last modified: 2023.09.19).
1212
*/
1313

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

0 commit comments

Comments
 (0)