Skip to content

Commit

Permalink
Translation profiles messages
Browse files Browse the repository at this point in the history
  • Loading branch information
viniciuspugliese committed Feb 2, 2018
1 parent 18518c6 commit bb3634b
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/Config/Translations/profiles/en.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
<?php

return [
'address.state' => [
'Estado inválido' => 'The status is invalid.',
],

'address.city' => [
'Cidade inválida' => 'The city is invalid.',
],

'address.neighborhood' => [
'Bairro inválido' => 'The neighborhood is invalid.',
],

'user.email' => [
'já está em uso' => 'The email is already in use.',
],

'gender' => [
'não pode ficar em branco' => 'The gender is required.',
'não está incluído na lista' => 'The gender is not included in the list.',
],

'birthday' => [
'não pode ficar em branco' => 'The birthday is required.',
'não está incluído na lista' => 'The birthday is not included in the list.',
],

'nickname' => [
'Apelido Inválido. Use apenas letras, _ e -' => 'The nickname is invalid, use only (letters, _ and -).',
],
];
28 changes: 28 additions & 0 deletions src/Config/Translations/profiles/pt-br.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
<?php

return [
'address.state' => [
'Estado inválido' => 'O estado é inválido.',
],

'address.city' => [
'Cidade inválida' => 'A cidade é inválida.',
],

'address.neighborhood' => [
'Bairro inválido' => 'O bairro é inválido.',
],

'user.email' => [
'já está em uso' => 'O email já está em uso.',
],

'gender' => [
'não pode ficar em branco' => 'O gênero é obrigatório.',
'não está incluído na lista' => 'O gênero não está incluído na lista.',
],

'birthday' => [
'não pode ficar em branco' => 'O aniversário é obrigatório.',
'não está incluído na lista' => 'O aniversário não está incluído na lista.',
],

'nickname' => [
'Apelido Inválido. Use apenas letras, _ e -' => 'O apelido é inválido, use apenas (letras, _ e -).',
],
];

0 comments on commit bb3634b

Please sign in to comment.