Skip to content

Commit 4bc6717

Browse files
authored
Adding Portuguese (Brazil) Translation (#161)
1 parent 675d79b commit 4bc6717

File tree

14 files changed

+427
-0
lines changed

14 files changed

+427
-0
lines changed

resources/lang/pt_BR/cachet.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
return [
4+
'support' => [
5+
'section_heading' => 'Apoiar o Cachet',
6+
'consider_supporting' => 'Por favor, considere apoiar o Cachet via *GitHub Sponsors*.',
7+
'keep_up_to_date' => 'Mantenha-se atualizado com as últimas notícias e lançamentos seguindo o *blog do Cachet*.',
8+
'work_in_progress_text' => 'O Cachet está em desenvolvimento ativo. As coisas ainda estão sujeitas a mudanças.',
9+
],
10+
'powered_by' => 'Powered by',
11+
'open_source_status_page' => 'The open-source status page.',
12+
'all_times_shown_in' => 'Todos os horários são exibidos em *:timezone*.',
13+
'rss_feed' => 'RSS Feed :name',
14+
];

resources/lang/pt_BR/component.php

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?php
2+
3+
return [
4+
'resource_label' => 'Componente|Componentes',
5+
'list' => [
6+
'headers' => [
7+
'name' => 'Nome',
8+
'status' => 'Status',
9+
'order' => 'Ordem',
10+
'group' => 'Grupo',
11+
'enabled' => 'Ativo',
12+
'created_at' => 'Criado em',
13+
'updated_at' => 'Atualizado em',
14+
'deleted_at' => 'Excluído em',
15+
],
16+
'empty_state' => [
17+
'heading' => 'Componentes',
18+
'description' => 'Os componentes representam as várias partes do seu sistema que podem afetar o status da sua página de status.',
19+
],
20+
],
21+
'last_updated' => 'Última atualização :timestamp',
22+
'view_details' => 'Ver Detalhes',
23+
'form' => [
24+
'name_label' => 'Nome',
25+
'status_label' => 'Status',
26+
'description_label' => 'Descrição',
27+
'component_group_label' => 'Grupo de Componentes',
28+
'link_label' => 'Link',
29+
'link_helper' => 'Um link opcional para o componente.',
30+
],
31+
'status' => [
32+
'operational' => 'Operacional',
33+
'performance_issues' => 'Problemas de Performance',
34+
'partial_outage' => 'Indisponibilidade Parcial',
35+
'major_outage' => 'Indisponibilidade Total',
36+
'unknown' => 'Desconhecido',
37+
],
38+
];
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php
2+
3+
return [
4+
'resource_label' => 'Grupo de Componente|Grupos de Componentes',
5+
'incident_count' => ':count Incidente|:count Incidentes',
6+
'visibility' => [
7+
'expanded' => 'Sempre Expandido',
8+
'collapsed' => 'Sempre Recolhido',
9+
'collapsed_unless_incident' => 'Recolhido Exceto Durante Incidente',
10+
],
11+
'list' => [
12+
'headers' => [
13+
'name' => 'Nome',
14+
'visible' => 'Visível',
15+
'collapsed' => 'Recolhido',
16+
'created_at' => 'Criado em',
17+
'updated_at' => 'Atualizado em',
18+
],
19+
'empty_state' => [
20+
'heading' => 'Grupos de Componentes',
21+
'description' => 'Agrupar componentes relacionados.',
22+
],
23+
],
24+
'form' => [
25+
'name_label' => 'Nome',
26+
'visible_label' => 'Visível',
27+
'collapsed_label' => 'Recolhido',
28+
],
29+
];

resources/lang/pt_BR/incident.php

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<?php
2+
3+
return [
4+
'title' => 'Incidentes',
5+
'resource_label' => 'Incidente|Incidentes',
6+
'status' => [
7+
'investigating' => 'Investigando',
8+
'identified' => 'Identificado',
9+
'watching' => 'Monitorando',
10+
'fixed' => 'Resolvido',
11+
'reported' => 'Reportado',
12+
],
13+
'edit_button' => 'Editar Incidente',
14+
'new_button' => 'Novo Incidente',
15+
'no_incidents_reported' => 'Nenhum incidente reportado.',
16+
'timeline' => [
17+
'past_incidents_header' => 'Incidentes Anteriores',
18+
'recent_incidents_header' => 'Incidentes Recentes',
19+
'no_incidents_reported_between' => 'Nenhum incidente reportado entre :from e :to',
20+
'navigate' => [
21+
'previous' => 'Anterior',
22+
'today' => 'Hoje',
23+
'next' => 'Próximo',
24+
],
25+
],
26+
'list' => [
27+
'headers' => [
28+
'name' => 'Nome',
29+
'status' => 'Status',
30+
'visible' => 'Visível',
31+
'stickied' => 'Fixado',
32+
'occurred_at' => 'Ocorrido em',
33+
'notified_subscribers' => 'Inscritos notificados',
34+
'created_at' => 'Criado em',
35+
'updated_at' => 'Atualizado em',
36+
'deleted_at' => 'Excluído em',
37+
],
38+
'actions' => [
39+
'record_update' => 'Registrar Atualização',
40+
'view_incident' => 'Ver incidente',
41+
],
42+
'empty_state' => [
43+
'heading' => 'Incidentes',
44+
'description' => 'Incidentes são usados para comunicar e rastrear o status dos seus serviços.',
45+
],
46+
],
47+
'form' => [
48+
'name_label' => 'Nome',
49+
'status_label' => 'Status',
50+
'message_label' => 'Mensagem',
51+
'occurred_at_label' => 'Ocorrido em',
52+
'occurred_at_helper' => 'O horário de criação do incidente será usado se deixado em branco.',
53+
'visible_label' => 'Visível',
54+
'user_label' => 'Usuário',
55+
'user_helper' => 'O usuário que reportou o incidente.',
56+
'notifications_label' => 'Notificar Inscritos?',
57+
'stickied_label' => 'Fixar Incidente?',
58+
'guid_label' => 'UUID do Incidente',
59+
'add_component' => [
60+
'action_label' => 'Adicionar Componente',
61+
'header' => 'Componentes',
62+
'component_label' => 'Componente',
63+
'status_label' => 'Status',
64+
],
65+
],
66+
'record_update' => [
67+
'success_title' => 'Incidente :name Atualizado',
68+
'success_body' => 'Uma nova atualização do incidente foi registrada.',
69+
'form' => [
70+
'message_label' => 'Mensagem',
71+
'status_label' => 'Status',
72+
'user_label' => 'Usuário',
73+
'user_helper' => 'Quem reportou este incidente.',
74+
],
75+
],
76+
'overview' => [
77+
'total_incidents_label' => 'Total de Incidentes',
78+
'total_incidents_description' => 'Número total de incidentes.',
79+
],
80+
];
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?php
2+
3+
return [
4+
'resource_label' => 'Template de Incidente|Templates de Incidentes',
5+
'list' => [
6+
'headers' => [
7+
'name' => 'Nome',
8+
'slug' => 'Slug',
9+
'engine' => 'Engine',
10+
'created_at' => 'Criado em',
11+
'updated_at' => 'Atualizado em',
12+
'deleted_at' => 'Excluído em',
13+
],
14+
'empty_state' => [
15+
'heading' => 'Templates de Incidentes',
16+
'description' => 'Templates de incidentes são usados para criar mensagens de incidentes reutilizáveis.',
17+
],
18+
],
19+
'form' => [
20+
'name_label' => 'Nome',
21+
'slug_label' => 'Slug',
22+
'template_label' => 'Template',
23+
'engine_label' => 'Engine',
24+
],
25+
'engine' => [
26+
'laravel_blade' => 'Laravel Blade',
27+
'laravel_blade_docs' => 'Documentação do Laravel Blade',
28+
'twig' => 'Twig',
29+
'twig_docs' => 'Documentação do Twig',
30+
],
31+
];
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
return [
4+
'oh_dear' => [
5+
'import_feed_button' => 'Importar Feed',
6+
'status_page_url_label' => 'URL da Página de Status do Oh Dear',
7+
'status_page_url_helper' => 'Digite a URL da sua página de status do Oh Dear (ex: https://status.example.com).',
8+
'import_sites_as_components_label' => 'Importar Sites como Componentes',
9+
'import_sites_as_components_helper' => 'Sites configurados no Oh Dear serão importados como componentes no Cachet.',
10+
'component_group_label' => 'Grupo de Componentes',
11+
'component_group_helper' => 'O grupo de componentes para atribuir aos componentes importados.',
12+
'import_incidents_label' => 'Importar Incidentes',
13+
'import_incidents_helper' => 'Incidentes recentes do Oh Dear serão importados como incidentes no Cachet.',
14+
'provided_url_invalid' => 'A URL fornecida não é um endpoint válido de página de status do Oh Dear.',
15+
'imported_successfully' => 'Feed do Oh Dear importado com sucesso.',
16+
],
17+
];

resources/lang/pt_BR/metric.php

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?php
2+
3+
return [
4+
'resource_label' => 'Métrica|Métricas',
5+
'list' => [
6+
'headers' => [
7+
'name' => 'Nome',
8+
'suffix' => 'Sufixo',
9+
'default_value' => 'Valor Padrão',
10+
'calc_type' => 'Tipo de Métrica',
11+
'display_chart' => 'Exibir Gráfico',
12+
'places' => 'Casas Decimais',
13+
'default_view' => 'Visualização Padrão',
14+
'threshold' => 'Limite',
15+
'order' => 'Ordem',
16+
'visible' => 'Visível',
17+
'points_count' => 'Contagem de Pontos',
18+
'created_at' => 'Criado em',
19+
'updated_at' => 'Atualizado em',
20+
],
21+
'empty_state' => [
22+
'heading' => 'Métricas',
23+
'description' => 'Métricas são usadas para rastrear e exibir dados.',
24+
],
25+
],
26+
'form' => [
27+
'name_label' => 'Nome',
28+
'suffix_label' => 'Sufixo',
29+
'description_label' => 'Descrição',
30+
'default_view_label' => 'Visualização Padrão',
31+
'default_value_label' => 'Valor Padrão',
32+
'calc_type_label' => 'Tipo de Métrica',
33+
'places_label' => 'Casas Decimais',
34+
'threshold_label' => 'Limite',
35+
'visible_label' => 'Visível',
36+
'display_chart_label' => 'Exibir Gráfico',
37+
],
38+
'overview' => [
39+
'metric_points_label' => 'Pontos de Métrica',
40+
'metric_points_description' => 'Pontos de métrica recentes.',
41+
],
42+
'sum_label' => 'Soma',
43+
'average_label' => 'Média',
44+
'view_labels' => [
45+
'last_hour' => 'Última Hora',
46+
'today' => 'Hoje',
47+
'week' => 'Semana',
48+
'month' => 'Mês',
49+
],
50+
];
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
return [
4+
'settings' => [
5+
'label' => 'Configurações',
6+
'items' => [
7+
'manage_cachet' => 'Gerenciar Cachet',
8+
'manage_customization' => 'Gerenciar Personalização',
9+
'manage_theme' => 'Gerenciar Tema',
10+
],
11+
],
12+
13+
'integrations' => [
14+
'label' => 'Integrações',
15+
'items' => [
16+
'oh_dear' => 'Oh Dear',
17+
],
18+
],
19+
'resources' => [
20+
'label' => 'Recursos',
21+
'items' => [
22+
'status_page' => 'Página de Status',
23+
'documentation' => 'Documentação',
24+
'discord' => 'Entrar no Discord',
25+
'sponsor' => 'Apoiar o Cachet',
26+
],
27+
],
28+
];

resources/lang/pt_BR/resource.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
return [
4+
'visibility' => [
5+
'authenticated' => 'Usuários',
6+
'guest' => 'Visitantes',
7+
'hidden' => 'Sempre Oculto',
8+
],
9+
];

resources/lang/pt_BR/schedule.php

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?php
2+
3+
return [
4+
'resource_label' => 'Agendamento|Agendamentos',
5+
'list' => [
6+
'headers' => [
7+
'name' => 'Nome',
8+
'status' => 'Status',
9+
'scheduled_at' => 'Agendado para',
10+
'completed_at' => 'Concluído em',
11+
'created_at' => 'Criado em',
12+
'updated_at' => 'Atualizado em',
13+
'deleted_at' => 'Excluído em',
14+
],
15+
'empty_state' => [
16+
'heading' => 'Agendamentos',
17+
'description' => 'Planeje e agende suas manutenções.',
18+
],
19+
'actions' => [
20+
'record_update' => 'Registrar Atualização',
21+
'complete' => 'Concluir Manutenção',
22+
],
23+
],
24+
'form' => [
25+
'name_label' => 'Nome',
26+
'message_label' => 'Mensagem',
27+
'scheduled_at_label' => 'Agendado para',
28+
'completed_at_label' => 'Concluído em',
29+
],
30+
'add_update' => [
31+
'success_title' => 'Agendamento :name Atualizado',
32+
'success_body' => 'Uma nova atualização do agendamento foi registrada.',
33+
'form' => [
34+
'message_label' => 'Mensagem',
35+
'completed_at_label' => 'Concluído em',
36+
],
37+
],
38+
'status' => [
39+
'upcoming' => 'Próximo',
40+
'in_progress' => 'Em Andamento',
41+
'complete' => 'Concluído',
42+
],
43+
'planned_maintenance_header' => 'Manutenção Planejada',
44+
];

0 commit comments

Comments
 (0)