@oxyhq/core 12.10.0 → 12.10.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/dist/cjs/.tsbuildinfo +1 -1
- package/dist/cjs/HttpService.js +22 -12
- package/dist/cjs/i18n/locales/ar-SA.json +4 -0
- package/dist/cjs/i18n/locales/ca-ES.json +4 -0
- package/dist/cjs/i18n/locales/de-DE.json +4 -0
- package/dist/cjs/i18n/locales/en-US.json +69 -3
- package/dist/cjs/i18n/locales/es-ES.json +68 -2
- package/dist/cjs/i18n/locales/fr-FR.json +4 -0
- package/dist/cjs/i18n/locales/it-IT.json +4 -0
- package/dist/cjs/i18n/locales/ja-JP.json +4 -0
- package/dist/cjs/i18n/locales/ko-KR.json +4 -0
- package/dist/cjs/i18n/locales/locales/ar-SA.json +4 -0
- package/dist/cjs/i18n/locales/locales/ca-ES.json +4 -0
- package/dist/cjs/i18n/locales/locales/de-DE.json +4 -0
- package/dist/cjs/i18n/locales/locales/en-US.json +69 -3
- package/dist/cjs/i18n/locales/locales/es-ES.json +68 -2
- package/dist/cjs/i18n/locales/locales/fr-FR.json +4 -0
- package/dist/cjs/i18n/locales/locales/it-IT.json +4 -0
- package/dist/cjs/i18n/locales/locales/ja-JP.json +4 -0
- package/dist/cjs/i18n/locales/locales/ko-KR.json +4 -0
- package/dist/cjs/i18n/locales/locales/pt-PT.json +4 -0
- package/dist/cjs/i18n/locales/locales/zh-CN.json +4 -0
- package/dist/cjs/i18n/locales/pt-PT.json +4 -0
- package/dist/cjs/i18n/locales/zh-CN.json +4 -0
- package/dist/cjs/mixins/OxyServices.auth.js +47 -19
- package/dist/cjs/mixins/OxyServices.connectedApps.js +6 -1
- package/dist/cjs/mixins/OxyServices.deviceBoot.js +9 -2
- package/dist/cjs/mixins/OxyServices.user.js +2 -0
- package/dist/cjs/session/accountDialogController.js +7 -5
- package/dist/esm/.tsbuildinfo +1 -1
- package/dist/esm/HttpService.js +22 -12
- package/dist/esm/i18n/locales/ar-SA.json +4 -0
- package/dist/esm/i18n/locales/ca-ES.json +4 -0
- package/dist/esm/i18n/locales/de-DE.json +4 -0
- package/dist/esm/i18n/locales/en-US.json +69 -3
- package/dist/esm/i18n/locales/es-ES.json +68 -2
- package/dist/esm/i18n/locales/fr-FR.json +4 -0
- package/dist/esm/i18n/locales/it-IT.json +4 -0
- package/dist/esm/i18n/locales/ja-JP.json +4 -0
- package/dist/esm/i18n/locales/ko-KR.json +4 -0
- package/dist/esm/i18n/locales/locales/ar-SA.json +4 -0
- package/dist/esm/i18n/locales/locales/ca-ES.json +4 -0
- package/dist/esm/i18n/locales/locales/de-DE.json +4 -0
- package/dist/esm/i18n/locales/locales/en-US.json +69 -3
- package/dist/esm/i18n/locales/locales/es-ES.json +68 -2
- package/dist/esm/i18n/locales/locales/fr-FR.json +4 -0
- package/dist/esm/i18n/locales/locales/it-IT.json +4 -0
- package/dist/esm/i18n/locales/locales/ja-JP.json +4 -0
- package/dist/esm/i18n/locales/locales/ko-KR.json +4 -0
- package/dist/esm/i18n/locales/locales/pt-PT.json +4 -0
- package/dist/esm/i18n/locales/locales/zh-CN.json +4 -0
- package/dist/esm/i18n/locales/pt-PT.json +4 -0
- package/dist/esm/i18n/locales/zh-CN.json +4 -0
- package/dist/esm/mixins/OxyServices.auth.js +47 -19
- package/dist/esm/mixins/OxyServices.connectedApps.js +6 -1
- package/dist/esm/mixins/OxyServices.deviceBoot.js +9 -2
- package/dist/esm/mixins/OxyServices.user.js +2 -0
- package/dist/esm/session/accountDialogController.js +7 -5
- package/dist/types/.tsbuildinfo +1 -1
- package/dist/types/HttpService.d.ts +14 -0
- package/dist/types/session/accountDialogController.d.ts +7 -2
- package/package.json +1 -1
- package/src/HttpService.ts +37 -14
- package/src/__tests__/httpServiceAuthSelfAwait.test.ts +108 -0
- package/src/__tests__/httpServiceQueueDeadlock.test.ts +128 -0
- package/src/i18n/locales/ar-SA.json +4 -0
- package/src/i18n/locales/ca-ES.json +4 -0
- package/src/i18n/locales/de-DE.json +4 -0
- package/src/i18n/locales/en-US.json +69 -3
- package/src/i18n/locales/es-ES.json +68 -2
- package/src/i18n/locales/fr-FR.json +4 -0
- package/src/i18n/locales/it-IT.json +4 -0
- package/src/i18n/locales/ja-JP.json +4 -0
- package/src/i18n/locales/ko-KR.json +4 -0
- package/src/i18n/locales/pt-PT.json +4 -0
- package/src/i18n/locales/zh-CN.json +4 -0
- package/src/mixins/OxyServices.auth.ts +39 -19
- package/src/mixins/OxyServices.connectedApps.ts +6 -1
- package/src/mixins/OxyServices.deviceBoot.ts +7 -2
- package/src/mixins/OxyServices.user.ts +2 -0
- package/src/mixins/__tests__/OxyServices.deviceBoot.test.ts +4 -2
- package/src/mixins/__tests__/commonsSignIn.test.ts +4 -4
- package/src/mixins/__tests__/preSessionSkipAuth.test.ts +152 -0
- package/src/mixins/__tests__/webauthnAuth.test.ts +6 -6
- package/src/session/__tests__/accountDialogController.test.ts +3 -3
- package/src/session/accountDialogController.ts +7 -6
package/dist/esm/HttpService.js
CHANGED
|
@@ -268,22 +268,28 @@ export class HttpService {
|
|
|
268
268
|
}
|
|
269
269
|
this.requestMetrics.cacheMisses++;
|
|
270
270
|
}
|
|
271
|
+
// Resolve the auth preflight OUTSIDE the queue slot. A slot represents
|
|
272
|
+
// NETWORK OCCUPANCY only. `getAuthHeader` may await the single-flight token
|
|
273
|
+
// refresh/mint — itself a request — so if a slot-holding request awaited it
|
|
274
|
+
// here and every slot were held by requests all waiting on that same mint,
|
|
275
|
+
// the mint could never acquire a slot to run (systemic deadlock). Resolving
|
|
276
|
+
// it before enqueue means auth-blocked requests hold NO slot while the shared
|
|
277
|
+
// mint runs. `skipAuth` requests (the body-authenticated mint) send NO bearer
|
|
278
|
+
// and skip the near-expiry preflight — see RequestOptions.skipAuth. The
|
|
279
|
+
// 401/CSRF retry re-enters request() with a fresh config, so it re-resolves
|
|
280
|
+
// these here with the refreshed token / cleared CSRF.
|
|
281
|
+
const isStateChangingMethod = ['POST', 'PUT', 'PATCH', 'DELETE'].includes(method);
|
|
282
|
+
const authHeader = config.skipAuth ? null : await this.getAuthHeader();
|
|
283
|
+
// CSRF protects cookie-authenticated browser writes. Bearer-authenticated SDK
|
|
284
|
+
// clients are not vulnerable to ambient-cookie CSRF, and linked app APIs
|
|
285
|
+
// should not need to implement a duplicate `/csrf-token` route.
|
|
286
|
+
const csrfToken = isStateChangingMethod && !authHeader ? await this.fetchCsrfToken() : null;
|
|
271
287
|
// Request function
|
|
272
288
|
const requestFn = async () => {
|
|
273
289
|
const startTime = Date.now();
|
|
274
290
|
try {
|
|
275
291
|
// Build URL with params
|
|
276
292
|
const fullUrl = this.buildURL(url, params);
|
|
277
|
-
// Get auth token (with auto-refresh). `skipAuth` requests (the
|
|
278
|
-
// body-authenticated refresh endpoint) send NO bearer and skip the
|
|
279
|
-
// near-expiry preflight — see RequestOptions.skipAuth for the deadlock
|
|
280
|
-
// this avoids.
|
|
281
|
-
const authHeader = config.skipAuth ? null : await this.getAuthHeader();
|
|
282
|
-
// CSRF protects cookie-authenticated browser writes. Bearer-authenticated
|
|
283
|
-
// SDK clients are not vulnerable to ambient-cookie CSRF, and linked app
|
|
284
|
-
// APIs should not need to implement a duplicate `/csrf-token` route.
|
|
285
|
-
const isStateChangingMethod = ['POST', 'PUT', 'PATCH', 'DELETE'].includes(method);
|
|
286
|
-
const csrfToken = isStateChangingMethod && !authHeader ? await this.fetchCsrfToken() : null;
|
|
287
293
|
// Determine if data is FormData using robust detection
|
|
288
294
|
const isFormData = this.isFormData(data);
|
|
289
295
|
// Make fetch request
|
|
@@ -490,8 +496,12 @@ export class HttpService {
|
|
|
490
496
|
const finalRequest = dedupeKey
|
|
491
497
|
? () => this.deduplicator.deduplicate(dedupeKey, requestWithRetry)
|
|
492
498
|
: requestWithRetry;
|
|
493
|
-
// Execute request
|
|
494
|
-
|
|
499
|
+
// Execute the request. Control-plane calls the auth lane depends on
|
|
500
|
+
// (`bypassQueue`, e.g. the device-secret mint) run DIRECTLY — a queued mint
|
|
501
|
+
// could never acquire a slot when every slot is parked awaiting it.
|
|
502
|
+
const result = config.bypassQueue
|
|
503
|
+
? await finalRequest()
|
|
504
|
+
: await this.requestQueue.enqueue(finalRequest);
|
|
495
505
|
// Cache the result if caching is enabled
|
|
496
506
|
if (cache && cacheKey && result) {
|
|
497
507
|
this.cache.set(cacheKey, result, cacheTTL);
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "حساباتك"
|
|
117
|
+
},
|
|
118
|
+
"loading": "جارٍ تحميل الحسابات...",
|
|
115
119
|
"qrHeadline": "سجّل الدخول بهوية Oxy الخاصة بك",
|
|
116
120
|
"signInWithOxy": "تسجيل الدخول باستخدام Oxy",
|
|
117
121
|
"useIdentityOnDevice": "لا تملك Commons؟ استخدم مفتاح مرور على هذا الجهاز بدلاً من ذلك",
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "Els teus comptes"
|
|
117
|
+
},
|
|
118
|
+
"loading": "S'estan carregant els comptes...",
|
|
115
119
|
"qrHeadline": "Inicia sessió amb la teva identitat d'Oxy",
|
|
116
120
|
"signInWithOxy": "Inicia sessió amb Oxy",
|
|
117
121
|
"useIdentityOnDevice": "No tens Commons? Fes servir una clau d'accés en aquest dispositiu",
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "Ihre Konten"
|
|
117
|
+
},
|
|
118
|
+
"loading": "Konten werden geladen...",
|
|
115
119
|
"qrHeadline": "Melden Sie sich mit Ihrer Oxy-Identität an",
|
|
116
120
|
"signInWithOxy": "Mit Oxy anmelden",
|
|
117
121
|
"useIdentityOnDevice": "Kein Commons? Verwenden Sie stattdessen einen Passkey auf diesem Gerät",
|
|
@@ -421,7 +421,8 @@
|
|
|
421
421
|
"getCommons": "Get Commons",
|
|
422
422
|
"commonsNotInstalled": "Don't have Commons? Get the app to sign in with your Oxy ID.",
|
|
423
423
|
"showQrAnyway": "I have Commons on another device",
|
|
424
|
-
"switchWhileSignedInAs": "Switch account, signed in as {{name}}"
|
|
424
|
+
"switchWhileSignedInAs": "Switch account, signed in as {{name}}",
|
|
425
|
+
"manageOnDevice": "Manage accounts on this device"
|
|
425
426
|
},
|
|
426
427
|
"reputation": {
|
|
427
428
|
"faq": {
|
|
@@ -754,6 +755,8 @@
|
|
|
754
755
|
"saving": "Saving…",
|
|
755
756
|
"helper": "The cropped circle is what will appear on your profile. Pinch to zoom, drag to position.",
|
|
756
757
|
"zoom": "{{value}}×",
|
|
758
|
+
"zoomIn": "Zoom in",
|
|
759
|
+
"zoomOut": "Zoom out",
|
|
757
760
|
"a11yImage": "Crop preview. Pinch to zoom and drag to reposition the image.",
|
|
758
761
|
"a11yReset": "Reset crop to default position",
|
|
759
762
|
"a11yResetAnnouncement": "Crop reset"
|
|
@@ -774,6 +777,47 @@
|
|
|
774
777
|
},
|
|
775
778
|
"changeAvatar": "Change avatar"
|
|
776
779
|
},
|
|
780
|
+
"changeAvatar": {
|
|
781
|
+
"title": "Change profile picture",
|
|
782
|
+
"sources": {
|
|
783
|
+
"upload": {
|
|
784
|
+
"title": "Upload from device",
|
|
785
|
+
"description": "Choose a photo from your gallery"
|
|
786
|
+
},
|
|
787
|
+
"camera": {
|
|
788
|
+
"title": "Take a picture",
|
|
789
|
+
"description": "Use your camera"
|
|
790
|
+
},
|
|
791
|
+
"files": {
|
|
792
|
+
"title": "My Oxy files",
|
|
793
|
+
"description": "Pick an image you already uploaded"
|
|
794
|
+
},
|
|
795
|
+
"remove": {
|
|
796
|
+
"title": "Remove current photo",
|
|
797
|
+
"description": "Go back to your initials"
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
"remove": {
|
|
801
|
+
"confirmTitle": "Remove profile picture?",
|
|
802
|
+
"confirmMessage": "Your profile will show your initials instead. You can add a new photo at any time.",
|
|
803
|
+
"confirmLabel": "Remove"
|
|
804
|
+
},
|
|
805
|
+
"permission": {
|
|
806
|
+
"libraryDenied": "Oxy needs access to your photos to upload a picture.",
|
|
807
|
+
"cameraDenied": "Oxy needs access to your camera to take a picture.",
|
|
808
|
+
"openSettings": "Open settings"
|
|
809
|
+
},
|
|
810
|
+
"errors": {
|
|
811
|
+
"pickerUnavailable": "Photo picking is not available on this device.",
|
|
812
|
+
"cameraUnavailable": "The camera is not available on this device.",
|
|
813
|
+
"pickFailed": "Could not open the photo picker.",
|
|
814
|
+
"cameraFailed": "Could not open the camera.",
|
|
815
|
+
"loadImageFailed": "Could not load the selected image."
|
|
816
|
+
},
|
|
817
|
+
"a11y": {
|
|
818
|
+
"currentPhoto": "Your current profile picture"
|
|
819
|
+
}
|
|
820
|
+
},
|
|
777
821
|
"accountOverview": {
|
|
778
822
|
"title": "Account",
|
|
779
823
|
"sections": {
|
|
@@ -1442,6 +1486,11 @@
|
|
|
1442
1486
|
"uploadPhotos": "Upload Photos",
|
|
1443
1487
|
"uploadFiles": "Upload Files",
|
|
1444
1488
|
"clearSearch": "Clear Search",
|
|
1489
|
+
"retry": "Try again",
|
|
1490
|
+
"loadError": {
|
|
1491
|
+
"title": "Couldn't load your files",
|
|
1492
|
+
"description": "Something went wrong. Check your connection and try again."
|
|
1493
|
+
},
|
|
1445
1494
|
"choosePhoto": "Choose Photo",
|
|
1446
1495
|
"done": "Done",
|
|
1447
1496
|
"doneWithCount": "Done ({{count}})",
|
|
@@ -1614,7 +1663,9 @@
|
|
|
1614
1663
|
},
|
|
1615
1664
|
"accountMenu": {
|
|
1616
1665
|
"label": "Account menu",
|
|
1617
|
-
"manage": "Manage your Oxy
|
|
1666
|
+
"manage": "Manage your Oxy account",
|
|
1667
|
+
"greeting": "Hi, {{name}}!",
|
|
1668
|
+
"switchAccount": "Switch account",
|
|
1618
1669
|
"viewProfile": "View profile",
|
|
1619
1670
|
"addAnother": "Add another account",
|
|
1620
1671
|
"signOutAll": "Sign out of all accounts",
|
|
@@ -1622,7 +1673,22 @@
|
|
|
1622
1673
|
"openHint": "Opens the account menu",
|
|
1623
1674
|
"openWithUser": "Account menu for {{name}}",
|
|
1624
1675
|
"switching": "Switching account…",
|
|
1625
|
-
"signOutAccount": "Sign out {{name}}"
|
|
1676
|
+
"signOutAccount": "Sign out {{name}}",
|
|
1677
|
+
"storage": {
|
|
1678
|
+
"title": "Oxy storage",
|
|
1679
|
+
"usage": "{{used}} of {{total}} used",
|
|
1680
|
+
"used": "Used",
|
|
1681
|
+
"free": "Free",
|
|
1682
|
+
"unavailable": "Usage details unavailable",
|
|
1683
|
+
"upgrade": "Upgrade plan",
|
|
1684
|
+
"manage": "Manage storage"
|
|
1685
|
+
},
|
|
1686
|
+
"data": "Your data in Oxy",
|
|
1687
|
+
"settings": "Oxy settings",
|
|
1688
|
+
"help": "Help & feedback",
|
|
1689
|
+
"signOut": "Sign out",
|
|
1690
|
+
"privacy": "Privacy Policy",
|
|
1691
|
+
"terms": "Terms of Service"
|
|
1626
1692
|
},
|
|
1627
1693
|
"accounts": {
|
|
1628
1694
|
"activeAccount": {
|
|
@@ -290,6 +290,8 @@
|
|
|
290
290
|
"saving": "Guardando…",
|
|
291
291
|
"helper": "El círculo recortado es lo que aparecerá en tu perfil. Pellizca para acercar, arrastra para colocar.",
|
|
292
292
|
"zoom": "{{value}}×",
|
|
293
|
+
"zoomIn": "Acercar",
|
|
294
|
+
"zoomOut": "Alejar",
|
|
293
295
|
"a11yImage": "Vista previa del recorte. Pellizca para acercar y arrastra para reposicionar la imagen.",
|
|
294
296
|
"a11yReset": "Restablecer el recorte a la posición predeterminada",
|
|
295
297
|
"a11yResetAnnouncement": "Recorte restablecido"
|
|
@@ -310,6 +312,47 @@
|
|
|
310
312
|
},
|
|
311
313
|
"changeAvatar": "Cambiar avatar"
|
|
312
314
|
},
|
|
315
|
+
"changeAvatar": {
|
|
316
|
+
"title": "Cambiar foto de perfil",
|
|
317
|
+
"sources": {
|
|
318
|
+
"upload": {
|
|
319
|
+
"title": "Subir desde el dispositivo",
|
|
320
|
+
"description": "Elige una foto de tu galería"
|
|
321
|
+
},
|
|
322
|
+
"camera": {
|
|
323
|
+
"title": "Hacer una foto",
|
|
324
|
+
"description": "Usa tu cámara"
|
|
325
|
+
},
|
|
326
|
+
"files": {
|
|
327
|
+
"title": "Mis archivos de Oxy",
|
|
328
|
+
"description": "Elige una imagen que ya has subido"
|
|
329
|
+
},
|
|
330
|
+
"remove": {
|
|
331
|
+
"title": "Eliminar la foto actual",
|
|
332
|
+
"description": "Vuelve a tus iniciales"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"remove": {
|
|
336
|
+
"confirmTitle": "¿Eliminar la foto de perfil?",
|
|
337
|
+
"confirmMessage": "Tu perfil mostrará tus iniciales. Puedes añadir una foto nueva cuando quieras.",
|
|
338
|
+
"confirmLabel": "Eliminar"
|
|
339
|
+
},
|
|
340
|
+
"permission": {
|
|
341
|
+
"libraryDenied": "Oxy necesita acceso a tus fotos para subir una imagen.",
|
|
342
|
+
"cameraDenied": "Oxy necesita acceso a tu cámara para hacer una foto.",
|
|
343
|
+
"openSettings": "Abrir ajustes"
|
|
344
|
+
},
|
|
345
|
+
"errors": {
|
|
346
|
+
"pickerUnavailable": "La selección de fotos no está disponible en este dispositivo.",
|
|
347
|
+
"cameraUnavailable": "La cámara no está disponible en este dispositivo.",
|
|
348
|
+
"pickFailed": "No se pudo abrir el selector de fotos.",
|
|
349
|
+
"cameraFailed": "No se pudo abrir la cámara.",
|
|
350
|
+
"loadImageFailed": "No se pudo cargar la imagen seleccionada."
|
|
351
|
+
},
|
|
352
|
+
"a11y": {
|
|
353
|
+
"currentPhoto": "Tu foto de perfil actual"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
313
356
|
"common": {
|
|
314
357
|
"actions": {
|
|
315
358
|
"back": "Atrás",
|
|
@@ -619,7 +662,8 @@
|
|
|
619
662
|
"getCommons": "Descargar Commons",
|
|
620
663
|
"commonsNotInstalled": "¿No tienes Commons? Descarga la app para iniciar sesión con tu Oxy ID.",
|
|
621
664
|
"showQrAnyway": "Tengo Commons en otro dispositivo",
|
|
622
|
-
"switchWhileSignedInAs": "Cambiar de cuenta, con la sesión iniciada como {{name}}"
|
|
665
|
+
"switchWhileSignedInAs": "Cambiar de cuenta, con la sesión iniciada como {{name}}",
|
|
666
|
+
"manageOnDevice": "Gestionar cuentas en este dispositivo"
|
|
623
667
|
},
|
|
624
668
|
"feedback": {
|
|
625
669
|
"type": {
|
|
@@ -1442,6 +1486,11 @@
|
|
|
1442
1486
|
"uploadPhotos": "Subir fotos",
|
|
1443
1487
|
"uploadFiles": "Subir archivos",
|
|
1444
1488
|
"clearSearch": "Limpiar búsqueda",
|
|
1489
|
+
"retry": "Reintentar",
|
|
1490
|
+
"loadError": {
|
|
1491
|
+
"title": "No se pudieron cargar tus archivos",
|
|
1492
|
+
"description": "Algo salió mal. Comprueba tu conexión e inténtalo de nuevo."
|
|
1493
|
+
},
|
|
1445
1494
|
"choosePhoto": "Elegir foto",
|
|
1446
1495
|
"done": "Listo",
|
|
1447
1496
|
"doneWithCount": "Listo ({{count}})",
|
|
@@ -1615,6 +1664,8 @@
|
|
|
1615
1664
|
"accountMenu": {
|
|
1616
1665
|
"label": "Menú de cuenta",
|
|
1617
1666
|
"manage": "Gestiona tu cuenta de Oxy",
|
|
1667
|
+
"greeting": "¡Hola, {{name}}!",
|
|
1668
|
+
"switchAccount": "Cambiar de cuenta",
|
|
1618
1669
|
"viewProfile": "Ver perfil",
|
|
1619
1670
|
"addAnother": "Añadir otra cuenta",
|
|
1620
1671
|
"signOutAll": "Cerrar sesión en todas las cuentas",
|
|
@@ -1622,7 +1673,22 @@
|
|
|
1622
1673
|
"openHint": "Abre el menú de cuenta",
|
|
1623
1674
|
"openWithUser": "Menú de cuenta de {{name}}",
|
|
1624
1675
|
"switching": "Cambiando de cuenta…",
|
|
1625
|
-
"signOutAccount": "Cerrar sesión de {{name}}"
|
|
1676
|
+
"signOutAccount": "Cerrar sesión de {{name}}",
|
|
1677
|
+
"storage": {
|
|
1678
|
+
"title": "Almacenamiento de Oxy",
|
|
1679
|
+
"usage": "{{used}} de {{total}} en uso",
|
|
1680
|
+
"used": "Usado",
|
|
1681
|
+
"free": "Libre",
|
|
1682
|
+
"unavailable": "Detalles de uso no disponibles",
|
|
1683
|
+
"upgrade": "Mejorar plan",
|
|
1684
|
+
"manage": "Gestionar almacenamiento"
|
|
1685
|
+
},
|
|
1686
|
+
"data": "Tus datos en Oxy",
|
|
1687
|
+
"settings": "Ajustes de Oxy",
|
|
1688
|
+
"help": "Ayuda y comentarios",
|
|
1689
|
+
"signOut": "Cerrar sesión",
|
|
1690
|
+
"privacy": "Política de privacidad",
|
|
1691
|
+
"terms": "Términos del servicio"
|
|
1626
1692
|
},
|
|
1627
1693
|
"accounts": {
|
|
1628
1694
|
"activeAccount": {
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "Vos comptes"
|
|
117
|
+
},
|
|
118
|
+
"loading": "Chargement des comptes...",
|
|
115
119
|
"qrHeadline": "Connectez-vous avec votre identité Oxy",
|
|
116
120
|
"signInWithOxy": "Se connecter avec Oxy",
|
|
117
121
|
"useIdentityOnDevice": "Pas de Commons ? Utilisez une clé d'accès sur cet appareil",
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "I tuoi account"
|
|
117
|
+
},
|
|
118
|
+
"loading": "Caricamento account...",
|
|
115
119
|
"qrHeadline": "Accedi con la tua identità Oxy",
|
|
116
120
|
"signInWithOxy": "Accedi con Oxy",
|
|
117
121
|
"useIdentityOnDevice": "Non hai Commons? Usa una passkey su questo dispositivo",
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "あなたのアカウント"
|
|
117
|
+
},
|
|
118
|
+
"loading": "アカウントを読み込み中...",
|
|
115
119
|
"qrHeadline": "Oxy IDでサインイン",
|
|
116
120
|
"signInWithOxy": "Oxyでサインイン",
|
|
117
121
|
"useIdentityOnDevice": "Commonsがありませんか?このデバイスのパスキーを使用",
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "내 계정"
|
|
117
|
+
},
|
|
118
|
+
"loading": "계정을 불러오는 중...",
|
|
115
119
|
"qrHeadline": "Oxy ID로 로그인",
|
|
116
120
|
"signInWithOxy": "Oxy로 로그인",
|
|
117
121
|
"useIdentityOnDevice": "Commons가 없으신가요? 이 기기의 패스키를 사용하세요",
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "حساباتك"
|
|
117
|
+
},
|
|
118
|
+
"loading": "جارٍ تحميل الحسابات...",
|
|
115
119
|
"qrHeadline": "سجّل الدخول بهوية Oxy الخاصة بك",
|
|
116
120
|
"signInWithOxy": "تسجيل الدخول باستخدام Oxy",
|
|
117
121
|
"useIdentityOnDevice": "لا تملك Commons؟ استخدم مفتاح مرور على هذا الجهاز بدلاً من ذلك",
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "Els teus comptes"
|
|
117
|
+
},
|
|
118
|
+
"loading": "S'estan carregant els comptes...",
|
|
115
119
|
"qrHeadline": "Inicia sessió amb la teva identitat d'Oxy",
|
|
116
120
|
"signInWithOxy": "Inicia sessió amb Oxy",
|
|
117
121
|
"useIdentityOnDevice": "No tens Commons? Fes servir una clau d'accés en aquest dispositiu",
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "Ihre Konten"
|
|
117
|
+
},
|
|
118
|
+
"loading": "Konten werden geladen...",
|
|
115
119
|
"qrHeadline": "Melden Sie sich mit Ihrer Oxy-Identität an",
|
|
116
120
|
"signInWithOxy": "Mit Oxy anmelden",
|
|
117
121
|
"useIdentityOnDevice": "Kein Commons? Verwenden Sie stattdessen einen Passkey auf diesem Gerät",
|
|
@@ -421,7 +421,8 @@
|
|
|
421
421
|
"getCommons": "Get Commons",
|
|
422
422
|
"commonsNotInstalled": "Don't have Commons? Get the app to sign in with your Oxy ID.",
|
|
423
423
|
"showQrAnyway": "I have Commons on another device",
|
|
424
|
-
"switchWhileSignedInAs": "Switch account, signed in as {{name}}"
|
|
424
|
+
"switchWhileSignedInAs": "Switch account, signed in as {{name}}",
|
|
425
|
+
"manageOnDevice": "Manage accounts on this device"
|
|
425
426
|
},
|
|
426
427
|
"reputation": {
|
|
427
428
|
"faq": {
|
|
@@ -754,6 +755,8 @@
|
|
|
754
755
|
"saving": "Saving…",
|
|
755
756
|
"helper": "The cropped circle is what will appear on your profile. Pinch to zoom, drag to position.",
|
|
756
757
|
"zoom": "{{value}}×",
|
|
758
|
+
"zoomIn": "Zoom in",
|
|
759
|
+
"zoomOut": "Zoom out",
|
|
757
760
|
"a11yImage": "Crop preview. Pinch to zoom and drag to reposition the image.",
|
|
758
761
|
"a11yReset": "Reset crop to default position",
|
|
759
762
|
"a11yResetAnnouncement": "Crop reset"
|
|
@@ -774,6 +777,47 @@
|
|
|
774
777
|
},
|
|
775
778
|
"changeAvatar": "Change avatar"
|
|
776
779
|
},
|
|
780
|
+
"changeAvatar": {
|
|
781
|
+
"title": "Change profile picture",
|
|
782
|
+
"sources": {
|
|
783
|
+
"upload": {
|
|
784
|
+
"title": "Upload from device",
|
|
785
|
+
"description": "Choose a photo from your gallery"
|
|
786
|
+
},
|
|
787
|
+
"camera": {
|
|
788
|
+
"title": "Take a picture",
|
|
789
|
+
"description": "Use your camera"
|
|
790
|
+
},
|
|
791
|
+
"files": {
|
|
792
|
+
"title": "My Oxy files",
|
|
793
|
+
"description": "Pick an image you already uploaded"
|
|
794
|
+
},
|
|
795
|
+
"remove": {
|
|
796
|
+
"title": "Remove current photo",
|
|
797
|
+
"description": "Go back to your initials"
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
"remove": {
|
|
801
|
+
"confirmTitle": "Remove profile picture?",
|
|
802
|
+
"confirmMessage": "Your profile will show your initials instead. You can add a new photo at any time.",
|
|
803
|
+
"confirmLabel": "Remove"
|
|
804
|
+
},
|
|
805
|
+
"permission": {
|
|
806
|
+
"libraryDenied": "Oxy needs access to your photos to upload a picture.",
|
|
807
|
+
"cameraDenied": "Oxy needs access to your camera to take a picture.",
|
|
808
|
+
"openSettings": "Open settings"
|
|
809
|
+
},
|
|
810
|
+
"errors": {
|
|
811
|
+
"pickerUnavailable": "Photo picking is not available on this device.",
|
|
812
|
+
"cameraUnavailable": "The camera is not available on this device.",
|
|
813
|
+
"pickFailed": "Could not open the photo picker.",
|
|
814
|
+
"cameraFailed": "Could not open the camera.",
|
|
815
|
+
"loadImageFailed": "Could not load the selected image."
|
|
816
|
+
},
|
|
817
|
+
"a11y": {
|
|
818
|
+
"currentPhoto": "Your current profile picture"
|
|
819
|
+
}
|
|
820
|
+
},
|
|
777
821
|
"accountOverview": {
|
|
778
822
|
"title": "Account",
|
|
779
823
|
"sections": {
|
|
@@ -1442,6 +1486,11 @@
|
|
|
1442
1486
|
"uploadPhotos": "Upload Photos",
|
|
1443
1487
|
"uploadFiles": "Upload Files",
|
|
1444
1488
|
"clearSearch": "Clear Search",
|
|
1489
|
+
"retry": "Try again",
|
|
1490
|
+
"loadError": {
|
|
1491
|
+
"title": "Couldn't load your files",
|
|
1492
|
+
"description": "Something went wrong. Check your connection and try again."
|
|
1493
|
+
},
|
|
1445
1494
|
"choosePhoto": "Choose Photo",
|
|
1446
1495
|
"done": "Done",
|
|
1447
1496
|
"doneWithCount": "Done ({{count}})",
|
|
@@ -1614,7 +1663,9 @@
|
|
|
1614
1663
|
},
|
|
1615
1664
|
"accountMenu": {
|
|
1616
1665
|
"label": "Account menu",
|
|
1617
|
-
"manage": "Manage your Oxy
|
|
1666
|
+
"manage": "Manage your Oxy account",
|
|
1667
|
+
"greeting": "Hi, {{name}}!",
|
|
1668
|
+
"switchAccount": "Switch account",
|
|
1618
1669
|
"viewProfile": "View profile",
|
|
1619
1670
|
"addAnother": "Add another account",
|
|
1620
1671
|
"signOutAll": "Sign out of all accounts",
|
|
@@ -1622,7 +1673,22 @@
|
|
|
1622
1673
|
"openHint": "Opens the account menu",
|
|
1623
1674
|
"openWithUser": "Account menu for {{name}}",
|
|
1624
1675
|
"switching": "Switching account…",
|
|
1625
|
-
"signOutAccount": "Sign out {{name}}"
|
|
1676
|
+
"signOutAccount": "Sign out {{name}}",
|
|
1677
|
+
"storage": {
|
|
1678
|
+
"title": "Oxy storage",
|
|
1679
|
+
"usage": "{{used}} of {{total}} used",
|
|
1680
|
+
"used": "Used",
|
|
1681
|
+
"free": "Free",
|
|
1682
|
+
"unavailable": "Usage details unavailable",
|
|
1683
|
+
"upgrade": "Upgrade plan",
|
|
1684
|
+
"manage": "Manage storage"
|
|
1685
|
+
},
|
|
1686
|
+
"data": "Your data in Oxy",
|
|
1687
|
+
"settings": "Oxy settings",
|
|
1688
|
+
"help": "Help & feedback",
|
|
1689
|
+
"signOut": "Sign out",
|
|
1690
|
+
"privacy": "Privacy Policy",
|
|
1691
|
+
"terms": "Terms of Service"
|
|
1626
1692
|
},
|
|
1627
1693
|
"accounts": {
|
|
1628
1694
|
"activeAccount": {
|
|
@@ -290,6 +290,8 @@
|
|
|
290
290
|
"saving": "Guardando…",
|
|
291
291
|
"helper": "El círculo recortado es lo que aparecerá en tu perfil. Pellizca para acercar, arrastra para colocar.",
|
|
292
292
|
"zoom": "{{value}}×",
|
|
293
|
+
"zoomIn": "Acercar",
|
|
294
|
+
"zoomOut": "Alejar",
|
|
293
295
|
"a11yImage": "Vista previa del recorte. Pellizca para acercar y arrastra para reposicionar la imagen.",
|
|
294
296
|
"a11yReset": "Restablecer el recorte a la posición predeterminada",
|
|
295
297
|
"a11yResetAnnouncement": "Recorte restablecido"
|
|
@@ -310,6 +312,47 @@
|
|
|
310
312
|
},
|
|
311
313
|
"changeAvatar": "Cambiar avatar"
|
|
312
314
|
},
|
|
315
|
+
"changeAvatar": {
|
|
316
|
+
"title": "Cambiar foto de perfil",
|
|
317
|
+
"sources": {
|
|
318
|
+
"upload": {
|
|
319
|
+
"title": "Subir desde el dispositivo",
|
|
320
|
+
"description": "Elige una foto de tu galería"
|
|
321
|
+
},
|
|
322
|
+
"camera": {
|
|
323
|
+
"title": "Hacer una foto",
|
|
324
|
+
"description": "Usa tu cámara"
|
|
325
|
+
},
|
|
326
|
+
"files": {
|
|
327
|
+
"title": "Mis archivos de Oxy",
|
|
328
|
+
"description": "Elige una imagen que ya has subido"
|
|
329
|
+
},
|
|
330
|
+
"remove": {
|
|
331
|
+
"title": "Eliminar la foto actual",
|
|
332
|
+
"description": "Vuelve a tus iniciales"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"remove": {
|
|
336
|
+
"confirmTitle": "¿Eliminar la foto de perfil?",
|
|
337
|
+
"confirmMessage": "Tu perfil mostrará tus iniciales. Puedes añadir una foto nueva cuando quieras.",
|
|
338
|
+
"confirmLabel": "Eliminar"
|
|
339
|
+
},
|
|
340
|
+
"permission": {
|
|
341
|
+
"libraryDenied": "Oxy necesita acceso a tus fotos para subir una imagen.",
|
|
342
|
+
"cameraDenied": "Oxy necesita acceso a tu cámara para hacer una foto.",
|
|
343
|
+
"openSettings": "Abrir ajustes"
|
|
344
|
+
},
|
|
345
|
+
"errors": {
|
|
346
|
+
"pickerUnavailable": "La selección de fotos no está disponible en este dispositivo.",
|
|
347
|
+
"cameraUnavailable": "La cámara no está disponible en este dispositivo.",
|
|
348
|
+
"pickFailed": "No se pudo abrir el selector de fotos.",
|
|
349
|
+
"cameraFailed": "No se pudo abrir la cámara.",
|
|
350
|
+
"loadImageFailed": "No se pudo cargar la imagen seleccionada."
|
|
351
|
+
},
|
|
352
|
+
"a11y": {
|
|
353
|
+
"currentPhoto": "Tu foto de perfil actual"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
313
356
|
"common": {
|
|
314
357
|
"actions": {
|
|
315
358
|
"back": "Atrás",
|
|
@@ -619,7 +662,8 @@
|
|
|
619
662
|
"getCommons": "Descargar Commons",
|
|
620
663
|
"commonsNotInstalled": "¿No tienes Commons? Descarga la app para iniciar sesión con tu Oxy ID.",
|
|
621
664
|
"showQrAnyway": "Tengo Commons en otro dispositivo",
|
|
622
|
-
"switchWhileSignedInAs": "Cambiar de cuenta, con la sesión iniciada como {{name}}"
|
|
665
|
+
"switchWhileSignedInAs": "Cambiar de cuenta, con la sesión iniciada como {{name}}",
|
|
666
|
+
"manageOnDevice": "Gestionar cuentas en este dispositivo"
|
|
623
667
|
},
|
|
624
668
|
"feedback": {
|
|
625
669
|
"type": {
|
|
@@ -1442,6 +1486,11 @@
|
|
|
1442
1486
|
"uploadPhotos": "Subir fotos",
|
|
1443
1487
|
"uploadFiles": "Subir archivos",
|
|
1444
1488
|
"clearSearch": "Limpiar búsqueda",
|
|
1489
|
+
"retry": "Reintentar",
|
|
1490
|
+
"loadError": {
|
|
1491
|
+
"title": "No se pudieron cargar tus archivos",
|
|
1492
|
+
"description": "Algo salió mal. Comprueba tu conexión e inténtalo de nuevo."
|
|
1493
|
+
},
|
|
1445
1494
|
"choosePhoto": "Elegir foto",
|
|
1446
1495
|
"done": "Listo",
|
|
1447
1496
|
"doneWithCount": "Listo ({{count}})",
|
|
@@ -1615,6 +1664,8 @@
|
|
|
1615
1664
|
"accountMenu": {
|
|
1616
1665
|
"label": "Menú de cuenta",
|
|
1617
1666
|
"manage": "Gestiona tu cuenta de Oxy",
|
|
1667
|
+
"greeting": "¡Hola, {{name}}!",
|
|
1668
|
+
"switchAccount": "Cambiar de cuenta",
|
|
1618
1669
|
"viewProfile": "Ver perfil",
|
|
1619
1670
|
"addAnother": "Añadir otra cuenta",
|
|
1620
1671
|
"signOutAll": "Cerrar sesión en todas las cuentas",
|
|
@@ -1622,7 +1673,22 @@
|
|
|
1622
1673
|
"openHint": "Abre el menú de cuenta",
|
|
1623
1674
|
"openWithUser": "Menú de cuenta de {{name}}",
|
|
1624
1675
|
"switching": "Cambiando de cuenta…",
|
|
1625
|
-
"signOutAccount": "Cerrar sesión de {{name}}"
|
|
1676
|
+
"signOutAccount": "Cerrar sesión de {{name}}",
|
|
1677
|
+
"storage": {
|
|
1678
|
+
"title": "Almacenamiento de Oxy",
|
|
1679
|
+
"usage": "{{used}} de {{total}} en uso",
|
|
1680
|
+
"used": "Usado",
|
|
1681
|
+
"free": "Libre",
|
|
1682
|
+
"unavailable": "Detalles de uso no disponibles",
|
|
1683
|
+
"upgrade": "Mejorar plan",
|
|
1684
|
+
"manage": "Gestionar almacenamiento"
|
|
1685
|
+
},
|
|
1686
|
+
"data": "Tus datos en Oxy",
|
|
1687
|
+
"settings": "Ajustes de Oxy",
|
|
1688
|
+
"help": "Ayuda y comentarios",
|
|
1689
|
+
"signOut": "Cerrar sesión",
|
|
1690
|
+
"privacy": "Política de privacidad",
|
|
1691
|
+
"terms": "Términos del servicio"
|
|
1626
1692
|
},
|
|
1627
1693
|
"accounts": {
|
|
1628
1694
|
"activeAccount": {
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "Vos comptes"
|
|
117
|
+
},
|
|
118
|
+
"loading": "Chargement des comptes...",
|
|
115
119
|
"qrHeadline": "Connectez-vous avec votre identité Oxy",
|
|
116
120
|
"signInWithOxy": "Se connecter avec Oxy",
|
|
117
121
|
"useIdentityOnDevice": "Pas de Commons ? Utilisez une clé d'accès sur cet appareil",
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "I tuoi account"
|
|
117
|
+
},
|
|
118
|
+
"loading": "Caricamento account...",
|
|
115
119
|
"qrHeadline": "Accedi con la tua identità Oxy",
|
|
116
120
|
"signInWithOxy": "Accedi con Oxy",
|
|
117
121
|
"useIdentityOnDevice": "Non hai Commons? Usa una passkey su questo dispositivo",
|
|
@@ -112,6 +112,10 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"accountSwitcher": {
|
|
115
|
+
"sections": {
|
|
116
|
+
"yourAccounts": "あなたのアカウント"
|
|
117
|
+
},
|
|
118
|
+
"loading": "アカウントを読み込み中...",
|
|
115
119
|
"qrHeadline": "Oxy IDでサインイン",
|
|
116
120
|
"signInWithOxy": "Oxyでサインイン",
|
|
117
121
|
"useIdentityOnDevice": "Commonsがありませんか?このデバイスのパスキーを使用",
|