fix: add useTranslations for "selected emails" and "cancel" on email list batch operations

This commit is contained in:
Luis Felipe Marzagao
2026-05-01 20:37:51 +02:00
committed by Linus Rath
parent 210150a02e
commit 8c74e01a40
3 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -275,7 +275,7 @@ export function EmailList({
<div className="px-4 py-2 border-b bg-accent/30 border-border flex items-center justify-between"> <div className="px-4 py-2 border-b bg-accent/30 border-border flex items-center justify-between">
<div className="flex items-center gap-2 animate-in fade-in slide-in-from-left-3 duration-300"> <div className="flex items-center gap-2 animate-in fade-in slide-in-from-left-3 duration-300">
<span className="text-sm font-medium text-foreground"> <span className="text-sm font-medium text-foreground">
{selectedEmailIds.size} {selectedEmailIds.size === 1 ? 'email' : 'emails'} selected {t('batch_actions.selected_messages', { count: selectedEmailIds.size })}
</span> </span>
</div> </div>
<div className="flex items-center gap-1 animate-in fade-in slide-in-from-right-3 duration-300"> <div className="flex items-center gap-1 animate-in fade-in slide-in-from-right-3 duration-300">
@@ -330,7 +330,7 @@ export function EmailList({
disabled={isProcessing} disabled={isProcessing}
className="text-muted-foreground hover:text-foreground transition-colors disabled:opacity-50" className="text-muted-foreground hover:text-foreground transition-colors disabled:opacity-50"
> >
Cancel {t('batch_actions.clear_selection')}
</Button> </Button>
</div> </div>
</div> </div>
+1
View File
@@ -184,6 +184,7 @@
"batch_actions": { "batch_actions": {
"select": "Select emails", "select": "Select emails",
"select_all": "Select all", "select_all": "Select all",
"selected_messages": "{count, plural, one {1 email} other {# emails}} selected",
"mark_read": "Mark as read", "mark_read": "Mark as read",
"mark_unread": "Mark as unread", "mark_unread": "Mark as unread",
"delete": "Delete", "delete": "Delete",
+1
View File
@@ -184,6 +184,7 @@
"batch_actions": { "batch_actions": {
"select": "Sélectionner les e-mails", "select": "Sélectionner les e-mails",
"select_all": "Tout sélectionner", "select_all": "Tout sélectionner",
"selected_messages": "{count, plural, one {1 e-mail sélectionné} other {# e-mails sélectionnés}}",
"mark_read": "Marquer comme lu", "mark_read": "Marquer comme lu",
"mark_unread": "Marquer comme non lu", "mark_unread": "Marquer comme non lu",
"delete": "Supprimer", "delete": "Supprimer",