From cb6114d13fdf73de852739b99e7e3511875eab44 Mon Sep 17 00:00:00 2001 From: Jason Rasmussen Date: Thu, 13 Aug 2026 12:19:47 -0400 Subject: [PATCH] fix(web): cluster invitation --- i18n/en.json | 4 +++- .../lib/modals/ClusterGroupUsersModal.svelte | 22 +++++++++++++++---- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/i18n/en.json b/i18n/en.json index f368a235f8..55268d4cab 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -1,5 +1,6 @@ { "about": "About", + "accept": "Accept", "account": "Account", "account_settings": "Account Settings", "acknowledge": "Acknowledge", @@ -735,7 +736,8 @@ "client_cert_title": "SSL client certificate [EXPERIMENTAL]", "close": "Close", "cluster_group": "Cluster group", - "cluster_group_description": "People are recognized across the photos of everyone in this group", + "cluster_group_description": "People are recognized across the photos of everyone in the group", + "cluster_group_invite_description": "You have been invited to join this cluster group.", "collapse": "Collapse", "collapse_all": "Collapse all", "color": "Color", diff --git a/web/src/lib/modals/ClusterGroupUsersModal.svelte b/web/src/lib/modals/ClusterGroupUsersModal.svelte index 8386e666c7..d461e64658 100644 --- a/web/src/lib/modals/ClusterGroupUsersModal.svelte +++ b/web/src/lib/modals/ClusterGroupUsersModal.svelte @@ -1,12 +1,12 @@ - + + onClose()} size="small"> {#await loadUsers()}
{:then _} -
+ {$t('cluster_group_invite_description')} + +
+ {$t('users')} +
+ +
{#each users as user (user.id)}
@@ -38,4 +45,11 @@
{/await} + + + + + + +