Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pt-br] update Portuguese translations #422

Merged
merged 4 commits into from
Dec 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Language/pt-BR/CLI.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
'generator' => [
'cancelOperation' => 'Operação foi cancelada.',
'className' => [
'cell' => 'Nome da classe da célula',
'command' => 'Nome da classe de comando',
'config' => 'Nome da classe de configuração',
'controller' => 'Nome da classe de controlador',
Expand All @@ -38,6 +39,9 @@
'returnType' => 'Tipo de retorno',
'tableName' => 'Nome da tabela',
'usingCINamespace' => 'Atenção: Usar o namespace "CodeIgniter" irá gerar o arquivo no diretório system.',
'viewName' => [
'cell' => 'Nome da view da célula',
],
],
'helpArguments' => 'Argumentos:',
'helpDescription' => 'Descrição:',
Expand Down
3 changes: 2 additions & 1 deletion Language/pt-BR/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
'copyError' => 'Um erro foi encontrado ao tentar substituir o arquivo. Por favor, certifique-se de que seu diretório de arquivos é gravável.',
'enabledZlibOutputCompression' => 'Sua diretiva zlib.output_compression ini está on. Isso não irá trabalhar bem com a saída de buffers.',
'invalidFile' => 'Arquivo inválido: {0}',
'invalidPhpVersion' => 'Sua versão do PHP deve ser {0} ou maior para rodar CodeIgniter. Versão atual: {1}',
'invalidDirectory' => 'O diretório não existe: "{0}"',
'invalidPhpVersion' => 'Sua versão do PHP deve ser {0} ou mais recente para rodar CodeIgniter. Versão atual: {1}',
'missingExtension' => 'A extensão {0} não está carregada.',
'noHandlers' => '{0} deve prover pelo menos um Handler.',
];
18 changes: 18 additions & 0 deletions Language/pt-BR/Errors.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

// Errors language settings
return [
'pageNotFound' => '404 - Página não encontrada',
'sorryCannotFind' => 'Desculpe! Infelizmente a página solicitada não pode ser encontrada.',
'whoops' => 'Ooops!',
'weHitASnag' => 'Parece que temos um problema. Por favor, tente novamente mais tarde...',
];
10 changes: 6 additions & 4 deletions Language/pt-BR/HTTP.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@

// IncomingRequest
'invalidNegotiationType' => '{0} não é um tipo de negociação válido. Deve ser um dos seguintes: media, charset, encoding, language.',
'invalidJSON' => 'Falha ao analisar a string JSON. Erro: {0}',
'unsupportedJSONFormat' => 'O formato JSON fornecido não é compatível.',

// Message
'invalidHTTPProtocol' => 'Versão inválida do Protocolo HTTP. Deve ser uma dessas: {0}',
Expand Down Expand Up @@ -52,15 +54,15 @@
'emptyController' => 'Nenhum Controller especificado.',
'controllerNotFound' => 'Controller ou seu método não foi encontrado: {0}::{1}',
'methodNotFound' => 'Método do Controller não foi encontrado: {0}',
'localeNotSupported' => 'Idioma não suportado: {0}',

// CSRF
'disallowedAction' => 'A ação que você solicitou não é permitida.',

// Uploaded file moving
'alreadyMoved' => 'O arquivo enviado já foi movido.',
'invalidFile' => 'O arquivo original não é um arquivo válido.',
'moveFailed' => 'Não foi possível mover o arquivo {0} para {1} ({2})',

'alreadyMoved' => 'O arquivo enviado já foi movido.',
'invalidFile' => 'O arquivo original não é um arquivo válido.',
'moveFailed' => 'Não foi possível mover o arquivo {0} para {1} ({2})',
'uploadErrOk' => 'O upload do arquivo foi realizado com sucesso.',
'uploadErrIniSize' => 'O arquivo "%s" excede a diretiva ini upload_max_filesize.',
'uploadErrFormSize' => 'O arquivo "%s" excede o limite de upload definido em seu formulário.',
Expand Down
15 changes: 15 additions & 0 deletions Language/pt-BR/Language.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/

// "Language" language settings
return [
'invalidMessageFormat' => 'Formato de mensagem inválido: "{0}", Argumente: "{1}"',
];