Skip to content

Commit 251700b

Browse files
committed
Merge pull request pterodactyl#35 from IanSzot/development
Initial translation to pt_BR
2 parents b7666bd + e831c75 commit 251700b

File tree

7 files changed

+278
-0
lines changed

7 files changed

+278
-0
lines changed

resources/lang/pt/auth.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
return [
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Authentication Language Lines
6+
|--------------------------------------------------------------------------
7+
|
8+
| The following language lines are used during authentication for various
9+
| messages that we need to display to the user. You are free to modify
10+
| these language lines according to your application's requirements.
11+
|
12+
*/
13+
'failed' => 'Estas credenciais não estão de acordo com os nossos registros.',
14+
'throttle' => 'Muitas tentativas de login. Por favor tente novamente em :seconds segundos.',
15+
'errorencountered' => 'Ocorreu um erro durante a tentativa de processar esse pedido.',
16+
'resetpassword' => 'Trocar senha',
17+
'confirmpassword' => 'Confirmar senha',
18+
'sendlink' => 'Enviar link de troca de senha',
19+
'emailsent' => 'O seu email para trocar de senha está a caminho.',
20+
'remeberme' => 'Lembre-me',
21+
'totp_failed' => 'O token TOTP dado é inválido. Por favor tenha certeza que o token gerado pelo seu dispositivo era correto.'
22+
];

resources/lang/pt/base.php

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?php
2+
return [
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Base Pterodactyl Language
6+
|--------------------------------------------------------------------------
7+
|
8+
| These base strings are used throughout the front-end of Pterodactyl but
9+
| not on pages that are used when viewing a server. Those keys are in server.php
10+
|
11+
*/
12+
'validation_error' => 'Um erro ocorreu durante a validação de suas informações:',
13+
'confirm' => 'Você tem certeza?',
14+
'failed' => 'Essas credenciais não estão nos nossos registros.',
15+
'throttle' => 'Muitas tentativas de login. Por favor tente novamente em :seconds segundos.',
16+
'view_as_admin' => 'Você está vendo a lista de servidores como administrador. Assim, todos os servidores no sistema são mostrados. Qualquer servidor em que você esteja marcado como dono será mostrado com um ponto azul à esquerda de seu nome.',
17+
'server_name' => 'Nome do Servidor',
18+
'no_servers' => 'Você não tem nenhum servidor na sua conta atualmente.',
19+
'form_error' => 'Os seguintes erros ocorreram durante o processo do seu pedido.',
20+
'password_req' => 'Senhas devem cumprir o seguinte requiriso: pelo menos uma letra maiúscula, um minúscula, um dígito, e ter 8 caracteres no total.',
21+
'root_administrator' => 'Mudar isso para "Sim" dará ao usuário permissões completas administrativas ao PufferPanel.',
22+
'account' => [
23+
'totp_header' => 'Autenticação em Duas Etapas',
24+
'totp_qr' => 'QR Code TOTP',
25+
'totp_enable_help' => 'Você não parece ter a autenticação em duas etapas ativada. Esse método de autenticação adiciona uma barreira adicional prevenindo acesso não autorizado à sua conta. Se você ativar, será necessário fornecer um código gerado no seu celular ou outro dispositivo com suporte a TOTP antes de terminar o login.',
26+
'totp_apps' => 'Você precisa ter uma aplicação com suporte a TOTP (exemplo: Google Authenticator, DUO Mobile, Authy) para usar essa opção.',
27+
'totp_enable' => 'Ativar Autenticação em Duas Etapas',
28+
'totp_disable' => 'Desativar Autenticação em Duas Etapas',
29+
'totp_token' => 'Token TOTP',
30+
'totp_disable_help' => 'Para desativar o TOTP nesta conta será necessário fornecer um código TOTP válido. Uma vez validado, a autenticação em duas etapas nesta conta será desativada.',
31+
'totp_checkpoint_help' => 'Por favor verifique suas configurações de TOTP escanenando o QR Code à direita com o seu aplicativo de TOTP, e então forneça o código de 6 digitos dado pleo aplicativo na caixa abaixo. Aperte a tecla Enter quando tiver acabado.',
32+
'totp_enabled' => 'Sua conta foi ativada com autenticação TOTP. Por favor clique no botão de fechar desta caixa para finalizar.',
33+
'totp_enabled_error' => 'O código TOTP fornecido não foi autenticado. Por favor tente novamente.',
34+
'email_password' => 'Senha do Email',
35+
'update_user' => 'Atualizar Usuário',
36+
'delete_user' => 'Deletar Usuário',
37+
'update_email' => 'Atualizar Email',
38+
'new_email' => 'Novo Email',
39+
'new_password' => 'Nova Senha',
40+
'update_pass' => 'Atualizar Senha'
41+
]
42+
];

resources/lang/pt/pagination.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
return [
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Pagination Language Lines
6+
|--------------------------------------------------------------------------
7+
|
8+
| The following language lines are used by the paginator library to build
9+
| the simple pagination links. You are free to change them to anything
10+
| you want to customize your views to better match your application.
11+
|
12+
*/
13+
'previous' => '&laquo; Anteriro',
14+
'next' => 'Próximo &raquo;',
15+
'sidebar' => [
16+
'account_controls' => 'Controle de Conta',
17+
'account_settings' => 'Configuração da Conta',
18+
'account_security' => 'Segurança da conta',
19+
'server_controls' => 'Controles do Servidor',
20+
'servers' => 'Seus Servidores',
21+
'overview' => 'Visão Geral dos Servidores',
22+
'files' => 'Gerenciador de Arquivos',
23+
'subusers' => 'Configurar Sub-Usuários',
24+
'manage' => 'Configurar Server',
25+
],
26+
];

resources/lang/pt/passwords.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
return [
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Password Reminder Language Lines
6+
|--------------------------------------------------------------------------
7+
|
8+
| The following language lines are the default lines which match reasons
9+
| that are given by the password broker for a password update attempt
10+
| has failed, such as for an invalid token or invalid new password.
11+
|
12+
*/
13+
'password' => 'Senhas precisam ter ao menos 6 caracteres e combinar com a confirmação.',
14+
'reset' => 'Sua senha foi resetada!',
15+
'sent' => 'Nós te enviamos um email com o link para resetar sua senha!',
16+
'token' => 'O token para resetar esta senha é inválido.',
17+
'user' => "Nós não pudemos achar um usuário com este endereço de email.",
18+
];

resources/lang/pt/server.php

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?php
2+
return [
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Pterodactyl Language Strings for /server/{server} Routes
6+
|--------------------------------------------------------------------------
7+
*/
8+
'ajax' => [
9+
'socket_error' => 'Nós não conseguimos se conectar ao servidor principal do Socket.IO, talvez tenha problemas de conexão acontecendo. O painel pode não funcionar como esperado.',
10+
'socket_status' => 'O estado desse servidor foi alterado para',
11+
'socket_status_crashed' => 'Esse server foi detectado como CRASHED.',
12+
],
13+
'index' => [
14+
'add_new' => 'Adicionar novo servidor',
15+
'memory_use' => 'Uso de Memória',
16+
'cpu_use' => 'Uso de CPU',
17+
'xaxis' => 'Tempo (Incremento de 2s)',
18+
'server_info' => 'Informações do Servidor',
19+
'connection' => 'Conexão Padrão',
20+
'mem_limit' => 'Limite de Memória',
21+
'disk_space' => 'Espaço em Disco',
22+
'control' => 'Controlar Servidor',
23+
'usage' => 'Uso',
24+
'allocation' => 'Alocação',
25+
'command' => 'Enviar Comando de Console',
26+
],
27+
'files' => [
28+
'loading' => 'Carregando lista de arquivos, isso pode levar alguns segundos...',
29+
'yaml_notice' => 'Você está atualmente editando um arquivo YAML. Esses arquivos não aceitam tabs, eles precisam usar espaços. Nós fomos além disso e quando você aprtar tab :dropdown espaços serão colocados.',
30+
'back' => 'Voltar ao Gerenciador de Arquivos',
31+
'saved' => 'Arquivo salvo com sucesso.',
32+
],
33+
];

resources/lang/pt/strings.php

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
return [
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Standalone Pterodactyl Language Strings
6+
|--------------------------------------------------------------------------
7+
*/
8+
'login' => 'Login',
9+
'password' => 'Senha',
10+
'email' => 'Email',
11+
'whoops' => 'Opa',
12+
'success' => 'Sucesso',
13+
'location' => 'Localização',
14+
'node' => 'Node',
15+
'connection' => 'Conexão',
16+
'language' => 'Língua',
17+
'close' => 'Fechar',
18+
'start' => 'Iniciar',
19+
'stop' => 'Parar',
20+
'restart' => 'Reiniciar',
21+
'save' => 'Salvar',
22+
'enabled' => 'Ativado',
23+
'disabled' => 'Desativado',
24+
'submit' => 'Enviar',
25+
'current_password' => 'Senha Atual',
26+
'again' => 'Novamente',
27+
'registered' => 'Registrado',
28+
'root_administrator' => 'Administrador Root',
29+
'yes' => 'Sim',
30+
'no' => 'Não',
31+
'memory' => 'Memória',
32+
'cpu' => 'CPU',
33+
'status' => 'Status',
34+
'players' => 'Jogadores',
35+
];

resources/lang/pt/validation.php

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
<?php
2+
return [
3+
/*
4+
|--------------------------------------------------------------------------
5+
| Validation Language Lines
6+
|--------------------------------------------------------------------------
7+
|
8+
| The following language lines contain the default error messages used by
9+
| the validator class. Some of these rules have multiple versions such
10+
| as the size rules. Feel free to tweak each of these messages here.
11+
|
12+
*/
13+
'accepted' => 'O :attribute precisa ser aceito.',
14+
'active_url' => 'O :attribute não é uma URL válida.',
15+
'after' => 'O :attribute precisa ser uma data após :date.',
16+
'alpha' => 'O :attribute só pode conter letras.',
17+
'alpha_dash' => 'O :attribute pode apenas conter letras, números, e hífens.',
18+
'alpha_num' => 'O :attribute pode apenas conter letras e números.',
19+
'array' => 'O :attribute precisa ser uma lista.',
20+
'before' => 'O :attribute precisa ser uma data antes de :date.',
21+
'between' => [
22+
'numeric' => 'O :attribute precisa estar entre :min e :max.',
23+
'file' => 'O :attribute precisa estar entre :min e :max kilobytes.',
24+
'string' => 'O :attribute precisa estar entre :min e :max caracteres.',
25+
'array' => 'O :attribute precisa estar entre :min e :max itens.',
26+
],
27+
'boolean' => 'O :attribute precisa ser falso ou verdadeiro.',
28+
'confirmed' => 'O :attribute de confirmação não combina.',
29+
'date' => 'O :attribute não é uma data válida.',
30+
'date_format' => 'O :attribute não combina com o formato :format.',
31+
'different' => 'O :attribute e :other precisam ser diferentes.',
32+
'digits' => 'O :attribute precisa ter :digits dígitos.',
33+
'digits_between' => 'O :attribute precisa estar entre :min e :max dígitos.',
34+
'email' => 'O :attribute precisa ser um endereço de email válido.',
35+
'exists' => 'O :attribute selecionado é inválido.',
36+
'filled' => 'O campo :attribute é obrigatório.',
37+
'image' => 'O :attribute precisa ser uma imagem.',
38+
'in' => 'O :attribute é inválido.',
39+
'integer' => 'O :attribute precisa ser um número inteiro.',
40+
'ip' => 'O :attribute precisa ser um endereço IP válido.',
41+
'json' => 'O :attribute precia ser um texto JSON válido.',
42+
'max' => [
43+
'numeric' => 'O :attribute não pode ser maior que :max.',
44+
'file' => 'O :attribute não pode ser maior que :max kilobytes.',
45+
'string' => 'O :attribute não pode ter mais do que :max caracteres.',
46+
'array' => 'O :attribute não pode ter mais do que :max itens.',
47+
],
48+
'mimes' => 'O :attribute precisa ser um arquivo do tipo: :values.',
49+
'min' => [
50+
'numeric' => 'O :attribute precisa ser ao menos :min.',
51+
'file' => 'O :attribute precisa ser ao menos :min kilobytes.',
52+
'string' => 'O :attribute precisa ter ao menos :min caracteres.',
53+
'array' => 'O :attribute precisa ter ao menos :min itens.',
54+
],
55+
'not_in' => 'O :attribute selecionado é inválido.',
56+
'numeric' => 'O :attribute precisa ser um número.',
57+
'regex' => 'O formato de :attribute é inválido.',
58+
'required' => 'O campo :attribute é obrigatório.',
59+
'required_if' => 'O campo :attribute é obrigatório quando :other é :value.',
60+
'required_with' => 'O campo :attribute é obrigatório quando :values está presente.',
61+
'required_with_all' => 'O campo :attribute é obrigatório quando :values estão presentes.',
62+
'required_without' => 'O campo :attribute é obrigatório quando :values não estão presentes.',
63+
'required_without_all' => 'O campo :attribute é obrigatório quando nenhum de :values estão presentes.',
64+
'same' => 'O campo :attribute e :other precisam combinar.',
65+
'size' => [
66+
'numeric' => 'O :attribute precisa ser :size.',
67+
'file' => 'O :attribute precisa ser :size kilobytes.',
68+
'string' => 'O :attribute precisa ser :size caracteres.',
69+
'array' => 'O :attribute precisa conter :size itens.',
70+
],
71+
'string' => 'O :attribute precisa ser um texto.',
72+
'totp' => 'O token TOTP é inválido. Ele expirou?',
73+
'timezone' => 'O :attribute precisa ser um fuso horário válido.',
74+
'unique' => 'O :attribute já foi pego.',
75+
'url' => 'O formato de :attribute é inválido.',
76+
/*
77+
|--------------------------------------------------------------------------
78+
| Custom Validation Language Lines
79+
|--------------------------------------------------------------------------
80+
|
81+
| Here you may specify custom validation messages for attributes using the
82+
| convention "attribute.rule" to name the lines. This makes it quick to
83+
| specify a specific custom language line for a given attribute rule.
84+
|
85+
*/
86+
'custom' => [
87+
'attribute-name' => [
88+
'rule-name' => 'custom-message',
89+
],
90+
],
91+
/*
92+
|--------------------------------------------------------------------------
93+
| Custom Validation Attributes
94+
|--------------------------------------------------------------------------
95+
|
96+
| The following language lines are used to swap attribute place-holders
97+
| with something more reader friendly such as E-Mail Address instead
98+
| of "email". This simply helps us make messages a little cleaner.
99+
|
100+
*/
101+
'attributes' => [],
102+
];

0 commit comments

Comments
 (0)