mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 07:40:08 +00:00
22 lines
460 B
PHP
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',
|
|
],
|
|
];
|