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) · 3.04 KB
/
general.php
File metadata and controls
121 lines (105 loc) · 3.04 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' => 'Versión actual',
'latest_version' => 'Última versión',
'github' => 'GitHub',
'repository' => 'Repositorio',
// Common actions
'save' => 'Guardar',
'cancel' => 'Cancelar',
'delete' => 'Eliminar',
'edit' => 'Editar',
'create' => 'Crear',
'search' => 'Buscar',
'filter' => 'Filtro',
'export' => 'Exportar',
'actions' => 'Acciones',
'enable' => 'Activar',
'yes' => 'Sí',
'no' => 'Nu',
'options' => 'Opciones',
'details' => 'Detalles',
'view' => 'Ver',
// Common labels
'name' => 'Nombre',
'email' => 'E-mail',
'email_address' => 'Dirección de email',
'password' => 'Contraseña',
'password_confirmation' => 'Confirmación de contraseña',
'id' => 'ID',
'status' => 'Estado',
'message' => 'Mensaje',
'comment' => 'Comentario',
'comments' => 'Comentarios',
'created_at' => 'Creado el',
'updated_at' => 'Actualizado el',
'url' => 'URL',
'server' => 'Servidor',
'servers' => 'Servidores',
'stats' => 'Estadísticas',
'statistics' => 'Estadísticas',
// Navigation
'dashboard' => 'Tablero',
'results' => 'Resultados',
'settings' => 'Ajustes',
'users' => 'Usuarios',
'documentation' => 'Documentación',
'view_documentation' => 'Ver documentación',
'links' => 'Enlaces',
'donate' => 'Donar',
'donations' => 'Donaciones',
// Roles
'admin' => 'Admin',
'user' => 'Usuario',
'role' => 'Rol',
// Date ranges
'last_24h' => 'Últimas 24 horas',
'last_week' => 'Última semana',
'last_month' => 'Último mes',
// Metrics
'metrics' => 'Métricas',
'average' => 'Promedio',
'high' => 'Alta',
'low' => 'Baja',
'faster' => 'más rápido',
'slower' => 'más lento',
'healthy' => 'Saludable',
'not_measured' => 'No medido',
'unhealthy' => 'Poco saludable',
// Units
'ms' => 'm',
'mbps' => 'Mbps',
// Speed test metrics
'download' => 'Descargar',
'upload' => 'Subir',
'ping' => 'Ping',
'jitter' => 'Jitter',
// Metric labels with units
'download_mbps' => 'Descargar (Mbps)',
'upload_mbps' => 'Subir (Mbps)',
'ping_ms' => 'Ping (ms)',
'download_ms' => 'Descargar (ms)',
'upload_ms' => 'Subir (ms)',
'average_ms' => 'Promedio (ms)',
'high_ms' => 'Alto (ms)',
'low_ms' => 'Baja (ms)',
'ping_ms_label' => 'Ping (ms)',
// Latency
'download_latency' => 'Descargar latencia',
'upload_latency' => 'Cargar latencia',
// Actions
'run_speedtest' => 'Ejecutar el test de velocidad',
'list_servers' => 'Listar servidores',
'export_current_results' => 'Exportar resultados actuales',
'test' => 'Prueba',
// Common
'token' => 'Token',
// Application
'speedtest_tracker' => 'Rastreador más rápido',
'platform' => 'Plataforma',
// Update status
'update_available' => '¡Actualización disponible!',
'up_to_date' => 'Actualizado',
// Notifications
'token_created' => 'Token creado',
];