Skip to content

Commit

Permalink
Test: Fix Translations in Log Export
Browse files Browse the repository at this point in the history
  • Loading branch information
kergomard committed Feb 14, 2025
1 parent 58e563e commit 92094a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public function parseForExport(
return implode(
'; ',
array_map(
fn($k) => "{$k}: {$this->parseValue($k, $additional_info[$k] ?? '', $environment)}",
fn(string $k) => "{$this->getCorrectedTranslationForKey($k)}: {$this->parseValue($k, $additional_info[$k] ?? '', $environment)}",
array_keys($additional_info)
)
);
Expand Down

0 comments on commit 92094a3

Please sign in to comment.