ingeniuscliq-core 0.5.27 → 0.5.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/i18n/config.d.ts
CHANGED
|
@@ -9,9 +9,9 @@ export declare const resources: {
|
|
|
9
9
|
email: string;
|
|
10
10
|
password: string;
|
|
11
11
|
password_confirmation: string;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
current_password: string;
|
|
13
|
+
new_password: string;
|
|
14
|
+
new_password_confirmation: string;
|
|
15
15
|
phone: string;
|
|
16
16
|
address: string;
|
|
17
17
|
note: string;
|
|
@@ -110,9 +110,9 @@ export declare const resources: {
|
|
|
110
110
|
email: string;
|
|
111
111
|
password: string;
|
|
112
112
|
password_confirmation: string;
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
113
|
+
current_password: string;
|
|
114
|
+
new_password: string;
|
|
115
|
+
new_password_confirmation: string;
|
|
116
116
|
phone: string;
|
|
117
117
|
address: string;
|
|
118
118
|
note: string;
|
|
@@ -4,9 +4,9 @@ const lastname = "Last Name";
|
|
|
4
4
|
const email = "Email";
|
|
5
5
|
const password = "Password";
|
|
6
6
|
const password_confirmation = "Confirm Password";
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
7
|
+
const current_password = "Current Password";
|
|
8
|
+
const new_password = "New Password";
|
|
9
|
+
const new_password_confirmation = "Retype New Password";
|
|
10
10
|
const phone = "Phone";
|
|
11
11
|
const address = "Address";
|
|
12
12
|
const note = "Note";
|
|
@@ -29,9 +29,9 @@ const enFields = {
|
|
|
29
29
|
email,
|
|
30
30
|
password,
|
|
31
31
|
password_confirmation,
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
current_password,
|
|
33
|
+
new_password,
|
|
34
|
+
new_password_confirmation,
|
|
35
35
|
phone,
|
|
36
36
|
address,
|
|
37
37
|
note,
|
|
@@ -49,4 +49,4 @@ const enFields = {
|
|
|
49
49
|
fieldLabel,
|
|
50
50
|
};
|
|
51
51
|
|
|
52
|
-
export { address, beneficiary_email, beneficiary_name, beneficiary_phone,
|
|
52
|
+
export { address, beneficiary_email, beneficiary_name, beneficiary_phone, current_password, customer_address, customer_email, customer_name, customer_phone, enFields as default, email, fieldLabel, is_default, label, lastname, message, municipality, name, new_password, new_password_confirmation, note, password, password_confirmation, phone, province };
|
|
@@ -4,9 +4,9 @@ const lastname = "Apellidos";
|
|
|
4
4
|
const email = "Correo Electrónico";
|
|
5
5
|
const password = "Contraseña";
|
|
6
6
|
const password_confirmation = "Confirmar Contraseña";
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
7
|
+
const current_password = "Contraseña Actual";
|
|
8
|
+
const new_password = "Nueva Contraseña";
|
|
9
|
+
const new_password_confirmation = "Reescribir Nueva Contraseña";
|
|
10
10
|
const phone = "Teléfono";
|
|
11
11
|
const address = "Dirección";
|
|
12
12
|
const note = "Nota";
|
|
@@ -29,9 +29,9 @@ const esFields = {
|
|
|
29
29
|
email,
|
|
30
30
|
password,
|
|
31
31
|
password_confirmation,
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
current_password,
|
|
33
|
+
new_password,
|
|
34
|
+
new_password_confirmation,
|
|
35
35
|
phone,
|
|
36
36
|
address,
|
|
37
37
|
note,
|
|
@@ -49,4 +49,4 @@ const esFields = {
|
|
|
49
49
|
fieldLabel,
|
|
50
50
|
};
|
|
51
51
|
|
|
52
|
-
export { address, beneficiary_email, beneficiary_name, beneficiary_phone,
|
|
52
|
+
export { address, beneficiary_email, beneficiary_name, beneficiary_phone, current_password, customer_address, customer_email, customer_name, customer_phone, esFields as default, email, fieldLabel, is_default, label, lastname, message, municipality, name, new_password, new_password_confirmation, note, password, password_confirmation, phone, province };
|