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
48 lines (41 loc) · 1.66 KB
/
notifications.php
File metadata and controls
48 lines (41 loc) · 1.66 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
<?php
return [
'title' => 'Notificaties',
'label' => 'Notificaties',
// Database notifications
'database' => 'Database',
'database_description' => 'Meldingen die naar dit kanaal worden verzonden worden weergegeven onder de 🔔 icoon in de header.',
'test_database_channel' => 'Test database notificaties',
// Mail notifications
'mail' => 'E-mailen',
'recipients' => 'Ontvangers',
'test_mail_channel' => 'Test e-mailkanaal',
// Webhook
'webhook' => 'Webhook',
'webhooks' => 'Webhooks',
'test_webhook_channel' => 'Test webhook kanaal',
'webhook_hint_description' => 'Dit zijn generieke webhooks. Raadpleeg de documentatie voor voorbeelden van payloads en implementatiedetails.',
// Common notification messages
'notify_on_every_speedtest_run' => 'Notificatie bij elke geplande snelheidstest',
'notify_on_threshold_failures' => 'Melding bij drempelfouten voor geplande snelheidstests',
// Test notification messages
'test_notifications' => [
'database' => [
'ping' => 'Ik zeg: ping',
'pong' => 'Jij zegt: pong',
'received' => 'Test database melding ontvangen!',
'sent' => 'Test database melding verzonden.',
],
'mail' => [
'add' => 'Ontvangers toevoegen!',
'sent' => 'Test mail melding verzonden.',
],
'webhook' => [
'add' => 'Voeg webhook URL\'s toe!',
'sent' => 'Test webhook melding verzonden.',
'payload' => 'Webhook melding',
],
],
// Helper text
'threshold_helper_text' => 'Drempel meldingen worden verzonden naar de /fail route in de URL.',
];