mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 06:40:09 +00:00
92 lines
2.9 KiB
PHP
92 lines
2.9 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Validation Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines contain the default error messages used by
|
|
| the validator class. Some of these rules have multiple versions such
|
|
| as the size rules. Feel free to tweak each of these messages here.
|
|
|
|
|
*/
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Custom Validation Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify custom validation messages for attributes using the
|
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
|
| specify a specific custom language line for a given attribute rule.
|
|
|
|
|
*/
|
|
|
|
'custom' => [
|
|
'attribute-name' => [
|
|
|
|
],
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Custom Validation Attributes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used to swap our attribute placeholder
|
|
| with something more reader friendly such as "E-Mail Address" instead
|
|
| of "email". This simply helps us make our message more expressive.
|
|
|
|
|
*/
|
|
|
|
'attributes' => [
|
|
'address' => 'endereço',
|
|
'age' => 'idade',
|
|
'body' => 'conteúdo',
|
|
'cell' => 'celular',
|
|
'city' => 'cidade',
|
|
'country' => 'país',
|
|
'date' => 'data',
|
|
'day' => 'dia',
|
|
'excerpt' => 'resumo',
|
|
'first_name' => 'primeiro nome',
|
|
'gender' => 'sexo',
|
|
'marital_status' => 'estado civil',
|
|
'profession' => 'profissão',
|
|
'nationality' => 'nacionalidade',
|
|
'hour' => 'hora',
|
|
'last_name' => 'último nome',
|
|
'message' => 'mensagem',
|
|
'minute' => 'minuto',
|
|
'mobile' => 'celular',
|
|
'month' => 'mês',
|
|
'name' => 'nome',
|
|
'zipcode' => 'CEP',
|
|
'company_name' => 'nome da empresa',
|
|
'neighborhood' => 'bairro',
|
|
'number' => 'número',
|
|
'password' => 'senha',
|
|
'phone' => 'telefone',
|
|
'second' => 'segundo',
|
|
'sex' => 'sexo',
|
|
'state' => 'estado',
|
|
'street' => 'rua',
|
|
'subject' => 'assunto',
|
|
'text' => 'texto',
|
|
'time' => 'horário',
|
|
'title' => 'título',
|
|
'username' => 'usuário',
|
|
'year' => 'ano',
|
|
'description' => 'descrição',
|
|
'password_confirmation' => 'confirmação de senha',
|
|
'current_password' => 'senha atual',
|
|
'complement' => 'complemento',
|
|
'modality' => 'modalidade',
|
|
'category' => 'categoria',
|
|
'blood_type' => 'tipo de sangue',
|
|
'birth_date' => 'data de nascimento',
|
|
],
|
|
];
|