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
108 lines (93 loc) · 2.64 KB
/
general.php
File metadata and controls
108 lines (93 loc) · 2.64 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
<?php
return [
// Common actions
'save' => 'Speichern',
'cancel' => 'Abbrechen',
'delete' => 'Löschen',
'edit' => 'Bearbeiten',
'create' => 'Anlegen',
'search' => 'Suchen',
'filter' => 'Filtern',
'export' => 'Exportieren',
'actions' => 'Aktionen',
'enable' => 'Aktivieren',
'yes' => 'Ja',
'no' => 'Nein',
'options' => 'Optionen',
'details' => 'Details',
'view' => 'Anzeigen',
// Common labels
'name' => 'Name',
'email' => 'E-Mail',
'email_address' => 'E-Mail-Adresse',
'password' => 'Passwort',
'password_confirmation' => 'Passwortbestätigung',
'id' => 'ID',
'status' => 'Status',
'message' => 'Nachricht',
'comment' => 'Kommentar',
'comments' => 'Kommentare',
'created_at' => 'Erstellt am',
'updated_at' => 'Aktualisiert am',
'url' => 'URL',
// Navigation
'dashboard' => 'Dashboard',
'results' => 'Ergebnisse',
'settings' => 'Einstellungen',
'users' => 'Benutzer',
'documentation' => 'Dokumentation',
'view_documentation' => 'Dokumentation anzeigen',
'links' => 'Links',
'donate' => 'Spenden',
// Roles
'admin' => 'Admin',
'user' => 'Benutzer',
'role' => 'Rolle',
// Date ranges
'last_24h' => 'Letzte 24 Stunden',
'last_week' => 'Letzte Woche',
'last_month' => 'Letzten Monat',
// Metrics
'average' => 'Durchschnitt',
'high' => 'Hoch',
'low' => 'Niedrig',
'faster' => 'schneller',
'slower' => 'langsamer',
'healthy' => 'Gesund',
// Units
'ms' => 'M',
'mbps' => 'Mbps',
// Speed test metrics
'download' => 'Download',
'upload' => 'Hochladen',
'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' => 'Durchschnitt (ms)',
'high_ms' => 'Hoch (ms)',
'low_ms' => 'Niedrig (ms)',
'ping_ms_label' => 'Ping (ms)',
// Latency
'download_latency' => 'Download-Latenz',
'upload_latency' => 'Upload-Latenz',
// Actions
'run_speedtest' => 'Schnelltest ausführen',
'list_servers' => 'Server auflisten',
'export_current_results' => 'Aktuelle Ergebnisse exportieren',
'test' => 'Testen',
// Common
'token' => 'Token',
// Application
'speedtest_tracker' => 'Speedtest Tracker',
'platform' => 'Plattform',
// Update status
'update_available' => 'Update verfügbar!',
'up_to_date' => 'Aktuell',
// Notifications
'token_created' => 'Token erstellt',
];