* Allow owners and admins to delete workspaces from settings.
Expose a danger zone with name confirmation, sync Stripe quantity on SaaS, and skip billing constraints in self-hosted mode.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Drop redundant canDelete prop from workspace settings.
The settings page is already gated by update (owner/admin), which matches delete.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Extract workspace delete danger zone into DeleteWorkspace component.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Clarify workspace delete billing copy across locales.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Match workspace delete card to the delete-account settings pattern.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Harden workspace and account deletion around shared members.
Enforce owner-only workspace creation, rehome stranded members to a personal account, warn about member access loss, and clarify the only-workspace SaaS exit paths.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Harden workspace delete: owner-only billing impact and safer member rehome.
Restrict delete to account owners, rehome stranded members transactionally with account-scoped fallbacks, and clean up the danger-zone UI/copy.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Fix workspace delete review findings.
Prune pending invites and media on delete, lock the account for the
last-workspace guard, fall back to account-owned workspaces for owners,
redirect self-hosted last deletes to create, cancel Stripe after local
cleanup, align personal-account trials, and gate Index create for owners.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Harden invite accept and account delete edge cases.
Stop invite accept from demoting existing roles, expire dead invites on
show, preserve flash by avoiding calendar bounces, move media file I/O
outside locked delete transactions, and finish account deletion even if
Stripe cancel fails.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Fix remaining invite redirect and media cleanup edge cases.
Distinguish already-accepted invites from gone workspaces, rehome
members removed from their last shared workspace, capture media paths
inside the delete lock, extract orphaned-file cleanup, and use Wayfinder
for the expired-invite home link.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Fix invite current-workspace and account-delete edge cases.
Switch invitees onto an invite-account workspace when accepting, prefer
same-account fallbacks when removing members, abort account deletion if
Stripe cancel fails, and clear avatar media on profile delete.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Fix Stripe-failure media leak and invite cross-account redirect.
Flush workspace media files before billing cancel can abort account
delete, and rehome stranded non-owners before picking an invite redirect
fallback so current workspace never points across accounts.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Never set cross-account current workspace on member rehome.
Keep RemoveMember and account-delete member fallbacks same-account
only, clarify the billing-failure flash that workspaces were already
removed, and assert storage deletion in media cleanup tests.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Sync Stripe workspace quantity when account delete billing fails.
After local workspaces are wiped, a stuck cancelNow must still drop
seat quantity so the subscription cannot keep billing the old count.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Prune account invites when owner delete wipes workspaces.
Pending and accepted invites are removed with the workspaces so a
Stripe cancel failure cannot leave unique email/account rows that block
re-invites to a gutted account.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Extract DeleteWorkspaceMedia to purge workspace media rows.
Call sites capture returned paths inside the lock and still flush
orphaned storage files after commit via DeleteOrphanedMediaFiles.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Redirect to calendar after deleting a workspace with a fallback.
When DeleteWorkspace already sets another current workspace, sending
the owner to the workspace picker is unnecessary — take them back into
the app instead.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Use Wayfinder for invite redirect and logo home links.
Replace hardcoded /invites/{id} and / hrefs in AcceptInvite with
show.url() and home() route helpers.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Use Wayfinder home() for AcceptInvite logo link.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Extract AcceptInvite title and description into computeds.
Keeps the expired/active copy logic out of the template and matches
the existing trans() pattern used elsewhere.
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Fix lazy-loading crash when deleting a workspace.
isAccountOwner() no longer touches the account relation unless it is
already loaded, and delete/rehome queries eager-load account when they
need ownership checks under Model::shouldBeStrict().
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Avoid isAccountOwner during workspace delete fallback.
Compare against the already-loaded account owner_id so current-workspace
reassignment cannot touch the account relation under shouldBeStrict().
Co-authored-by: Paulo Castellano <hello@paulocastellano.com>
* Add tests for DeleteWorkspace functionality
Introduce comprehensive tests for the DeleteWorkspace action, covering scenarios such as deleting stranded members, handling multiple workspaces, restoring members with personal workspaces, and managing invites. Ensure that workspace media files are deleted and verify behavior when the last workspace is blocked by SaaS settings. This enhances the reliability of workspace deletion processes and ensures proper account management during deletions.
* Refactor member removal process to delete or restore stranded members
Updated the RemoveMember action to utilize the new DeleteOrRestoreStrandedMember class, which handles the deletion of stranded members or restoration to personal accounts. This change improves the management of user accounts when members are removed from workspaces, ensuring that non-owner members are properly handled based on their account status. Additionally, tests have been updated to reflect these changes, ensuring that the functionality works as intended.
* Enhance member removal and media management during account deletion
Updated the RemoveMember action to collect media paths for orphaned files when removing members. Integrated the DeleteOrphanedMediaFiles action to ensure that any media associated with deleted users is properly purged. Additionally, refactored the DeleteOrRestoreStrandedMember class to return media paths for cleanup, improving overall resource management during user account deletions. This change ensures that all orphaned media files are handled efficiently, maintaining system integrity.
* Enhance user account deletion process with force delete option
Updated the DeleteOrRestoreStrandedMember class to include a forceDelete parameter, allowing for immediate deletion of members and their associated personal accounts and workspaces. This change ensures that when an account is forcefully deleted, all remnants of the user's data are purged, improving data integrity and resource management. Additionally, updated related methods and tests to accommodate this new functionality, ensuring comprehensive coverage and correct behavior during account deletions.
* Extract shared delete/invite actions out of fat controllers.
Centralize workspace/account/user teardown and invite accept/decline so ProfileController and AcceptInviteController stay thin HTTP wrappers.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Harden delete/invite invariants and replace invite string outcomes.
Block cross-account workspace listing/switching, cancel Stripe on owned accounts before purge, lock RemoveMember, fold owner fallback into ReassignCurrentWorkspace, and type invite results with an enum.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Polish delete/invite teardown APIs and cancel Stripe on empty accounts.
Extract DeleteEmptyOwnedAccounts, rename settle-after-invite, and expose
clearer stranded-member entry points so cancel never races the invite lock.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Finish stranded teardown craft: settle outside locks, clearer names.
Defer empty-account Stripe cancel until after the account lock, rename
stranded handling to SettleStrandedMember, and extract AccountsRequiringCancel.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Harden multi-account Stripe cancel order and typed stranded settlements.
Cancel member personals before the shared account, introduce CancelAccounts
and StrandedSettlement::flush so partial Stripe failures leave billing intact.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Reuse strandedMemberOnSharedAccount across delete/invite feature tests.
Expand the Pest helper for shared workspaces and owner injection so
stranded-member fixtures stop being hand-rolled in every suite.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Lock the account row during owner account teardown.
Serialize DeleteAccount with DeleteWorkspace/RemoveMember so concurrent
stranded restores cannot move members off the account before force-delete.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Drop personal-account restore when leaving a shared account.
Invitees abandon their previous personal account on accept, and stranded
members are always deleted — matching the real product flow.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Close the account model and consolidate teardown actions.
Block invites to emails that already belong to a registered user — accounts
are closed (one user, one account), so members never own a personal account.
This removes the whole leftover/restore surface.
Consolidate: fold AccountsRequiringCancel/CancelAccounts into
CancelAccountSubscription, drop DeleteEmptyOwnedAccounts/DeleteOwnedAccount/
PurgeOwnedAccounts, and fold DeleteAccount into DeleteUser. 23 -> 15 new
action files.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Remove orphaned members.errors.already_member translation key.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Block invitees from creating a workspace on the invite shell.
A pending invitee could open workspaces/create (outside EnsureHasWorkspace)
and add a workspace (then billing) on their empty signup shell before accept.
Accept only tears down an empty shell, so this left an abandoned, billable
account. Deny create/store while an invite is pending — the invitee joins via
the invite instead.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Tighten stranded-member fixtures to the closed-account model.
Drop the member's empty signup shell in strandedMemberOnSharedAccount and the
billing-abort profile test so the setup matches what accept actually leaves
(member owns nothing). Remove the never-overridden attachOwner param.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Bind invite registration to the invited email.
The register form shows the invited email as read-only when an invite id is
present, and store() rejects a different email for a valid invite. Also fixes
a latent bug: EnsureRegistrationEnabled only read the invite id from the query
string, so the self-hosted invite registration POST always 404'd.
Co-authored-by: Cursor <cursoragent@cursor.com>
* Move register validation into RegisterRequest.
Inline $request->validate() and the invite-email check move into
App\Http\Requests\App\Auth\RegisterRequest (withValidator). Invite detection
no longer sniffs a /invites/ redirect string — it resolves the invite id
directly; the invite registration test now uses a real invite.
Co-authored-by: Cursor <cursoragent@cursor.com>
---------
Co-authored-by: Cursor <cursoragent@cursor.com>
384 lines
18 KiB
PHP
384 lines
18 KiB
PHP
<?php
|
|
|
|
return [
|
|
'title' => 'Configuración',
|
|
'description' => 'Administra tu perfil y configuración de la cuenta',
|
|
|
|
'hub' => [
|
|
'title' => 'Configuración',
|
|
'description' => 'Elige qué quieres gestionar.',
|
|
'profile' => [
|
|
'title' => 'Perfil',
|
|
'description' => 'Actualiza tu información personal, contraseña y preferencias de notificaciones.',
|
|
],
|
|
'workspace' => [
|
|
'title' => 'Workspace',
|
|
'description' => 'Configura tu workspace, marca, miembros y claves de API.',
|
|
],
|
|
'account' => [
|
|
'title' => 'Cuenta',
|
|
'description' => 'Gestiona la información de la cuenta, uso y facturación.',
|
|
],
|
|
],
|
|
|
|
'nav' => [
|
|
'profile' => 'Perfil',
|
|
'authentication' => 'Autenticación',
|
|
'workspace' => 'Workspace',
|
|
'members' => 'Miembros',
|
|
'notifications' => 'Notificaciones',
|
|
'billing' => 'Facturación',
|
|
],
|
|
|
|
'notifications' => [
|
|
'title' => 'Preferencias de notificaciones',
|
|
'heading' => 'Notificaciones por correo',
|
|
'description' => 'Elige qué notificaciones por correo deseas recibir',
|
|
'post_published' => 'Post publicado',
|
|
'post_published_description' => 'Recibir un correo cuando tu post se publique correctamente',
|
|
'post_failed' => 'Post fallido',
|
|
'post_failed_description' => 'Recibir un correo cuando tu post falle al publicar',
|
|
'account_disconnected' => 'Cuenta desconectada',
|
|
'account_disconnected_description' => 'Recibir un correo cuando una cuenta social se desconecte',
|
|
'save' => 'Guardar preferencias',
|
|
],
|
|
|
|
'profile' => [
|
|
'title' => 'Configuración del perfil',
|
|
'photo_heading' => 'Foto de perfil',
|
|
'photo_description' => 'Sube una foto de perfil',
|
|
'heading' => 'Información del perfil',
|
|
'description' => 'Actualiza tu nombre y correo electrónico',
|
|
'avatar' => 'Avatar',
|
|
'name' => 'Nombre',
|
|
'name_placeholder' => 'Nombre completo',
|
|
'email' => 'Correo electrónico',
|
|
'email_placeholder' => 'Correo electrónico',
|
|
'email_unverified' => 'Tu correo electrónico no ha sido verificado.',
|
|
'resend_verification' => 'Haz clic aquí para reenviar el correo de verificación.',
|
|
'verification_sent' => 'Se ha enviado un nuevo enlace de verificación a tu correo electrónico.',
|
|
'save' => 'Guardar',
|
|
],
|
|
|
|
'authentication' => [
|
|
'title' => 'Autenticación',
|
|
'page_title' => 'Configuración de autenticación',
|
|
'sessions' => [
|
|
'title' => 'Sesiones activas',
|
|
'description' => 'Si notas algo sospechoso, cierra sesión en otros dispositivos.',
|
|
'unknown_browser' => 'Navegador desconocido',
|
|
'unknown_ip' => 'IP desconocida',
|
|
'on' => 'en',
|
|
'active_now' => 'Activa ahora',
|
|
'log_out_others' => 'Cerrar otras sesiones',
|
|
'modal_title' => 'Cerrar otras sesiones',
|
|
'modal_description_password' => 'Introduce tu contraseña actual para confirmar el cierre de las demás sesiones.',
|
|
'modal_description_email' => 'Escribe tu correo electrónico para confirmar el cierre de las demás sesiones.',
|
|
'password_placeholder' => 'Contraseña actual',
|
|
'email_placeholder' => 'Tu correo',
|
|
'cancel' => 'Cancelar',
|
|
'submit' => 'Cerrar otras sesiones',
|
|
'email_mismatch' => 'El correo electrónico no coincide con tu cuenta.',
|
|
'flash_logged_out' => 'Has cerrado sesión en los demás dispositivos.',
|
|
],
|
|
'password' => [
|
|
'update_title' => 'Actualizar contraseña',
|
|
'set_title' => 'Definir una contraseña',
|
|
'update_description' => 'Asegúrate de usar una contraseña larga y aleatoria para mantener tu cuenta segura.',
|
|
'set_description' => 'Añade una contraseña para iniciar sesión sin un proveedor conectado.',
|
|
'current_password' => 'Contraseña actual',
|
|
'new_password' => 'Nueva contraseña',
|
|
'confirm_password' => 'Confirmar contraseña',
|
|
'save' => 'Guardar contraseña',
|
|
'set' => 'Definir contraseña',
|
|
],
|
|
'providers' => [
|
|
'title' => 'Cuentas conectadas',
|
|
'description' => 'Inicia sesión más rápido con estos proveedores conectados.',
|
|
'connected' => 'Conectada',
|
|
'not_connected' => 'No conectada',
|
|
'connect' => 'Conectar',
|
|
'disconnect' => 'Desconectar',
|
|
'flash_disconnected' => ':provider desconectada correctamente.',
|
|
'flash_connected' => ':provider conectada correctamente.',
|
|
'flash_already_linked' => 'Esa cuenta de :provider ya está vinculada a otro usuario.',
|
|
'flash_cannot_disconnect' => 'No puedes desconectar tu único método de inicio de sesión. Define una contraseña o conecta otro proveedor primero.',
|
|
],
|
|
],
|
|
|
|
'delete_account' => [
|
|
'heading' => 'Eliminar cuenta',
|
|
'description' => 'Elimina tu cuenta y todos sus recursos',
|
|
'warning' => 'Advertencia',
|
|
'warning_message' => 'Procede con cuidado: esto no se puede deshacer. Si eres el propietario de esta cuenta, los miembros invitados también se eliminarán de forma permanente.',
|
|
'button' => 'Eliminar cuenta',
|
|
'modal_title' => '¿Estás seguro de que deseas eliminar tu cuenta?',
|
|
'modal_description_password' => 'Una vez eliminada, todos sus recursos y datos también se eliminarán permanentemente. Si eres el propietario de la cuenta, los miembros invitados también se eliminarán de forma permanente. Introduce tu contraseña para confirmar.',
|
|
'modal_description_email' => 'Una vez eliminada, todos sus recursos y datos también se eliminarán permanentemente. Si eres el propietario de la cuenta, los miembros invitados también se eliminarán de forma permanente. Escribe tu correo :email para confirmar.',
|
|
'password' => 'Contraseña',
|
|
'password_placeholder' => 'Contraseña',
|
|
'email_placeholder' => 'Tu correo',
|
|
'email_mismatch' => 'El correo electrónico no coincide con tu cuenta.',
|
|
'cancel' => 'Cancelar',
|
|
'confirm' => 'Eliminar cuenta',
|
|
],
|
|
|
|
'workspace' => [
|
|
'tabs' => [
|
|
'workspace' => 'Workspace',
|
|
'brand' => 'Marca',
|
|
'users' => 'Miembros',
|
|
'api_keys' => 'API Keys',
|
|
],
|
|
'title' => 'Configuración del workspace',
|
|
'logo_heading' => 'Logo del workspace',
|
|
'logo_description' => 'Sube un logo para tu workspace',
|
|
'heading' => 'Nombre del workspace',
|
|
'description' => 'Actualiza el nombre del workspace',
|
|
'members_heading' => 'Miembros',
|
|
'members_description' => 'Administra miembros e invitaciones del workspace',
|
|
'name' => 'Nombre',
|
|
'name_placeholder' => 'Mi Workspace',
|
|
'save' => 'Guardar',
|
|
'danger_description' => 'Acciones irreversibles.',
|
|
'delete_warning' => 'Advertencia',
|
|
'delete_title' => 'Eliminar este workspace',
|
|
'delete_description' => 'Elimina este workspace de forma permanente, incluyendo publicaciones, cuentas conectadas y medios. Pasarás a pagar por un workspace menos.',
|
|
'delete_description_self_hosted' => 'Elimina permanentemente este workspace, sus publicaciones, cuentas conectadas y medios.',
|
|
'delete_only_description' => 'No puedes eliminar tu único workspace. Cancela la suscripción en facturación para dejar de pagar, o elimina tu cuenta en Autenticación para cancelar la facturación y borrar todo de forma permanente.',
|
|
'delete_go_to_billing' => 'Ir a facturación',
|
|
'delete_go_to_delete_account' => 'Eliminar cuenta',
|
|
'delete_members_warning' => '{1}:count miembro más perderá el acceso. Los miembros sin otro workspace en TryPost se eliminarán de forma permanente.|[2,*]:count miembros más perderán el acceso. Los miembros sin otro workspace en TryPost se eliminarán de forma permanente.',
|
|
'delete_action' => 'Eliminar workspace',
|
|
'delete_cancel' => 'Cancelar',
|
|
'delete_confirm_title' => '¿Eliminar workspace?',
|
|
'delete_confirm_description' => 'Esto elimina permanentemente el workspace y todos sus datos. Tu facturación se actualizará para reflejar un workspace menos.',
|
|
'delete_confirm_description_self_hosted' => 'Esto elimina permanentemente el workspace y todos sus datos.',
|
|
],
|
|
|
|
'brand' => [
|
|
'title' => 'Marca',
|
|
'description' => 'Configura la identidad de tu marca para el contenido generado por IA.',
|
|
'name' => 'Nombre del workspace',
|
|
'name_placeholder' => 'Mi marca',
|
|
'website' => 'Sitio web',
|
|
'website_placeholder' => 'https://tumarca.com',
|
|
'brand_description' => 'Descripción',
|
|
'brand_description_placeholder' => 'Cuéntanos sobre tu marca, lo que haces y quién es tu audiencia...',
|
|
'voice' => 'Voz de marca',
|
|
'voice_description' => 'Elige los rasgos que definen cómo suena tu contenido.',
|
|
'voice_group' => [
|
|
'pov' => 'Punto de vista',
|
|
'formality' => 'Formalidad',
|
|
'energy' => 'Energía',
|
|
'humor' => 'Humor',
|
|
'attitude' => 'Actitud',
|
|
'warmth' => 'Calidez',
|
|
'confidence' => 'Confianza',
|
|
'style' => 'Estilo',
|
|
],
|
|
'voice_trait' => [
|
|
'first_person' => 'Primera persona',
|
|
'second_person' => 'Segunda persona (tú)',
|
|
'third_person' => 'Tercera persona',
|
|
'formal' => 'Formal',
|
|
'balanced' => 'Equilibrado',
|
|
'casual' => 'Casual',
|
|
'calm' => 'Calmo',
|
|
'moderate' => 'Moderado',
|
|
'enthusiastic' => 'Entusiasta',
|
|
'vibrant' => 'Vibrante',
|
|
'serious' => 'Serio',
|
|
'dry' => 'Sutil / seco',
|
|
'witty' => 'Ingenioso',
|
|
'playful' => 'Juguetón',
|
|
'respectful' => 'Respetuoso',
|
|
'even_handed' => 'Equilibrado',
|
|
'bold' => 'Audaz',
|
|
'provocative' => 'Provocador',
|
|
'neutral' => 'Neutro',
|
|
'friendly' => 'Amigable',
|
|
'empathetic' => 'Empático',
|
|
'humble' => 'Humilde',
|
|
'confident' => 'Seguro',
|
|
'assertive' => 'Asertivo',
|
|
'direct' => 'Directo',
|
|
'concise' => 'Conciso',
|
|
'transparent' => 'Transparente',
|
|
'no_hype' => 'Sin hype',
|
|
'practical' => 'Práctico',
|
|
'data_driven' => 'Basado en datos',
|
|
'storytelling' => 'Narrativo',
|
|
'inspirational' => 'Inspiracional',
|
|
'educational' => 'Educativo',
|
|
'technical' => 'Técnico',
|
|
'minimalist' => 'Pocos emojis',
|
|
],
|
|
'brand_color' => 'Color de marca',
|
|
'background_color' => 'Color de fondo',
|
|
'text_color' => 'Color de texto',
|
|
'font' => 'Fuente',
|
|
'image_style' => 'Estilo de imágenes',
|
|
'image_style_description' => 'Estilo visual aplicado al generar imágenes de diapositivas y portadas para publicaciones con IA.',
|
|
'image_style_cinematic' => 'Cinematográfico',
|
|
'image_style_illustration' => 'Ilustración',
|
|
'image_style_isometric_3d' => 'Isométrico',
|
|
'image_style_cartoon' => 'Cartoon',
|
|
'image_style_typographic' => 'Tipográfico',
|
|
'image_style_infographic' => 'Infográfico',
|
|
'image_style_minimalist' => 'Minimalista',
|
|
'image_style_mockup' => 'Mockup',
|
|
'content_language' => 'Idioma del contenido',
|
|
'content_language_description' => 'Idioma usado en los subtítulos, hashtags y cualquier texto dentro de imágenes o videos generados por IA.',
|
|
'font_placeholder' => 'Seleccionar una fuente…',
|
|
'font_search' => 'Buscar fuente…',
|
|
'font_empty' => 'No hay fuentes que coincidan.',
|
|
'language_placeholder' => 'Seleccionar un idioma…',
|
|
'language_search' => 'Buscar idioma…',
|
|
'language_empty' => 'No se encontró ningún idioma.',
|
|
|
|
],
|
|
|
|
'members' => [
|
|
'title' => 'Miembros',
|
|
'heading' => 'Miembros del equipo',
|
|
'description' => 'Administra miembros e invitaciones de este workspace',
|
|
|
|
'cancel' => 'Cancelar',
|
|
'remove' => 'Eliminar',
|
|
'make_role' => 'Hacer :role',
|
|
|
|
'invite' => [
|
|
'title' => 'Invitar miembro',
|
|
'description' => 'Envía una invitación por correo para agregar colaboradores',
|
|
'email' => 'Correo electrónico',
|
|
'email_placeholder' => 'colaborador@email.com',
|
|
'role' => 'Rol',
|
|
'role_placeholder' => 'Selecciona un rol',
|
|
'submit' => 'Enviar invitación',
|
|
],
|
|
|
|
'pending' => [
|
|
'title' => 'Invitaciones pendientes',
|
|
'description' => 'Invitaciones en espera de aceptación',
|
|
'empty' => 'No hay invitaciones pendientes',
|
|
],
|
|
|
|
'list' => [
|
|
'title' => 'Miembros',
|
|
'description' => 'Personas con acceso a este workspace',
|
|
'empty' => 'No hay miembros además del propietario',
|
|
],
|
|
|
|
'remove_modal' => [
|
|
'title' => 'Eliminar miembro',
|
|
'description' => '¿Estás seguro de que deseas eliminar a este miembro del workspace? Perderá acceso a todos los recursos del workspace.',
|
|
'action' => 'Eliminar miembro',
|
|
],
|
|
|
|
'cancel_invite_modal' => [
|
|
'title' => 'Cancelar invitación',
|
|
'description' => '¿Estás seguro de que deseas cancelar esta invitación?',
|
|
'action' => 'Cancelar invitación',
|
|
],
|
|
|
|
'roles' => [
|
|
'owner' => 'Propietario',
|
|
'admin' => 'Administrador',
|
|
'member' => 'Miembro',
|
|
'viewer' => 'Espectador',
|
|
],
|
|
|
|
'errors' => [
|
|
'invite_exists' => 'Ya existe una invitación para este correo.',
|
|
'email_belongs_to_account' => 'Este correo ya pertenece a otra cuenta de TryPost. Pide un correo de trabajo dedicado.',
|
|
],
|
|
|
|
'flash' => [
|
|
'invite_sent' => '¡Invitación enviada correctamente!',
|
|
'invite_deleted' => 'Invitación eliminada.',
|
|
'member_removed' => '¡Miembro eliminado correctamente!',
|
|
'role_updated' => 'Rol del miembro actualizado.',
|
|
'wrong_email' => 'Esta invitación es para otro correo electrónico.',
|
|
'already_member' => 'Ya eres miembro de este workspace.',
|
|
'invite_accepted' => '¡Bienvenido! Ahora eres miembro del workspace.',
|
|
'invite_workspace_gone' => 'Esta invitación ya no es válida porque el workspace fue eliminado.',
|
|
'invite_declined' => 'Invitación rechazada.',
|
|
],
|
|
],
|
|
|
|
'account' => [
|
|
'tabs' => [
|
|
'account' => 'Cuenta',
|
|
'usage' => 'Uso',
|
|
'billing' => 'Facturación',
|
|
],
|
|
'title' => 'Configuración de cuenta',
|
|
'description' => 'Gestiona el nombre de la cuenta y el correo de facturación',
|
|
'name' => 'Nombre de la cuenta',
|
|
'name_placeholder' => 'Mi Empresa',
|
|
'billing_email' => 'Correo de facturación',
|
|
'billing_email_placeholder' => 'facturacion@empresa.com',
|
|
'billing_email_hint' => 'Este correo se usará para facturas y comunicaciones de facturación de Stripe.',
|
|
'submit' => 'Guardar',
|
|
],
|
|
|
|
'flash' => [
|
|
'account_updated' => '¡Cuenta actualizada correctamente!',
|
|
'profile_updated' => '¡Perfil actualizado correctamente!',
|
|
'password_updated' => '¡Contraseña actualizada correctamente!',
|
|
'workspace_updated' => '¡Configuración actualizada correctamente!',
|
|
'photo_updated' => '¡Foto actualizada correctamente!',
|
|
'photo_deleted' => '¡Foto eliminada correctamente!',
|
|
'delete_failed_billing' => 'No pudimos cancelar tu suscripción con el proveedor de facturación. No se eliminó nada. Inténtalo de nuevo o contacta con soporte.',
|
|
'logo_updated' => '¡Logo subido correctamente!',
|
|
'logo_deleted' => '¡Logo eliminado correctamente!',
|
|
'notifications_updated' => '¡Preferencias de notificaciones actualizadas!',
|
|
],
|
|
|
|
'api_keys' => [
|
|
'title' => 'Claves API',
|
|
'page_title' => 'Claves API',
|
|
'heading' => 'Claves API',
|
|
'description' => 'Administra claves API para acceso programático a tu workspace.',
|
|
'create' => 'Crear clave API',
|
|
'copy' => 'Copiar',
|
|
'new_token_message' => 'Tu nueva clave API ha sido creada. Cópiala ahora — no podrás verla de nuevo.',
|
|
'table' => [
|
|
'name' => 'Nombre',
|
|
'key' => 'Clave',
|
|
'status' => 'Estado',
|
|
'expires' => 'Expira',
|
|
'last_used' => 'Último uso',
|
|
'never' => 'Nunca',
|
|
],
|
|
'actions' => [
|
|
'copy_id' => 'Copiar ID de clave API',
|
|
'copy_id_success' => 'ID de clave API copiado',
|
|
'delete' => 'Eliminar',
|
|
],
|
|
'empty' => [
|
|
'title' => 'No hay claves API',
|
|
'description' => 'Crea una clave API para acceder a tu workspace programáticamente.',
|
|
],
|
|
'delete_modal' => [
|
|
'title' => 'Eliminar clave API',
|
|
'description' => '¿Estás seguro de que deseas eliminar esta clave API? Las aplicaciones que la usen perderán acceso inmediatamente.',
|
|
'action' => 'Eliminar clave API',
|
|
],
|
|
'create_dialog' => [
|
|
'title' => 'Crear clave API',
|
|
'description' => 'Crea una nueva clave API para acceso programático a tu workspace.',
|
|
'name' => 'Nombre',
|
|
'name_placeholder' => 'ej. Clave API de Producción',
|
|
'expires' => 'Fecha de expiración (opcional)',
|
|
'expires_placeholder' => 'Sin expiración',
|
|
'submit' => 'Crear',
|
|
'cancel' => 'Cancelar',
|
|
],
|
|
'flash' => [
|
|
'created' => '¡Clave API creada correctamente!',
|
|
'deleted' => '¡Clave API eliminada correctamente!',
|
|
],
|
|
],
|
|
];
|