mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 07:20:09 +00:00
116f83a367
Co-authored-by: Alex Justesen <alexjustesen@users.noreply.github.com>
24 lines
900 B
PHP
24 lines
900 B
PHP
<?php
|
|
|
|
return [
|
|
'server_error' => 'Server Error',
|
|
'oops_server_error' => 'Oops, server error!',
|
|
'error_message' => 'Error message',
|
|
'error_fetching_servers' => 'Error fetching servers',
|
|
'servers_refreshed_successfully' => 'Servers refreshed successfully',
|
|
'copied_to_clipboard' => 'Copied to clipboard',
|
|
|
|
// Speedtest specific errors
|
|
'ookla_error' => 'An error occurred when listing speedtest servers, check the logs.',
|
|
'cron_invalid' => 'Invalid cron expression',
|
|
|
|
// Status fix command
|
|
'status_fix' => [
|
|
'confirm' => 'Do you wish to continue?',
|
|
'fail' => 'Command aborted.',
|
|
'finished' => '✅ done!',
|
|
'info_1' => 'This will check all results and fix the status to "completed" or "failed" based on the data.',
|
|
'info_2' => '📖 Read the documentation: https://docs.speedtest-tracker.dev/other/commands',
|
|
],
|
|
];
|