forked from alexjustesen/speedtest-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.php
More file actions
78 lines (67 loc) · 2.78 KB
/
results.php
File metadata and controls
78 lines (67 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
return [
'title' => 'Results',
'result_overview' => 'Result overview',
'error_message_title' => 'Error message',
// Metrics
'download' => 'Download',
'download_latency_high' => 'Download latency high',
'download_latency_low' => 'Download latency low',
'download_latency_iqm' => 'Download latency IQM',
'download_latency_jitter' => 'Download latency jitter',
'upload' => 'Upload',
'upload_latency_high' => 'Upload latency high',
'upload_latency_low' => 'Upload latency low',
'upload_latency_iqm' => 'Upload latency IQM',
'upload_latency_jitter' => 'Upload latency jitter',
'ping' => 'Ping',
'ping_details' => 'Ping details',
'ping_jitter' => 'Ping jitter',
'ping_high' => 'Ping high',
'ping_low' => 'Ping low',
'packet_loss' => 'Packet loss',
'iqm' => 'IQM',
// Server & metadata
'server_&_metadata' => 'Server & Metadata',
'server_id' => 'Server ID',
'server_host' => 'Server host',
'server_name' => 'Server name',
'server_location' => 'Server location',
'service' => 'Service',
'isp' => 'ISP',
'ip_address' => 'IP address',
'scheduled' => 'Scheduled',
// Filters
'only_healthy_speedtests' => 'Only healthy speedtests',
'only_unhealthy_speedtests' => 'Only unhealthy speedtests',
'only_manual_speedtests' => 'Only manual speedtests',
'only_scheduled_speedtests' => 'Only scheduled speedtests',
'created_from' => 'Created from',
'created_until' => 'Created until',
// Export
'export_all_results' => 'Export all results',
'export_all_results_description' => 'Will export every column for all results.',
'export_completed' => 'Export completed, :count :rows exported.',
'failed_export' => ':count :rows failed to export.',
'row' => '{1} :count row|[2,*] :count rows',
// Actions
'update_comments' => 'Update comments',
'view_on_speedtest_net' => 'View on Speedtest.net',
// Notifications
'speedtest_benchmark_passed' => 'Speedtest benchmark passed',
'speedtest_benchmark_failed' => 'Speedtest benchmark failed',
'speedtest_started' => 'Speedtest started',
'speedtest_completed' => 'Speedtest completed',
'speedtest_failed' => 'Speedtest failed',
'download_threshold_breached' => 'Download threshold breached!',
'upload_threshold_breached' => 'Upload threshold breached!',
'ping_threshold_breached' => 'Ping threshold breached!',
// Run Speedtest Action
'speedtest' => 'Speedtest',
'select_server' => 'Select Server',
'select_server_helper' => 'Leave empty to run the speedtest without specifying a server. Blocked servers will be skipped.',
'manual_servers' => 'Manual servers',
'closest_servers' => 'Closest servers',
'run_speedtest' => 'Run Speedtest',
'start' => 'Start',
];