forked from alexjustesen/speedtest-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotifications.php
More file actions
56 lines (49 loc) · 2.28 KB
/
notifications.php
File metadata and controls
56 lines (49 loc) · 2.28 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
<?php
return [
'title' => 'Notificaciones',
'label' => 'Notificaciones',
// Database notifications
'database' => 'Base de datos',
'database_description' => 'Las notificaciones enviadas a este canal se mostrarán bajo el icono :belell: en el encabezado.',
'enable_database_notifications' => 'Habilitar notificaciones de base de datos',
'database_on_speedtest_run' => 'Notificar en cada prueba de velocidad',
'database_on_threshold_failure' => 'Notificar en los umbrales de fallos',
'test_database_channel' => 'Probar canal de base de datos',
// Mail notifications
'mail' => 'Correo',
'enable_mail_notifications' => 'Habilitar notificaciones de correo',
'recipients' => 'Destinatarios',
'mail_on_speedtest_run' => 'Notificar en cada prueba de velocidad',
'mail_on_threshold_failure' => 'Notificar en los umbrales de fallos',
'test_mail_channel' => 'Canal de prueba de correo',
// Webhook
'webhook' => 'Webhook',
'webhooks' => 'Webhooks',
'enable_webhook_notifications' => 'Habilitar notificaciones de webhook',
'webhook_on_speedtest_run' => 'Notificar en cada prueba de velocidad',
'webhook_on_threshold_failure' => 'Notificar en los umbrales de fallos',
'test_webhook_channel' => 'Probar canal webhook',
// Common notification messages
'notify_on_every_speedtest_run' => 'Notificar en cada prueba de velocidad',
'notify_on_threshold_failures' => 'Notificar en los umbrales de fallos',
// Test notification messages
'test_notifications' => [
'database' => [
'ping' => 'Yo digo: ping',
'pong' => 'Dice usted: pong',
'received' => 'Notificación de la base de datos de prueba recibida!',
'sent' => 'Notificación de prueba de base de datos enviada.',
],
'mail' => [
'add' => '¡Añadir destinatarios de correo!',
'sent' => 'Notificación de correo de prueba enviada.',
],
'webhook' => [
'add' => '¡Añadir URL de webhook!',
'sent' => 'Prueba de notificación de webhook enviada.',
'payload' => 'Probando notificación de webhook',
],
],
// Helper text
'threshold_helper_text' => 'Las notificaciones de umbral se enviarán a la ruta /fail en la URL.',
];