Skip to content

Commit e3967dc

Browse files
committed
fixed string for i18n
1 parent de1705f commit e3967dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BackupTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function getAbsolutePath($path)
5353
public function getBinary($name)
5454
{
5555
$binary = Configure::read('DatabaseBackup.binaries.' . $name);
56-
is_true_or_fail($binary, sprintf('Binary for `%s` could not be found. You have to set its path manually', $name), RuntimeException::class);
56+
is_true_or_fail($binary, __d('database_backup', 'Binary for `{0}` could not be found. You have to set its path manually', $name), RuntimeException::class);
5757

5858
return $binary;
5959
}

0 commit comments

Comments
 (0)