Skip to content

Commit dae519b

Browse files
committed
patch: add a missing translation key
1 parent a5d6313 commit dae519b

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/Helper/OutputHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function printTrace(Throwable $e): void
9999
$traceStr .= " <comment>$i)</end> <red>$symbol</end><comment>($args)</end>";
100100
if ('' !== $trace['file']) {
101101
$file = realpath($trace['file']);
102-
$traceStr .= "<eol/> <yellow>at $file</end><white>:{$trace['line']}</end><eol/>";
102+
$traceStr .= "<eol/> <yellow>{$this->translate('thrownAt')} $file</end><white>:{$trace['line']}</end><eol/>";
103103
}
104104
}
105105

src/Translations/en.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
'showVersion' => 'Show version',
2929
'stackTrace' => 'Stack Trace',
3030
'thrownIn' => 'thrown in',
31+
'thrownAt' => 'at',
3132
'usage' => 'Usage',
3233
'usageExamples' => 'Usage Examples',
3334
'version' => 'version',

0 commit comments

Comments
 (0)