Skip to content

Commit

Permalink
Merge pull request #73 from rpaggi/dev
Browse files Browse the repository at this point in the history
Add Brazilian Portuguese Language
  • Loading branch information
BadChoice authored Sep 26, 2017
2 parents 443218b + cb1f4b9 commit 35c44d3
Show file tree
Hide file tree
Showing 19 changed files with 382 additions and 2 deletions.
2 changes: 2 additions & 0 deletions app/Language.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class Language
const CA = 'ca';
const FR = 'fr';
const DE = 'de';
const PTBR = 'pt-br';

public static function available()
{
Expand All @@ -18,6 +19,7 @@ public static function available()
static::CA => __('languages.ca'),
static::FR => __('languages.fr'),
static::DE => __('languages.de'),
static::PTBR => __('languages.ptbr'),
];
}

Expand Down
1 change: 1 addition & 0 deletions resources/lang/ca/languages.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
'ca' => 'Catala',
'fr' => 'Francès',
'de' => 'Alemany',
'ptbr' => 'Portuguès brasiler',
];
1 change: 1 addition & 0 deletions resources/lang/de/languages.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
'ca' => 'Catalanisch',
'fr' => 'Französich',
'de' => 'Deutsch',
'ptbr' => 'Brasilianisches Portugiesisch',
];
4 changes: 2 additions & 2 deletions resources/lang/de/notification.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

<?php
return [
'newLeadCreatedDesc' => 'A new lead has been created',
'leadAssigned' => 'Lead assigned',
Expand All @@ -10,4 +10,4 @@
'ticketAssignedTo' => 'Ticket assigned to',
'ticketUpdated' => 'Ticket updated',
'ticketEscalated' => 'Ticket escalated',
];
];
1 change: 1 addition & 0 deletions resources/lang/en/languages.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
'ca' => 'Catalan',
'fr' => 'French',
'de' => 'German',
'ptbr' => 'Brazillian Portuguese',
];
1 change: 1 addition & 0 deletions resources/lang/es/languages.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
'ca' => 'Catalan',
'fr' => 'Francés',
'de' => 'Alemán',
'ptbr' => 'Portugués Brasileño',
];
6 changes: 6 additions & 0 deletions resources/lang/ptbr/admin.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

return [
'admin' => 'Administração',
'config' => 'Configuração',
];
19 changes: 19 additions & 0 deletions resources/lang/ptbr/auth.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/

'failed' => 'Login não encontrado em nossos registros.',
'throttle' => 'Muitas tentativas de login. Por favor tente novamente em :seconds segundos.',

];
10 changes: 10 additions & 0 deletions resources/lang/ptbr/languages.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

return [
'en' => 'Inglês',
'es' => 'Espanhol',
'ca' => 'Catalão',
'fr' => 'Francês',
'de' => 'Alemão',
'ptbr' => 'Português Brasileiro',
];
30 changes: 30 additions & 0 deletions resources/lang/ptbr/lead.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

return [
'lead' => 'Lead|Leads',
'newLead' => 'Novo Lead',
'status' => 'Status|Status',
'all' => 'Todos|Todos',
'mine' => 'Minha|Minhas',
'company' => 'Compania',
'address' => 'Endereço',
'postalCode' => 'CEP',
'username' => 'Usuário',
'name' => 'Nome',
'phone' => 'Telefone',
'email' => 'Email',
'city' => 'Cidade',
'country' => 'País',

'new' => 'Novo',
'visited' => 'Visitado',
'first-contact' => 'Primeiro Contato',
'completed' => 'Completadas',
'failed' => 'Falhadas',
'task' => 'Tarefa|Tarefas',
'due' => 'Pendente',
'complete' => 'Completo',
'todayTasks' => 'Tarefas de hoje',
'todayTasksDesc' => 'Essas são suas tarefas para hoje:',
'search' => 'Buscar',
];
13 changes: 13 additions & 0 deletions resources/lang/ptbr/notification.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

return [
'newLeadCreatedDesc' => 'Um novo lead foi criado',
'leadAssigned' => 'Lead atribuído',
'newTicketCreated' => 'Novo ticket criado',
'newTicket' => 'Novo ticket',
'ticketCreated' => 'Ticket criado',
'ticketAssigned' => 'Ticket atribuído',
'ticketAssignedTo' => 'Ticket atribuído à',
'ticketUpdated' => 'Ticket atualizado',
'ticketEscalated' => 'Ticket escalado',
];
19 changes: 19 additions & 0 deletions resources/lang/ptbr/pagination.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pagination links. You are free to change them to anything
| you want to customize your views to better match your application.
|
*/

'previous' => '&laquo; Anterior',
'next' => 'Próxima &raquo;',

];
22 changes: 22 additions & 0 deletions resources/lang/ptbr/passwords.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are given by the password broker for a password update attempt
| has failed, such as for an invalid token or invalid new password.
|
*/

'password' => 'A senha deve ter pelo menos seis caracteres e ser igual a sua confirmação.',
'reset' => 'Sua senha foi resetada!',
'sent' => 'Nós enviamos ao seu email um link para resetar sua senha!',
'token' => 'Este token de reset de senha é inválido.',
'user' => "Nós não podemos encontrar um usuário com este e-mail.",

];
10 changes: 10 additions & 0 deletions resources/lang/ptbr/report.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

return [
'report' => 'Relatório|Relatórios',
'firstReplyTime' => 'Tempo para primeira resposta',
'solveTime' => 'Tempo de solução',
'onTouchResolutionRatio' => 'Taxa de resolução em um toque',
'reopenedRatio' => 'Taxa de reabertura',
'filter' => 'Filtro',
];
5 changes: 5 additions & 0 deletions resources/lang/ptbr/setting.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

return [
'setting' => 'Opções|Opções',
];
19 changes: 19 additions & 0 deletions resources/lang/ptbr/team.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

return [
'team' => 'Equipe|Equipes',
'member' => 'Membro|Membros',
'invitationLink' => 'Link de convite',
'invitationLinkDesc' => "Convide mais pessoas para esta equipe enviando a eles este link, se eles não tem uma conta Handesk ainda, use o link de registro",
'join' => 'Entre',
'invitedTitle' => 'Você foi convidado para entrar na equpe :team',
'invitedDesc' => 'Entrando nesta equipe, você será apto a ver e atualizar seus tickets de suporte, bem como atribuí-los a outros membros da equipe.',
'register' => 'Ou enviar este link se o usuário não tem uma conta Handesk ainda',
'new' => 'Novo',
'name' => 'Nome',
'email' => 'Email',
'slack_webhook_url' => 'Slack webhook url',
'slack' => 'Slack',
'slack_webhook_urlDesc' => 'Você pode customizar o canal ou o usuário adicionando-o no final da url junto a um ?. Exemplo: https://hooks.slack.com/services/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?#custom-channel',
'none' => 'Nenhum',
];
48 changes: 48 additions & 0 deletions resources/lang/ptbr/ticket.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php

return [
'all' => 'Todos',
'ticket' => 'Ticket|Tickets',
'assigned' => 'Atribuido',
'myTickets' => 'Meus Tickets',
'newTicket' => 'Novo Ticket',
'unassigned' => 'Não atribuído',
'unanswered' => 'Sem resposta',
'archive' => 'Arquivo',
'subject' => 'Assunto',
'requester' => 'Solicitante',
'date' => 'Data',
'team' => 'Equipe',
'user' => 'Membro|Membros',
'recent' => 'Atualizado recentemente',
'requested' => 'Requeridos',
'updated' => 'Atualizado',
'update' => 'Atualizar',
'comment' => 'Comentar',
'commentAs' => 'Comentar como',
'assign' => 'Atribuir',
'status' => 'Status',
'tag' => 'Tag|Tags',

'new' => 'Novo',
'open' => 'Abrir',
'reopen' => 'Re-abrir',
'pending' => 'Pendente',
'solved' => 'Resolvido',
'isSolvedQuestion' => 'Está resolvido?',
'closed' => 'Fechado',
'note' => 'Nota privada',
'merge' => 'Fundir',
'mergeDesc' => 'Selecione aqueles para fundir e clique aqui',
'mergeDesc2' => 'Por favor, insira o número do ticket para se fundir',
'merged' => 'Fundido',
'attachment' => 'Anexo|Anexos',
'uploadAttachment' => 'Carregar anexo',
'attachFile' => 'Anexar arquivo',
'escalate' => 'Escalar',
'escalated' => 'Escalado',
'de-escalate' => 'Desescalar',
'escalatedDesc' => 'Este ticket está <b>escalado</b>, todos os comentarios deverão ser adicionados as notas privadas até que ele seja desescalado',
'createIssue' => 'Criar pendência',
'seeIssue' => 'Ver pendência',
];
22 changes: 22 additions & 0 deletions resources/lang/ptbr/user.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

return [
'you' => 'Você',
'name' => 'Nome',
'email' => 'Email',
'profile' => 'Perfil',
'language' => 'Linguagem',
'password' => 'Senha',
'oldPassword' => 'Senha antiga',
'newPassword' => 'Senha nova',
'confirmPassword' => 'Confirme a senha',
'changePassword' => 'Mudar senha',
'ticketsSignature' => 'Assinatura dos tickets',
'notification' => 'Notificação|Notificações',
'dailyTasksNotification' => 'Notificação de tarefas diárias',
'newTicketNotification' => 'Notificação de nova tarefa',
'ticketAssignedNotification'=> 'Notificação de associação de ticket',
'ticketUpdatedNotification' => 'Notificação de atualização de ticket',
'newLeadNotification' => 'Notificação de novo lead',
'leadAssignedNotification' => 'Notificação de associação de lead',
];
Loading

0 comments on commit 35c44d3

Please sign in to comment.