Skip to content

Commit e2f65f8

Browse files
authored
Update translation for column titles in results table (#2420)
Co-authored-by: Alex Justesen <[email protected]>
1 parent 405f155 commit e2f65f8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

app/Filament/Resources/Results/Tables/ResultTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public static function table(Table $table): Table
182182
->sortable()
183183
->alignment(Alignment::Center),
184184
TextColumn::make('data.message')
185-
->label(__('results.error_message'))
185+
->label(__('results.error_message_title'))
186186
->limit(15)
187187
->tooltip(fn ($state) => $state)
188188
->toggleable(isToggledHiddenByDefault: true)

lang/en/results.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,22 @@
33
return [
44
'title' => 'Results',
55
'result_overview' => 'Result overview',
6+
'error_message_title' => 'Error message',
67

78
// Metrics
9+
'download' => 'Download',
810
'download_latency_high' => 'Download latency high',
911
'download_latency_low' => 'Download latency low',
1012
'download_latency_iqm' => 'Download latency IQM',
1113
'download_latency_jitter' => 'Download latency jitter',
1214

15+
'upload' => 'Upload',
1316
'upload_latency_high' => 'Upload latency high',
1417
'upload_latency_low' => 'Upload latency low',
1518
'upload_latency_iqm' => 'Upload latency IQM',
1619
'upload_latency_jitter' => 'Upload latency jitter',
1720

21+
'ping' => 'Ping',
1822
'ping_details' => 'Ping details',
1923
'ping_jitter' => 'Ping jitter',
2024
'ping_high' => 'Ping high',

0 commit comments

Comments
 (0)