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
61 lines (53 loc) · 2.56 KB
/
notifications.php
File metadata and controls
61 lines (53 loc) · 2.56 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
<?php
return [
'title' => 'Notificações',
'label' => 'Notificações',
// Database notifications
'database' => 'Banco de Dados',
'database_description' => 'Notificações enviadas para este canal aparecerão sob o 🔔 ícone no cabeçalho.',
'test_database_channel' => 'Testar canal do banco de dados',
// Mail notifications
'mail' => 'Correio',
'recipients' => 'Destinatários',
'test_mail_channel' => 'Testar canal de e-mail',
// Apprise notifications
'apprise' => 'Informar',
'enable_apprise_notifications' => 'Habilitar notificações Apprise',
'apprise_server' => 'Servidor Apprise',
'apprise_server_url' => 'URL do Servidor Apprise',
'apprise_verify_ssl' => 'Verificar SSL',
'apprise_channels' => 'Canais Apprise',
'apprise_channel_url' => 'URL do Canal',
'apprise_hint_description' => 'Para obter mais informações sobre como configurar o Apprise, veja a documentação.',
'apprise_channel_url_helper' => 'Forneça o URL do serviço endpoint para notificações.',
'test_apprise_channel' => 'Testar Apprise',
'apprise_channel_url_validation_error' => 'O URL do canal Apprise não deve começar com "http" ou "https". Por favor, forneça um esquema válido de URL Apprise.',
// Webhook
'webhook' => 'Webhook',
'webhooks' => 'Webhooks',
'test_webhook_channel' => 'Testar canal webhook',
'webhook_hint_description' => 'Estes são webhooks genéricos. Para exemplos de payload e detalhes de implementação, consulte a documentação.',
// Common notification messages
'notify_on_every_speedtest_run' => 'Notificar a cada execução do teste de velocidade',
'notify_on_threshold_failures' => 'Notificar sobre falhas nos limites de testes de velocidade agendados',
// Test notification messages
'test_notifications' => [
'database' => [
'ping' => 'Eu digo: ping',
'pong' => 'Você diz: pong',
'received' => 'Teste de notificação de banco de dados recebida!',
'sent' => 'Teste de notificação do banco de dados enviada.',
],
'mail' => [
'add' => 'Adicione destinatários de email!',
'sent' => 'Notificação de teste de email enviada.',
],
'webhook' => [
'add' => 'Adicionar URLs webhook!',
'sent' => 'Notificação de teste webhook enviada.',
'payload' => 'Testando notificação webhook',
],
],
// Helper text
'threshold_helper_text' => 'Notificações de limite serão enviadas para a rota /fail na URL.',
];