From dbf0ad3b7bfe606bfeef1795a29e8702db207412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ab=C3=ADlio=20P=C3=A1scoa?= Date: Wed, 29 Jan 2025 12:23:16 +0000 Subject: [PATCH] [pt] Update language pack (#479) --- Language/pt/Errors.php | 2 ++ Language/pt/Publisher.php | 7 ++++--- Language/pt/Validation.php | 1 + README.md | 4 ++-- tests/Language/PortugueseTranslationTest.php | 1 + 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Language/pt/Errors.php b/Language/pt/Errors.php index 74a3bb56..0e31e191 100644 --- a/Language/pt/Errors.php +++ b/Language/pt/Errors.php @@ -13,6 +13,8 @@ return [ 'pageNotFound' => '404 - Página não encontrada', 'sorryCannotFind' => 'Pedimos Desculpa! Não foi possível encontrar a pagina requisitada.', + 'badRequest' => '400 - Bad Request', + 'sorryBadRequest' => 'Pedimos Desculpa! Algo está errado no seu request.', 'whoops' => 'Ooops!', 'weHitASnag' => 'Parece termos encontramos um obstáculo! Por favor tente mais tarde...', ]; diff --git a/Language/pt/Publisher.php b/Language/pt/Publisher.php index 5daa50ff..70f83072 100644 --- a/Language/pt/Publisher.php +++ b/Language/pt/Publisher.php @@ -16,7 +16,8 @@ 'fileNotAllowed' => '"{0}" falha as seguintes restrições "{1}": {2}', // Publish Command - 'publishMissing' => 'Nenhuma classe Publisher detetada em {0} em todos namespaces.', - 'publishSuccess' => '"{0}" publicou {1} ficheiro(s) para "{2}".', - 'publishFailure' => '"{0}" falhou a publicar para "{1}".', + 'publishMissing' => 'Nenhuma classe Publisher detetada em {0} em todos namespaces.', + 'publishMissingNamespace' => 'Nenhuma classe Publisher detetada em {0} no namespace {1}.', + 'publishSuccess' => '"{0}" publicou {1} ficheiro(s) para "{2}".', + 'publishFailure' => '"{0}" falhou a publicar para "{1}".', ]; diff --git a/Language/pt/Validation.php b/Language/pt/Validation.php index bbbe5c09..cfbfd004 100644 --- a/Language/pt/Validation.php +++ b/Language/pt/Validation.php @@ -72,4 +72,5 @@ 'mime_in' => '{field} não tem um tipo mime válido.', 'ext_in' => '{field} não tem uma extensão de arquivo válida.', 'max_dims' => '{field} não é uma imagem ou é muito larga ou alta.', + 'min_dims' => '{field} não é uma imagem ou não é larga ou alta o suficiente.', ]; diff --git a/README.md b/README.md index 4268ffd8..b2f1132a 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ claims no expertise beyond English. | nl | Dutch | 4.0.3 | [JohanSmolders][nl] | JohanSmolders | no | Norwegian | 4.0.0 | [LA3QMA][no] | Kai Günter Brandt | pl | Polish | 4.0.0 | [DEVELPL][pl] | Maciej Jasiewicz -| pt | Portuguese | 4.0.0 | [rbm0407][pt] | Rodrigo Borges +| pt | Portuguese | 4.0.0 | [Nerexbcd][pt] | Abílio Páscoa | pt-BR | Brazilian | 4.0.0 | [natanfelles][pt-BR] | Natan Felles | ro | Romanian | 4.2.1 | [ed3][ro] | Ed | ru | Russian | 4.0.0 | [DigitalWolf98][ru] | Vladislav Rykhtikov @@ -96,7 +96,7 @@ _**Version where the locale was released. 4.x denotes `Unreleased`._ [nl]: https://github.com/JohanSmolders [no]: https://github.com/LA3QMA [pl]: https://github.com/DEVELPL -[pt]: https://github.com/rbm0407 +[pt]: https://github.com/Nerexbcd [pt-BR]: https://github.com/natanfelles [ro]: https://github.com/ed3 [ru]: https://github.com/DigitalWolf98 diff --git a/tests/Language/PortugueseTranslationTest.php b/tests/Language/PortugueseTranslationTest.php index afb7d1ee..1e283dfe 100644 --- a/tests/Language/PortugueseTranslationTest.php +++ b/tests/Language/PortugueseTranslationTest.php @@ -22,6 +22,7 @@ protected function setUp(): void $this->excludedLocaleKeyTranslations = [ 'Migrations.batch', 'Migrations.namespace', + 'Errors.badRequest', ]; } }