@drax/identity-front 0.39.0 → 0.42.2
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/package.json +5 -5
- package/src/i18n/identity-audit-i18n.ts +37 -0
- package/src/i18n/index.ts +3 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.42.2",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./src/index.ts",
|
|
9
9
|
"module": "./src/index.ts",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"format": "prettier --write src/"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@drax/common-front": "^0.
|
|
29
|
-
"@drax/crud-share": "^0.
|
|
30
|
-
"@drax/identity-share": "^0.
|
|
28
|
+
"@drax/common-front": "^0.42.2",
|
|
29
|
+
"@drax/crud-share": "^0.42.2",
|
|
30
|
+
"@drax/identity-share": "^0.42.2"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@rushstack/eslint-patch": "^1.8.0",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"vite-plugin-dts": "^3.9.1",
|
|
50
50
|
"vitest": "^1.4.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "6b4f9f50a8e3f0fbdaff7ec913356834a4e2c0b5"
|
|
53
53
|
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
const messages = {
|
|
2
|
+
en: {
|
|
3
|
+
|
|
4
|
+
audit: {
|
|
5
|
+
action:{
|
|
6
|
+
loggedIn: 'Logged In',
|
|
7
|
+
loggedOut: 'Logged Out',
|
|
8
|
+
switchTenant: 'Switch Tenant',
|
|
9
|
+
changePassword: 'Change password',
|
|
10
|
+
changeMyPassword: 'Change my password',
|
|
11
|
+
register: 'Register',
|
|
12
|
+
changeAvatar: 'Change Avatar',
|
|
13
|
+
passwordRecoveryRequest: 'Password Recovery Request',
|
|
14
|
+
passwordRecoveryCompleted: 'Recuperación de contraseña completada',
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
|
|
18
|
+
},
|
|
19
|
+
es: {
|
|
20
|
+
audit: {
|
|
21
|
+
action:{
|
|
22
|
+
loggedIn: 'Iniciado Sesión',
|
|
23
|
+
loggedOut: 'Cerrado Sesión',
|
|
24
|
+
switchTenant: 'Cambiar Tenant',
|
|
25
|
+
changePassword: 'Cambiar contraseña',
|
|
26
|
+
changeMyPassword: 'Cambiar mi contraseña',
|
|
27
|
+
register: 'Registro',
|
|
28
|
+
changeAvatar: 'Cambiar Avatar',
|
|
29
|
+
passwordRecoveryRequest: 'Solicitar recuperación de contraseña',
|
|
30
|
+
passwordRecoveryCompleted: 'Recuperación de contraseña completada',
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export default messages;
|
package/src/i18n/index.ts
CHANGED
|
@@ -6,6 +6,7 @@ import identityUserI18n from "./identity-user-i18n.js";
|
|
|
6
6
|
import identityUserApiKyI18n from "./identity-userApiKey-i18n.js";
|
|
7
7
|
import identityRoleI18n from "./identity-role-i18n.js";
|
|
8
8
|
import identityTenantI18n from "./identity-tenant-i18n.js";
|
|
9
|
+
import identityAuditI18n from "./identity-audit-i18n.js";
|
|
9
10
|
|
|
10
11
|
const IdentityI18nMessages = merge.all([
|
|
11
12
|
identityAuthI18n,
|
|
@@ -14,7 +15,8 @@ const IdentityI18nMessages = merge.all([
|
|
|
14
15
|
identityRoleI18n,
|
|
15
16
|
identityTenantI18n,
|
|
16
17
|
identityPermissionI18n,
|
|
17
|
-
identityUserApiKyI18n
|
|
18
|
+
identityUserApiKyI18n,
|
|
19
|
+
identityAuditI18n
|
|
18
20
|
])
|
|
19
21
|
|
|
20
22
|
export default IdentityI18nMessages
|