@dotrino/vaultd 0.26.0 → 0.26.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 +2 -2
- package/src/tui/i18n.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotrino/vaultd",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Certificador personal de Dotrino: daemon headless que custodia la clave maestra y delega capacidades a tus dispositivos por el proxy. Tu CA propia.",
|
|
6
6
|
"bin": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"node": ">=20"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@dotrino/identity": "^0.
|
|
22
|
+
"@dotrino/identity": "^0.49.0",
|
|
23
23
|
"@dotrino/proxy-client": "^0.10.0",
|
|
24
24
|
"ws": "^8.18.0"
|
|
25
25
|
},
|
package/src/tui/i18n.js
CHANGED
|
@@ -138,7 +138,7 @@ const es = {
|
|
|
138
138
|
noPendingToReject: 'No hay ningún dispositivo pendiente para rechazar',
|
|
139
139
|
rejecting: 'Rechazando…',
|
|
140
140
|
deviceRejected: 'Dispositivo rechazado',
|
|
141
|
-
revokeConfirm: (id) => `¿Quitar ${id} del perfil? Sale del acta
|
|
141
|
+
revokeConfirm: (id) => `¿Quitar ${id} del perfil? Sale del acta y se le retiran los certificados ya. Lo que tenga guardado se le borra cuando se conecte: si está apagado, sigue ahí hasta entonces.`,
|
|
142
142
|
revoking: 'Revocando…',
|
|
143
143
|
deviceRevoked: (id) => `Revocado ${id}`,
|
|
144
144
|
approveLabel: (id) => `Código que MUESTRA el dispositivo ${id}`,
|
|
@@ -364,7 +364,7 @@ const en = {
|
|
|
364
364
|
noPendingToReject: 'No device is waiting to be rejected',
|
|
365
365
|
rejecting: 'Rejecting…',
|
|
366
366
|
deviceRejected: 'Device rejected',
|
|
367
|
-
revokeConfirm: (id) => `Remove ${id} from the profile? It leaves the record
|
|
367
|
+
revokeConfirm: (id) => `Remove ${id} from the profile? It leaves the record and its certificates are withdrawn right away. What it has stored is erased when it connects: if it is switched off, it stays there until then.`,
|
|
368
368
|
revoking: 'Revoking…',
|
|
369
369
|
deviceRevoked: (id) => `Revoked ${id}`,
|
|
370
370
|
approveLabel: (id) => `Code SHOWN by device ${id}`,
|