Files
2025-12-03 20:21:55 -05:00

22 lines
460 B
PHP

<?php
return [
// Status enum values
'status' => [
'benchmarking' => 'Benchmarking',
'checking' => 'Verificando',
'completed' => 'Concluído',
'failed' => 'Falhou',
'running' => 'Executando',
'started' => 'Iniciado',
'skipped' => 'Ignorado',
'waiting' => 'Esperando',
],
// Service enum values
'service' => [
'faker' => 'Fake',
'ookla' => 'Ookla',
],
];