forked from alexjustesen/speedtest-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneral.php
More file actions
121 lines (105 loc) · 2.89 KB
/
general.php
File metadata and controls
121 lines (105 loc) · 2.89 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
return [
'current_version' => 'Current version',
'latest_version' => 'Latest version',
'github' => 'GitHub',
'repository' => 'Repository',
// Common actions
'save' => 'Save',
'cancel' => 'Cancel',
'delete' => 'Delete',
'edit' => 'Edit',
'create' => 'Create',
'search' => 'Search',
'filter' => 'Filter',
'export' => 'Export',
'actions' => 'Actions',
'enable' => 'Enable',
'yes' => 'Yes',
'no' => 'No',
'options' => 'Options',
'details' => 'Details',
'view' => 'View',
// Common labels
'name' => 'Name',
'email' => 'Email',
'email_address' => 'Email address',
'password' => 'Password',
'password_confirmation' => 'Password confirmation',
'id' => 'ID',
'status' => 'Status',
'message' => 'Message',
'comment' => 'Comment',
'comments' => 'Comments',
'created_at' => 'Created at',
'updated_at' => 'Updated at',
'url' => 'URL',
'server' => 'Server',
'servers' => 'Servers',
'stats' => 'Stats',
'statistics' => 'Statistics',
// Navigation
'dashboard' => 'Dashboard',
'results' => 'Results',
'settings' => 'Settings',
'users' => 'Users',
'documentation' => 'Documentation',
'view_documentation' => 'View documentation',
'links' => 'Links',
'donate' => 'Donate',
'donations' => 'Donations',
// Roles
'admin' => 'Admin',
'user' => 'User',
'role' => 'Role',
// Date ranges
'last_24h' => 'Last 24 hours',
'last_week' => 'Last week',
'last_month' => 'Last month',
// Metrics
'metrics' => 'Metrics',
'average' => 'Average',
'high' => 'High',
'low' => 'Low',
'faster' => 'faster',
'slower' => 'slower',
'healthy' => 'Healthy',
'not_measured' => 'Not measured',
'unhealthy' => 'Unhealthy',
// Units
'ms' => 'ms',
'mbps' => 'Mbps',
// Speed test metrics
'download' => 'Download',
'upload' => 'Upload',
'ping' => 'Ping',
'jitter' => 'Jitter',
// Metric labels with units
'download_mbps' => 'Download (Mbps)',
'upload_mbps' => 'Upload (Mbps)',
'ping_ms' => 'Ping (ms)',
'download_ms' => 'Download (ms)',
'upload_ms' => 'Upload (ms)',
'average_ms' => 'Average (ms)',
'high_ms' => 'High (ms)',
'low_ms' => 'Low (ms)',
'ping_ms_label' => 'Ping (ms)',
// Latency
'download_latency' => 'Download latency',
'upload_latency' => 'Upload latency',
// Actions
'run_speedtest' => 'Run speedtest',
'list_servers' => 'List servers',
'export_current_results' => 'Export current results',
'test' => 'Test',
// Common
'token' => 'Token',
// Application
'speedtest_tracker' => 'Speedtest Tracker',
'platform' => 'Platform',
// Update status
'update_available' => 'Update available!',
'up_to_date' => 'Up to date',
// Notifications
'token_created' => 'Token Created',
];