Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions lang/es_ES/auth.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/

'failed' => 'Estas credenciales no coinciden con nuestros registros.',
'password' => 'La contraseña proporcionada es incorrecta.',
'throttle' => 'Demasiados intentos de acceso. Por favor, inténtelo de nuevo en :seconds segundos.',

];
19 changes: 19 additions & 0 deletions lang/es_ES/pagination.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pagination links. You are free to change them to anything
| you want to customize your views to better match your application.
|
*/

'previous' => '&laquo; Anterior',
'next' => 'Siguiente &raquo;',

];
20 changes: 20 additions & 0 deletions lang/es_ES/passwords.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are given by the password broker for a password update attempt
| has failed, such as for an invalid token or invalid new password.
|
*/

'reset' => '¡Su contraseña ha sido restablecida!',
'sent' => '¡Hemos enviado por correo electrónico el enlace para restablecer su contraseña!',
'password' => 'La contraseña y la confirmación deben coincidir y contener al menos seis caracteres.',

];
91 changes: 91 additions & 0 deletions lang/es_ES/validation.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<?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' => 'dirección',
'age' => 'edad',
'body' => 'contenido',
'cell' => 'celular',
'city' => 'ciudad',
'country' => 'país',
'date' => 'fecha',
'day' => 'día',
'excerpt' => 'resumen',
'first_name' => 'nombre',
'gender' => 'género',
'marital_status' => 'estado civil',
'profession' => 'profesión',
'nationality' => 'nacionalidad',
'hour' => 'hora',
'last_name' => 'apellido',
'message' => 'mensaje',
'minute' => 'minuto',
'mobile' => 'móvil',
'month' => 'mes',
'name' => 'nombre',
'zipcode' => 'código postal',
'company_name' => 'nombre de la empresa',
'neighborhood' => 'vecindario',
'number' => 'número',
'password' => 'contraseña',
'phone' => 'teléfono',
'second' => 'segundo',
'sex' => 'sexo',
'state' => 'estado',
'street' => 'calle',
'subject' => 'asunto',
'text' => 'texto',
'time' => 'hora',
'title' => 'título',
'username' => 'usuario',
'year' => 'año',
'description' => 'descripción',
'password_confirmation' => 'confirmación de contraseña',
'current_password' => 'contraseña actual',
'complement' => 'complemento',
'modality' => 'modalidad',
'category' => 'categoría',
'blood_type' => 'tipo de sangre',
'birth_date' => 'fecha de nacimiento',
],
];