Skip to content

Commit

Permalink
Merge pull request Laravel-Lang#662 from Qu4k3/patch-1
Browse files Browse the repository at this point in the history
Added common used atributes
  • Loading branch information
caouecs authored Feb 13, 2017
2 parents 41ffab8 + 68dc22f commit 539d9bc
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion src/ca/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,35 @@
*/

'attributes' => [
//
'name' => 'nom',
'username' => 'usuari',
'email' => 'correu electrònic',
'first_name' => 'nom',
'last_name' => 'cognom',
'password' => 'contrasenya',
'password_confirmation' => 'confirmació de la contrasenya',
'city' => 'ciutat',
'country' => 'país',
'address' => 'direcció',
'phone' => 'telèfon',
'mobile' => 'mòbil',
'age' => 'edat',
'sex' => 'sexe',
'gender' => 'gènere',
'year' => 'any',
'month' => 'mes',
'day' => 'dia',
'hour' => 'hora',
'minute' => 'minut',
'second' => 'segon',
'title' => 'títol',
'body' => 'contingut',
'description' => 'descripció',
'excerpt' => 'extracte',
'date' => 'data',
'time' => 'hora',
'subject' => 'assumpte',
'message' => 'missatge',
],

];

0 comments on commit 539d9bc

Please sign in to comment.