Skip to content

Commit

Permalink
Add user language translations for pt_PT locale
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rpsimao committed Dec 5, 2024
1 parent 053e731 commit a736d46
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions resources/lang/pt_PT/user.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?php

return [
'group' => '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',
],
],
],
];

0 comments on commit a736d46

Please sign in to comment.