@cosmicdrift/kumiko-locale-es 0.220.0 → 0.221.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-locale-es",
3
- "version": "0.220.0",
3
+ "version": "0.221.0",
4
4
  "description": "Spanish UI and mail copy for Kumiko framework screens. Opt in by mounting localeEs() + localeEsClient().",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -28,7 +28,7 @@
28
28
  }
29
29
  },
30
30
  "dependencies": {
31
- "@cosmicdrift/kumiko-framework": "0.220.0"
31
+ "@cosmicdrift/kumiko-framework": "0.221.0"
32
32
  },
33
33
  "publishConfig": {
34
34
  "registry": "https://registry.npmjs.org",
@@ -24,4 +24,14 @@ describe("locale-es completeness", () => {
24
24
  );
25
25
  }
26
26
  });
27
+
28
+ test("uses localized tenant wording, not raw English tenant labels", () => {
29
+ const roleAllowlist = new Set(["TenantAdmin", "SystemAdmin"]);
30
+ const offenders: string[] = [];
31
+ for (const [key, value] of Object.entries(localeEsBundle)) {
32
+ if (roleAllowlist.has(value)) continue;
33
+ if (/\btenants?\b/i.test(value)) offenders.push(key);
34
+ }
35
+ expect(offenders).toEqual([]);
36
+ });
27
37
  });
@@ -230,6 +230,7 @@ export const frameworkEnCatalog: Readonly<Record<string, string>> = {
230
230
  "We've sent you an activation link. Click it to set your password and sign in.",
231
231
  "auth.signup.successTitle": "Email sent",
232
232
  "auth.signup.title": "Create account",
233
+ "auth.signupComplete.activatedTitle": "Account activated",
233
234
  "auth.signupComplete.activated": "Your account is active and you're signed in.",
234
235
  "auth.signupComplete.confirmPassword": "Confirm password",
235
236
  "auth.signupComplete.continue": "Continue",
@@ -289,6 +290,7 @@ export const frameworkEnCatalog: Readonly<Record<string, string>> = {
289
290
  "delivery.log.col.channel": "Channel",
290
291
  "delivery.log.col.recipient": "Recipient",
291
292
  "delivery.log.col.status": "Status",
293
+ "delivery.log.col.tenantId": "Tenant",
292
294
  "delivery.log.col.type": "Type",
293
295
  "delivery.log.empty": "No delivery attempts.",
294
296
  "delivery.log.loading": "Loading delivery attempts…",
@@ -634,8 +636,10 @@ export const frameworkEnCatalog: Readonly<Record<string, string>> = {
634
636
  "screen:download-attempt-list.title": "Download attempts",
635
637
  "screen:export-job-detail.title": "Export job",
636
638
  "screen:export-job-list.title": "GDPR exports",
639
+ "screen:invite-create.title": "New invitation",
637
640
  "screen:job-run-detail.title": "Job run",
638
641
  "screen:job-runs.title": "Job runs",
642
+ "screen:member-roles-edit.title": "Edit roles",
639
643
  "screen:members.title": "Team",
640
644
  "screen:page-edit.title": "Edit page",
641
645
  "screen:page-list.title": "Pages",
@@ -644,10 +648,13 @@ export const frameworkEnCatalog: Readonly<Record<string, string>> = {
644
648
  "screen:profile-picker.title": "Compliance profile",
645
649
  "screen:session-detail.title": "Session",
646
650
  "screen:session-list.title": "Sessions",
651
+ "screen:subscription-stripe-system.title": "Stripe",
647
652
  "screen:tag-list.title": "Tags",
648
653
  "screen:tenant-edit.title": "Edit tenant",
649
654
  "screen:tenant-list.title": "Tenants",
650
655
  "screen:tenant-overview.title": "Overview",
656
+ "screen:tenant-settings-system.title": "Tenant Settings",
657
+ "screen:tenant-settings-tenant.title": "Tenant Settings",
651
658
  "screen:tier-admin.title": "Assign tier manually",
652
659
  "screen:toggle-admin.title": "Feature toggles",
653
660
  "screen:user-edit.title": "Edit user",
@@ -666,6 +673,10 @@ export const frameworkEnCatalog: Readonly<Record<string, string>> = {
666
673
  "sessions.list.col.revokedAt": "Revoked",
667
674
  "sessions.list.col.userId": "User ID",
668
675
  "sessions:nav.sessionList": "Sessions",
676
+ "subscription-stripe.api-key": "Stripe API Key",
677
+ "subscription-stripe.billing-live": "Stripe Billing Live",
678
+ "subscription-stripe.settings": "Stripe",
679
+ "subscription-stripe.webhook-secret": "Stripe Webhook Secret",
669
680
  "tags.filter.clear": "Clear",
670
681
  "tags.filter.label": "Filter by tag",
671
682
  "tags.manage.cancel": "Cancel",
@@ -701,11 +712,20 @@ export const frameworkEnCatalog: Readonly<Record<string, string>> = {
701
712
  "template-resolver.editor.saved": "Saved.",
702
713
  "template-resolver.editor.saving": "Saving…",
703
714
  "template-resolver.editor.titleLabel": "Title",
715
+ "tenant-settings.currency": "Default Currency",
716
+ "tenant-settings.locale": "Default Locale",
717
+ "tenant-settings.settings": "Tenant Settings",
718
+ "tenant-settings.settings.system": "Tenant Settings (Platform Default)",
719
+ "tenant.members.actions.editRoles": "Edit roles",
704
720
  "tenant.members.active": "Active members",
705
721
  "tenant.members.cancel": "Cancel",
722
+ "tenant.members.cancel.confirm": "Cancel this invitation? The invite link will stop working.",
723
+ "tenant.members.col.created": "Created",
706
724
  "tenant.members.col.email": "Email",
707
725
  "tenant.members.col.expires": "Valid until",
726
+ "tenant.members.col.lastActivity": "Last activity",
708
727
  "tenant.members.col.roles": "Roles",
728
+ "tenant.members.col.status": "Status",
709
729
  "tenant.members.col.userId": "User ID",
710
730
  "tenant.members.filter.status": "Status",
711
731
  "tenant.members.filter.status.option.active": "Active",
@@ -719,8 +739,21 @@ export const frameworkEnCatalog: Readonly<Record<string, string>> = {
719
739
  "tenant.members.loading": "Loading members…",
720
740
  "tenant.members.pending": "Pending invitations",
721
741
  "tenant.members.pending.empty": "No pending invitations.",
742
+ "tenant.members.roles.edit.submit": "Save roles",
722
743
  "tenant.members.title": "Members",
723
744
  "tenant.nav.members": "Team",
745
+ "tenant:entity:__action-form__:field:email": "Email",
746
+ "tenant:entity:__action-form__:field:role": "Role",
747
+ "tenant:entity:__action-form__:field:role:option:Admin": "Admin",
748
+ "tenant:entity:__action-form__:field:role:option:Editor": "Editor",
749
+ "tenant:entity:__action-form__:field:role:option:TenantAdmin": "Tenant Admin",
750
+ "tenant:entity:__action-form__:field:role:option:User": "User",
751
+ "tenant:entity:__action-form__:field:roles": "Roles",
752
+ "tenant:entity:__action-form__:field:roles:option:Admin": "Admin",
753
+ "tenant:entity:__action-form__:field:roles:option:Editor": "Editor",
754
+ "tenant:entity:__action-form__:field:roles:option:TenantAdmin": "Tenant Admin",
755
+ "tenant:entity:__action-form__:field:roles:option:User": "User",
756
+ "tenant:entity:__action-form__:field:userId": "User ID",
724
757
  "tenant:entity:tenant:field:isEnabled": "Enabled",
725
758
  "tenant:entity:tenant:field:isEnabled:option:false": "No",
726
759
  "tenant:entity:tenant:field:isEnabled:option:true": "Yes",
package/src/strings.ts CHANGED
@@ -238,6 +238,7 @@ export const localeEsBundle: Readonly<Record<string, string>> = {
238
238
  "Te hemos enviado un enlace de activación a tu correo electrónico. Haz clic en él para establecer tu contraseña e iniciar sesión.",
239
239
  "auth.signup.successTitle": "Correo enviado",
240
240
  "auth.signup.title": "Crear cuenta",
241
+ "auth.signupComplete.activatedTitle": "Cuenta activada",
241
242
  "auth.signupComplete.activated": "Tu cuenta está activa y has iniciado sesión.",
242
243
  "auth.signupComplete.confirmPassword": "Confirmar contraseña",
243
244
  "auth.signupComplete.continue": "Continuar",
@@ -299,6 +300,7 @@ export const localeEsBundle: Readonly<Record<string, string>> = {
299
300
  "delivery.log.col.channel": "Canal",
300
301
  "delivery.log.col.recipient": "Destinatario",
301
302
  "delivery.log.col.status": "Estado",
303
+ "delivery.log.col.tenantId": "Inquilino",
302
304
  "delivery.log.col.type": "Tipo",
303
305
  "delivery.log.empty": "No hay intentos de entrega.",
304
306
  "delivery.log.loading": "Cargando intentos de entrega…",
@@ -645,8 +647,10 @@ export const localeEsBundle: Readonly<Record<string, string>> = {
645
647
  "screen:download-attempt-list.title": "Intentos de descarga",
646
648
  "screen:export-job-detail.title": "Trabajo de exportación",
647
649
  "screen:export-job-list.title": "Exportaciones RGPD",
650
+ "screen:invite-create.title": "Nueva invitación",
648
651
  "screen:job-run-detail.title": "Ejecución de trabajo",
649
652
  "screen:job-runs.title": "Ejecuciones de trabajos",
653
+ "screen:member-roles-edit.title": "Editar roles",
650
654
  "screen:members.title": "Equipo",
651
655
  "screen:page-edit.title": "Editar página",
652
656
  "screen:page-list.title": "Páginas",
@@ -655,10 +659,13 @@ export const localeEsBundle: Readonly<Record<string, string>> = {
655
659
  "screen:profile-picker.title": "Perfil de cumplimiento",
656
660
  "screen:session-detail.title": "Sesión",
657
661
  "screen:session-list.title": "Sesiones",
662
+ "screen:subscription-stripe-system.title": "Stripe",
658
663
  "screen:tag-list.title": "Etiquetas",
659
664
  "screen:tenant-edit.title": "Editar organización",
660
665
  "screen:tenant-list.title": "Organizaciones",
661
666
  "screen:tenant-overview.title": "Resumen",
667
+ "screen:tenant-settings-system.title": "Ajustes de la organización",
668
+ "screen:tenant-settings-tenant.title": "Ajustes de la organización",
662
669
  "screen:tier-admin.title": "Asignar tier manualmente",
663
670
  "screen:toggle-admin.title": "Feature toggles",
664
671
  "screen:user-edit.title": "Editar usuario",
@@ -677,6 +684,10 @@ export const localeEsBundle: Readonly<Record<string, string>> = {
677
684
  "sessions.list.col.revokedAt": "Revocado",
678
685
  "sessions.list.col.userId": "ID de usuario",
679
686
  "sessions:nav.sessionList": "Sesiones",
687
+ "subscription-stripe.api-key": "Clave API de Stripe",
688
+ "subscription-stripe.billing-live": "Stripe Billing en vivo",
689
+ "subscription-stripe.settings": "Stripe",
690
+ "subscription-stripe.webhook-secret": "Secreto del webhook de Stripe",
680
691
  "tags.filter.clear": "Quitar filtro",
681
692
  "tags.filter.label": "Filtrar por etiqueta",
682
693
  "tags.manage.cancel": "Cancelar",
@@ -712,11 +723,21 @@ export const localeEsBundle: Readonly<Record<string, string>> = {
712
723
  "template-resolver.editor.saved": "Guardado.",
713
724
  "template-resolver.editor.saving": "Guardando…",
714
725
  "template-resolver.editor.titleLabel": "Título",
726
+ "tenant-settings.currency": "Moneda predeterminada",
727
+ "tenant-settings.locale": "Idioma predeterminado",
728
+ "tenant-settings.settings": "Ajustes de la organización",
729
+ "tenant-settings.settings.system":
730
+ "Ajustes de la organización (valor predeterminado de la plataforma)",
731
+ "tenant.members.actions.editRoles": "Editar roles",
715
732
  "tenant.members.active": "Miembros activos",
716
733
  "tenant.members.cancel": "Cancelar",
734
+ "tenant.members.cancel.confirm": "¿Cancelar esta invitación? El enlace dejará de funcionar.",
735
+ "tenant.members.col.created": "Creado",
717
736
  "tenant.members.col.email": "Correo electrónico",
718
737
  "tenant.members.col.expires": "Válido hasta",
738
+ "tenant.members.col.lastActivity": "Última actividad",
719
739
  "tenant.members.col.roles": "Roles",
740
+ "tenant.members.col.status": "Estado",
720
741
  "tenant.members.col.userId": "ID de usuario",
721
742
  "tenant.members.filter.status": "Estado",
722
743
  "tenant.members.filter.status.option.active": "Activo",
@@ -730,8 +751,21 @@ export const localeEsBundle: Readonly<Record<string, string>> = {
730
751
  "tenant.members.loading": "Cargando miembros…",
731
752
  "tenant.members.pending": "Invitaciones pendientes",
732
753
  "tenant.members.pending.empty": "No hay invitaciones pendientes.",
754
+ "tenant.members.roles.edit.submit": "Guardar roles",
733
755
  "tenant.members.title": "Miembros",
734
756
  "tenant.nav.members": "Equipo",
757
+ "tenant:entity:__action-form__:field:email": "Correo electrónico",
758
+ "tenant:entity:__action-form__:field:role": "Rol",
759
+ "tenant:entity:__action-form__:field:role:option:Admin": "Admin",
760
+ "tenant:entity:__action-form__:field:role:option:Editor": "Editor",
761
+ "tenant:entity:__action-form__:field:role:option:TenantAdmin": "Admin de organización",
762
+ "tenant:entity:__action-form__:field:role:option:User": "User",
763
+ "tenant:entity:__action-form__:field:roles": "Roles",
764
+ "tenant:entity:__action-form__:field:roles:option:Admin": "Admin",
765
+ "tenant:entity:__action-form__:field:roles:option:Editor": "Editor",
766
+ "tenant:entity:__action-form__:field:roles:option:TenantAdmin": "Admin de organización",
767
+ "tenant:entity:__action-form__:field:roles:option:User": "User",
768
+ "tenant:entity:__action-form__:field:userId": "ID de usuario",
735
769
  "tenant:entity:tenant:field:isEnabled": "Activado",
736
770
  "tenant:entity:tenant:field:isEnabled:option:false": "No",
737
771
  "tenant:entity:tenant:field:isEnabled:option:true": "Sí",