Skip to content

Commit 4c97b4a

Browse files
authored
[pt-BR] Update pt-BR translations (#533)
1 parent b12c7b9 commit 4c97b4a

9 files changed

Lines changed: 90 additions & 34 deletions

File tree

Language/pt-BR/Api.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/**
6+
* This file is part of CodeIgniter 4 framework.
7+
*
8+
* (c) CodeIgniter Foundation <admin@codeigniter.com>
9+
*
10+
* For the full copyright and license information, please view
11+
* the LICENSE file that was distributed with this source code.
12+
*/
13+
14+
// API language settings
15+
return [
16+
'invalidFields' => 'O campo solicitado é inválido: {0}',
17+
'invalidIncludes' => 'O recurso incluído (include) solicitado é inválido: {0}',
18+
'missingInclude' => 'Método de inclusão (include) não encontrado para: {0}',
19+
'transformerNotFound' => 'A classe Transformer \'{0}\' não foi encontrada.',
20+
'invalidTransformer' => 'A classe Transformer \'{0}\' deve implementar a interface TransformerInterface.',
21+
];

Language/pt-BR/CLI.php

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,19 @@
1717
'generator' => [
1818
'cancelOperation' => 'Operação foi cancelada.', // 'Operation has been cancelled.',
1919
'className' => [
20-
'cell' => 'Nome da classe Cell', // 'Cell class name',
21-
'command' => 'Nome da classe Command', // 'Command class name',
22-
'config' => 'Nome da classe Config', // 'Config class name',
23-
'controller' => 'Nome da classe Controller', // 'Controller class name',
24-
'default' => 'Nome da classe', // 'Class name',
25-
'entity' => 'Nome da classe Entity', // 'Entity class name',
26-
'filter' => 'Nome da classe Filter', // 'Filter class name',
27-
'migration' => 'Nome da classe Migration', // 'Migration class name',
28-
'model' => 'Nome da classe Model', // 'Model class name',
29-
'seeder' => 'Nome da classe Seeder', // 'Seeder class name',
30-
'test' => 'Nome da classe Test', // 'Test class name',
31-
'validation' => 'Nome da classe Validation', // 'Validation class name',
20+
'cell' => 'Nome da classe Cell', // 'Cell class name',
21+
'command' => 'Nome da classe Command', // 'Command class name',
22+
'config' => 'Nome da classe Config', // 'Config class name',
23+
'controller' => 'Nome da classe Controller', // 'Controller class name',
24+
'default' => 'Nome da classe', // 'Class name',
25+
'entity' => 'Nome da classe Entity', // 'Entity class name',
26+
'filter' => 'Nome da classe Filter', // 'Filter class name',
27+
'migration' => 'Nome da classe Migration', // 'Migration class name',
28+
'model' => 'Nome da classe Model', // 'Model class name',
29+
'seeder' => 'Nome da classe Seeder', // 'Seeder class name',
30+
'test' => 'Nome da classe Test', // 'Test class name',
31+
'transformer' => 'Nome da classe Transformer', // 'Transformer class name',
32+
'validation' => 'Nome da classe Validation', // 'Validation class name',
3233
],
3334
'commandType' => 'Tipo de comando', // 'Command type',
3435
'databaseGroup' => 'Grupo do banco de dados', // 'Database group',
@@ -50,4 +51,9 @@
5051
'helpUsage' => 'Uso:', // 'Usage:',
5152
'invalidColor' => 'Cor inválida "{0}": "{1}".', // Invalid "{0}" color: "{1}".',
5253
'namespaceNotDefined' => 'Namespace "{0}" não está definido.', // 'Namespace "{0}" is not defined.',
54+
'signals' => [
55+
'noPcntlExtension' => 'Extensão PCNTL não disponível. O manuseio de sinais foi desabilitado.', // PCNTL extension not available. Signal handling disabled.
56+
'noPosixExtension' => 'O manuseio de SIGTSTP/SIGCONT requer a extensão POSIX. Esses sinais serão removidos do registro.', // SIGTSTP/SIGCONT handling requires POSIX extension. These signals will be removed from registration.
57+
'failedSignal' => 'Falha ao registrar manipulador para o sinal: "{0}".', // Failed to register handler for signal: "{0}".
58+
],
5359
];

Language/pt-BR/Cast.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
// Cast language settings
1313
return [
1414
'baseCastMissing' => 'A classe "{0}" deve herdar da classe "CodeIgniter\Entity\Cast\BaseCast".', // 'The "{0}" class must inherit the "CodeIgniter\Entity\Cast\BaseCast" class.',
15+
'enumInvalidCaseName' => 'O nome do caso "{0}" é inválido para o Enum "{1}".', // 'Invalid case name "{0}" for enum "{1}".',
16+
'enumInvalidType' => 'Era esperado um Enum do tipo "{1}", mas foi recebido "{0}".', // 'Expected enum of type "{1}", but received "{0}".',
17+
'enumInvalidValue' => 'O valor "{1}" é inválido para o Enum "{0}".', // 'Invalid value "{1}" for enum "{0}".',
18+
'enumMissingClass' => 'A classe do Enum deve ser especificada para realizar o casting.', // 'Enum class must be specified for enum casting.',
19+
'enumNotEnum' => '"{0}" não é uma classe Enum válida.', // 'The "{0}" is not a valid enum class.',
1520
'invalidCastMethod' => 'O método de conversão "{0}" é inválido, métodos válidos são: ["get", "set"].', // 'The "{0}" is invalid cast method, valid methods are: ["get", "set"].',
1621
'invalidTimestamp' => 'Conversão do tipo "timestamp" espera um timestamp correto.', // 'Type casting "timestamp" expects a correct timestamp.',
1722
'jsonErrorCtrlChar' => 'Caractere de controle inesperado encontrado.', // 'Unexpected control character found.',

Language/pt-BR/Email.php

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,26 @@
1111

1212
// Email language settings
1313
return [
14-
'mustBeArray' => 'O método de validação de e-mail deve receber uma array.', // 'The email validation method must be passed an array.',
15-
'invalidAddress' => 'Endereço de e-mail inválido: "{0}"', // Invalid email address: "{0}"',
16-
'attachmentMissing' => 'Não foi possível localizar o seguinte anexo de e-mail: "{0}"', // 'Unable to locate the following email attachment: "{0}"'
17-
'attachmentUnreadable' => 'Não foi possível abrir este anexo: "{0}"', // 'Unable to open this attachment: "{0}"',
18-
'noFrom' => 'Não é possível enviar e-mail sem o cabeçalho "From".', // 'Cannot send mail with no "From" header.',
19-
'noRecipients' => 'Você deve incluir destinatários: To, Cc, ou Bcc', // 'You must include recipients: To, Cc, or Bcc',
20-
'sendFailurePHPMail' => 'Não foi possível enviar e-mail usando PHP mail(). Seu servidor pode não estar configurado para enviar e-mail usando este método.', // 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.',
21-
'sendFailureSendmail' => 'Não foi possível enviar e-mail usando PHP Sendmail. Seu servidor pode não estar configurado para enviar e-mail usando este método.', // 'Unable to send email using Sendmail. Your server might not be configured to send mail using this method.',
22-
'sendFailureSmtp' => 'Não foi possível enviar e-mail usando PHP SMTP. Seu servidor pode não estar configurado para enviar e-mail usando este método.', // 'Unable to send email using SMTP. Your server might not be configured to send mail using this method.',
23-
'sent' => 'Sua mensagem foi enviada com sucesso usando o seguinte protocolo: "{0}"', // 'Your message has been successfully sent using the following protocol: {0}',
24-
'noSocket' => 'Não foi possível abrir um soquete para o Sendmail. Por favor, verifique as configurações.', // 'Unable to open a socket to Sendmail. Please check settings.',
25-
'noHostname' => 'Você não especificou um hostname SMTP.', // 'You did not specify a SMTP hostname.',
26-
'SMTPError' => 'O seguinte erro SMTP foi encontrado: "{0}"', // 'The following SMTP error was encountered: {0}',
27-
'noSMTPAuth' => 'Erro: você deve atribuir um nome de usuário e senha SMTP.', // 'Error: You must assign an SMTP username and password.',
28-
'failedSMTPLogin' => 'Falha ao enviar o comando AUTH LOGIN. Erro: "{0}"', // 'Failed to send AUTH LOGIN command. Error: {0}',
29-
'SMTPAuthUsername' => 'Falha ao autenticar o nome de usuário. Erro: "{0}"', // 'Failed to authenticate username. Error: {0}',
30-
'SMTPAuthPassword' => 'Falha ao autenticar a senha. Erro: "{0}"', // Failed to authenticate password. Error: {0}',
31-
'SMTPDataFailure' => 'Não foi possível enviar dados: "{0}"', // 'Unable to send data: {0}',
32-
'exitStatus' => 'Código de status de saída: "{0}"', // 'Exit status code: {0}',
14+
'mustBeArray' => 'O método de validação de e-mail deve receber uma array.', // 'The email validation method must be passed an array.',
15+
'invalidAddress' => 'Endereço de e-mail inválido: "{0}"', // Invalid email address: "{0}"',
16+
'attachmentMissing' => 'Não foi possível localizar o seguinte anexo de e-mail: "{0}"', // 'Unable to locate the following email attachment: "{0}"'
17+
'attachmentUnreadable' => 'Não foi possível abrir este anexo: "{0}"', // 'Unable to open this attachment: "{0}"',
18+
'noFrom' => 'Não é possível enviar e-mail sem o cabeçalho "From".', // 'Cannot send mail with no "From" header.',
19+
'noRecipients' => 'Você deve incluir destinatários: To, Cc, ou Bcc', // 'You must include recipients: To, Cc, or Bcc',
20+
'sendFailurePHPMail' => 'Não foi possível enviar e-mail usando PHP mail(). Seu servidor pode não estar configurado para enviar e-mail usando este método.', // 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.',
21+
'sendFailureSendmail' => 'Não foi possível enviar e-mail usando PHP Sendmail. Seu servidor pode não estar configurado para enviar e-mail usando este método.', // 'Unable to send email using Sendmail. Your server might not be configured to send mail using this method.',
22+
'sendFailureSmtp' => 'Não foi possível enviar e-mail usando PHP SMTP. Seu servidor pode não estar configurado para enviar e-mail usando este método.', // 'Unable to send email using SMTP. Your server might not be configured to send mail using this method.',
23+
'sent' => 'Sua mensagem foi enviada com sucesso usando o seguinte protocolo: "{0}"', // 'Your message has been successfully sent using the following protocol: {0}',
24+
'noSocket' => 'Não foi possível abrir um soquete para o Sendmail. Por favor, verifique as configurações.', // 'Unable to open a socket to Sendmail. Please check settings.',
25+
'noHostname' => 'Você não especificou um hostname SMTP.', // 'You did not specify a SMTP hostname.',
26+
'SMTPError' => 'O seguinte erro SMTP foi encontrado: "{0}"', // 'The following SMTP error was encountered: {0}',
27+
'noSMTPAuth' => 'Erro: você deve atribuir um nome de usuário e senha SMTP.', // 'Error: You must assign an SMTP username and password.',
28+
'invalidSMTPAuthMethod' => 'Erro: O método de autorização SMTP "{0}" não é suportado no CodeIgniter, defina o método de autorização como "login" ou "plain"', // Error: SMTP authorization method "{0}" is not supported in codeigniter, set either "login" or "plain" authorization method
29+
'failureSMTPAuthMethod' => 'Não foi possível iniciar o comando AUTH. Seu servidor pode não estar configurado para usar o método de autenticação AUTH {0}.', // Unable to initiate AUTH command. Your server might not be configured to use AUTH {0} authentication method.
30+
'SMTPAuthCredentials' => 'Falha ao autenticar as credenciais do usuário. Erro: {0}', // Failed to authenticate user credentials. Error: {0}
31+
'SMTPAuthUsername' => 'Falha ao autenticar o nome de usuário. Erro: "{0}"', // 'Failed to authenticate username. Error: {0}',
32+
'SMTPAuthPassword' => 'Falha ao autenticar a senha. Erro: "{0}"', // Failed to authenticate password. Error: {0}',
33+
'SMTPDataFailure' => 'Não foi possível enviar dados: "{0}"', // 'Unable to send data: {0}',
34+
'exitStatus' => 'Código de status de saída: "{0}"', // 'Exit status code: {0}',
35+
'failedSMTPLogin' => 'Falha ao enviar o comando AUTH LOGIN. Erro: "{0}"', // 'Failed to send AUTH LOGIN command. Error: {0}',
3336
];

Language/pt-BR/Honeypot.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
/**
4+
* This file is part of CodeIgniter 4 framework.
5+
*
6+
* (c) CodeIgniter Foundation <admin@codeigniter.com>
7+
*
8+
* For the full copyright and license information, please view
9+
* the LICENSE file that was distributed with this source code.
10+
*/
11+
12+
// Honeypot language settings
13+
return [
14+
'noTemplate' => 'O template HTML para o Honeypot não está configurado.', // The HTML template for the Honeypot is not configured.
15+
'noNameField' => 'O nome do campo do Honeypot não está definido.', // The name of the Honeypot field is not set.
16+
'theClientIsABot' => 'O cliente do Honeypot pode ser um bot.', // The Honeypot client may be a bot.
17+
];

Language/pt-BR/Images.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
'unsupportedImageCreate' => 'Seu servidor não suporta a função GD necessária para processar este tipo de imagem.', // 'Your server does not support the GD function required to process this type of image.',
2323
'jpgOrPngRequired' => 'O protocolo de redimensionamento de imagem especificado nas suas preferências só funciona com os tipos de imagem JPEG ou PNG.', // 'The image resize protocol specified in your preferences only works with JPEG or PNG image types.',
2424
'rotateUnsupported' => 'A rotação de imagem não parece ser suportada pelo seu servidor.', // 'Image rotation does not appear to be supported by your server.',
25-
'libPathInvalid' => 'O caminho para a sua biblioteca de imagens não está correto. Por favor, defina o caminho correto nas suas preferências de imagem. "{0}"', // 'The path to your image library is not correct. Please set the correct path in your image preferences. "{0}"',
2625
'imageProcessFailed' => 'O processamento de imagem falhou. Por favor, verifique se o seu servidor suporta o protocolo escolhido e se o caminho para a sua biblioteca de imagens está correto.', // 'Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.',
2726
'rotationAngleRequired' => 'Um ângulo de rotação é necessário para girar a imagem.', // 'An angle of rotation is required to rotate the image.',
2827
'invalidPath' => 'O caminho para a imagem não está correto.', // 'The path to the image is not correct.',
@@ -31,4 +30,5 @@
3130
'saveFailed' => 'Não é possível salvar a imagem. Por favor, certifique-se de que a imagem e o diretório de arquivos são graváveis.', // 'Unable to save the image. Please make sure the image and file directory are writable.',
3231
'invalidDirection' => 'A direção da giro pode ser somente "vertical" ou "horizontal". Dado: "{0}"', // 'Flip direction can be only "vertical" or "horizontal". Given: "{0}"',
3332
'exifNotSupported' => 'A leitura de dados EXIF não é suportada por esta instalação do PHP.', // 'Reading EXIF data is not supported by this PHP installation.',
33+
'libPathInvalid' => 'O caminho para a sua biblioteca de imagens não está correto. Por favor, defina o caminho correto nas suas preferências de imagem. "{0}"', // 'The path to your image library is not correct. Please set the correct path in your image preferences. "{0}"',
3434
];

Language/pt-BR/Migrations.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
'gap' => 'Há uma diferença na sequência de migration perto do número de versão: ', // 'There is a gap in the migration sequence near version number: ',
2121
'classNotFound' => 'A classe migration "%s" não foi encontrada.', // 'The migration class "%s" could not be found.',
2222
'missingMethod' => 'A classe migration está sem um método "%s".', // 'The migration class is missing an "%s" method.',
23+
'locked' => 'Migrations já estão em execução em outro processo. Ignorando.', // Migrations already running in another process. Skipping.
2324

2425
// Migration Command
2526
'migHelpLatest' => "\t\tMigra o banco de dados para a última migration disponível.", // "\t\tMigrates database to latest available migration.",

Language/pt-BR/RESTful.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
*/
1111

1212
// RESTful language settings
13+
1314
return [
14-
'notImplemented' => '"{0}" ação não implementada.', // '"{0}" action not implemented.',
15+
'notImplemented' => 'Ação "{0}" não implementada.', // "{0}" action not implemented.
16+
'cannotPaginate' => 'Não foi possível recuperar os dados paginados.', // Unable to retrieve paginated data.
17+
'paginateError' => 'Ocorreu um erro ao paginar os resultados.', // An error occurred while paginating results.
1518
];

Language/pt-BR/Validation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
'valid_json' => 'O campo {field} deve conter um json válido.', // 'The {field} field must contain a valid json.',
6464

6565
// Credit Cards
66-
'valid_cc_num' => '{field} não parece ser um número de cartão de crédito válido.', // '{field} does not appear to be a valid credit card number.',
66+
'valid_cc_number' => '{field} não parece ser um número de cartão de crédito válido.', // {field} does not appear to be a valid credit card number.
6767

6868
// Files
6969
'uploaded' => '{field} não é um arquivo de upload válido.', // '{field} is not a valid uploaded file.',

0 commit comments

Comments
 (0)