Merge pull request #509 from hildebrandttk/feat/unified-mailbox-account-scope
Feat/unified mailbox account scope Rework the sidebar "All accounts" into an account-bounded "Unified Mailbox" by default, with cross-account merging as an opt-in (admin-gated) sub-option. The standalone per-account "All Mail" virtual folder is folded into the unified All mail / Unread / Starred entries. Conflict resolution notes: - stores/settings-store.ts: both main and this branch independently added a per-account default-identity (#507) migration at different versions (main v6, branch v7). Merged migration is version 7 using the refactored migrateSettings function; the unified-mailbox rework is guarded at `version < 7` so users who stopped at main's interim v6 identity bump still receive it, while the #507 identity-map coercion stays at `version < 6` so their populated map is kept. - stores/auth-store.ts: kept main's applyPreferredIdentity (superset with the pre-#507 legacy migration). - stores/email-store.ts: removed the ALL_MAIL_MAILBOX_ID paths (folded into the unified views) while preserving main's plugin hooks (onSearchResults / onEmailsFetched); adopted advancedSearchCrossViewEmails for advanced cross-view search. - components/settings/layout-settings.tsx: kept main's faviconUnreadBadge setting alongside the new unifiedCrossAccount toggle. - integration/: union-merged the two independently-authored suites - branch suite is authoritative (matches new behavior) with main's shared-identity (#569) group infrastructure preserved. - components/email/email-composer.tsx: dropped a duplicate data-testid attribute introduced by the auto-merge.
This commit is contained in:
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Všechny archivy",
|
||||
"unified_junk": "Všechen spam",
|
||||
"all_accounts": "Všechny účty",
|
||||
"unified_mailbox": "Sjednocená schránka",
|
||||
"expand": "Rozbalit",
|
||||
"collapse": "Sbalit",
|
||||
"expand_tooltip": "Rozbalit",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Sjednocená schránka",
|
||||
"description": "Zobrazovat sloučené složky (Doručené, Odeslané atd.) ze všech připojených účtů",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Zahrnout skupinové schránky",
|
||||
"description": "Zahrnout do sjednoceného zobrazení také sdílené/skupinové schránky."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Alle arkiver",
|
||||
"unified_junk": "Alt spam",
|
||||
"all_accounts": "Alle konti",
|
||||
"unified_mailbox": "Samlet postkasse",
|
||||
"expand": "Udvid",
|
||||
"collapse": "Skjul",
|
||||
"expand_tooltip": "Udvid",
|
||||
@@ -927,14 +928,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Samlet postkasse",
|
||||
"description": "Vis samlede mapper (Indbakke, Sendt osv.) på tværs af alle tilknyttede konti",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Inkluder gruppepostkasser",
|
||||
"description": "Inkluder også delte/gruppepostkasser i den samlede visning."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Alle Archive",
|
||||
"unified_junk": "Alle Spam",
|
||||
"all_accounts": "Alle Konten",
|
||||
"unified_mailbox": "Gemeinsames Postfach",
|
||||
"expand": "Erweitern",
|
||||
"collapse": "Einklappen",
|
||||
"expand_tooltip": "Erweitern",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Gemeinsames Postfach",
|
||||
"description": "Kombinierte Ordner (Posteingang, Gesendet usw.) für alle verbundenen Konten anzeigen",
|
||||
"cross_account": {
|
||||
"label": "Über alle Konten",
|
||||
"description": "Den vereinheitlichten Posteingang über alle verbundenen Konten zusammenführen, statt beim aktiven Konto zu bleiben."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Gruppenpostfächer einbeziehen",
|
||||
"description": "Gemeinsam genutzte/Gruppenpostfächer ebenfalls in die vereinheitlichte Ansicht aufnehmen."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Gilt für {account}.",
|
||||
|
||||
+14
-11
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "All Archive",
|
||||
"unified_junk": "All Junk",
|
||||
"all_accounts": "All Accounts",
|
||||
"unified_mailbox": "Unified Mailbox",
|
||||
"expand": "Expand",
|
||||
"collapse": "Collapse",
|
||||
"expand_tooltip": "Expand",
|
||||
@@ -926,17 +927,19 @@
|
||||
},
|
||||
"unified_mailbox": {
|
||||
"label": "Unified Mailbox",
|
||||
"description": "Show combined folders (Inbox, Sent, etc.) across all connected accounts",
|
||||
"description": "Show combined folders (Inbox, Sent, etc.) for the active account and its shared folders.",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Include group inboxes",
|
||||
"description": "Also merge shared/group inboxes into the unified view."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"folders_label": "Folders in the unified lists",
|
||||
"folders_description": "Choose which of this account's folders are merged into the All mail / Unread / Starred lists.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
"no_folders": "No folders available."
|
||||
},
|
||||
@@ -963,16 +966,16 @@
|
||||
"back_to_standard": "Back to standard"
|
||||
},
|
||||
"cross_unread": {
|
||||
"label": "All accounts: Unread",
|
||||
"description": "Show an entry in the All accounts section listing unread mail across every account, spanning all folders except junk, sent, archive, trash and drafts."
|
||||
"label": "Unread",
|
||||
"description": "Show an Unread entry in the Unified Mailbox listing unread mail across the selected folders."
|
||||
},
|
||||
"cross_starred": {
|
||||
"label": "All accounts: Starred",
|
||||
"description": "Show an entry in the All accounts section listing starred mail across every account, spanning all folders except junk, sent, archive, trash and drafts."
|
||||
"label": "Starred",
|
||||
"description": "Show a Starred entry in the Unified Mailbox listing flagged/starred mail across the selected folders."
|
||||
},
|
||||
"cross_all": {
|
||||
"label": "All accounts: All mail",
|
||||
"description": "Show an entry in the All accounts section listing all mail across every account, spanning all folders except junk, sent, archive, trash and drafts."
|
||||
"label": "All mail",
|
||||
"description": "Show an All mail entry in the Unified Mailbox listing all mail across the selected folders."
|
||||
}
|
||||
},
|
||||
"keywords": {
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Todos los archivos",
|
||||
"unified_junk": "Todo el spam",
|
||||
"all_accounts": "Todas las cuentas",
|
||||
"unified_mailbox": "Buzón unificado",
|
||||
"expand": "Expandir",
|
||||
"collapse": "Contraer",
|
||||
"expand_tooltip": "Expandir",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Buzón unificado",
|
||||
"description": "Mostrar carpetas combinadas (Entrada, Enviados, etc.) de todas las cuentas conectadas",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Incluir buzones de grupo",
|
||||
"description": "Incluir también los buzones compartidos o de grupo en la vista unificada."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "همه بایگانیها",
|
||||
"unified_junk": "همه هرزنامهها",
|
||||
"all_accounts": "همه حسابها",
|
||||
"unified_mailbox": "صندوق پستی یکپارچه",
|
||||
"expand": "باز کردن",
|
||||
"collapse": "جمع کردن",
|
||||
"expand_tooltip": "باز کردن",
|
||||
@@ -927,14 +928,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "صندوق پستی یکپارچه",
|
||||
"description": "نمایش پوشههای ترکیبی در همه حسابهای متصل",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "شامل صندوق ورودی گروهها",
|
||||
"description": "صندوق ورودی گروههای اشتراکی را هم ادغام کن"
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "همه ایمیلها",
|
||||
"description": "نمایش گزینه \"همه ایمیلها\" بالای پوشهها",
|
||||
"folders_label": "پوشهها در همه ایمیلها",
|
||||
"folders_description": "انتخاب کنید کدام پوشهها ادغام شوند",
|
||||
"no_folders": "پوشهای موجود نیست",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Toutes les archives",
|
||||
"unified_junk": "Tous les indésirables",
|
||||
"all_accounts": "Tous les comptes",
|
||||
"unified_mailbox": "Boîte aux lettres unifiée",
|
||||
"expand": "Développer",
|
||||
"collapse": "Réduire",
|
||||
"expand_tooltip": "Développer",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Boîte aux lettres unifiée",
|
||||
"description": "Afficher les dossiers combinés (Réception, Envoyés, etc.) de tous les comptes connectés",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Inclure les boîtes de groupe",
|
||||
"description": "Inclure également les boîtes partagées ou de groupe dans la vue unifiée."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -63,6 +63,7 @@
|
||||
"jmap_server_auto_picked": "שרת שנבחר מדומיין הדוא״ל שלך."
|
||||
},
|
||||
"sidebar": {
|
||||
"unified_mailbox": "תיבת דואר מאוחדת",
|
||||
"close": "סגור",
|
||||
"compose": "כתיבה",
|
||||
"compose_hint": "כתיבה (c)",
|
||||
@@ -889,14 +890,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "תיבת דואר מאוחדת",
|
||||
"description": "הצג תיקיות משולבות (דואר נכנס, נשלח וכו׳) בכל החשבונות המחוברים",
|
||||
"cross_account": {
|
||||
"label": "בכל החשבונות",
|
||||
"description": "מזג את תיבת הדואר המאוחדת בכל החשבונות המחוברים במקום להישאר בחשבון הפעיל."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "כלול תיבות דואר קבוצתיות",
|
||||
"description": "גם מזג תיבות דואר משותפות/קבוצתיות לתצוגה המאוחדת."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "כל הדוא״ל",
|
||||
"description": "הצג ערך ״כל הדוא״ל״ מעל התיקיות שלך המחברות הודעות מכל תיקיות החשבון לרשימה אחת.",
|
||||
"folders_label": "תיקיות בכל הדוא״ל",
|
||||
"folders_description": "בחר אילו תיקיות מוזגות לתצוגת כל הדוא״ל.",
|
||||
"account_hint": "חל על {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Összes archívum",
|
||||
"unified_junk": "Összes spam",
|
||||
"all_accounts": "Minden fiók",
|
||||
"unified_mailbox": "Egységes postafiók",
|
||||
"expand": "Kibontás",
|
||||
"collapse": "Összecsukás",
|
||||
"expand_tooltip": "Kibontás",
|
||||
@@ -927,14 +928,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Egységes postafiók",
|
||||
"description": "Összevont mappák (Beérkező, Elküldött, stb.) megjelenítése az összes csatlakoztatott fiók között",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Csoportos postafiókok belefoglalása",
|
||||
"description": "Megosztott/csoportos postafiókok egyesítése az egységes nézetbe."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Tutti gli archivi",
|
||||
"unified_junk": "Tutto lo spam",
|
||||
"all_accounts": "Tutti gli account",
|
||||
"unified_mailbox": "Casella di posta unificata",
|
||||
"expand": "Espandi",
|
||||
"collapse": "Comprimi",
|
||||
"expand_tooltip": "Espandi",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Casella di posta unificata",
|
||||
"description": "Mostra le cartelle combinate (Posta in arrivo, Inviati, ecc.) di tutti gli account collegati",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Includi le caselle di gruppo",
|
||||
"description": "Includi anche le caselle condivise o di gruppo nella vista unificata."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "すべてのアーカイブ",
|
||||
"unified_junk": "すべての迷惑メール",
|
||||
"all_accounts": "すべてのアカウント",
|
||||
"unified_mailbox": "統合メールボックス",
|
||||
"expand": "展開",
|
||||
"collapse": "折りたたむ",
|
||||
"expand_tooltip": "展開",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "統合メールボックス",
|
||||
"description": "接続されたすべてのアカウントの統合フォルダ(受信トレイ、送信済みなど)を表示",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "グループ受信トレイを含める",
|
||||
"description": "共有/グループ受信トレイも統合ビューに含めます。"
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "모든 보관함",
|
||||
"unified_junk": "모든 스팸함",
|
||||
"all_accounts": "모든 계정",
|
||||
"unified_mailbox": "통합 메일함",
|
||||
"expand": "펼치기",
|
||||
"collapse": "접기",
|
||||
"expand_tooltip": "펼치기",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "통합 메일함",
|
||||
"description": "연결된 모든 계정의 통합 폴더(받은편지함, 보낸편지함 등)를 표시합니다",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "그룹 받은편지함 포함",
|
||||
"description": "공유/그룹 받은편지함도 통합 보기에 포함합니다."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Visi arhīvi",
|
||||
"unified_junk": "Viss mēstules",
|
||||
"all_accounts": "Visi konti",
|
||||
"unified_mailbox": "Apvienotā pastkaste",
|
||||
"expand": "Izvērst",
|
||||
"collapse": "Sairt",
|
||||
"expand_tooltip": "Izvērst",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Apvienotā pastkaste",
|
||||
"description": "Rādīt apvienotās mapes (Iesūtne, Nosūtītie u.c.) no visiem pievienotajiem kontiem",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Iekļaut grupas pastkastes",
|
||||
"description": "Iekļaut apvienotajā skatā arī koplietotās/grupas pastkastes."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Alle archieven",
|
||||
"unified_junk": "Alle spam",
|
||||
"all_accounts": "Alle accounts",
|
||||
"unified_mailbox": "Gecombineerd postvak",
|
||||
"expand": "Uitklappen",
|
||||
"collapse": "Inklappen",
|
||||
"expand_tooltip": "Uitklappen",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Gecombineerd postvak",
|
||||
"description": "Gecombineerde mappen (Postvak IN, Verzonden, enz.) van alle verbonden accounts weergeven",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Groepspostvakken meenemen",
|
||||
"description": "Gedeelde/groepspostvakken ook in de gecombineerde weergave opnemen."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Wszystkie archiwa",
|
||||
"unified_junk": "Wszystkie spam",
|
||||
"all_accounts": "Wszystkie konta",
|
||||
"unified_mailbox": "Wspólna skrzynka",
|
||||
"expand": "Rozwiń",
|
||||
"collapse": "Zwiń",
|
||||
"expand_tooltip": "Rozwiń",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Wspólna skrzynka",
|
||||
"description": "Wyświetlaj połączone foldery (Odebrane, Wysłane itp.) ze wszystkich połączonych kont",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Uwzględnij skrzynki grupowe",
|
||||
"description": "Dodaj również udostępnione/grupowe skrzynki do widoku wspólnego."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Todos os arquivos",
|
||||
"unified_junk": "Todo o spam",
|
||||
"all_accounts": "Todas as contas",
|
||||
"unified_mailbox": "Caixa de correio unificada",
|
||||
"expand": "Expandir",
|
||||
"collapse": "Recolher",
|
||||
"expand_tooltip": "Expandir",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Caixa de correio unificada",
|
||||
"description": "Mostrar pastas combinadas (Entrada, Enviados, etc.) de todas as contas conectadas",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Incluir caixas de grupo",
|
||||
"description": "Incluir também as caixas partilhadas ou de grupo na vista unificada."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Arhivă completă",
|
||||
"unified_junk": "Toate mesajele nedorite",
|
||||
"all_accounts": "Toate conturile",
|
||||
"unified_mailbox": "Căsuță poștală unificată",
|
||||
"expand": "Extindeți",
|
||||
"collapse": "Reduceți",
|
||||
"expand_tooltip": "Extindeți",
|
||||
@@ -927,14 +928,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Căsuță poștală unificată",
|
||||
"description": "Afișați folderele combinate (Mesaje primite, Mesaje trimise etc.) pentru toate conturile conectate",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Includeți căsuțele de e-mail de grup",
|
||||
"description": "De asemenea, integrați căsuțele de e-mail partajate/de grup în vizualizarea unificată."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "Toate mesajele",
|
||||
"description": "Afișați o intrare „Toate mesajele” deasupra folderelor, care reunește mesajele din toate folderele acestui cont într-o singură listă.",
|
||||
"folders_label": "Dosare în „Toate mesajele”",
|
||||
"folders_description": "Alegeți ce dosare să fie incluse în vizualizarea „Toate mesajele”.",
|
||||
"account_hint": "Se aplică pentru {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Все архивы",
|
||||
"unified_junk": "Весь спам",
|
||||
"all_accounts": "Все аккаунты",
|
||||
"unified_mailbox": "Общий почтовый ящик",
|
||||
"expand": "Развернуть",
|
||||
"collapse": "Свернуть",
|
||||
"expand_tooltip": "Развернуть",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Общий почтовый ящик",
|
||||
"description": "Показывать объединённые папки (Входящие, Отправленные и др.) для всех подключённых аккаунтов",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Включать групповые ящики",
|
||||
"description": "Также объединять общие/групповые ящики в едином представлении."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -64,6 +64,7 @@
|
||||
}
|
||||
},
|
||||
"sidebar": {
|
||||
"unified_mailbox": "Zjednotená schránka",
|
||||
"close": "Zavrieť",
|
||||
"compose": "Napísať",
|
||||
"compose_hint": "Napísať (c)",
|
||||
@@ -927,14 +928,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Zjednotená schránka",
|
||||
"description": "Zobrazovať zlúčené priečinky (Doručené, Odoslané atd.) zo všetkých pripojených účtov",
|
||||
"cross_account": {
|
||||
"label": "Naprieč všetkými účtami",
|
||||
"description": "Zlúčiť zjednotenú schránku naprieč všetkými pripojenými účtami namiesto zotrvania v aktívnom účte."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Zahrnúť skupinové schránky",
|
||||
"description": "Zahrnúť do zjednoteného zobrazenia aj zdieľané/skupinové schránky."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "Všetka pošta",
|
||||
"description": "Zobraziť položku \"Všetka pošta\" nad priečinkami.",
|
||||
"folders_label": "Priečinky vo Všetkej pošte",
|
||||
"folders_description": "Vyberte, ktoré priečinky sa spoja do zobrazenia Všetka pošta.",
|
||||
"account_hint": "Platí pre {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Tüm Arşiv",
|
||||
"unified_junk": "Tüm Önemsiz",
|
||||
"all_accounts": "Tüm Hesaplar",
|
||||
"unified_mailbox": "Birleşik Posta Kutusu",
|
||||
"expand": "Genişlet",
|
||||
"collapse": "Daralt",
|
||||
"expand_tooltip": "Genişlet",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Birleşik Posta Kutusu",
|
||||
"description": "Bağlı tüm hesaplardaki birleşik klasörleri (Gelen Kutusu, Gönderilenler vb.) göster",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Grup gelen kutularını dahil et",
|
||||
"description": "Paylaşılan/grup gelen kutularını da birleşik görünüme dahil et."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "Усі архіви",
|
||||
"unified_junk": "Весь спам",
|
||||
"all_accounts": "Усі облікові записи",
|
||||
"unified_mailbox": "Спільна поштова скринька",
|
||||
"expand": "Розгорнути",
|
||||
"collapse": "Згорнути",
|
||||
"expand_tooltip": "Розгорнути",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "Спільна поштова скринька",
|
||||
"description": "Показувати об'єднані папки (Вхідні, Надіслані тощо) для всіх підключених облікових записів",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "Включати групові скриньки",
|
||||
"description": "Також об'єднувати спільні/групові скриньки у спільному перегляді."
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
@@ -114,6 +114,7 @@
|
||||
"unified_archive": "所有归档",
|
||||
"unified_junk": "所有垃圾邮件",
|
||||
"all_accounts": "所有账户",
|
||||
"unified_mailbox": "统一邮箱",
|
||||
"expand": "展开",
|
||||
"collapse": "收起",
|
||||
"expand_tooltip": "展开",
|
||||
@@ -924,14 +925,16 @@
|
||||
"unified_mailbox": {
|
||||
"label": "统一邮箱",
|
||||
"description": "显示所有已连接账户的合并文件夹(收件箱、已发送等)",
|
||||
"cross_account": {
|
||||
"label": "Across all accounts",
|
||||
"description": "Merge the unified mailbox across every connected account instead of staying within the active account."
|
||||
},
|
||||
"include_group": {
|
||||
"label": "包含群组收件箱",
|
||||
"description": "在统一视图中也合并共享/群组收件箱。"
|
||||
}
|
||||
},
|
||||
"all_mail": {
|
||||
"label": "All Mail",
|
||||
"description": "Show an \"All Mail\" entry above your folders that merges messages from across this account's folders into one list.",
|
||||
"folders_label": "Folders in All Mail",
|
||||
"folders_description": "Choose which folders are merged into the All Mail view.",
|
||||
"account_hint": "Applies to {account}.",
|
||||
|
||||
Reference in New Issue
Block a user