diff --git a/web/src/features/accounts/components/action-dialog.tsx b/web/src/features/accounts/components/action-dialog.tsx index a1f9a59..5d98653 100644 --- a/web/src/features/accounts/components/action-dialog.tsx +++ b/web/src/features/accounts/components/action-dialog.tsx @@ -358,7 +358,7 @@ export function AccountActionDialog({ currentRow, open, onOpenChange }: Props) { onOpenChange(state); }} > - +
{isEdit ? t('accounts.updateAccount') : t('accounts.addAccount')} diff --git a/web/src/features/accounts/components/running-state-dialog.tsx b/web/src/features/accounts/components/running-state-dialog.tsx index 16b6f36..ae021a5 100644 --- a/web/src/features/accounts/components/running-state-dialog.tsx +++ b/web/src/features/accounts/components/running-state-dialog.tsx @@ -85,7 +85,7 @@ export function RunningStateDialog({ currentRow, open, onOpenChange }: Props) { {currentRow.email} - + {isLoading && (
diff --git a/web/src/features/mailbox/components/mail-list.tsx b/web/src/features/mailbox/components/mail-list.tsx index fd502cb..d61d9d7 100644 --- a/web/src/features/mailbox/components/mail-list.tsx +++ b/web/src/features/mailbox/components/mail-list.tsx @@ -111,7 +111,7 @@ export function MailList({ /> {selected.size > 0 - ? `${selected.size} ${t('common.selected')}` + ? `${t('search.bulkActions.selected', { count: selected.size })}` : t('common.selectAll')}
diff --git a/web/src/features/mailbox/components/mail.tsx b/web/src/features/mailbox/components/mail.tsx index 7af35ea..1bd55f4 100644 --- a/web/src/features/mailbox/components/mail.tsx +++ b/web/src/features/mailbox/components/mail.tsx @@ -340,7 +340,7 @@ export function Mail({ )} > - +
{ localStorage.setItem('mailbox:selectedAccountId', `${accountId}`); @@ -389,7 +389,7 @@ export function Mail({
- + { diff --git a/web/src/features/mailbox/index.tsx b/web/src/features/mailbox/index.tsx index 8c10eb4..7d4ee75 100644 --- a/web/src/features/mailbox/index.tsx +++ b/web/src/features/mailbox/index.tsx @@ -32,7 +32,6 @@ export default function Mailboxes() { return ( <> - {/* ===== Top Heading ===== */}
} - {total > 0 && + {total > 0 && {totalSelected > 0 - ? `${totalSelected} ${t('common.selected')}` + ? `${t('search.bulkActions.selected', { count: totalSelected })}` : t('common.selectAll')} diff --git a/web/src/features/search/tag-facet.tsx b/web/src/features/search/tag-facet.tsx index bac5b67..e663959 100644 --- a/web/src/features/search/tag-facet.tsx +++ b/web/src/features/search/tag-facet.tsx @@ -83,7 +83,7 @@ export function EnvelopeTags({ selectedTags, onTagToggle }: EnvelopeTagsProps) { {sortedTags.length === 0 ? (

{t('mail.noTagsYet')}

) : ( - + {sortedTags.map(({ tag: facet, count }) => { const checked = selectedTags.includes(facet); const id = `tag-${facet}`; diff --git a/web/src/features/settings/api-tokens/index.tsx b/web/src/features/settings/api-tokens/index.tsx index 44c71c1..d75f1b1 100644 --- a/web/src/features/settings/api-tokens/index.tsx +++ b/web/src/features/settings/api-tokens/index.tsx @@ -91,7 +91,7 @@ export function APITokens() { - + diff --git a/web/src/features/settings/profile/index.tsx b/web/src/features/settings/profile/index.tsx index 024fe47..d34b205 100644 --- a/web/src/features/settings/profile/index.tsx +++ b/web/src/features/settings/profile/index.tsx @@ -44,7 +44,7 @@ export function Profile() { } return ( -
+
) diff --git a/web/src/features/settings/profile/permissions-dialog.tsx b/web/src/features/settings/profile/permissions-dialog.tsx index 10895de..ffa8dfe 100644 --- a/web/src/features/settings/profile/permissions-dialog.tsx +++ b/web/src/features/settings/profile/permissions-dialog.tsx @@ -132,7 +132,7 @@ export function PermissionsDialog({ return ( - +
{title} diff --git a/web/src/features/settings/profile/profile-form.tsx b/web/src/features/settings/profile/profile-form.tsx index ae0117d..7260406 100644 --- a/web/src/features/settings/profile/profile-form.tsx +++ b/web/src/features/settings/profile/profile-form.tsx @@ -273,7 +273,7 @@ export function UserProfileForm({ user }: UserProfileFormProps) { })} - +
{accessibleAccountIds.map((accountId) => { const email = getEmailById(accountId)