Skip to content

Commit

Permalink
Add Spanish translations for attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
HenestrosaDev committed Jun 17, 2024
1 parent 85382c7 commit a06ab47
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 2 deletions.
38 changes: 37 additions & 1 deletion lang/es/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,42 @@
|
*/

'attributes' => [],
'attributes' => [
// Author
'first_name' => 'nombre',
'last_name' => 'apellidos',
'birth_date' => 'fecha de nacimiento',
'death_date' => 'fecha de fallecimiento',
'description' => 'descripción',
'portrait_file' => 'retrato del autor',
// Book review
'rating' => 'puntuación',
'review_text' => 'reseña',
// Book
'isbn' => 'ISBN',
'title' => 'título',
'language' => 'idioma',
'page_count' => 'número de páginas',
'year' => 'año',
'is_premium' => '¿Es Premium?',
'book_file' => 'archivo del libro',
'cover_file' => 'archivo de la portada',
'authors_id' => 'autores',
'genres_id' => 'géneros',
// User
'name' => 'nombre',
'subscription_plan_id' => 'plan de suscripción',
'status' => 'estado',
'end_date' => 'fecha de fin',
'username' => 'nombre de usuario',
'password' => 'contraseña',
'role_id' => 'rol',
// Payment
'cardholder_name' => 'titular de la tarjeta',
'card_number' => 'número de la tarjeta',
'expiration_year' => 'año de expiración',
'expiration_month' => 'mes de expiración',
'cvc' => 'CVC',
],

];
38 changes: 37 additions & 1 deletion resources/lang/es/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,42 @@
|
*/

'attributes' => [],
'attributes' => [
// Author
'first_name' => 'nombre',
'last_name' => 'apellidos',
'birth_date' => 'fecha de nacimiento',
'death_date' => 'fecha de fallecimiento',
'description' => 'descripción',
'portrait_file' => 'retrato del autor',
// Book review
'rating' => 'puntuación',
'review_text' => 'reseña',
// Book
'isbn' => 'ISBN',
'title' => 'título',
'language' => 'idioma',
'page_count' => 'número de páginas',
'year' => 'año',
'is_premium' => '¿Es Premium?',
'book_file' => 'archivo del libro',
'cover_file' => 'archivo de la portada',
'authors_id' => 'autores',
'genres_id' => 'géneros',
// User
'name' => 'nombre',
'subscription_plan_id' => 'plan de suscripción',
'status' => 'estado',
'end_date' => 'fecha de fin',
'username' => 'nombre de usuario',
'password' => 'contraseña',
'role_id' => 'rol',
// Payment
'cardholder_name' => 'titular de la tarjeta',
'card_number' => 'número de la tarjeta',
'expiration_year' => 'año de expiración',
'expiration_month' => 'mes de expiración',
'cvc' => 'CVC',
],

];

0 comments on commit a06ab47

Please sign in to comment.