From a736d46658fcb2ce0d3e1f418292111d53216711 Mon Sep 17 00:00:00 2001 From: rpsimao Date: Thu, 5 Dec 2024 09:25:27 +0000 Subject: [PATCH] Add user language translations for pt_PT locale Introduce Portuguese translations for user-related terms and actions, including user creation, editing, and notification messages. This addition improves localization support, allowing users to interact with the application in Portuguese. --- resources/lang/pt_PT/user.php | 38 +++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 resources/lang/pt_PT/user.php diff --git a/resources/lang/pt_PT/user.php b/resources/lang/pt_PT/user.php new file mode 100644 index 0000000..bb6dce4 --- /dev/null +++ b/resources/lang/pt_PT/user.php @@ -0,0 +1,38 @@ + 'ALC', + 'resource' => [ + 'id' => 'ID', + 'single' => 'Utilizador', + 'email_verified_at' => 'Email Verificado em', + 'created_at' => 'Criado em', + 'updated_at' => 'Atualizado em', + 'verified' => 'Verificado', + 'unverified' => 'Não verificado', + 'name' => 'Nome', + 'email' => 'Email', + 'password' => 'Palavra-passe', + 'roles' => 'Funções', + 'label' => 'Utilizadores', + 'title' => [ + 'show' => 'Ver Utilizador', + 'delete' => 'Apagar Utilizador', + 'impersonate' => 'Simular Utilizador', + 'create' => 'Criar Utilizador', + 'edit' => 'Editar Utilizador', + 'list' => 'Utilizadores', + 'home' => 'Utilizadores', + ], + 'notificaitons' => [ + 'last' => [ + 'title' => 'Erro', + 'body' => 'Não é possível apagar o último utilizador', + ], + 'self' => [ + 'title' => 'Erro', + 'body' => 'Não pode apagar-se a si mesmo', + ], + ], + ], +];