Skip to content

Commit 8846810

Browse files
committed
pt_BR Locale files
1 parent eab5017 commit 8846810

File tree

4 files changed

+281
-0
lines changed

4 files changed

+281
-0
lines changed

lang/pt_BR/auth.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Authentication Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are used during authentication for various
11+
| messages that we need to display to the user. You are free to modify
12+
| these language lines according to your application's requirements.
13+
|
14+
*/
15+
16+
'failed' => 'Essas credenciais não foram encontradas em nossos registros.',
17+
'password' => 'A senha informada está incorreta.',
18+
'throttle' => 'Muitas tentativas de login. Tente novamente em :seconds segundos.',
19+
20+
];

lang/pt_BR/pagination.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Pagination Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are used by the paginator library to build
11+
| the simple pagination links. You are free to change them to anything
12+
| you want to customize your views to better match your application.
13+
|
14+
*/
15+
16+
'previous' => '&laquo; Anterior',
17+
'next' => 'Próximo &raquo;',
18+
19+
];

lang/pt_BR/passwords.php

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Password Reset Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are the default lines which match reasons
11+
| that are given by the password broker for a password update attempt
12+
| has failed, such as for an invalid token or invalid new password.
13+
|
14+
*/
15+
16+
'password' => 'A senha e a confirmação devem combinar e possuir pelo menos seis caracteres.',
17+
'reset' => 'Sua senha foi redefinida!',
18+
'sent' => 'Enviamos seu link de redefinição de senha por e-mail!',
19+
'throttled' => 'Aguarde antes de tentar novamente.',
20+
'token' => 'Este token de redefinição de senha é inválido.',
21+
'user' => "Não encontramos um usuário com esse endereço de e-mail.",
22+
23+
];

lang/pt_BR/validation.php

Lines changed: 219 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,219 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Validation Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines contain the default error messages used by
11+
| the validator class. Some of these rules have multiple versions such
12+
| as the size rules. Feel free to tweak each of these messages here.
13+
|
14+
*/
15+
16+
'accepted' => 'O campo :attribute deve ser aceito.',
17+
'accepted_if' => 'O :attribute deve ser aceito quando :other for :value.',
18+
'active_url' => 'O campo :attribute não é uma URL válida.',
19+
'after' => 'O campo :attribute deve ser uma data posterior a :date.',
20+
'after_or_equal' => 'O campo :attribute deve ser uma data posterior ou igual a :date.',
21+
'alpha' => 'O campo :attribute só pode conter letras.',
22+
'alpha_dash' => 'O campo :attribute só pode conter letras, números e traços.',
23+
'alpha_num' => 'O campo :attribute só pode conter letras e números.',
24+
'array' => 'O campo :attribute deve ser uma matriz.',
25+
'before' => 'O campo :attribute deve ser uma data anterior :date.',
26+
'before_or_equal' => 'O campo :attribute deve ser uma data anterior ou igual a :date.',
27+
'between' => [
28+
'numeric' => 'O campo :attribute deve ser entre :min e :max.',
29+
'file' => 'O campo :attribute deve ser entre :min e :max kilobytes.',
30+
'string' => 'O campo :attribute deve ser entre :min e :max caracteres.',
31+
'array' => 'O campo :attribute deve ter entre :min e :max itens.',
32+
],
33+
'boolean' => 'O campo :attribute deve ser verdadeiro ou falso.',
34+
'confirmed' => 'O campo :attribute de confirmação não confere.',
35+
'current_password' => 'A senha está incorreta.',
36+
'date' => 'O campo :attribute não é uma data válida.',
37+
'date_equals' => 'O campo :attribute deve ser uma data igual a :date.',
38+
'date_format' => 'O campo :attribute não corresponde ao formato :format.',
39+
'declined' => 'O :attribute deve ser recusado.',
40+
'declined_if' => 'O :attribute deve ser recusado quando :other for :value.',
41+
'different' => 'Os campos :attribute e :other devem ser diferentes.',
42+
'digits' => 'O campo :attribute deve ter :digits dígitos.',
43+
'digits_between' => 'O campo :attribute deve ter entre :min e :max dígitos.',
44+
'dimensions' => 'O campo :attribute tem dimensões de imagem inválidas.',
45+
'distinct' => 'O campo :attribute campo tem um valor duplicado.',
46+
'doesnt_start_with' => 'O :attribute não pode começar com um dos seguintes: :values.',
47+
'email' => 'O campo :attribute deve ser um endereço de e-mail válido.',
48+
'ends_with' => 'O campo :attribute deve terminar com um dos seguintes: :values',
49+
'enum' => 'O :attribute selecionado é inválido.',
50+
'exists' => 'O campo :attribute selecionado é inválido.',
51+
'file' => 'O campo :attribute deve ser um arquivo.',
52+
'filled' => 'O campo :attribute deve ter um valor.',
53+
'gt' => [
54+
'numeric' => 'O campo :attribute deve ser maior que :value.',
55+
'file' => 'O campo :attribute deve ser maior que :value kilobytes.',
56+
'string' => 'O campo :attribute deve ser maior que :value caracteres.',
57+
'array' => 'O campo :attribute deve conter mais de :value itens.',
58+
],
59+
'gte' => [
60+
'numeric' => 'O campo :attribute deve ser maior ou igual a :value.',
61+
'file' => 'O campo :attribute deve ser maior ou igual a :value kilobytes.',
62+
'string' => 'O campo :attribute deve ser maior ou igual a :value caracteres.',
63+
'array' => 'O campo :attribute deve conter :value itens ou mais.',
64+
],
65+
'image' => 'O campo :attribute deve ser uma imagem.',
66+
'in' => 'O campo :attribute selecionado é inválido.',
67+
'in_array' => 'O campo :attribute não existe em :other.',
68+
'integer' => 'O campo :attribute deve ser um número inteiro.',
69+
'ip' => 'O campo :attribute deve ser um endereço de IP válido.',
70+
'ipv4' => 'O campo :attribute deve ser um endereço IPv4 válido.',
71+
'ipv6' => 'O campo :attribute deve ser um endereço IPv6 válido.',
72+
'json' => 'O campo :attribute deve ser uma string JSON válida.',
73+
'lt' => [
74+
'numeric' => 'O campo :attribute deve ser menor que :value.',
75+
'file' => 'O campo :attribute deve ser menor que :value kilobytes.',
76+
'string' => 'O campo :attribute deve ser menor que :value caracteres.',
77+
'array' => 'O campo :attribute deve conter menos de :value itens.',
78+
],
79+
'lte' => [
80+
'numeric' => 'O campo :attribute deve ser menor ou igual a :value.',
81+
'file' => 'O campo :attribute deve ser menor ou igual a :value kilobytes.',
82+
'string' => 'O campo :attribute deve ser menor ou igual a :value caracteres.',
83+
'array' => 'O campo :attribute não deve conter mais que :value itens.',
84+
],
85+
'max' => [
86+
'numeric' => 'O campo :attribute não pode ser superior a :max.',
87+
'file' => 'O campo :attribute não pode ser superior a :max kilobytes.',
88+
'string' => 'O campo :attribute não pode ser superior a :max caracteres.',
89+
'array' => 'O campo :attribute não pode ter mais do que :max itens.',
90+
],
91+
'max_digits' => 'O campo :attribute não pode ser superior a :max dígitos',
92+
'mimes' => 'O campo :attribute deve ser um arquivo do tipo: :values.',
93+
'mimetypes' => 'O campo :attribute deve ser um arquivo do tipo: :values.',
94+
'min' => [
95+
'numeric' => 'O campo :attribute deve ser pelo menos :min.',
96+
'file' => 'O campo :attribute deve ter pelo menos :min kilobytes.',
97+
'string' => 'O campo :attribute deve ter pelo menos :min caracteres.',
98+
'array' => 'O campo :attribute deve ter pelo menos :min itens.',
99+
],
100+
'missing_with' => 'O campo :attribute não deve estar presente quando houver :values.',
101+
'min_digits' => 'O campo :attribute deve ter pelo menos :min dígitos',
102+
'not_in' => 'O campo :attribute selecionado é inválido.',
103+
'multiple_of' => 'O campo :attribute deve ser um múltiplo de :value.',
104+
'not_regex' => 'O campo :attribute possui um formato inválido.',
105+
'numeric' => 'O campo :attribute deve ser um número.',
106+
'password' => [
107+
'letters' => 'O campo :attribute deve conter pelo menos uma letra.',
108+
'mixed' => 'O campo :attribute deve conter pelo menos uma letra maiúscula e uma letra minúscula.',
109+
'numbers' => 'O campo :attribute deve conter pelo menos um número.',
110+
'symbols' => 'O campo :attribute deve conter pelo menos um símbolo.',
111+
'uncompromised' => 'A senha que você inseriu em :attribute está em um vazamento de dados.'
112+
. ' Por favor escolha uma senha diferente.',
113+
],
114+
'present' => 'O campo :attribute deve estar presente.',
115+
'regex' => 'O campo :attribute tem um formato inválido.',
116+
'required' => 'O campo :attribute é obrigatório.',
117+
'required_array_keys' => 'O campo :attribute deve conter entradas para: :values.',
118+
'required_if' => 'O campo :attribute é obrigatório quando :other for :value.',
119+
'required_unless' => 'O campo :attribute é obrigatório exceto quando :other for :values.',
120+
'required_with' => 'O campo :attribute é obrigatório quando :values está presente.',
121+
'required_with_all' => 'O campo :attribute é obrigatório quando :values está presente.',
122+
'required_without' => 'O campo :attribute é obrigatório quando :values não está presente.',
123+
'required_without_all' => 'O campo :attribute é obrigatório quando nenhum dos :values estão presentes.',
124+
'prohibited' => 'O campo :attribute é proibido.',
125+
'prohibited_if' => 'O campo :attribute é proibido quando :other for :value.',
126+
'prohibited_unless' => 'O campo :attribute é proibido exceto quando :other for :values.',
127+
'prohibits' => 'O campo :attribute proíbe :other de estar presente.',
128+
'same' => 'Os campos :attribute e :other devem corresponder.',
129+
'size' => [
130+
'numeric' => 'O campo :attribute deve ser :size.',
131+
'file' => 'O campo :attribute deve ser :size kilobytes.',
132+
'string' => 'O campo :attribute deve ser :size caracteres.',
133+
'array' => 'O campo :attribute deve conter :size itens.',
134+
],
135+
'starts_with' => 'O campo :attribute deve começar com um dos seguintes valores: :values',
136+
'string' => 'O campo :attribute deve ser uma string.',
137+
'timezone' => 'O campo :attribute deve ser uma zona válida.',
138+
'unique' => 'O campo :attribute já está sendo utilizado.',
139+
'uploaded' => 'Ocorreu uma falha no upload do campo :attribute.',
140+
'url' => 'O campo :attribute tem um formato inválido.',
141+
'uuid' => 'O campo :attribute deve ser um UUID válido.',
142+
143+
/*
144+
|--------------------------------------------------------------------------
145+
| Custom Validation Language Lines
146+
|--------------------------------------------------------------------------
147+
|
148+
| Here you may specify custom validation messages for attributes using the
149+
| convention "attribute.rule" to name the lines. This makes it quick to
150+
| specify a specific custom language line for a given attribute rule.
151+
|
152+
*/
153+
154+
'custom' => [
155+
'attribute-name' => [
156+
'rule-name' => 'custom-message',
157+
],
158+
],
159+
160+
/*
161+
|--------------------------------------------------------------------------
162+
| Custom Validation Attributes
163+
|--------------------------------------------------------------------------
164+
|
165+
| The following language lines are used to swap our attribute placeholder
166+
| with something more reader friendly such as "E-Mail Address" instead
167+
| of "email". This simply helps us make our message more expressive.
168+
|
169+
*/
170+
171+
'attributes' => [
172+
'address' => 'endereço',
173+
'age' => 'idade',
174+
'body' => 'conteúdo',
175+
'cell' => 'célula',
176+
'city' => 'cidade',
177+
'country' => 'país',
178+
'date' => 'data',
179+
'day' => 'dia',
180+
'excerpt' => 'resumo',
181+
'first_name' => 'primeiro nome',
182+
'gender' => 'gênero',
183+
'marital_status' => 'estado civil',
184+
'profession' => 'profissão',
185+
'nationality' => 'nacionalidade',
186+
'hour' => 'hora',
187+
'last_name' => 'sobrenome',
188+
'message' => 'mensagem',
189+
'minute' => 'minuto',
190+
'mobile' => 'celular',
191+
'month' => 'mês',
192+
'name' => 'nome',
193+
'zipcode' => 'cep',
194+
'company_name' => 'razão social',
195+
'neighborhood' => 'bairro',
196+
'number' => 'número',
197+
'password' => 'senha',
198+
'phone' => 'telefone',
199+
'second' => 'segundo',
200+
'sex' => 'sexo',
201+
'state' => 'estado',
202+
'street' => 'rua',
203+
'subject' => 'assunto',
204+
'text' => 'texto',
205+
'time' => 'hora',
206+
'title' => 'título',
207+
'username' => 'usuário',
208+
'year' => 'ano',
209+
'description' => 'descrição',
210+
'password_confirmation' => 'confirmação da senha',
211+
'current_password' => 'senha atual',
212+
'complement' => 'complemento',
213+
'modality' => 'modalidade',
214+
'category' => 'categoria',
215+
'blood_type' => 'tipo sanguíneo',
216+
'birth_date' => 'data de nascimento'
217+
],
218+
219+
];

0 commit comments

Comments
 (0)