Skip to content

Commit bb5ef88

Browse files
authored
Add Spanish (es_ES) localization (alexjustesen#2212)
1 parent 3912771 commit bb5ef88

File tree

4 files changed

+150
-0
lines changed

4 files changed

+150
-0
lines changed

lang/es_ES/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' => 'Estas credenciales no coinciden con nuestros registros.',
17+
'password' => 'La contraseña proporcionada es incorrecta.',
18+
'throttle' => 'Demasiados intentos de acceso. Por favor, inténtelo de nuevo en :seconds segundos.',
19+
20+
];

lang/es_ES/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' => 'Siguiente &raquo;',
18+
19+
];

lang/es_ES/passwords.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+
| 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+
'reset' => '¡Su contraseña ha sido restablecida!',
17+
'sent' => '¡Hemos enviado por correo electrónico el enlace para restablecer su contraseña!',
18+
'password' => 'La contraseña y la confirmación deben coincidir y contener al menos seis caracteres.',
19+
20+
];

lang/es_ES/validation.php

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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+
/*
17+
|--------------------------------------------------------------------------
18+
| Custom Validation Language Lines
19+
|--------------------------------------------------------------------------
20+
|
21+
| Here you may specify custom validation messages for attributes using the
22+
| convention "attribute.rule" to name the lines. This makes it quick to
23+
| specify a specific custom language line for a given attribute rule.
24+
|
25+
*/
26+
27+
'custom' => [
28+
'attribute-name' => [
29+
30+
],
31+
],
32+
33+
/*
34+
|--------------------------------------------------------------------------
35+
| Custom Validation Attributes
36+
|--------------------------------------------------------------------------
37+
|
38+
| The following language lines are used to swap our attribute placeholder
39+
| with something more reader friendly such as "E-Mail Address" instead
40+
| of "email". This simply helps us make our message more expressive.
41+
|
42+
*/
43+
44+
'attributes' => [
45+
'address' => 'dirección',
46+
'age' => 'edad',
47+
'body' => 'contenido',
48+
'cell' => 'celular',
49+
'city' => 'ciudad',
50+
'country' => 'país',
51+
'date' => 'fecha',
52+
'day' => 'día',
53+
'excerpt' => 'resumen',
54+
'first_name' => 'nombre',
55+
'gender' => 'género',
56+
'marital_status' => 'estado civil',
57+
'profession' => 'profesión',
58+
'nationality' => 'nacionalidad',
59+
'hour' => 'hora',
60+
'last_name' => 'apellido',
61+
'message' => 'mensaje',
62+
'minute' => 'minuto',
63+
'mobile' => 'móvil',
64+
'month' => 'mes',
65+
'name' => 'nombre',
66+
'zipcode' => 'código postal',
67+
'company_name' => 'nombre de la empresa',
68+
'neighborhood' => 'vecindario',
69+
'number' => 'número',
70+
'password' => 'contraseña',
71+
'phone' => 'teléfono',
72+
'second' => 'segundo',
73+
'sex' => 'sexo',
74+
'state' => 'estado',
75+
'street' => 'calle',
76+
'subject' => 'asunto',
77+
'text' => 'texto',
78+
'time' => 'hora',
79+
'title' => 'título',
80+
'username' => 'usuario',
81+
'year' => 'año',
82+
'description' => 'descripción',
83+
'password_confirmation' => 'confirmación de contraseña',
84+
'current_password' => 'contraseña actual',
85+
'complement' => 'complemento',
86+
'modality' => 'modalidad',
87+
'category' => 'categoría',
88+
'blood_type' => 'tipo de sangre',
89+
'birth_date' => 'fecha de nacimiento',
90+
],
91+
];

0 commit comments

Comments
 (0)