feat: expand internationalization and add identity management
This release significantly expands internationalization support and adds comprehensive identity management features. Internationalization (i18n): - Add 5 new languages: Spanish, Italian, German, Dutch, Portuguese - Expand from 3 to 8 total supported languages - Redesign language switcher for better scalability (dropdown UI) - Complete translations for all features across all languages Identity Management: - Multiple sender identities with per-identity signatures - Sub-addressing support (user+tag@domain.com) - Context-aware tag suggestions for sub-addresses - Identity badges in email viewer and list - Full CRUD operations for managing identities Newsletter Management: - RFC 2369 List-Unsubscribe support (one-click unsubscribe) - HTTP and mailto unsubscribe methods - Security validation prevents XSS attacks - Two-step confirmation with persistent dismissal Security & Accessibility: - Dark mode email readability (intelligent color transformation) - WCAG 2.0 Level AA color contrast compliance - Comprehensive XSS prevention with validation utilities - Unit test coverage for security-critical code (57 validation tests) Testing: - Add unit tests for validation utilities - Add unit tests for email sanitization - Add unit tests for color transformation - Full test coverage for XSS attack vectors
This commit is contained in:
@@ -0,0 +1,746 @@
|
||||
{
|
||||
"login": {
|
||||
"title": "Webmail",
|
||||
"username_label": "E-Mail",
|
||||
"username_placeholder": "benutzer@beispiel.de",
|
||||
"password_label": "Passwort",
|
||||
"password_placeholder": "Geben Sie Ihr Passwort ein",
|
||||
"sign_in": "Anmelden",
|
||||
"signing_in": "Wird angemeldet...",
|
||||
"loading": "Lädt...",
|
||||
"error": {
|
||||
"invalid_credentials": "Ungültige E-Mail-Adresse oder Passwort",
|
||||
"connection_failed": "Verbindung zum Server fehlgeschlagen",
|
||||
"generic": "Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut."
|
||||
},
|
||||
"config_error": {
|
||||
"title": "Konfigurationsfehler",
|
||||
"fetch_failed": "Die Anwendungskonfiguration kann nicht geladen werden. Bitte versuchen Sie es später erneut.",
|
||||
"server_not_configured": "Der E-Mail-Server wurde nicht konfiguriert. Bitte kontaktieren Sie Ihren Administrator."
|
||||
},
|
||||
"remove_from_history": "Aus Verlauf entfernen"
|
||||
},
|
||||
"sidebar": {
|
||||
"close": "Schließen",
|
||||
"compose": "Verfassen",
|
||||
"search_placeholder": "E-Mails durchsuchen...",
|
||||
"storage": "Speicher",
|
||||
"sign_out": "Abmelden",
|
||||
"settings": "Einstellungen",
|
||||
"loading_mailboxes": "Postfächer werden geladen...",
|
||||
"push_connected": "Echtzeit-Updates aktiv",
|
||||
"push_disconnected": "Echtzeit-Updates inaktiv",
|
||||
"theme": {
|
||||
"light": "Heller Modus",
|
||||
"dark": "Dunkler Modus",
|
||||
"system": "Systemdesign"
|
||||
},
|
||||
"language": {
|
||||
"title": "Sprache"
|
||||
},
|
||||
"mailboxes": {
|
||||
"inbox": "Posteingang",
|
||||
"sent": "Gesendet",
|
||||
"drafts": "Entwürfe",
|
||||
"trash": "Papierkorb",
|
||||
"archive": "Archiv",
|
||||
"starred": "Mit Stern",
|
||||
"all_mail": "Alle E-Mails",
|
||||
"spam": "Spam",
|
||||
"important": "Wichtig"
|
||||
},
|
||||
"expand": "Erweitern",
|
||||
"collapse": "Einklappen",
|
||||
"expand_tooltip": "Erweitern",
|
||||
"collapse_tooltip": "Einklappen",
|
||||
"mobile": {
|
||||
"search": "Suchen",
|
||||
"compose": "Verfassen",
|
||||
"go_back": "Zurück"
|
||||
},
|
||||
"clear_search": "Suche löschen"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Keine E-Mails",
|
||||
"no_emails_description": "Beginnen Sie, indem Sie eine neue E-Mail verfassen",
|
||||
"loading": "E-Mails werden geladen...",
|
||||
"unread": "ungelesen",
|
||||
"to_me": "An mich",
|
||||
"to_recipients": "An {{count}} Empfänger",
|
||||
"and_others": "und {{count}} weitere",
|
||||
"draft": "Entwurf",
|
||||
"starred": "Mit Stern",
|
||||
"conversations_count": "{count} von {total} Unterhaltungen",
|
||||
"conversations_count_plus": "{count}+ Unterhaltungen",
|
||||
"conversations_count_simple": "{count} Unterhaltungen",
|
||||
"no_conversations": "Keine Unterhaltungen",
|
||||
"loading_more": "Weitere E-Mails werden geladen...",
|
||||
"no_more_emails": "Keine weiteren E-Mails zum Laden",
|
||||
"batch_actions": {
|
||||
"mark_read": "Als gelesen markieren",
|
||||
"mark_unread": "Als ungelesen markieren",
|
||||
"delete": "Löschen",
|
||||
"clear_selection": "Auswahl aufheben"
|
||||
}
|
||||
},
|
||||
"email_viewer": {
|
||||
"no_email_selected": "Keine E-Mail ausgewählt",
|
||||
"no_email_description": "Wählen Sie eine E-Mail aus der Liste aus, um sie hier anzuzeigen",
|
||||
"no_conversation_selected": "Keine Unterhaltung ausgewählt",
|
||||
"no_conversation_description": "Wählen Sie eine Unterhaltung aus der Liste aus, um sie hier zu lesen",
|
||||
"no_subject": "(Kein Betreff)",
|
||||
"loading_email": "E-Mail wird geladen...",
|
||||
"loading": "Lädt...",
|
||||
"reply": "Antworten",
|
||||
"reply_all": "Allen antworten",
|
||||
"forward": "Weiterleiten",
|
||||
"delete": "Löschen",
|
||||
"archive": "Archivieren",
|
||||
"star": "Stern hinzufügen",
|
||||
"unstar": "Stern entfernen",
|
||||
"mark_unread": "Als ungelesen markieren",
|
||||
"mark_read": "Als gelesen markieren",
|
||||
"print": "Drucken",
|
||||
"view_source": "Quelltext anzeigen",
|
||||
"email_source": "E-Mail-Quelltext",
|
||||
"copy_source": "In Zwischenablage kopieren",
|
||||
"source_copied": "Quelltext in Zwischenablage kopiert",
|
||||
"attachments": "Anhänge",
|
||||
"important": "Wichtig",
|
||||
"download": "Herunterladen",
|
||||
"from": "Von",
|
||||
"to": "An",
|
||||
"cc": "CC",
|
||||
"bcc": "BCC",
|
||||
"date": "Datum",
|
||||
"subject": "Betreff",
|
||||
"show_details": "Details anzeigen",
|
||||
"hide_details": "Details ausblenden",
|
||||
"external_content_warning": "Bilder und externe Inhalte wurden blockiert",
|
||||
"load_external_content": "Bilder laden",
|
||||
"trust_sender": "Diesem Absender immer vertrauen",
|
||||
"back_to_list": "Zurück zur Liste",
|
||||
"message_details": "Nachrichtendetails",
|
||||
"more_reply_options": "Weitere Antwortoptionen",
|
||||
"set_color": "Farbe festlegen",
|
||||
"more_actions": "Weitere Aktionen",
|
||||
"remove_color": "Farbe entfernen",
|
||||
"more_count": "+{count} weitere",
|
||||
"characters_count": "{count} Zeichen",
|
||||
"quick_reply_placeholder": "Eine kurze Antwort schreiben...",
|
||||
"more_options": "Weitere Optionen",
|
||||
"sending": "Wird gesendet...",
|
||||
"security_authentication": "Sicherheit & Authentifizierung",
|
||||
"technical_details": "Technische Details",
|
||||
"message_id_label": "Nachrichten-ID:",
|
||||
"reply_to_label": "Antwort an:",
|
||||
"delivery_time_label": "Zustellzeit:",
|
||||
"conversation_part_label": "Teil der Unterhaltung:",
|
||||
"previous_messages": "{count} vorherige Nachricht",
|
||||
"previous_messages_plural": "{count} vorherige Nachrichten",
|
||||
"time": {
|
||||
"day": "Tag",
|
||||
"days": "Tage",
|
||||
"hour": "Stunde",
|
||||
"hours": "Stunden",
|
||||
"minute": "Minute",
|
||||
"minutes": "Minuten"
|
||||
},
|
||||
"unknown_sender": "Unbekannt",
|
||||
"recipient_me": "ich",
|
||||
"recipient_and_others": "{name} und {count} weitere",
|
||||
"recipient_to_prefix": "An:",
|
||||
"authentication": {
|
||||
"title": "Authentifizierung",
|
||||
"status": {
|
||||
"verified": "Verifiziert",
|
||||
"warning": "Warnung",
|
||||
"none": "Nicht authentifiziert"
|
||||
},
|
||||
"spf": {
|
||||
"pass": "SPF Bestanden",
|
||||
"fail": "SPF Fehlgeschlagen",
|
||||
"none": "Kein SPF"
|
||||
},
|
||||
"dkim": {
|
||||
"pass": "DKIM Gültig",
|
||||
"fail": "DKIM Ungültig",
|
||||
"none": "Kein DKIM"
|
||||
},
|
||||
"dmarc": {
|
||||
"pass": "DMARC Bestanden",
|
||||
"fail": "DMARC Fehlgeschlagen",
|
||||
"none": "Kein DMARC"
|
||||
},
|
||||
"spam_score": "Spam-Bewertung"
|
||||
},
|
||||
"headers": {
|
||||
"routing": "Routing",
|
||||
"received": "Empfangen",
|
||||
"message_id": "Nachrichten-ID",
|
||||
"list_info": "Listeninformationen"
|
||||
},
|
||||
"color_tag": {
|
||||
"title": "Farb-Tag",
|
||||
"red": "Rot",
|
||||
"orange": "Orange",
|
||||
"yellow": "Gelb",
|
||||
"green": "Grün",
|
||||
"blue": "Blau",
|
||||
"purple": "Violett",
|
||||
"pink": "Rosa",
|
||||
"none": "Keine"
|
||||
},
|
||||
"tooltips": {
|
||||
"reply": "Antworten",
|
||||
"archive": "Archivieren",
|
||||
"delete": "Löschen"
|
||||
},
|
||||
"spam": {
|
||||
"button_title": "Spam melden",
|
||||
"not_spam_title": "Als legitim markieren",
|
||||
"toast_success": "In Spam verschoben",
|
||||
"toast_batch": "{count} E-Mails in Spam verschoben",
|
||||
"toast_undo": "Rückgängig",
|
||||
"toast_not_spam_success": "In Posteingang verschoben",
|
||||
"toast_not_spam_batch": "{count} E-Mails in Posteingang verschoben",
|
||||
"error": "Spam-Meldung fehlgeschlagen",
|
||||
"error_not_spam": "E-Mail-Wiederherstellung fehlgeschlagen"
|
||||
},
|
||||
"unsubscribe_banner": {
|
||||
"label": "Newsletter",
|
||||
"button": "Abmelden",
|
||||
"confirm_title": "Von diesem Absender abmelden?",
|
||||
"confirm_button": "Bestätigen",
|
||||
"cancel": "Abbrechen",
|
||||
"success_http": "Abmeldeseite in neuem Tab geöffnet",
|
||||
"success_mailto": "Abmeldeanfrage an Ihr E-Mail-Programm gesendet",
|
||||
"error": "Abmeldung nicht möglich",
|
||||
"dismiss": "Schließen"
|
||||
}
|
||||
},
|
||||
"email_composer": {
|
||||
"new_message": "Neue Nachricht",
|
||||
"reply": "Antworten",
|
||||
"reply_all": "Allen antworten",
|
||||
"forward": "Weiterleiten",
|
||||
"reply_to": "Antworten",
|
||||
"reply_all_to": "Allen antworten",
|
||||
"forward_message": "Weiterleiten",
|
||||
"from": "Von",
|
||||
"to": "An",
|
||||
"cc": "CC",
|
||||
"bcc": "BCC",
|
||||
"subject": "Betreff",
|
||||
"body_placeholder": "Schreiben Sie Ihre Nachricht...",
|
||||
"send": "Senden",
|
||||
"cancel": "Abbrechen",
|
||||
"attach": "Anhängen",
|
||||
"discard": "Verwerfen",
|
||||
"discard_draft_confirm": "Sie haben ungespeicherte Änderungen. Möchten Sie diesen Entwurf verwerfen?",
|
||||
"saving": "Wird gespeichert...",
|
||||
"draft_saved": "Entwurf gespeichert",
|
||||
"save_failed": "Speichern fehlgeschlagen",
|
||||
"to_placeholder": "E-Mail-Adressen der Empfänger (durch Komma getrennt)",
|
||||
"cc_placeholder": "CC-Empfänger (durch Komma getrennt)",
|
||||
"bcc_placeholder": "BCC-Empfänger (durch Komma getrennt)",
|
||||
"subject_placeholder": "Betreff",
|
||||
"cc_label": "Cc:",
|
||||
"bcc_label": "Bcc:",
|
||||
"subject_label": "Betreff:",
|
||||
"file_size_kb": "KB",
|
||||
"prefix": {
|
||||
"forward": "Fwd:",
|
||||
"reply": "Re:"
|
||||
},
|
||||
"no_subject": "(Kein Betreff)",
|
||||
"unknown_sender": "Unbekannt",
|
||||
"quote": {
|
||||
"reply_header": "Am {{date}} schrieb {{sender}}:",
|
||||
"forward_header": "---------- Weitergeleitete Nachricht ----------",
|
||||
"from": "Von: {{sender}}",
|
||||
"date": "Datum: {{date}}",
|
||||
"subject": "Betreff: {{subject}}",
|
||||
"to": "An: {{recipients}}"
|
||||
},
|
||||
"remove_sub_address": "Sub-Adresse entfernen"
|
||||
},
|
||||
"common": {
|
||||
"loading": "Lädt...",
|
||||
"error": "Fehler",
|
||||
"success": "Erfolg",
|
||||
"cancel": "Abbrechen",
|
||||
"save": "Speichern",
|
||||
"delete": "Löschen",
|
||||
"edit": "Bearbeiten",
|
||||
"close": "Schließen",
|
||||
"search": "Suchen",
|
||||
"refresh": "Aktualisieren",
|
||||
"settings": "Einstellungen",
|
||||
"help": "Hilfe",
|
||||
"logout": "Abmelden",
|
||||
"yes": "Ja",
|
||||
"no": "Nein",
|
||||
"unknown": "Unbekannt",
|
||||
"app_title": "Webmail"
|
||||
},
|
||||
"notifications": {
|
||||
"email_sent": "E-Mail erfolgreich gesendet",
|
||||
"email_deleted": "E-Mail gelöscht",
|
||||
"email_archived": "E-Mail archiviert",
|
||||
"email_starred": "Stern hinzugefügt",
|
||||
"email_unstarred": "Stern entfernt",
|
||||
"email_marked_read": "E-Mail als gelesen markiert",
|
||||
"email_marked_unread": "E-Mail als ungelesen markiert",
|
||||
"copied_to_clipboard": "In Zwischenablage kopiert",
|
||||
"source_copied": "Quelltext in Zwischenablage kopiert",
|
||||
"error_sending": "E-Mail senden fehlgeschlagen",
|
||||
"error_deleting": "E-Mail löschen fehlgeschlagen",
|
||||
"error_loading": "E-Mails laden fehlgeschlagen",
|
||||
"new_email": "Neue E-Mail",
|
||||
"new_email_from": "Von {sender}",
|
||||
"click_to_view": "Zum Anzeigen klicken",
|
||||
"email_moved": "E-Mail verschoben",
|
||||
"emails_moved": "{count} E-Mails verschoben",
|
||||
"moved_to_mailbox": "Nach {mailbox} verschoben",
|
||||
"move_failed": "Verschieben fehlgeschlagen",
|
||||
"move_error": "E-Mails konnten nicht in den ausgewählten Ordner verschoben werden",
|
||||
"identity_created": "Identität erfolgreich erstellt",
|
||||
"identity_updated": "Identität erfolgreich aktualisiert",
|
||||
"identity_deleted": "Identität gelöscht",
|
||||
"identity_create_failed": "Identität erstellen fehlgeschlagen: {{error}}",
|
||||
"identity_update_failed": "Identität aktualisieren fehlgeschlagen: {{error}}",
|
||||
"identity_delete_failed": "Identität löschen fehlgeschlagen: {{error}}",
|
||||
"identity_unauthorized": "Sie sind nicht autorisiert, von dieser E-Mail-Adresse zu senden",
|
||||
"identity_not_found": "Identität nicht gefunden"
|
||||
},
|
||||
"date": {
|
||||
"today": "Heute",
|
||||
"yesterday": "Gestern",
|
||||
"this_week": "Diese Woche",
|
||||
"last_week": "Letzte Woche",
|
||||
"this_month": "Dieser Monat",
|
||||
"older": "Älter",
|
||||
"just_now": "Gerade eben",
|
||||
"minutes_ago": "Vor {{count}} Minute",
|
||||
"minutes_ago_plural": "Vor {{count}} Minuten",
|
||||
"hours_ago": "Vor {{count}} Stunde",
|
||||
"hours_ago_plural": "Vor {{count}} Stunden",
|
||||
"days_ago": "Vor {{count}} Tag",
|
||||
"days_ago_plural": "Vor {{count}} Tagen"
|
||||
},
|
||||
"language": {
|
||||
"title": "Sprache",
|
||||
"english": "English",
|
||||
"french": "Français",
|
||||
"japanese": "日本語",
|
||||
"spanish": "Español",
|
||||
"italian": "Italiano",
|
||||
"german": "Deutsch",
|
||||
"dutch": "Nederlands",
|
||||
"portuguese": "Português",
|
||||
"select_language": "Sprache auswählen",
|
||||
"switch_to_english": "Zu Englisch wechseln",
|
||||
"switch_to_french": "Zu Französisch wechseln",
|
||||
"switch_to_japanese": "Zu Japanisch wechseln",
|
||||
"switch_to_spanish": "Zu Spanisch wechseln",
|
||||
"switch_to_italian": "Zu Italienisch wechseln",
|
||||
"switch_to_german": "Zu Deutsch wechseln",
|
||||
"switch_to_dutch": "Zu Niederländisch wechseln",
|
||||
"switch_to_portuguese": "Zu Portugiesisch wechseln",
|
||||
"switching": "Sprache wird gewechselt..."
|
||||
},
|
||||
"settings": {
|
||||
"title": "Einstellungen",
|
||||
"back_to_mail": "Zurück zu E-Mails",
|
||||
"save_success": "Einstellungen erfolgreich gespeichert",
|
||||
"import_success": "Einstellungen erfolgreich importiert",
|
||||
"import_error": "Import der Einstellungen fehlgeschlagen",
|
||||
"reset_confirm": "Sind Sie sicher, dass Sie alle Einstellungen auf die Standardwerte zurücksetzen möchten?",
|
||||
"tabs": {
|
||||
"appearance": "Darstellung",
|
||||
"language": "Sprache & Region",
|
||||
"email": "E-Mail-Verhalten",
|
||||
"composer": "Editor",
|
||||
"privacy": "Datenschutz & Sicherheit",
|
||||
"account": "Konto",
|
||||
"identities": "Identitäten",
|
||||
"advanced": "Erweitert"
|
||||
},
|
||||
"appearance": {
|
||||
"title": "Darstellung",
|
||||
"description": "Passen Sie das Aussehen Ihres Webmails an",
|
||||
"theme": {
|
||||
"label": "Design",
|
||||
"description": "Wählen Sie Ihr bevorzugtes Farbschema",
|
||||
"light": "Hell",
|
||||
"dark": "Dunkel",
|
||||
"system": "System"
|
||||
},
|
||||
"language": {
|
||||
"label": "Sprache",
|
||||
"description": "Wählen Sie Ihre bevorzugte Sprache"
|
||||
},
|
||||
"font_size": {
|
||||
"label": "Schriftgröße",
|
||||
"description": "Passen Sie die Textgröße für bessere Lesbarkeit an",
|
||||
"small": "Klein",
|
||||
"medium": "Mittel",
|
||||
"large": "Groß"
|
||||
},
|
||||
"list_density": {
|
||||
"label": "Listendichte",
|
||||
"description": "Abstand in E-Mail-Listen steuern",
|
||||
"compact": "Kompakt",
|
||||
"regular": "Normal",
|
||||
"comfortable": "Komfortabel"
|
||||
},
|
||||
"animations": {
|
||||
"label": "Animationen aktivieren",
|
||||
"description": "Weiche Übergänge und Effekte anzeigen"
|
||||
}
|
||||
},
|
||||
"language_region": {
|
||||
"title": "Sprache & Region",
|
||||
"description": "Konfigurieren Sie Sprach- und Regionaleinstellungen",
|
||||
"language": {
|
||||
"label": "Sprache",
|
||||
"description": "Wählen Sie Ihre bevorzugte Sprache",
|
||||
"english": "English",
|
||||
"french": "Français"
|
||||
},
|
||||
"date_format": {
|
||||
"label": "Datumsformat",
|
||||
"description": "Wie Daten angezeigt werden sollen",
|
||||
"regional": "Regional",
|
||||
"iso": "ISO 8601",
|
||||
"custom": "Benutzerdefiniert"
|
||||
},
|
||||
"time_format": {
|
||||
"label": "Zeitformat",
|
||||
"description": "Wählen Sie zwischen 12-Stunden- oder 24-Stunden-Anzeige",
|
||||
"12h": "12-Stunden",
|
||||
"24h": "24-Stunden"
|
||||
},
|
||||
"first_day": {
|
||||
"label": "Erster Tag der Woche",
|
||||
"description": "Woche am Sonntag oder Montag beginnen",
|
||||
"sunday": "Sonntag",
|
||||
"monday": "Montag"
|
||||
}
|
||||
},
|
||||
"email_behavior": {
|
||||
"title": "E-Mail-Verhalten",
|
||||
"description": "Konfigurieren Sie, wie E-Mails verarbeitet werden",
|
||||
"mark_read": {
|
||||
"label": "Als gelesen markieren",
|
||||
"description": "Wann E-Mails beim Öffnen als gelesen markiert werden",
|
||||
"instant": "Sofort",
|
||||
"delay_3s": "Nach 3 Sekunden",
|
||||
"delay_5s": "Nach 5 Sekunden",
|
||||
"never": "Nie"
|
||||
},
|
||||
"delete_action": {
|
||||
"label": "Löschaktion",
|
||||
"description": "Was passiert, wenn Sie eine E-Mail löschen",
|
||||
"trash": "In Papierkorb verschieben",
|
||||
"permanent": "Dauerhaft löschen"
|
||||
},
|
||||
"show_preview": {
|
||||
"label": "Vorschautext anzeigen",
|
||||
"description": "E-Mail-Vorschau in der Liste anzeigen"
|
||||
},
|
||||
"emails_per_page": {
|
||||
"label": "E-Mails pro Seite",
|
||||
"description": "Anzahl der E-Mails, die auf einmal geladen werden",
|
||||
"25": "25 E-Mails",
|
||||
"50": "50 E-Mails",
|
||||
"100": "100 E-Mails"
|
||||
},
|
||||
"external_content": {
|
||||
"label": "Externe Inhalte",
|
||||
"description": "Wie mit Bildern und externen Inhalten umgegangen werden soll",
|
||||
"ask": "Immer fragen",
|
||||
"block": "Immer blockieren",
|
||||
"allow": "Immer erlauben"
|
||||
},
|
||||
"trusted_senders": {
|
||||
"label": "Vertrauenswürdige Absender",
|
||||
"description": "Verwalten Sie Absender, deren Bilder automatisch geladen werden",
|
||||
"count_zero": "Keine",
|
||||
"count_one": "1 Absender",
|
||||
"count_other": "{count} Absender",
|
||||
"modal_title": "Vertrauenswürdige Absender",
|
||||
"empty_title": "Noch keine vertrauenswürdigen Absender",
|
||||
"empty_description": "Wenn Sie eine E-Mail mit blockierten Bildern anzeigen, klicken Sie auf \"Diesem Absender immer vertrauen\", um sie hier hinzuzufügen.",
|
||||
"add_manually": "Absender manuell hinzufügen",
|
||||
"add_button": "Hinzufügen",
|
||||
"add_placeholder": "E-Mail-Adresse eingeben",
|
||||
"search_placeholder": "Absender suchen...",
|
||||
"no_results": "Keine Absender entsprechen Ihrer Suche",
|
||||
"remove": "Entfernen",
|
||||
"close": "Schließen",
|
||||
"invalid_email": "Bitte geben Sie eine gültige E-Mail-Adresse ein",
|
||||
"already_added": "Dieser Absender ist bereits vertrauenswürdig"
|
||||
}
|
||||
},
|
||||
"composer": {
|
||||
"title": "Editor",
|
||||
"description": "Konfigurieren Sie die E-Mail-Erstellungseinstellungen",
|
||||
"autosave": {
|
||||
"label": "Automatisches Speichern",
|
||||
"description": "Wie oft Entwürfe automatisch gespeichert werden",
|
||||
"30s": "Alle 30 Sekunden",
|
||||
"1m": "Jede Minute",
|
||||
"2m": "Alle 2 Minuten",
|
||||
"5m": "Alle 5 Minuten"
|
||||
},
|
||||
"send_confirmation": {
|
||||
"label": "Sendebestätigung",
|
||||
"description": "Vor dem Senden von E-Mails um Bestätigung bitten"
|
||||
},
|
||||
"default_reply": {
|
||||
"label": "Standard-Antwortmodus",
|
||||
"description": "Standardaktion beim Klicken auf Antworten",
|
||||
"reply": "Antworten",
|
||||
"reply_all": "Allen antworten"
|
||||
}
|
||||
},
|
||||
"privacy": {
|
||||
"title": "Datenschutz & Sicherheit",
|
||||
"description": "Verwalten Sie Ihre Datenschutz- und Sicherheitseinstellungen",
|
||||
"external_images": {
|
||||
"label": "Externe Bilder blockieren",
|
||||
"description": "Verhindern Sie Tracking durch externe Bilder"
|
||||
},
|
||||
"session_timeout": {
|
||||
"label": "Sitzungszeitüberschreitung",
|
||||
"description": "Automatisch abmelden nach Inaktivität",
|
||||
"never": "Nie",
|
||||
"30m": "30 Minuten",
|
||||
"1h": "1 Stunde",
|
||||
"4h": "4 Stunden"
|
||||
},
|
||||
"clear_cache": {
|
||||
"label": "Cache leeren",
|
||||
"description": "Zwischengespeicherte Daten und temporäre Dateien entfernen",
|
||||
"button": "Cache leeren",
|
||||
"confirm": "Sind Sie sicher, dass Sie den Cache leeren möchten?",
|
||||
"success": "Cache erfolgreich geleert"
|
||||
}
|
||||
},
|
||||
"account": {
|
||||
"title": "Konto",
|
||||
"description": "Zeigen Sie Ihre Kontoinformationen an",
|
||||
"email": {
|
||||
"label": "E-Mail-Adresse",
|
||||
"value": "{{email}}"
|
||||
},
|
||||
"server": {
|
||||
"label": "JMAP-Server",
|
||||
"value": "{{server}}"
|
||||
},
|
||||
"storage": {
|
||||
"label": "Speichernutzung",
|
||||
"used": "{{used}} von {{total}} verwendet",
|
||||
"percentage": "{{percent}}% verwendet"
|
||||
},
|
||||
"last_sync": {
|
||||
"label": "Letzte Synchronisierung",
|
||||
"value": "{{time}}"
|
||||
}
|
||||
},
|
||||
"identities": {
|
||||
"title": "Sendeidentitäten",
|
||||
"description": "Verwalten Sie E-Mail-Adressen, von denen Sie senden können",
|
||||
"identities_count": {
|
||||
"label": "Ihre Identitäten",
|
||||
"description": "Für das Senden konfigurierte E-Mail-Adressen",
|
||||
"count_zero": "Keine Identitäten",
|
||||
"count_one": "1 Identität",
|
||||
"count_other": "{{count}} Identitäten"
|
||||
},
|
||||
"manage": "Identitäten verwalten",
|
||||
"sub_addressing": {
|
||||
"label": "Sub-Adressierung",
|
||||
"description": "Verwenden Sie Tags wie benutzer+tag@domain.de, um eingehende E-Mails zu organisieren",
|
||||
"learn_more": "Mehr erfahren"
|
||||
}
|
||||
},
|
||||
"advanced": {
|
||||
"title": "Erweitert",
|
||||
"description": "Erweiterte Optionen und Entwicklereinstellungen",
|
||||
"debug_mode": {
|
||||
"label": "Debug-Modus",
|
||||
"description": "Detaillierte Protokollierung zur Fehlerbehebung aktivieren"
|
||||
},
|
||||
"keyboard_shortcuts": {
|
||||
"label": "Tastaturkürzel",
|
||||
"description": "Verfügbare Tastaturkürzel anzeigen",
|
||||
"button": "Tastaturkürzel anzeigen"
|
||||
},
|
||||
"reset_settings": {
|
||||
"label": "Einstellungen zurücksetzen",
|
||||
"description": "Alle Einstellungen auf Standardwerte zurücksetzen",
|
||||
"button": "Auf Standard zurücksetzen"
|
||||
},
|
||||
"export_settings": {
|
||||
"label": "Einstellungen exportieren",
|
||||
"description": "Ihre Einstellungen als JSON herunterladen",
|
||||
"button": "Exportieren"
|
||||
},
|
||||
"import_settings": {
|
||||
"label": "Einstellungen importieren",
|
||||
"description": "Einstellungen aus JSON-Datei hochladen",
|
||||
"button": "Importieren"
|
||||
}
|
||||
}
|
||||
},
|
||||
"errors": {
|
||||
"page_error_title": "Etwas ist schiefgelaufen",
|
||||
"page_error_description": "Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut oder kehren Sie zur Startseite zurück.",
|
||||
"sidebar_error": "Postfächer können nicht geladen werden",
|
||||
"email_list_error": "E-Mails können nicht geladen werden",
|
||||
"viewer_error_title": "E-Mail kann nicht angezeigt werden",
|
||||
"viewer_error_description": "Beim Rendern dieser E-Mail ist ein Problem aufgetreten. Sie enthält möglicherweise nicht unterstützte Inhalte.",
|
||||
"composer_error": "Editor kann nicht geladen werden",
|
||||
"settings_error_title": "Einstellungen nicht verfügbar",
|
||||
"settings_error_description": "Einstellungen können nicht geladen werden. Ihre Einstellungen werden möglicherweise nicht gespeichert.",
|
||||
"try_again": "Erneut versuchen",
|
||||
"reload": "Neu laden",
|
||||
"reload_emails": "E-Mails neu laden",
|
||||
"reload_settings": "Einstellungen neu laden",
|
||||
"retry": "Wiederholen",
|
||||
"go_home": "Zum Posteingang"
|
||||
},
|
||||
"context_menu": {
|
||||
"reply": "Antworten",
|
||||
"reply_all": "Allen antworten",
|
||||
"forward": "Weiterleiten",
|
||||
"mark_read": "Als gelesen markieren",
|
||||
"mark_unread": "Als ungelesen markieren",
|
||||
"star": "Stern hinzufügen",
|
||||
"unstar": "Stern entfernen",
|
||||
"move_to": "Verschieben nach...",
|
||||
"archive": "Archivieren",
|
||||
"delete": "Löschen",
|
||||
"mark_as_spam": "Spam melden",
|
||||
"not_spam": "Kein Spam",
|
||||
"color_tag": "Farb-Tag",
|
||||
"remove_color": "Farbe entfernen",
|
||||
"items_selected": "{{count}} E-Mails ausgewählt"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "Tastaturkürzel",
|
||||
"tip": "Drücken Sie ? jederzeit, um diese Hilfe anzuzeigen",
|
||||
"sections": {
|
||||
"navigation": "Navigation",
|
||||
"actions": "E-Mail-Aktionen",
|
||||
"global": "Global",
|
||||
"threads": "Unterhaltungen"
|
||||
},
|
||||
"navigation": {
|
||||
"next_email": "Nächste E-Mail",
|
||||
"previous_email": "Vorherige E-Mail",
|
||||
"open_email": "E-Mail öffnen",
|
||||
"close_email": "Schließen / Auswahl aufheben"
|
||||
},
|
||||
"actions": {
|
||||
"reply": "Antworten",
|
||||
"reply_all": "Allen antworten",
|
||||
"forward": "Weiterleiten",
|
||||
"star": "Stern umschalten",
|
||||
"archive": "Archivieren",
|
||||
"delete": "Löschen",
|
||||
"mark_unread": "Als ungelesen markieren",
|
||||
"mark_read": "Als gelesen markieren",
|
||||
"toggle_spam": "Spam melden / Kein Spam"
|
||||
},
|
||||
"global": {
|
||||
"compose": "Neue E-Mail verfassen",
|
||||
"search": "Suche fokussieren",
|
||||
"help": "Tastaturkürzel anzeigen",
|
||||
"refresh": "E-Mails aktualisieren",
|
||||
"select_all": "Alle auswählen"
|
||||
},
|
||||
"threads": {
|
||||
"expand_collapse": "Unterhaltung erweitern/einklappen"
|
||||
}
|
||||
},
|
||||
"threads": {
|
||||
"messages_one": "{count} Nachricht",
|
||||
"messages_other": "{count} Nachrichten",
|
||||
"expand": "Unterhaltung erweitern",
|
||||
"collapse": "Unterhaltung einklappen",
|
||||
"loading": "Unterhaltung wird geladen...",
|
||||
"mark_read": "Unterhaltung als gelesen markieren",
|
||||
"mark_unread": "Unterhaltung als ungelesen markieren",
|
||||
"archive": "Unterhaltung archivieren",
|
||||
"delete": "Unterhaltung löschen",
|
||||
"star": "Unterhaltung mit Stern markieren",
|
||||
"unstar": "Stern von Unterhaltung entfernen"
|
||||
},
|
||||
"identities": {
|
||||
"modal_title": "Sendeidentitäten verwalten",
|
||||
"create_new": "Neue Identität erstellen",
|
||||
"edit_identity": "Identität bearbeiten",
|
||||
"delete_confirm": "Diese Identität löschen? Dies kann nicht rückgängig gemacht werden.",
|
||||
"cannot_delete": "Diese Identität kann nicht gelöscht werden",
|
||||
"primary_identity": "Primär",
|
||||
"no_identities": "Keine Identitäten gefunden",
|
||||
"display": {
|
||||
"reply_to": "Antwort an:",
|
||||
"bcc": "BCC:",
|
||||
"signature": "Signatur:",
|
||||
"preview": "Vorschau:"
|
||||
},
|
||||
"validation_errors": {
|
||||
"invalid_emails": "Ungültige E-Mails: {emails}",
|
||||
"unknown_error": "Unbekannter Fehler"
|
||||
},
|
||||
"form": {
|
||||
"name_label": "Anzeigename",
|
||||
"name_placeholder": "z.B. Geschäftliche E-Mail, Privat",
|
||||
"name_required": "Name ist erforderlich",
|
||||
"email_label": "E-Mail-Adresse",
|
||||
"email_placeholder": "ihre.email@beispiel.de",
|
||||
"email_required": "E-Mail ist erforderlich",
|
||||
"email_invalid": "Bitte geben Sie eine gültige E-Mail-Adresse ein",
|
||||
"email_immutable": "E-Mail-Adresse kann nach der Erstellung nicht geändert werden",
|
||||
"reply_to_label": "Antwort an (optional)",
|
||||
"reply_to_placeholder": "andere@email.de",
|
||||
"bcc_label": "Automatisches BCC (optional)",
|
||||
"bcc_placeholder": "archiv@email.de",
|
||||
"text_signature_label": "Text-Signatur",
|
||||
"html_signature_label": "HTML-Signatur",
|
||||
"save": "Identität speichern",
|
||||
"cancel": "Abbrechen",
|
||||
"creating": "Wird erstellt...",
|
||||
"updating": "Wird aktualisiert..."
|
||||
},
|
||||
"sub_address": {
|
||||
"button_tooltip": "Sub-Adresse verwenden",
|
||||
"popover_title": "Sub-Adress-Tag hinzufügen",
|
||||
"tag_input_placeholder": "Tag eingeben (z.B. einkauf)",
|
||||
"preview_label": "Vorschau:",
|
||||
"recent_tags": "Letzte Tags",
|
||||
"suggested_tags": "Vorgeschlagen",
|
||||
"use_address": "Diese Adresse verwenden",
|
||||
"invalid_tag": "Tag darf nur alphanumerisch und Bindestriche enthalten",
|
||||
"tag_too_long": "Tag darf maximal 30 Zeichen lang sein",
|
||||
"help_text": "E-Mails an benutzer+tag@domain.de werden in Ihrem Posteingang ankommen",
|
||||
"validation": {
|
||||
"empty": "Tag darf nicht leer sein",
|
||||
"too_long": "Tag darf maximal {max} Zeichen lang sein",
|
||||
"invalid_chars": "Tag darf nur Buchstaben, Zahlen und Bindestriche enthalten"
|
||||
}
|
||||
},
|
||||
"badge": {
|
||||
"sent_via": "über",
|
||||
"sub_address_tag": "Gesendet mit Sub-Adresse: {tag}",
|
||||
"identity_name": "Gesendet mit Identität: {name}",
|
||||
"identity_short": "über {name}",
|
||||
"subaddress_tag": "+{tag}"
|
||||
}
|
||||
}
|
||||
}
|
||||
+170
-5
@@ -52,7 +52,13 @@
|
||||
"expand": "Expand",
|
||||
"collapse": "Collapse",
|
||||
"expand_tooltip": "Expand",
|
||||
"collapse_tooltip": "Collapse"
|
||||
"collapse_tooltip": "Collapse",
|
||||
"mobile": {
|
||||
"search": "Search",
|
||||
"compose": "Compose",
|
||||
"go_back": "Go back"
|
||||
},
|
||||
"clear_search": "Clear search"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "No emails",
|
||||
@@ -63,7 +69,19 @@
|
||||
"to_recipients": "To {{count}} recipients",
|
||||
"and_others": "and {{count}} others",
|
||||
"draft": "Draft",
|
||||
"starred": "Starred"
|
||||
"starred": "Starred",
|
||||
"conversations_count": "{count} of {total} conversations",
|
||||
"conversations_count_plus": "{count}+ conversations",
|
||||
"conversations_count_simple": "{count} conversations",
|
||||
"no_conversations": "No conversations",
|
||||
"loading_more": "Loading more emails...",
|
||||
"no_more_emails": "No more emails to load",
|
||||
"batch_actions": {
|
||||
"mark_read": "Mark as read",
|
||||
"mark_unread": "Mark as unread",
|
||||
"delete": "Delete",
|
||||
"clear_selection": "Clear selection"
|
||||
}
|
||||
},
|
||||
"email_viewer": {
|
||||
"no_email_selected": "No email selected",
|
||||
@@ -129,6 +147,9 @@
|
||||
"minutes": "minutes"
|
||||
},
|
||||
"unknown_sender": "Unknown",
|
||||
"recipient_me": "me",
|
||||
"recipient_and_others": "{name} and {count} others",
|
||||
"recipient_to_prefix": "To:",
|
||||
"authentication": {
|
||||
"title": "Authentication",
|
||||
"status": {
|
||||
@@ -167,7 +188,35 @@
|
||||
"green": "Green",
|
||||
"blue": "Blue",
|
||||
"purple": "Purple",
|
||||
"pink": "Pink",
|
||||
"none": "None"
|
||||
},
|
||||
"tooltips": {
|
||||
"reply": "Reply",
|
||||
"archive": "Archive",
|
||||
"delete": "Delete"
|
||||
},
|
||||
"spam": {
|
||||
"button_title": "Report spam",
|
||||
"not_spam_title": "Mark as legitimate",
|
||||
"toast_success": "Moved to Junk",
|
||||
"toast_batch": "{count} emails moved to Junk",
|
||||
"toast_undo": "Undo",
|
||||
"toast_not_spam_success": "Moved to Inbox",
|
||||
"toast_not_spam_batch": "{count} emails moved to Inbox",
|
||||
"error": "Failed to report spam",
|
||||
"error_not_spam": "Failed to restore email"
|
||||
},
|
||||
"unsubscribe_banner": {
|
||||
"label": "Newsletter",
|
||||
"button": "Unsubscribe",
|
||||
"confirm_title": "Unsubscribe from this sender?",
|
||||
"confirm_button": "Confirm",
|
||||
"cancel": "Cancel",
|
||||
"success_http": "Unsubscribe page opened in new tab",
|
||||
"success_mailto": "Unsubscribe request sent to your email client",
|
||||
"error": "Unable to unsubscribe",
|
||||
"dismiss": "Dismiss"
|
||||
}
|
||||
},
|
||||
"email_composer": {
|
||||
@@ -200,6 +249,12 @@
|
||||
"bcc_label": "Bcc:",
|
||||
"subject_label": "Subject:",
|
||||
"file_size_kb": "KB",
|
||||
"prefix": {
|
||||
"forward": "Fwd:",
|
||||
"reply": "Re:"
|
||||
},
|
||||
"no_subject": "(No Subject)",
|
||||
"unknown_sender": "Unknown",
|
||||
"quote": {
|
||||
"reply_header": "On {{date}}, {{sender}} wrote:",
|
||||
"forward_header": "---------- Forwarded message ----------",
|
||||
@@ -207,7 +262,8 @@
|
||||
"date": "Date: {{date}}",
|
||||
"subject": "Subject: {{subject}}",
|
||||
"to": "To: {{recipients}}"
|
||||
}
|
||||
},
|
||||
"remove_sub_address": "Remove sub-address"
|
||||
},
|
||||
"common": {
|
||||
"loading": "Loading...",
|
||||
@@ -243,7 +299,20 @@
|
||||
"error_loading": "Failed to load emails",
|
||||
"new_email": "New email",
|
||||
"new_email_from": "From {sender}",
|
||||
"click_to_view": "Click to view"
|
||||
"click_to_view": "Click to view",
|
||||
"email_moved": "Email moved",
|
||||
"emails_moved": "{count} emails moved",
|
||||
"moved_to_mailbox": "Moved to {mailbox}",
|
||||
"move_failed": "Move failed",
|
||||
"move_error": "Could not move emails to the selected folder",
|
||||
"identity_created": "Identity created successfully",
|
||||
"identity_updated": "Identity updated successfully",
|
||||
"identity_deleted": "Identity deleted",
|
||||
"identity_create_failed": "Failed to create identity: {{error}}",
|
||||
"identity_update_failed": "Failed to update identity: {{error}}",
|
||||
"identity_delete_failed": "Failed to delete identity: {{error}}",
|
||||
"identity_unauthorized": "You are not authorized to send from this email address",
|
||||
"identity_not_found": "Identity not found"
|
||||
},
|
||||
"date": {
|
||||
"today": "Today",
|
||||
@@ -264,9 +333,21 @@
|
||||
"title": "Language",
|
||||
"english": "English",
|
||||
"french": "Français",
|
||||
"japanese": "日本語",
|
||||
"spanish": "Español",
|
||||
"italian": "Italiano",
|
||||
"german": "Deutsch",
|
||||
"dutch": "Nederlands",
|
||||
"portuguese": "Português",
|
||||
"select_language": "Select language",
|
||||
"switch_to_english": "Switch to English",
|
||||
"switch_to_french": "Switch to French",
|
||||
"switch_to_japanese": "Switch to Japanese",
|
||||
"switch_to_spanish": "Switch to Spanish",
|
||||
"switch_to_italian": "Switch to Italian",
|
||||
"switch_to_german": "Switch to German",
|
||||
"switch_to_dutch": "Switch to Dutch",
|
||||
"switch_to_portuguese": "Switch to Portuguese",
|
||||
"switching": "Changing language..."
|
||||
},
|
||||
"settings": {
|
||||
@@ -283,6 +364,7 @@
|
||||
"composer": "Composer",
|
||||
"privacy": "Privacy & Security",
|
||||
"account": "Account",
|
||||
"identities": "Identities",
|
||||
"advanced": "Advanced"
|
||||
},
|
||||
"appearance": {
|
||||
@@ -468,6 +550,23 @@
|
||||
"value": "{{time}}"
|
||||
}
|
||||
},
|
||||
"identities": {
|
||||
"title": "Sending Identities",
|
||||
"description": "Manage email addresses you can send from",
|
||||
"identities_count": {
|
||||
"label": "Your Identities",
|
||||
"description": "Email addresses configured for sending",
|
||||
"count_zero": "No identities",
|
||||
"count_one": "1 identity",
|
||||
"count_other": "{{count}} identities"
|
||||
},
|
||||
"manage": "Manage Identities",
|
||||
"sub_addressing": {
|
||||
"label": "Sub-Addressing",
|
||||
"description": "Use tags like user+tag@domain.com to organize incoming mail",
|
||||
"learn_more": "Learn More"
|
||||
}
|
||||
},
|
||||
"advanced": {
|
||||
"title": "Advanced",
|
||||
"description": "Advanced options and developer settings",
|
||||
@@ -525,6 +624,8 @@
|
||||
"move_to": "Move to...",
|
||||
"archive": "Archive",
|
||||
"delete": "Delete",
|
||||
"mark_as_spam": "Report spam",
|
||||
"not_spam": "Not spam",
|
||||
"color_tag": "Color Tag",
|
||||
"remove_color": "Remove Color",
|
||||
"items_selected": "{{count}} emails selected"
|
||||
@@ -552,7 +653,8 @@
|
||||
"archive": "Archive",
|
||||
"delete": "Delete",
|
||||
"mark_unread": "Mark as unread",
|
||||
"mark_read": "Mark as read"
|
||||
"mark_read": "Mark as read",
|
||||
"toggle_spam": "Report spam / Not spam"
|
||||
},
|
||||
"global": {
|
||||
"compose": "Compose new email",
|
||||
@@ -577,5 +679,68 @@
|
||||
"delete": "Delete conversation",
|
||||
"star": "Star conversation",
|
||||
"unstar": "Unstar conversation"
|
||||
},
|
||||
"identities": {
|
||||
"modal_title": "Manage Sending Identities",
|
||||
"create_new": "Create New Identity",
|
||||
"edit_identity": "Edit Identity",
|
||||
"delete_confirm": "Delete this identity? This cannot be undone.",
|
||||
"cannot_delete": "This identity cannot be deleted",
|
||||
"primary_identity": "Primary",
|
||||
"no_identities": "No identities found",
|
||||
"display": {
|
||||
"reply_to": "Reply-To:",
|
||||
"bcc": "BCC:",
|
||||
"signature": "Signature:",
|
||||
"preview": "Preview:"
|
||||
},
|
||||
"validation_errors": {
|
||||
"invalid_emails": "Invalid emails: {emails}",
|
||||
"unknown_error": "Unknown error"
|
||||
},
|
||||
"form": {
|
||||
"name_label": "Display Name",
|
||||
"name_placeholder": "e.g., Work Email, Personal",
|
||||
"name_required": "Name is required",
|
||||
"email_label": "Email Address",
|
||||
"email_placeholder": "your.email@example.com",
|
||||
"email_required": "Email is required",
|
||||
"email_invalid": "Please enter a valid email address",
|
||||
"email_immutable": "Email address cannot be changed after creation",
|
||||
"reply_to_label": "Reply-To (optional)",
|
||||
"reply_to_placeholder": "different@email.com",
|
||||
"bcc_label": "Auto BCC (optional)",
|
||||
"bcc_placeholder": "archive@email.com",
|
||||
"text_signature_label": "Text Signature",
|
||||
"html_signature_label": "HTML Signature",
|
||||
"save": "Save Identity",
|
||||
"cancel": "Cancel",
|
||||
"creating": "Creating...",
|
||||
"updating": "Updating..."
|
||||
},
|
||||
"sub_address": {
|
||||
"button_tooltip": "Use sub-address",
|
||||
"popover_title": "Add Sub-Address Tag",
|
||||
"tag_input_placeholder": "Enter tag (e.g., shopping)",
|
||||
"preview_label": "Preview:",
|
||||
"recent_tags": "Recent Tags",
|
||||
"suggested_tags": "Suggested",
|
||||
"use_address": "Use This Address",
|
||||
"invalid_tag": "Tag must be alphanumeric and dashes only",
|
||||
"tag_too_long": "Tag must be 30 characters or less",
|
||||
"help_text": "Emails sent to user+tag@domain.com will arrive in your inbox",
|
||||
"validation": {
|
||||
"empty": "Tag cannot be empty",
|
||||
"too_long": "Tag must be {max} characters or less",
|
||||
"invalid_chars": "Tag must contain only letters, numbers, and dashes"
|
||||
}
|
||||
},
|
||||
"badge": {
|
||||
"sent_via": "via",
|
||||
"sub_address_tag": "Sent using sub-address: {tag}",
|
||||
"identity_name": "Sent using identity: {name}",
|
||||
"identity_short": "via {name}",
|
||||
"subaddress_tag": "+{tag}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,746 @@
|
||||
{
|
||||
"login": {
|
||||
"title": "Correo Web",
|
||||
"username_label": "Correo electrónico",
|
||||
"username_placeholder": "usuario@ejemplo.com",
|
||||
"password_label": "Contraseña",
|
||||
"password_placeholder": "Ingrese su contraseña",
|
||||
"sign_in": "Iniciar sesión",
|
||||
"signing_in": "Iniciando sesión...",
|
||||
"loading": "Cargando...",
|
||||
"error": {
|
||||
"invalid_credentials": "Correo electrónico o contraseña inválidos",
|
||||
"connection_failed": "No se pudo conectar con el servidor",
|
||||
"generic": "Ocurrió un error. Por favor, inténtelo de nuevo."
|
||||
},
|
||||
"config_error": {
|
||||
"title": "Error de Configuración",
|
||||
"fetch_failed": "No se pudo cargar la configuración de la aplicación. Por favor, inténtelo más tarde.",
|
||||
"server_not_configured": "El servidor de correo no ha sido configurado. Por favor, contacte a su administrador."
|
||||
},
|
||||
"remove_from_history": "Eliminar del historial"
|
||||
},
|
||||
"sidebar": {
|
||||
"close": "Cerrar",
|
||||
"compose": "Redactar",
|
||||
"search_placeholder": "Buscar correo...",
|
||||
"storage": "Almacenamiento",
|
||||
"sign_out": "Cerrar sesión",
|
||||
"settings": "Configuración",
|
||||
"loading_mailboxes": "Cargando buzones...",
|
||||
"push_connected": "Actualizaciones en tiempo real activas",
|
||||
"push_disconnected": "Actualizaciones en tiempo real inactivas",
|
||||
"theme": {
|
||||
"light": "Modo claro",
|
||||
"dark": "Modo oscuro",
|
||||
"system": "Tema del sistema"
|
||||
},
|
||||
"language": {
|
||||
"title": "Idioma"
|
||||
},
|
||||
"mailboxes": {
|
||||
"inbox": "Bandeja de entrada",
|
||||
"sent": "Enviados",
|
||||
"drafts": "Borradores",
|
||||
"trash": "Papelera",
|
||||
"archive": "Archivo",
|
||||
"starred": "Destacados",
|
||||
"all_mail": "Todo el correo",
|
||||
"spam": "Spam",
|
||||
"important": "Importante"
|
||||
},
|
||||
"expand": "Expandir",
|
||||
"collapse": "Contraer",
|
||||
"expand_tooltip": "Expandir",
|
||||
"collapse_tooltip": "Contraer",
|
||||
"mobile": {
|
||||
"search": "Buscar",
|
||||
"compose": "Redactar",
|
||||
"go_back": "Volver"
|
||||
},
|
||||
"clear_search": "Limpiar búsqueda"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Sin correos",
|
||||
"no_emails_description": "Comience redactando un nuevo correo",
|
||||
"loading": "Cargando correos...",
|
||||
"unread": "no leído",
|
||||
"to_me": "Para mí",
|
||||
"to_recipients": "Para {{count}} destinatarios",
|
||||
"and_others": "y {{count}} más",
|
||||
"draft": "Borrador",
|
||||
"starred": "Destacado",
|
||||
"conversations_count": "{count} de {total} conversaciones",
|
||||
"conversations_count_plus": "{count}+ conversaciones",
|
||||
"conversations_count_simple": "{count} conversaciones",
|
||||
"no_conversations": "Sin conversaciones",
|
||||
"loading_more": "Cargando más correos...",
|
||||
"no_more_emails": "No hay más correos para cargar",
|
||||
"batch_actions": {
|
||||
"mark_read": "Marcar como leído",
|
||||
"mark_unread": "Marcar como no leído",
|
||||
"delete": "Eliminar",
|
||||
"clear_selection": "Limpiar selección"
|
||||
}
|
||||
},
|
||||
"email_viewer": {
|
||||
"no_email_selected": "Ningún correo seleccionado",
|
||||
"no_email_description": "Seleccione un correo de la lista para verlo aquí",
|
||||
"no_conversation_selected": "Ninguna conversación seleccionada",
|
||||
"no_conversation_description": "Elija una conversación de la lista para leerla aquí",
|
||||
"no_subject": "(Sin Asunto)",
|
||||
"loading_email": "Cargando correo...",
|
||||
"loading": "Cargando...",
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a todos",
|
||||
"forward": "Reenviar",
|
||||
"delete": "Eliminar",
|
||||
"archive": "Archivar",
|
||||
"star": "Destacar",
|
||||
"unstar": "Quitar destacado",
|
||||
"mark_unread": "Marcar como no leído",
|
||||
"mark_read": "Marcar como leído",
|
||||
"print": "Imprimir",
|
||||
"view_source": "Ver código fuente",
|
||||
"email_source": "Código Fuente del Correo",
|
||||
"copy_source": "Copiar al portapapeles",
|
||||
"source_copied": "Código fuente copiado al portapapeles",
|
||||
"attachments": "Archivos adjuntos",
|
||||
"important": "Importante",
|
||||
"download": "Descargar",
|
||||
"from": "De",
|
||||
"to": "Para",
|
||||
"cc": "CC",
|
||||
"bcc": "CCO",
|
||||
"date": "Fecha",
|
||||
"subject": "Asunto",
|
||||
"show_details": "Mostrar detalles",
|
||||
"hide_details": "Ocultar detalles",
|
||||
"external_content_warning": "Las imágenes y el contenido externo han sido bloqueados",
|
||||
"load_external_content": "Cargar imágenes",
|
||||
"trust_sender": "Confiar siempre en este remitente",
|
||||
"back_to_list": "Volver a la lista",
|
||||
"message_details": "Detalles del Mensaje",
|
||||
"more_reply_options": "Más opciones de respuesta",
|
||||
"set_color": "Establecer color",
|
||||
"more_actions": "Más acciones",
|
||||
"remove_color": "Eliminar color",
|
||||
"more_count": "+{count} más",
|
||||
"characters_count": "{count} caracteres",
|
||||
"quick_reply_placeholder": "Escriba una respuesta rápida...",
|
||||
"more_options": "Más opciones",
|
||||
"sending": "Enviando...",
|
||||
"security_authentication": "Seguridad y Autenticación",
|
||||
"technical_details": "Detalles Técnicos",
|
||||
"message_id_label": "ID del Mensaje:",
|
||||
"reply_to_label": "Responder a:",
|
||||
"delivery_time_label": "Hora de entrega:",
|
||||
"conversation_part_label": "Parte de conversación:",
|
||||
"previous_messages": "{count} mensaje anterior",
|
||||
"previous_messages_plural": "{count} mensajes anteriores",
|
||||
"time": {
|
||||
"day": "día",
|
||||
"days": "días",
|
||||
"hour": "hora",
|
||||
"hours": "horas",
|
||||
"minute": "minuto",
|
||||
"minutes": "minutos"
|
||||
},
|
||||
"unknown_sender": "Desconocido",
|
||||
"recipient_me": "yo",
|
||||
"recipient_and_others": "{name} y {count} más",
|
||||
"recipient_to_prefix": "Para:",
|
||||
"authentication": {
|
||||
"title": "Autenticación",
|
||||
"status": {
|
||||
"verified": "Verificado",
|
||||
"warning": "Advertencia",
|
||||
"none": "No autenticado"
|
||||
},
|
||||
"spf": {
|
||||
"pass": "SPF Aprobado",
|
||||
"fail": "SPF Fallido",
|
||||
"none": "Sin SPF"
|
||||
},
|
||||
"dkim": {
|
||||
"pass": "DKIM Válido",
|
||||
"fail": "DKIM Inválido",
|
||||
"none": "Sin DKIM"
|
||||
},
|
||||
"dmarc": {
|
||||
"pass": "DMARC Aprobado",
|
||||
"fail": "DMARC Fallido",
|
||||
"none": "Sin DMARC"
|
||||
},
|
||||
"spam_score": "Puntuación de Spam"
|
||||
},
|
||||
"headers": {
|
||||
"routing": "Enrutamiento",
|
||||
"received": "Recibido",
|
||||
"message_id": "ID del Mensaje",
|
||||
"list_info": "Información de Lista"
|
||||
},
|
||||
"color_tag": {
|
||||
"title": "Etiqueta de Color",
|
||||
"red": "Rojo",
|
||||
"orange": "Naranja",
|
||||
"yellow": "Amarillo",
|
||||
"green": "Verde",
|
||||
"blue": "Azul",
|
||||
"purple": "Morado",
|
||||
"pink": "Rosa",
|
||||
"none": "Ninguno"
|
||||
},
|
||||
"tooltips": {
|
||||
"reply": "Responder",
|
||||
"archive": "Archivar",
|
||||
"delete": "Eliminar"
|
||||
},
|
||||
"spam": {
|
||||
"button_title": "Reportar spam",
|
||||
"not_spam_title": "Marcar como legítimo",
|
||||
"toast_success": "Movido a Correo no deseado",
|
||||
"toast_batch": "{count} correos movidos a Correo no deseado",
|
||||
"toast_undo": "Deshacer",
|
||||
"toast_not_spam_success": "Movido a Bandeja de entrada",
|
||||
"toast_not_spam_batch": "{count} correos movidos a Bandeja de entrada",
|
||||
"error": "No se pudo reportar spam",
|
||||
"error_not_spam": "No se pudo restaurar el correo"
|
||||
},
|
||||
"unsubscribe_banner": {
|
||||
"label": "Boletín",
|
||||
"button": "Cancelar suscripción",
|
||||
"confirm_title": "¿Cancelar suscripción de este remitente?",
|
||||
"confirm_button": "Confirmar",
|
||||
"cancel": "Cancelar",
|
||||
"success_http": "Página de cancelación de suscripción abierta en nueva pestaña",
|
||||
"success_mailto": "Solicitud de cancelación enviada a su cliente de correo",
|
||||
"error": "No se pudo cancelar la suscripción",
|
||||
"dismiss": "Descartar"
|
||||
}
|
||||
},
|
||||
"email_composer": {
|
||||
"new_message": "Nuevo Mensaje",
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a Todos",
|
||||
"forward": "Reenviar",
|
||||
"reply_to": "Responder",
|
||||
"reply_all_to": "Responder a Todos",
|
||||
"forward_message": "Reenviar",
|
||||
"from": "De",
|
||||
"to": "Para",
|
||||
"cc": "CC",
|
||||
"bcc": "CCO",
|
||||
"subject": "Asunto",
|
||||
"body_placeholder": "Escriba su mensaje...",
|
||||
"send": "Enviar",
|
||||
"cancel": "Cancelar",
|
||||
"attach": "Adjuntar",
|
||||
"discard": "Descartar",
|
||||
"discard_draft_confirm": "Tiene cambios sin guardar. ¿Desea descartar este borrador?",
|
||||
"saving": "Guardando...",
|
||||
"draft_saved": "Borrador guardado",
|
||||
"save_failed": "Error al guardar",
|
||||
"to_placeholder": "Direcciones de correo de destinatarios (separadas por comas)",
|
||||
"cc_placeholder": "Destinatarios CC (separados por comas)",
|
||||
"bcc_placeholder": "Destinatarios CCO (separados por comas)",
|
||||
"subject_placeholder": "Asunto",
|
||||
"cc_label": "CC:",
|
||||
"bcc_label": "CCO:",
|
||||
"subject_label": "Asunto:",
|
||||
"file_size_kb": "KB",
|
||||
"prefix": {
|
||||
"forward": "Rvf:",
|
||||
"reply": "Re:"
|
||||
},
|
||||
"no_subject": "(Sin Asunto)",
|
||||
"unknown_sender": "Desconocido",
|
||||
"quote": {
|
||||
"reply_header": "El {{date}}, {{sender}} escribió:",
|
||||
"forward_header": "---------- Mensaje reenviado ----------",
|
||||
"from": "De: {{sender}}",
|
||||
"date": "Fecha: {{date}}",
|
||||
"subject": "Asunto: {{subject}}",
|
||||
"to": "Para: {{recipients}}"
|
||||
},
|
||||
"remove_sub_address": "Eliminar sub-dirección"
|
||||
},
|
||||
"common": {
|
||||
"loading": "Cargando...",
|
||||
"error": "Error",
|
||||
"success": "Éxito",
|
||||
"cancel": "Cancelar",
|
||||
"save": "Guardar",
|
||||
"delete": "Eliminar",
|
||||
"edit": "Editar",
|
||||
"close": "Cerrar",
|
||||
"search": "Buscar",
|
||||
"refresh": "Actualizar",
|
||||
"settings": "Configuración",
|
||||
"help": "Ayuda",
|
||||
"logout": "Cerrar sesión",
|
||||
"yes": "Sí",
|
||||
"no": "No",
|
||||
"unknown": "Desconocido",
|
||||
"app_title": "Correo Web"
|
||||
},
|
||||
"notifications": {
|
||||
"email_sent": "Correo enviado exitosamente",
|
||||
"email_deleted": "Correo eliminado",
|
||||
"email_archived": "Correo archivado",
|
||||
"email_starred": "Correo destacado",
|
||||
"email_unstarred": "Correo sin destacar",
|
||||
"email_marked_read": "Correo marcado como leído",
|
||||
"email_marked_unread": "Correo marcado como no leído",
|
||||
"copied_to_clipboard": "Copiado al portapapeles",
|
||||
"source_copied": "Código fuente copiado al portapapeles",
|
||||
"error_sending": "Error al enviar el correo",
|
||||
"error_deleting": "Error al eliminar el correo",
|
||||
"error_loading": "Error al cargar los correos",
|
||||
"new_email": "Nuevo correo",
|
||||
"new_email_from": "De {sender}",
|
||||
"click_to_view": "Haga clic para ver",
|
||||
"email_moved": "Correo movido",
|
||||
"emails_moved": "{count} correos movidos",
|
||||
"moved_to_mailbox": "Movido a {mailbox}",
|
||||
"move_failed": "Error al mover",
|
||||
"move_error": "No se pudieron mover los correos a la carpeta seleccionada",
|
||||
"identity_created": "Identidad creada exitosamente",
|
||||
"identity_updated": "Identidad actualizada exitosamente",
|
||||
"identity_deleted": "Identidad eliminada",
|
||||
"identity_create_failed": "Error al crear identidad: {{error}}",
|
||||
"identity_update_failed": "Error al actualizar identidad: {{error}}",
|
||||
"identity_delete_failed": "Error al eliminar identidad: {{error}}",
|
||||
"identity_unauthorized": "No está autorizado para enviar desde esta dirección de correo",
|
||||
"identity_not_found": "Identidad no encontrada"
|
||||
},
|
||||
"date": {
|
||||
"today": "Hoy",
|
||||
"yesterday": "Ayer",
|
||||
"this_week": "Esta semana",
|
||||
"last_week": "Semana pasada",
|
||||
"this_month": "Este mes",
|
||||
"older": "Más antiguo",
|
||||
"just_now": "Justo ahora",
|
||||
"minutes_ago": "hace {{count}} minuto",
|
||||
"minutes_ago_plural": "hace {{count}} minutos",
|
||||
"hours_ago": "hace {{count}} hora",
|
||||
"hours_ago_plural": "hace {{count}} horas",
|
||||
"days_ago": "hace {{count}} día",
|
||||
"days_ago_plural": "hace {{count}} días"
|
||||
},
|
||||
"language": {
|
||||
"title": "Idioma",
|
||||
"english": "English",
|
||||
"french": "Français",
|
||||
"japanese": "日本語",
|
||||
"spanish": "Español",
|
||||
"italian": "Italiano",
|
||||
"german": "Deutsch",
|
||||
"dutch": "Nederlands",
|
||||
"portuguese": "Português",
|
||||
"select_language": "Seleccionar idioma",
|
||||
"switch_to_english": "Cambiar a inglés",
|
||||
"switch_to_french": "Cambiar a francés",
|
||||
"switch_to_japanese": "Cambiar a japonés",
|
||||
"switch_to_spanish": "Cambiar a español",
|
||||
"switch_to_italian": "Cambiar a italiano",
|
||||
"switch_to_german": "Cambiar a alemán",
|
||||
"switch_to_dutch": "Cambiar a neerlandés",
|
||||
"switch_to_portuguese": "Cambiar a portugués",
|
||||
"switching": "Cambiando idioma..."
|
||||
},
|
||||
"settings": {
|
||||
"title": "Configuración",
|
||||
"back_to_mail": "Volver al Correo",
|
||||
"save_success": "Configuración guardada exitosamente",
|
||||
"import_success": "Configuración importada exitosamente",
|
||||
"import_error": "Error al importar la configuración",
|
||||
"reset_confirm": "¿Está seguro de que desea restablecer toda la configuración a los valores predeterminados?",
|
||||
"tabs": {
|
||||
"appearance": "Apariencia",
|
||||
"language": "Idioma y Región",
|
||||
"email": "Comportamiento del Correo",
|
||||
"composer": "Editor",
|
||||
"privacy": "Privacidad y Seguridad",
|
||||
"account": "Cuenta",
|
||||
"identities": "Identidades",
|
||||
"advanced": "Avanzado"
|
||||
},
|
||||
"appearance": {
|
||||
"title": "Apariencia",
|
||||
"description": "Personalice la apariencia de su correo web",
|
||||
"theme": {
|
||||
"label": "Tema",
|
||||
"description": "Elija su esquema de color preferido",
|
||||
"light": "Claro",
|
||||
"dark": "Oscuro",
|
||||
"system": "Sistema"
|
||||
},
|
||||
"language": {
|
||||
"label": "Idioma",
|
||||
"description": "Elija su idioma preferido"
|
||||
},
|
||||
"font_size": {
|
||||
"label": "Tamaño de Fuente",
|
||||
"description": "Ajuste el tamaño del texto para mejor legibilidad",
|
||||
"small": "Pequeño",
|
||||
"medium": "Mediano",
|
||||
"large": "Grande"
|
||||
},
|
||||
"list_density": {
|
||||
"label": "Densidad de Lista",
|
||||
"description": "Controle el espaciado en las listas de correo",
|
||||
"compact": "Compacto",
|
||||
"regular": "Regular",
|
||||
"comfortable": "Cómodo"
|
||||
},
|
||||
"animations": {
|
||||
"label": "Habilitar Animaciones",
|
||||
"description": "Mostrar transiciones y efectos suaves"
|
||||
}
|
||||
},
|
||||
"language_region": {
|
||||
"title": "Idioma y Región",
|
||||
"description": "Configure las preferencias de idioma y región",
|
||||
"language": {
|
||||
"label": "Idioma",
|
||||
"description": "Elija su idioma preferido",
|
||||
"english": "English",
|
||||
"french": "Français"
|
||||
},
|
||||
"date_format": {
|
||||
"label": "Formato de Fecha",
|
||||
"description": "Cómo se deben mostrar las fechas",
|
||||
"regional": "Regional",
|
||||
"iso": "ISO 8601",
|
||||
"custom": "Personalizado"
|
||||
},
|
||||
"time_format": {
|
||||
"label": "Formato de Hora",
|
||||
"description": "Elija entre reloj de 12 o 24 horas",
|
||||
"12h": "12 horas",
|
||||
"24h": "24 horas"
|
||||
},
|
||||
"first_day": {
|
||||
"label": "Primer Día de la Semana",
|
||||
"description": "Iniciar la semana en domingo o lunes",
|
||||
"sunday": "Domingo",
|
||||
"monday": "Lunes"
|
||||
}
|
||||
},
|
||||
"email_behavior": {
|
||||
"title": "Comportamiento del Correo",
|
||||
"description": "Configure cómo se manejan los correos",
|
||||
"mark_read": {
|
||||
"label": "Marcar como Leído",
|
||||
"description": "Cuándo marcar correos como leídos al abrirlos",
|
||||
"instant": "Instantáneamente",
|
||||
"delay_3s": "Después de 3 segundos",
|
||||
"delay_5s": "Después de 5 segundos",
|
||||
"never": "Nunca"
|
||||
},
|
||||
"delete_action": {
|
||||
"label": "Acción al Eliminar",
|
||||
"description": "Qué sucede cuando elimina un correo",
|
||||
"trash": "Mover a Papelera",
|
||||
"permanent": "Eliminar Permanentemente"
|
||||
},
|
||||
"show_preview": {
|
||||
"label": "Mostrar Vista Previa",
|
||||
"description": "Mostrar vista previa del correo en la lista"
|
||||
},
|
||||
"emails_per_page": {
|
||||
"label": "Correos por Página",
|
||||
"description": "Número de correos a cargar a la vez",
|
||||
"25": "25 correos",
|
||||
"50": "50 correos",
|
||||
"100": "100 correos"
|
||||
},
|
||||
"external_content": {
|
||||
"label": "Contenido Externo",
|
||||
"description": "Cómo manejar imágenes y contenido externo",
|
||||
"ask": "Preguntar siempre",
|
||||
"block": "Bloquear siempre",
|
||||
"allow": "Permitir siempre"
|
||||
},
|
||||
"trusted_senders": {
|
||||
"label": "Remitentes de Confianza",
|
||||
"description": "Administre remitentes cuyas imágenes se cargan automáticamente",
|
||||
"count_zero": "Ninguno",
|
||||
"count_one": "1 remitente",
|
||||
"count_other": "{count} remitentes",
|
||||
"modal_title": "Remitentes de Confianza",
|
||||
"empty_title": "Aún no hay remitentes de confianza",
|
||||
"empty_description": "Al ver un correo con imágenes bloqueadas, haga clic en \"Confiar siempre en este remitente\" para agregarlo aquí.",
|
||||
"add_manually": "Agregar remitente manualmente",
|
||||
"add_button": "Agregar",
|
||||
"add_placeholder": "Ingrese dirección de correo",
|
||||
"search_placeholder": "Buscar remitentes...",
|
||||
"no_results": "Ningún remitente coincide con su búsqueda",
|
||||
"remove": "Eliminar",
|
||||
"close": "Cerrar",
|
||||
"invalid_email": "Por favor ingrese una dirección de correo válida",
|
||||
"already_added": "Este remitente ya es de confianza"
|
||||
}
|
||||
},
|
||||
"composer": {
|
||||
"title": "Editor",
|
||||
"description": "Configure los ajustes de redacción de correos",
|
||||
"autosave": {
|
||||
"label": "Intervalo de Guardado Automático",
|
||||
"description": "Con qué frecuencia guardar borradores automáticamente",
|
||||
"30s": "Cada 30 segundos",
|
||||
"1m": "Cada minuto",
|
||||
"2m": "Cada 2 minutos",
|
||||
"5m": "Cada 5 minutos"
|
||||
},
|
||||
"send_confirmation": {
|
||||
"label": "Confirmación de Envío",
|
||||
"description": "Solicitar confirmación antes de enviar correos"
|
||||
},
|
||||
"default_reply": {
|
||||
"label": "Modo de Respuesta Predeterminado",
|
||||
"description": "Acción predeterminada al hacer clic en responder",
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a Todos"
|
||||
}
|
||||
},
|
||||
"privacy": {
|
||||
"title": "Privacidad y Seguridad",
|
||||
"description": "Administre su configuración de privacidad y seguridad",
|
||||
"external_images": {
|
||||
"label": "Bloquear Imágenes Externas",
|
||||
"description": "Prevenir el seguimiento a través de imágenes externas"
|
||||
},
|
||||
"session_timeout": {
|
||||
"label": "Tiempo de Espera de Sesión",
|
||||
"description": "Cerrar sesión automáticamente después de inactividad",
|
||||
"never": "Nunca",
|
||||
"30m": "30 minutos",
|
||||
"1h": "1 hora",
|
||||
"4h": "4 horas"
|
||||
},
|
||||
"clear_cache": {
|
||||
"label": "Limpiar Caché",
|
||||
"description": "Eliminar datos en caché y archivos temporales",
|
||||
"button": "Limpiar Caché",
|
||||
"confirm": "¿Está seguro de que desea limpiar la caché?",
|
||||
"success": "Caché limpiada exitosamente"
|
||||
}
|
||||
},
|
||||
"account": {
|
||||
"title": "Cuenta",
|
||||
"description": "Vea la información de su cuenta",
|
||||
"email": {
|
||||
"label": "Dirección de Correo",
|
||||
"value": "{{email}}"
|
||||
},
|
||||
"server": {
|
||||
"label": "Servidor JMAP",
|
||||
"value": "{{server}}"
|
||||
},
|
||||
"storage": {
|
||||
"label": "Uso de Almacenamiento",
|
||||
"used": "{{used}} de {{total}} usado",
|
||||
"percentage": "{{percent}}% usado"
|
||||
},
|
||||
"last_sync": {
|
||||
"label": "Última Sincronización",
|
||||
"value": "{{time}}"
|
||||
}
|
||||
},
|
||||
"identities": {
|
||||
"title": "Identidades de Envío",
|
||||
"description": "Administre las direcciones de correo desde las que puede enviar",
|
||||
"identities_count": {
|
||||
"label": "Sus Identidades",
|
||||
"description": "Direcciones de correo configuradas para enviar",
|
||||
"count_zero": "Sin identidades",
|
||||
"count_one": "1 identidad",
|
||||
"count_other": "{{count}} identidades"
|
||||
},
|
||||
"manage": "Administrar Identidades",
|
||||
"sub_addressing": {
|
||||
"label": "Sub-Direccionamiento",
|
||||
"description": "Use etiquetas como usuario+etiqueta@dominio.com para organizar el correo entrante",
|
||||
"learn_more": "Más Información"
|
||||
}
|
||||
},
|
||||
"advanced": {
|
||||
"title": "Avanzado",
|
||||
"description": "Opciones avanzadas y configuración de desarrollador",
|
||||
"debug_mode": {
|
||||
"label": "Modo de Depuración",
|
||||
"description": "Habilitar registro detallado para solución de problemas"
|
||||
},
|
||||
"keyboard_shortcuts": {
|
||||
"label": "Atajos de Teclado",
|
||||
"description": "Ver atajos de teclado disponibles",
|
||||
"button": "Ver Atajos"
|
||||
},
|
||||
"reset_settings": {
|
||||
"label": "Restablecer Configuración",
|
||||
"description": "Restaurar toda la configuración a los valores predeterminados",
|
||||
"button": "Restablecer a Predeterminados"
|
||||
},
|
||||
"export_settings": {
|
||||
"label": "Exportar Configuración",
|
||||
"description": "Descargar su configuración como JSON",
|
||||
"button": "Exportar"
|
||||
},
|
||||
"import_settings": {
|
||||
"label": "Importar Configuración",
|
||||
"description": "Cargar configuración desde archivo JSON",
|
||||
"button": "Importar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"errors": {
|
||||
"page_error_title": "Algo salió mal",
|
||||
"page_error_description": "Encontramos un error inesperado. Por favor, inténtelo de nuevo o regrese a la página principal.",
|
||||
"sidebar_error": "No se pudieron cargar los buzones",
|
||||
"email_list_error": "No se pudieron cargar los correos",
|
||||
"viewer_error_title": "No se puede mostrar el correo",
|
||||
"viewer_error_description": "Hubo un problema al renderizar este correo. Puede contener contenido no compatible.",
|
||||
"composer_error": "No se pudo cargar el editor",
|
||||
"settings_error_title": "Configuración no disponible",
|
||||
"settings_error_description": "No se pudo cargar la configuración. Sus preferencias pueden no guardarse.",
|
||||
"try_again": "Intentar de nuevo",
|
||||
"reload": "Recargar",
|
||||
"reload_emails": "Recargar correos",
|
||||
"reload_settings": "Recargar configuración",
|
||||
"retry": "Reintentar",
|
||||
"go_home": "Ir a bandeja de entrada"
|
||||
},
|
||||
"context_menu": {
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a Todos",
|
||||
"forward": "Reenviar",
|
||||
"mark_read": "Marcar como Leído",
|
||||
"mark_unread": "Marcar como No Leído",
|
||||
"star": "Destacar",
|
||||
"unstar": "Quitar Destacado",
|
||||
"move_to": "Mover a...",
|
||||
"archive": "Archivar",
|
||||
"delete": "Eliminar",
|
||||
"mark_as_spam": "Reportar spam",
|
||||
"not_spam": "No es spam",
|
||||
"color_tag": "Etiqueta de Color",
|
||||
"remove_color": "Eliminar Color",
|
||||
"items_selected": "{{count}} correos seleccionados"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "Atajos de Teclado",
|
||||
"tip": "Presione ? en cualquier momento para mostrar esta ayuda",
|
||||
"sections": {
|
||||
"navigation": "Navegación",
|
||||
"actions": "Acciones de Correo",
|
||||
"global": "Global",
|
||||
"threads": "Conversaciones"
|
||||
},
|
||||
"navigation": {
|
||||
"next_email": "Siguiente correo",
|
||||
"previous_email": "Correo anterior",
|
||||
"open_email": "Abrir correo",
|
||||
"close_email": "Cerrar / Deseleccionar"
|
||||
},
|
||||
"actions": {
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a todos",
|
||||
"forward": "Reenviar",
|
||||
"star": "Alternar destacado",
|
||||
"archive": "Archivar",
|
||||
"delete": "Eliminar",
|
||||
"mark_unread": "Marcar como no leído",
|
||||
"mark_read": "Marcar como leído",
|
||||
"toggle_spam": "Reportar spam / No es spam"
|
||||
},
|
||||
"global": {
|
||||
"compose": "Redactar nuevo correo",
|
||||
"search": "Enfocar búsqueda",
|
||||
"help": "Mostrar atajos",
|
||||
"refresh": "Actualizar correos",
|
||||
"select_all": "Seleccionar todo"
|
||||
},
|
||||
"threads": {
|
||||
"expand_collapse": "Expandir/contraer conversación"
|
||||
}
|
||||
},
|
||||
"threads": {
|
||||
"messages_one": "{count} mensaje",
|
||||
"messages_other": "{count} mensajes",
|
||||
"expand": "Expandir conversación",
|
||||
"collapse": "Contraer conversación",
|
||||
"loading": "Cargando conversación...",
|
||||
"mark_read": "Marcar conversación como leída",
|
||||
"mark_unread": "Marcar conversación como no leída",
|
||||
"archive": "Archivar conversación",
|
||||
"delete": "Eliminar conversación",
|
||||
"star": "Destacar conversación",
|
||||
"unstar": "Quitar destacado de conversación"
|
||||
},
|
||||
"identities": {
|
||||
"modal_title": "Administrar Identidades de Envío",
|
||||
"create_new": "Crear Nueva Identidad",
|
||||
"edit_identity": "Editar Identidad",
|
||||
"delete_confirm": "¿Eliminar esta identidad? Esto no se puede deshacer.",
|
||||
"cannot_delete": "Esta identidad no se puede eliminar",
|
||||
"primary_identity": "Principal",
|
||||
"no_identities": "No se encontraron identidades",
|
||||
"display": {
|
||||
"reply_to": "Responder a:",
|
||||
"bcc": "CCO:",
|
||||
"signature": "Firma:",
|
||||
"preview": "Vista previa:"
|
||||
},
|
||||
"validation_errors": {
|
||||
"invalid_emails": "Correos inválidos: {emails}",
|
||||
"unknown_error": "Error desconocido"
|
||||
},
|
||||
"form": {
|
||||
"name_label": "Nombre para Mostrar",
|
||||
"name_placeholder": "ej., Correo de Trabajo, Personal",
|
||||
"name_required": "El nombre es obligatorio",
|
||||
"email_label": "Dirección de Correo",
|
||||
"email_placeholder": "su.correo@ejemplo.com",
|
||||
"email_required": "El correo es obligatorio",
|
||||
"email_invalid": "Por favor ingrese una dirección de correo válida",
|
||||
"email_immutable": "La dirección de correo no se puede cambiar después de la creación",
|
||||
"reply_to_label": "Responder a (opcional)",
|
||||
"reply_to_placeholder": "diferente@correo.com",
|
||||
"bcc_label": "CCO Automático (opcional)",
|
||||
"bcc_placeholder": "archivo@correo.com",
|
||||
"text_signature_label": "Firma de Texto",
|
||||
"html_signature_label": "Firma HTML",
|
||||
"save": "Guardar Identidad",
|
||||
"cancel": "Cancelar",
|
||||
"creating": "Creando...",
|
||||
"updating": "Actualizando..."
|
||||
},
|
||||
"sub_address": {
|
||||
"button_tooltip": "Usar sub-dirección",
|
||||
"popover_title": "Agregar Etiqueta de Sub-Dirección",
|
||||
"tag_input_placeholder": "Ingrese etiqueta (ej., compras)",
|
||||
"preview_label": "Vista previa:",
|
||||
"recent_tags": "Etiquetas Recientes",
|
||||
"suggested_tags": "Sugeridas",
|
||||
"use_address": "Usar Esta Dirección",
|
||||
"invalid_tag": "La etiqueta debe ser solo alfanumérica y guiones",
|
||||
"tag_too_long": "La etiqueta debe tener 30 caracteres o menos",
|
||||
"help_text": "Los correos enviados a usuario+etiqueta@dominio.com llegarán a su bandeja de entrada",
|
||||
"validation": {
|
||||
"empty": "La etiqueta no puede estar vacía",
|
||||
"too_long": "La etiqueta debe tener {max} caracteres o menos",
|
||||
"invalid_chars": "La etiqueta debe contener solo letras, números y guiones"
|
||||
}
|
||||
},
|
||||
"badge": {
|
||||
"sent_via": "vía",
|
||||
"sub_address_tag": "Enviado usando sub-dirección: {tag}",
|
||||
"identity_name": "Enviado usando identidad: {name}",
|
||||
"identity_short": "vía {name}",
|
||||
"subaddress_tag": "+{tag}"
|
||||
}
|
||||
}
|
||||
}
|
||||
+170
-5
@@ -52,7 +52,13 @@
|
||||
"expand": "Développer",
|
||||
"collapse": "Réduire",
|
||||
"expand_tooltip": "Développer",
|
||||
"collapse_tooltip": "Réduire"
|
||||
"collapse_tooltip": "Réduire",
|
||||
"mobile": {
|
||||
"search": "Rechercher",
|
||||
"compose": "Composer",
|
||||
"go_back": "Retour"
|
||||
},
|
||||
"clear_search": "Effacer la recherche"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Aucun email",
|
||||
@@ -63,7 +69,19 @@
|
||||
"to_recipients": "À {{count}} destinataires",
|
||||
"and_others": "et {{count}} autres",
|
||||
"draft": "Brouillon",
|
||||
"starred": "Favori"
|
||||
"starred": "Favori",
|
||||
"conversations_count": "{count} sur {total} conversations",
|
||||
"conversations_count_plus": "{count}+ conversations",
|
||||
"conversations_count_simple": "{count} conversations",
|
||||
"no_conversations": "Aucune conversation",
|
||||
"loading_more": "Chargement d'autres emails...",
|
||||
"no_more_emails": "Plus d'emails à charger",
|
||||
"batch_actions": {
|
||||
"mark_read": "Marquer comme lu",
|
||||
"mark_unread": "Marquer comme non lu",
|
||||
"delete": "Supprimer",
|
||||
"clear_selection": "Effacer la sélection"
|
||||
}
|
||||
},
|
||||
"email_viewer": {
|
||||
"no_email_selected": "Aucun email sélectionné",
|
||||
@@ -129,6 +147,9 @@
|
||||
"minutes": "minutes"
|
||||
},
|
||||
"unknown_sender": "Inconnu",
|
||||
"recipient_me": "moi",
|
||||
"recipient_and_others": "{name} et {count} autres",
|
||||
"recipient_to_prefix": "À :",
|
||||
"authentication": {
|
||||
"title": "Authentification",
|
||||
"status": {
|
||||
@@ -167,7 +188,35 @@
|
||||
"green": "Vert",
|
||||
"blue": "Bleu",
|
||||
"purple": "Violet",
|
||||
"pink": "Rose",
|
||||
"none": "Aucune"
|
||||
},
|
||||
"tooltips": {
|
||||
"reply": "Répondre",
|
||||
"archive": "Archiver",
|
||||
"delete": "Supprimer"
|
||||
},
|
||||
"spam": {
|
||||
"button_title": "Signaler comme spam",
|
||||
"not_spam_title": "Marquer comme légitime",
|
||||
"toast_success": "Déplacé vers Indésirables",
|
||||
"toast_batch": "{count} e-mails déplacés vers Indésirables",
|
||||
"toast_undo": "Annuler",
|
||||
"toast_not_spam_success": "Déplacé vers Boîte de réception",
|
||||
"toast_not_spam_batch": "{count} e-mails déplacés vers Boîte de réception",
|
||||
"error": "Échec du signalement spam",
|
||||
"error_not_spam": "Échec de la restauration"
|
||||
},
|
||||
"unsubscribe_banner": {
|
||||
"label": "Newsletter",
|
||||
"button": "Se désabonner",
|
||||
"confirm_title": "Se désabonner de cet expéditeur ?",
|
||||
"confirm_button": "Confirmer",
|
||||
"cancel": "Annuler",
|
||||
"success_http": "Page de désabonnement ouverte dans un nouvel onglet",
|
||||
"success_mailto": "Demande de désabonnement envoyée à votre client mail",
|
||||
"error": "Impossible de se désabonner",
|
||||
"dismiss": "Ignorer"
|
||||
}
|
||||
},
|
||||
"email_composer": {
|
||||
@@ -200,6 +249,12 @@
|
||||
"bcc_label": "Cci :",
|
||||
"subject_label": "Objet :",
|
||||
"file_size_kb": "Ko",
|
||||
"prefix": {
|
||||
"forward": "Tr:",
|
||||
"reply": "Re:"
|
||||
},
|
||||
"no_subject": "(Sans objet)",
|
||||
"unknown_sender": "Inconnu",
|
||||
"quote": {
|
||||
"reply_header": "Le {{date}}, {{sender}} a écrit :",
|
||||
"forward_header": "---------- Message transféré ----------",
|
||||
@@ -207,7 +262,8 @@
|
||||
"date": "Date : {{date}}",
|
||||
"subject": "Objet : {{subject}}",
|
||||
"to": "À : {{recipients}}"
|
||||
}
|
||||
},
|
||||
"remove_sub_address": "Retirer le sous-adressage"
|
||||
},
|
||||
"common": {
|
||||
"loading": "Chargement...",
|
||||
@@ -243,7 +299,20 @@
|
||||
"error_loading": "Échec du chargement des emails",
|
||||
"new_email": "Nouvel email",
|
||||
"new_email_from": "De {sender}",
|
||||
"click_to_view": "Cliquer pour voir"
|
||||
"click_to_view": "Cliquer pour voir",
|
||||
"email_moved": "Email déplacé",
|
||||
"emails_moved": "{count} emails déplacés",
|
||||
"moved_to_mailbox": "Déplacé vers {mailbox}",
|
||||
"move_failed": "Échec du déplacement",
|
||||
"move_error": "Impossible de déplacer les emails vers le dossier sélectionné",
|
||||
"identity_created": "Identité créée avec succès",
|
||||
"identity_updated": "Identité mise à jour avec succès",
|
||||
"identity_deleted": "Identité supprimée",
|
||||
"identity_create_failed": "Échec de la création de l'identité: {{error}}",
|
||||
"identity_update_failed": "Échec de la mise à jour de l'identité: {{error}}",
|
||||
"identity_delete_failed": "Échec de la suppression de l'identité: {{error}}",
|
||||
"identity_unauthorized": "Vous n'êtes pas autorisé à envoyer depuis cette adresse email",
|
||||
"identity_not_found": "Identité introuvable"
|
||||
},
|
||||
"date": {
|
||||
"today": "Aujourd'hui",
|
||||
@@ -264,9 +333,21 @@
|
||||
"title": "Langue",
|
||||
"english": "English",
|
||||
"french": "Français",
|
||||
"japanese": "日本語",
|
||||
"spanish": "Español",
|
||||
"italian": "Italiano",
|
||||
"german": "Deutsch",
|
||||
"dutch": "Nederlands",
|
||||
"portuguese": "Português",
|
||||
"select_language": "Sélectionner la langue",
|
||||
"switch_to_english": "Passer à l'anglais",
|
||||
"switch_to_french": "Passer au français",
|
||||
"switch_to_japanese": "Passer au japonais",
|
||||
"switch_to_spanish": "Passer à l'espagnol",
|
||||
"switch_to_italian": "Passer à l'italien",
|
||||
"switch_to_german": "Passer à l'allemand",
|
||||
"switch_to_dutch": "Passer au néerlandais",
|
||||
"switch_to_portuguese": "Passer au portugais",
|
||||
"switching": "Changement de langue..."
|
||||
},
|
||||
"settings": {
|
||||
@@ -283,6 +364,7 @@
|
||||
"composer": "Compositeur",
|
||||
"privacy": "Confidentialité et sécurité",
|
||||
"account": "Compte",
|
||||
"identities": "Identités",
|
||||
"advanced": "Avancé"
|
||||
},
|
||||
"appearance": {
|
||||
@@ -468,6 +550,23 @@
|
||||
"value": "{{time}}"
|
||||
}
|
||||
},
|
||||
"identities": {
|
||||
"title": "Identités d'envoi",
|
||||
"description": "Gérer les adresses email depuis lesquelles vous pouvez envoyer",
|
||||
"identities_count": {
|
||||
"label": "Vos identités",
|
||||
"description": "Adresses email configurées pour l'envoi",
|
||||
"count_zero": "Aucune identité",
|
||||
"count_one": "1 identité",
|
||||
"count_other": "{{count}} identités"
|
||||
},
|
||||
"manage": "Gérer les identités",
|
||||
"sub_addressing": {
|
||||
"label": "Sous-adressage",
|
||||
"description": "Utilisez des tags comme utilisateur+tag@domaine.com pour organiser votre courrier",
|
||||
"learn_more": "En savoir plus"
|
||||
}
|
||||
},
|
||||
"advanced": {
|
||||
"title": "Avancé",
|
||||
"description": "Options avancées et paramètres développeur",
|
||||
@@ -525,6 +624,8 @@
|
||||
"move_to": "Déplacer vers...",
|
||||
"archive": "Archiver",
|
||||
"delete": "Supprimer",
|
||||
"mark_as_spam": "Signaler comme spam",
|
||||
"not_spam": "Pas un spam",
|
||||
"color_tag": "Étiquette de couleur",
|
||||
"remove_color": "Supprimer la couleur",
|
||||
"items_selected": "{{count}} emails sélectionnés"
|
||||
@@ -552,7 +653,8 @@
|
||||
"archive": "Archiver",
|
||||
"delete": "Supprimer",
|
||||
"mark_unread": "Marquer comme non lu",
|
||||
"mark_read": "Marquer comme lu"
|
||||
"mark_read": "Marquer comme lu",
|
||||
"toggle_spam": "Signaler / Pas un spam"
|
||||
},
|
||||
"global": {
|
||||
"compose": "Composer un email",
|
||||
@@ -577,5 +679,68 @@
|
||||
"delete": "Supprimer la conversation",
|
||||
"star": "Marquer la conversation comme favorite",
|
||||
"unstar": "Retirer des favoris"
|
||||
},
|
||||
"identities": {
|
||||
"modal_title": "Gérer les identités d'envoi",
|
||||
"create_new": "Créer une nouvelle identité",
|
||||
"edit_identity": "Modifier l'identité",
|
||||
"delete_confirm": "Supprimer cette identité ? Cette action est irréversible.",
|
||||
"cannot_delete": "Cette identité ne peut pas être supprimée",
|
||||
"primary_identity": "Principale",
|
||||
"no_identities": "Aucune identité trouvée",
|
||||
"display": {
|
||||
"reply_to": "Répondre à :",
|
||||
"bcc": "CCI :",
|
||||
"signature": "Signature :",
|
||||
"preview": "Aperçu :"
|
||||
},
|
||||
"validation_errors": {
|
||||
"invalid_emails": "Emails invalides : {emails}",
|
||||
"unknown_error": "Erreur inconnue"
|
||||
},
|
||||
"form": {
|
||||
"name_label": "Nom d'affichage",
|
||||
"name_placeholder": "ex: Email professionnel, Personnel",
|
||||
"name_required": "Le nom est requis",
|
||||
"email_label": "Adresse email",
|
||||
"email_placeholder": "votre.email@exemple.com",
|
||||
"email_required": "L'email est requis",
|
||||
"email_invalid": "Veuillez entrer une adresse email valide",
|
||||
"email_immutable": "L'adresse email ne peut pas être modifiée après création",
|
||||
"reply_to_label": "Répondre à (optionnel)",
|
||||
"reply_to_placeholder": "autre@email.com",
|
||||
"bcc_label": "Copie cachée automatique (optionnel)",
|
||||
"bcc_placeholder": "archive@email.com",
|
||||
"text_signature_label": "Signature texte",
|
||||
"html_signature_label": "Signature HTML",
|
||||
"save": "Enregistrer l'identité",
|
||||
"cancel": "Annuler",
|
||||
"creating": "Création...",
|
||||
"updating": "Mise à jour..."
|
||||
},
|
||||
"sub_address": {
|
||||
"button_tooltip": "Utiliser le sous-adressage",
|
||||
"popover_title": "Ajouter un tag de sous-adresse",
|
||||
"tag_input_placeholder": "Entrez un tag (ex: shopping)",
|
||||
"preview_label": "Aperçu:",
|
||||
"recent_tags": "Tags récents",
|
||||
"suggested_tags": "Suggérés",
|
||||
"use_address": "Utiliser cette adresse",
|
||||
"invalid_tag": "Le tag doit contenir uniquement des lettres, chiffres et tirets",
|
||||
"tag_too_long": "Le tag doit faire 30 caractères ou moins",
|
||||
"help_text": "Les emails envoyés à utilisateur+tag@domaine.com arriveront dans votre boîte de réception",
|
||||
"validation": {
|
||||
"empty": "Le tag ne peut pas être vide",
|
||||
"too_long": "Le tag doit faire {max} caractères ou moins",
|
||||
"invalid_chars": "Le tag doit contenir uniquement des lettres, chiffres et tirets"
|
||||
}
|
||||
},
|
||||
"badge": {
|
||||
"sent_via": "via",
|
||||
"sub_address_tag": "Envoyé avec le sous-adresse: {tag}",
|
||||
"identity_name": "Envoyé avec l'identité: {name}",
|
||||
"identity_short": "via {name}",
|
||||
"subaddress_tag": "+{tag}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,746 @@
|
||||
{
|
||||
"login": {
|
||||
"title": "Webmail",
|
||||
"username_label": "Email",
|
||||
"username_placeholder": "utente@esempio.com",
|
||||
"password_label": "Password",
|
||||
"password_placeholder": "Inserisci la tua password",
|
||||
"sign_in": "Accedi",
|
||||
"signing_in": "Accesso in corso...",
|
||||
"loading": "Caricamento...",
|
||||
"error": {
|
||||
"invalid_credentials": "Email o password non valida",
|
||||
"connection_failed": "Impossibile connettersi al server",
|
||||
"generic": "Si è verificato un errore. Riprova."
|
||||
},
|
||||
"config_error": {
|
||||
"title": "Errore di configurazione",
|
||||
"fetch_failed": "Impossibile caricare la configurazione dell'applicazione. Riprovare più tardi.",
|
||||
"server_not_configured": "Il server di posta non è stato configurato. Contattare l'amministratore."
|
||||
},
|
||||
"remove_from_history": "Rimuovi dalla cronologia"
|
||||
},
|
||||
"sidebar": {
|
||||
"close": "Chiudi",
|
||||
"compose": "Scrivi",
|
||||
"search_placeholder": "Cerca nella posta...",
|
||||
"storage": "Spazio di archiviazione",
|
||||
"sign_out": "Esci",
|
||||
"settings": "Impostazioni",
|
||||
"loading_mailboxes": "Caricamento caselle di posta...",
|
||||
"push_connected": "Aggiornamenti in tempo reale attivi",
|
||||
"push_disconnected": "Aggiornamenti in tempo reale non attivi",
|
||||
"theme": {
|
||||
"light": "Tema chiaro",
|
||||
"dark": "Tema scuro",
|
||||
"system": "Tema di sistema"
|
||||
},
|
||||
"language": {
|
||||
"title": "Lingua"
|
||||
},
|
||||
"mailboxes": {
|
||||
"inbox": "Posta in arrivo",
|
||||
"sent": "Inviati",
|
||||
"drafts": "Bozze",
|
||||
"trash": "Cestino",
|
||||
"archive": "Archivio",
|
||||
"starred": "Speciali",
|
||||
"all_mail": "Tutta la posta",
|
||||
"spam": "Spam",
|
||||
"important": "Importanti"
|
||||
},
|
||||
"expand": "Espandi",
|
||||
"collapse": "Comprimi",
|
||||
"expand_tooltip": "Espandi",
|
||||
"collapse_tooltip": "Comprimi",
|
||||
"mobile": {
|
||||
"search": "Cerca",
|
||||
"compose": "Scrivi",
|
||||
"go_back": "Indietro"
|
||||
},
|
||||
"clear_search": "Cancella ricerca"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Nessun messaggio",
|
||||
"no_emails_description": "Inizia scrivendo un nuovo messaggio",
|
||||
"loading": "Caricamento messaggi...",
|
||||
"unread": "non letto",
|
||||
"to_me": "A me",
|
||||
"to_recipients": "A {{count}} destinatari",
|
||||
"and_others": "e altri {{count}}",
|
||||
"draft": "Bozza",
|
||||
"starred": "Speciale",
|
||||
"conversations_count": "{count} di {total} conversazioni",
|
||||
"conversations_count_plus": "{count}+ conversazioni",
|
||||
"conversations_count_simple": "{count} conversazioni",
|
||||
"no_conversations": "Nessuna conversazione",
|
||||
"loading_more": "Caricamento altri messaggi...",
|
||||
"no_more_emails": "Nessun altro messaggio da caricare",
|
||||
"batch_actions": {
|
||||
"mark_read": "Segna come letto",
|
||||
"mark_unread": "Segna come non letto",
|
||||
"delete": "Elimina",
|
||||
"clear_selection": "Cancella selezione"
|
||||
}
|
||||
},
|
||||
"email_viewer": {
|
||||
"no_email_selected": "Nessun messaggio selezionato",
|
||||
"no_email_description": "Seleziona un messaggio dall'elenco per visualizzarlo qui",
|
||||
"no_conversation_selected": "Nessuna conversazione selezionata",
|
||||
"no_conversation_description": "Scegli una conversazione dall'elenco per leggerla qui",
|
||||
"no_subject": "(Nessun oggetto)",
|
||||
"loading_email": "Caricamento messaggio...",
|
||||
"loading": "Caricamento...",
|
||||
"reply": "Rispondi",
|
||||
"reply_all": "Rispondi a tutti",
|
||||
"forward": "Inoltra",
|
||||
"delete": "Elimina",
|
||||
"archive": "Archivia",
|
||||
"star": "Aggiungi stella",
|
||||
"unstar": "Rimuovi stella",
|
||||
"mark_unread": "Segna come non letto",
|
||||
"mark_read": "Segna come letto",
|
||||
"print": "Stampa",
|
||||
"view_source": "Visualizza sorgente",
|
||||
"email_source": "Sorgente del messaggio",
|
||||
"copy_source": "Copia negli appunti",
|
||||
"source_copied": "Sorgente copiata negli appunti",
|
||||
"attachments": "Allegati",
|
||||
"important": "Importante",
|
||||
"download": "Scarica",
|
||||
"from": "Da",
|
||||
"to": "A",
|
||||
"cc": "CC",
|
||||
"bcc": "CCN",
|
||||
"date": "Data",
|
||||
"subject": "Oggetto",
|
||||
"show_details": "Mostra dettagli",
|
||||
"hide_details": "Nascondi dettagli",
|
||||
"external_content_warning": "Le immagini e i contenuti esterni sono stati bloccati",
|
||||
"load_external_content": "Carica immagini",
|
||||
"trust_sender": "Considera sempre attendibile questo mittente",
|
||||
"back_to_list": "Torna all'elenco",
|
||||
"message_details": "Dettagli del messaggio",
|
||||
"more_reply_options": "Più opzioni di risposta",
|
||||
"set_color": "Imposta colore",
|
||||
"more_actions": "Altre azioni",
|
||||
"remove_color": "Rimuovi colore",
|
||||
"more_count": "+{count} altri",
|
||||
"characters_count": "{count} caratteri",
|
||||
"quick_reply_placeholder": "Scrivi una risposta veloce...",
|
||||
"more_options": "Più opzioni",
|
||||
"sending": "Invio in corso...",
|
||||
"security_authentication": "Sicurezza e autenticazione",
|
||||
"technical_details": "Dettagli tecnici",
|
||||
"message_id_label": "ID messaggio:",
|
||||
"reply_to_label": "Rispondi a:",
|
||||
"delivery_time_label": "Orario di consegna:",
|
||||
"conversation_part_label": "Parte della conversazione:",
|
||||
"previous_messages": "{count} messaggio precedente",
|
||||
"previous_messages_plural": "{count} messaggi precedenti",
|
||||
"time": {
|
||||
"day": "giorno",
|
||||
"days": "giorni",
|
||||
"hour": "ora",
|
||||
"hours": "ore",
|
||||
"minute": "minuto",
|
||||
"minutes": "minuti"
|
||||
},
|
||||
"unknown_sender": "Sconosciuto",
|
||||
"recipient_me": "io",
|
||||
"recipient_and_others": "{name} e altri {count}",
|
||||
"recipient_to_prefix": "A:",
|
||||
"authentication": {
|
||||
"title": "Autenticazione",
|
||||
"status": {
|
||||
"verified": "Verificato",
|
||||
"warning": "Attenzione",
|
||||
"none": "Non autenticato"
|
||||
},
|
||||
"spf": {
|
||||
"pass": "SPF superato",
|
||||
"fail": "SPF fallito",
|
||||
"none": "Nessun SPF"
|
||||
},
|
||||
"dkim": {
|
||||
"pass": "DKIM valido",
|
||||
"fail": "DKIM non valido",
|
||||
"none": "Nessun DKIM"
|
||||
},
|
||||
"dmarc": {
|
||||
"pass": "DMARC superato",
|
||||
"fail": "DMARC fallito",
|
||||
"none": "Nessun DMARC"
|
||||
},
|
||||
"spam_score": "Punteggio spam"
|
||||
},
|
||||
"headers": {
|
||||
"routing": "Instradamento",
|
||||
"received": "Ricevuto",
|
||||
"message_id": "ID messaggio",
|
||||
"list_info": "Informazioni lista"
|
||||
},
|
||||
"color_tag": {
|
||||
"title": "Etichetta colore",
|
||||
"red": "Rosso",
|
||||
"orange": "Arancione",
|
||||
"yellow": "Giallo",
|
||||
"green": "Verde",
|
||||
"blue": "Blu",
|
||||
"purple": "Viola",
|
||||
"pink": "Rosa",
|
||||
"none": "Nessuno"
|
||||
},
|
||||
"tooltips": {
|
||||
"reply": "Rispondi",
|
||||
"archive": "Archivia",
|
||||
"delete": "Elimina"
|
||||
},
|
||||
"spam": {
|
||||
"button_title": "Segnala come spam",
|
||||
"not_spam_title": "Segna come legittimo",
|
||||
"toast_success": "Spostato in Posta indesiderata",
|
||||
"toast_batch": "{count} messaggi spostati in Posta indesiderata",
|
||||
"toast_undo": "Annulla",
|
||||
"toast_not_spam_success": "Spostato in Posta in arrivo",
|
||||
"toast_not_spam_batch": "{count} messaggi spostati in Posta in arrivo",
|
||||
"error": "Impossibile segnalare come spam",
|
||||
"error_not_spam": "Impossibile ripristinare il messaggio"
|
||||
},
|
||||
"unsubscribe_banner": {
|
||||
"label": "Newsletter",
|
||||
"button": "Annulla iscrizione",
|
||||
"confirm_title": "Annullare l'iscrizione da questo mittente?",
|
||||
"confirm_button": "Conferma",
|
||||
"cancel": "Annulla",
|
||||
"success_http": "Pagina di annullamento iscrizione aperta in una nuova scheda",
|
||||
"success_mailto": "Richiesta di annullamento iscrizione inviata al tuo client email",
|
||||
"error": "Impossibile annullare l'iscrizione",
|
||||
"dismiss": "Ignora"
|
||||
}
|
||||
},
|
||||
"email_composer": {
|
||||
"new_message": "Nuovo messaggio",
|
||||
"reply": "Rispondi",
|
||||
"reply_all": "Rispondi a tutti",
|
||||
"forward": "Inoltra",
|
||||
"reply_to": "Rispondi",
|
||||
"reply_all_to": "Rispondi a tutti",
|
||||
"forward_message": "Inoltra",
|
||||
"from": "Da",
|
||||
"to": "A",
|
||||
"cc": "CC",
|
||||
"bcc": "CCN",
|
||||
"subject": "Oggetto",
|
||||
"body_placeholder": "Scrivi il tuo messaggio...",
|
||||
"send": "Invia",
|
||||
"cancel": "Annulla",
|
||||
"attach": "Allega",
|
||||
"discard": "Scarta",
|
||||
"discard_draft_confirm": "Ci sono modifiche non salvate. Vuoi scartare questa bozza?",
|
||||
"saving": "Salvataggio...",
|
||||
"draft_saved": "Bozza salvata",
|
||||
"save_failed": "Salvataggio non riuscito",
|
||||
"to_placeholder": "Indirizzi email dei destinatari (separati da virgola)",
|
||||
"cc_placeholder": "Destinatari in copia (separati da virgola)",
|
||||
"bcc_placeholder": "Destinatari in copia nascosta (separati da virgola)",
|
||||
"subject_placeholder": "Oggetto",
|
||||
"cc_label": "Cc:",
|
||||
"bcc_label": "Ccn:",
|
||||
"subject_label": "Oggetto:",
|
||||
"file_size_kb": "KB",
|
||||
"prefix": {
|
||||
"forward": "Inol:",
|
||||
"reply": "Re:"
|
||||
},
|
||||
"no_subject": "(Nessun oggetto)",
|
||||
"unknown_sender": "Sconosciuto",
|
||||
"quote": {
|
||||
"reply_header": "Il {{date}}, {{sender}} ha scritto:",
|
||||
"forward_header": "---------- Messaggio inoltrato ----------",
|
||||
"from": "Da: {{sender}}",
|
||||
"date": "Data: {{date}}",
|
||||
"subject": "Oggetto: {{subject}}",
|
||||
"to": "A: {{recipients}}"
|
||||
},
|
||||
"remove_sub_address": "Rimuovi sotto-indirizzo"
|
||||
},
|
||||
"common": {
|
||||
"loading": "Caricamento...",
|
||||
"error": "Errore",
|
||||
"success": "Successo",
|
||||
"cancel": "Annulla",
|
||||
"save": "Salva",
|
||||
"delete": "Elimina",
|
||||
"edit": "Modifica",
|
||||
"close": "Chiudi",
|
||||
"search": "Cerca",
|
||||
"refresh": "Aggiorna",
|
||||
"settings": "Impostazioni",
|
||||
"help": "Aiuto",
|
||||
"logout": "Esci",
|
||||
"yes": "Sì",
|
||||
"no": "No",
|
||||
"unknown": "Sconosciuto",
|
||||
"app_title": "Webmail"
|
||||
},
|
||||
"notifications": {
|
||||
"email_sent": "Messaggio inviato con successo",
|
||||
"email_deleted": "Messaggio eliminato",
|
||||
"email_archived": "Messaggio archiviato",
|
||||
"email_starred": "Stella aggiunta al messaggio",
|
||||
"email_unstarred": "Stella rimossa dal messaggio",
|
||||
"email_marked_read": "Messaggio segnato come letto",
|
||||
"email_marked_unread": "Messaggio segnato come non letto",
|
||||
"copied_to_clipboard": "Copiato negli appunti",
|
||||
"source_copied": "Sorgente copiata negli appunti",
|
||||
"error_sending": "Impossibile inviare il messaggio",
|
||||
"error_deleting": "Impossibile eliminare il messaggio",
|
||||
"error_loading": "Impossibile caricare i messaggi",
|
||||
"new_email": "Nuovo messaggio",
|
||||
"new_email_from": "Da {sender}",
|
||||
"click_to_view": "Clicca per visualizzare",
|
||||
"email_moved": "Messaggio spostato",
|
||||
"emails_moved": "{count} messaggi spostati",
|
||||
"moved_to_mailbox": "Spostato in {mailbox}",
|
||||
"move_failed": "Spostamento non riuscito",
|
||||
"move_error": "Impossibile spostare i messaggi nella cartella selezionata",
|
||||
"identity_created": "Identità creata con successo",
|
||||
"identity_updated": "Identità aggiornata con successo",
|
||||
"identity_deleted": "Identità eliminata",
|
||||
"identity_create_failed": "Impossibile creare l'identità: {{error}}",
|
||||
"identity_update_failed": "Impossibile aggiornare l'identità: {{error}}",
|
||||
"identity_delete_failed": "Impossibile eliminare l'identità: {{error}}",
|
||||
"identity_unauthorized": "Non sei autorizzato a inviare da questo indirizzo email",
|
||||
"identity_not_found": "Identità non trovata"
|
||||
},
|
||||
"date": {
|
||||
"today": "Oggi",
|
||||
"yesterday": "Ieri",
|
||||
"this_week": "Questa settimana",
|
||||
"last_week": "Settimana scorsa",
|
||||
"this_month": "Questo mese",
|
||||
"older": "Meno recenti",
|
||||
"just_now": "Proprio ora",
|
||||
"minutes_ago": "{{count}} minuto fa",
|
||||
"minutes_ago_plural": "{{count}} minuti fa",
|
||||
"hours_ago": "{{count}} ora fa",
|
||||
"hours_ago_plural": "{{count}} ore fa",
|
||||
"days_ago": "{{count}} giorno fa",
|
||||
"days_ago_plural": "{{count}} giorni fa"
|
||||
},
|
||||
"language": {
|
||||
"title": "Lingua",
|
||||
"english": "English",
|
||||
"french": "Français",
|
||||
"japanese": "日本語",
|
||||
"spanish": "Español",
|
||||
"italian": "Italiano",
|
||||
"german": "Deutsch",
|
||||
"dutch": "Nederlands",
|
||||
"portuguese": "Português",
|
||||
"select_language": "Seleziona lingua",
|
||||
"switch_to_english": "Passa all'inglese",
|
||||
"switch_to_french": "Passa al francese",
|
||||
"switch_to_japanese": "Passa al giapponese",
|
||||
"switch_to_spanish": "Passa allo spagnolo",
|
||||
"switch_to_italian": "Passa all'italiano",
|
||||
"switch_to_german": "Passa al tedesco",
|
||||
"switch_to_dutch": "Passa all'olandese",
|
||||
"switch_to_portuguese": "Passa al portoghese",
|
||||
"switching": "Cambio lingua in corso..."
|
||||
},
|
||||
"settings": {
|
||||
"title": "Impostazioni",
|
||||
"back_to_mail": "Torna alla posta",
|
||||
"save_success": "Impostazioni salvate con successo",
|
||||
"import_success": "Impostazioni importate con successo",
|
||||
"import_error": "Impossibile importare le impostazioni",
|
||||
"reset_confirm": "Sei sicuro di voler ripristinare tutte le impostazioni ai valori predefiniti?",
|
||||
"tabs": {
|
||||
"appearance": "Aspetto",
|
||||
"language": "Lingua e regione",
|
||||
"email": "Comportamento email",
|
||||
"composer": "Editor",
|
||||
"privacy": "Privacy e sicurezza",
|
||||
"account": "Account",
|
||||
"identities": "Identità",
|
||||
"advanced": "Avanzate"
|
||||
},
|
||||
"appearance": {
|
||||
"title": "Aspetto",
|
||||
"description": "Personalizza l'aspetto della tua webmail",
|
||||
"theme": {
|
||||
"label": "Tema",
|
||||
"description": "Scegli la tua combinazione di colori preferita",
|
||||
"light": "Chiaro",
|
||||
"dark": "Scuro",
|
||||
"system": "Sistema"
|
||||
},
|
||||
"language": {
|
||||
"label": "Lingua",
|
||||
"description": "Scegli la tua lingua preferita"
|
||||
},
|
||||
"font_size": {
|
||||
"label": "Dimensione carattere",
|
||||
"description": "Regola la dimensione del testo per una migliore leggibilità",
|
||||
"small": "Piccolo",
|
||||
"medium": "Medio",
|
||||
"large": "Grande"
|
||||
},
|
||||
"list_density": {
|
||||
"label": "Densità elenco",
|
||||
"description": "Controlla la spaziatura negli elenchi email",
|
||||
"compact": "Compatto",
|
||||
"regular": "Normale",
|
||||
"comfortable": "Comodo"
|
||||
},
|
||||
"animations": {
|
||||
"label": "Abilita animazioni",
|
||||
"description": "Mostra transizioni ed effetti fluidi"
|
||||
}
|
||||
},
|
||||
"language_region": {
|
||||
"title": "Lingua e regione",
|
||||
"description": "Configura le preferenze di lingua e regionali",
|
||||
"language": {
|
||||
"label": "Lingua",
|
||||
"description": "Scegli la tua lingua preferita",
|
||||
"english": "English",
|
||||
"french": "Français"
|
||||
},
|
||||
"date_format": {
|
||||
"label": "Formato data",
|
||||
"description": "Come devono essere visualizzate le date",
|
||||
"regional": "Regionale",
|
||||
"iso": "ISO 8601",
|
||||
"custom": "Personalizzato"
|
||||
},
|
||||
"time_format": {
|
||||
"label": "Formato ora",
|
||||
"description": "Scegli tra formato 12 o 24 ore",
|
||||
"12h": "12 ore",
|
||||
"24h": "24 ore"
|
||||
},
|
||||
"first_day": {
|
||||
"label": "Primo giorno della settimana",
|
||||
"description": "Inizia la settimana di domenica o lunedì",
|
||||
"sunday": "Domenica",
|
||||
"monday": "Lunedì"
|
||||
}
|
||||
},
|
||||
"email_behavior": {
|
||||
"title": "Comportamento email",
|
||||
"description": "Configura come vengono gestiti i messaggi",
|
||||
"mark_read": {
|
||||
"label": "Segna come letto",
|
||||
"description": "Quando segnare i messaggi come letti all'apertura",
|
||||
"instant": "Istantaneamente",
|
||||
"delay_3s": "Dopo 3 secondi",
|
||||
"delay_5s": "Dopo 5 secondi",
|
||||
"never": "Mai"
|
||||
},
|
||||
"delete_action": {
|
||||
"label": "Azione di eliminazione",
|
||||
"description": "Cosa accade quando elimini un messaggio",
|
||||
"trash": "Sposta nel cestino",
|
||||
"permanent": "Elimina definitivamente"
|
||||
},
|
||||
"show_preview": {
|
||||
"label": "Mostra anteprima testo",
|
||||
"description": "Visualizza l'anteprima del messaggio nell'elenco"
|
||||
},
|
||||
"emails_per_page": {
|
||||
"label": "Messaggi per pagina",
|
||||
"description": "Numero di messaggi da caricare alla volta",
|
||||
"25": "25 messaggi",
|
||||
"50": "50 messaggi",
|
||||
"100": "100 messaggi"
|
||||
},
|
||||
"external_content": {
|
||||
"label": "Contenuti esterni",
|
||||
"description": "Come gestire immagini e contenuti esterni",
|
||||
"ask": "Chiedi sempre",
|
||||
"block": "Blocca sempre",
|
||||
"allow": "Consenti sempre"
|
||||
},
|
||||
"trusted_senders": {
|
||||
"label": "Mittenti attendibili",
|
||||
"description": "Gestisci i mittenti le cui immagini si caricano automaticamente",
|
||||
"count_zero": "Nessuno",
|
||||
"count_one": "1 mittente",
|
||||
"count_other": "{count} mittenti",
|
||||
"modal_title": "Mittenti attendibili",
|
||||
"empty_title": "Nessun mittente attendibile ancora",
|
||||
"empty_description": "Durante la visualizzazione di un messaggio con immagini bloccate, clicca \"Considera sempre attendibile questo mittente\" per aggiungerlo qui.",
|
||||
"add_manually": "Aggiungi mittente manualmente",
|
||||
"add_button": "Aggiungi",
|
||||
"add_placeholder": "Inserisci indirizzo email",
|
||||
"search_placeholder": "Cerca mittenti...",
|
||||
"no_results": "Nessun mittente corrisponde alla tua ricerca",
|
||||
"remove": "Rimuovi",
|
||||
"close": "Chiudi",
|
||||
"invalid_email": "Inserisci un indirizzo email valido",
|
||||
"already_added": "Questo mittente è già attendibile"
|
||||
}
|
||||
},
|
||||
"composer": {
|
||||
"title": "Editor",
|
||||
"description": "Configura le impostazioni di composizione email",
|
||||
"autosave": {
|
||||
"label": "Intervallo di salvataggio automatico",
|
||||
"description": "Con quale frequenza salvare automaticamente le bozze",
|
||||
"30s": "Ogni 30 secondi",
|
||||
"1m": "Ogni minuto",
|
||||
"2m": "Ogni 2 minuti",
|
||||
"5m": "Ogni 5 minuti"
|
||||
},
|
||||
"send_confirmation": {
|
||||
"label": "Conferma invio",
|
||||
"description": "Chiedi conferma prima di inviare messaggi"
|
||||
},
|
||||
"default_reply": {
|
||||
"label": "Modalità risposta predefinita",
|
||||
"description": "Azione predefinita quando si fa clic su rispondi",
|
||||
"reply": "Rispondi",
|
||||
"reply_all": "Rispondi a tutti"
|
||||
}
|
||||
},
|
||||
"privacy": {
|
||||
"title": "Privacy e sicurezza",
|
||||
"description": "Gestisci le tue impostazioni di privacy e sicurezza",
|
||||
"external_images": {
|
||||
"label": "Blocca immagini esterne",
|
||||
"description": "Impedisci il tracciamento attraverso immagini esterne"
|
||||
},
|
||||
"session_timeout": {
|
||||
"label": "Timeout sessione",
|
||||
"description": "Disconnetti automaticamente dopo inattività",
|
||||
"never": "Mai",
|
||||
"30m": "30 minuti",
|
||||
"1h": "1 ora",
|
||||
"4h": "4 ore"
|
||||
},
|
||||
"clear_cache": {
|
||||
"label": "Cancella cache",
|
||||
"description": "Rimuovi dati memorizzati nella cache e file temporanei",
|
||||
"button": "Cancella cache",
|
||||
"confirm": "Sei sicuro di voler cancellare la cache?",
|
||||
"success": "Cache cancellata con successo"
|
||||
}
|
||||
},
|
||||
"account": {
|
||||
"title": "Account",
|
||||
"description": "Visualizza le informazioni del tuo account",
|
||||
"email": {
|
||||
"label": "Indirizzo email",
|
||||
"value": "{{email}}"
|
||||
},
|
||||
"server": {
|
||||
"label": "Server JMAP",
|
||||
"value": "{{server}}"
|
||||
},
|
||||
"storage": {
|
||||
"label": "Utilizzo spazio",
|
||||
"used": "{{used}} di {{total}} utilizzati",
|
||||
"percentage": "{{percent}}% utilizzato"
|
||||
},
|
||||
"last_sync": {
|
||||
"label": "Ultima sincronizzazione",
|
||||
"value": "{{time}}"
|
||||
}
|
||||
},
|
||||
"identities": {
|
||||
"title": "Identità di invio",
|
||||
"description": "Gestisci gli indirizzi email da cui puoi inviare",
|
||||
"identities_count": {
|
||||
"label": "Le tue identità",
|
||||
"description": "Indirizzi email configurati per l'invio",
|
||||
"count_zero": "Nessuna identità",
|
||||
"count_one": "1 identità",
|
||||
"count_other": "{{count}} identità"
|
||||
},
|
||||
"manage": "Gestisci identità",
|
||||
"sub_addressing": {
|
||||
"label": "Sotto-indirizzamento",
|
||||
"description": "Usa tag come utente+tag@dominio.com per organizzare la posta in arrivo",
|
||||
"learn_more": "Scopri di più"
|
||||
}
|
||||
},
|
||||
"advanced": {
|
||||
"title": "Avanzate",
|
||||
"description": "Opzioni avanzate e impostazioni per sviluppatori",
|
||||
"debug_mode": {
|
||||
"label": "Modalità debug",
|
||||
"description": "Abilita registrazione dettagliata per la risoluzione dei problemi"
|
||||
},
|
||||
"keyboard_shortcuts": {
|
||||
"label": "Scorciatoie da tastiera",
|
||||
"description": "Visualizza le scorciatoie da tastiera disponibili",
|
||||
"button": "Visualizza scorciatoie"
|
||||
},
|
||||
"reset_settings": {
|
||||
"label": "Ripristina impostazioni",
|
||||
"description": "Ripristina tutte le impostazioni ai valori predefiniti",
|
||||
"button": "Ripristina ai valori predefiniti"
|
||||
},
|
||||
"export_settings": {
|
||||
"label": "Esporta impostazioni",
|
||||
"description": "Scarica le tue impostazioni come JSON",
|
||||
"button": "Esporta"
|
||||
},
|
||||
"import_settings": {
|
||||
"label": "Importa impostazioni",
|
||||
"description": "Carica impostazioni da file JSON",
|
||||
"button": "Importa"
|
||||
}
|
||||
}
|
||||
},
|
||||
"errors": {
|
||||
"page_error_title": "Qualcosa è andato storto",
|
||||
"page_error_description": "Si è verificato un errore imprevisto. Riprova o torna alla pagina principale.",
|
||||
"sidebar_error": "Impossibile caricare le caselle di posta",
|
||||
"email_list_error": "Impossibile caricare i messaggi",
|
||||
"viewer_error_title": "Impossibile visualizzare il messaggio",
|
||||
"viewer_error_description": "Si è verificato un problema nella visualizzazione di questo messaggio. Potrebbe contenere contenuti non supportati.",
|
||||
"composer_error": "Impossibile caricare l'editor",
|
||||
"settings_error_title": "Impostazioni non disponibili",
|
||||
"settings_error_description": "Impossibile caricare le impostazioni. Le tue preferenze potrebbero non essere salvate.",
|
||||
"try_again": "Riprova",
|
||||
"reload": "Ricarica",
|
||||
"reload_emails": "Ricarica messaggi",
|
||||
"reload_settings": "Ricarica impostazioni",
|
||||
"retry": "Riprova",
|
||||
"go_home": "Vai alla posta in arrivo"
|
||||
},
|
||||
"context_menu": {
|
||||
"reply": "Rispondi",
|
||||
"reply_all": "Rispondi a tutti",
|
||||
"forward": "Inoltra",
|
||||
"mark_read": "Segna come letto",
|
||||
"mark_unread": "Segna come non letto",
|
||||
"star": "Aggiungi stella",
|
||||
"unstar": "Rimuovi stella",
|
||||
"move_to": "Sposta in...",
|
||||
"archive": "Archivia",
|
||||
"delete": "Elimina",
|
||||
"mark_as_spam": "Segnala come spam",
|
||||
"not_spam": "Non spam",
|
||||
"color_tag": "Etichetta colore",
|
||||
"remove_color": "Rimuovi colore",
|
||||
"items_selected": "{{count}} messaggi selezionati"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "Scorciatoie da tastiera",
|
||||
"tip": "Premi ? in qualsiasi momento per mostrare questo aiuto",
|
||||
"sections": {
|
||||
"navigation": "Navigazione",
|
||||
"actions": "Azioni sui messaggi",
|
||||
"global": "Globali",
|
||||
"threads": "Conversazioni"
|
||||
},
|
||||
"navigation": {
|
||||
"next_email": "Messaggio successivo",
|
||||
"previous_email": "Messaggio precedente",
|
||||
"open_email": "Apri messaggio",
|
||||
"close_email": "Chiudi / Deseleziona"
|
||||
},
|
||||
"actions": {
|
||||
"reply": "Rispondi",
|
||||
"reply_all": "Rispondi a tutti",
|
||||
"forward": "Inoltra",
|
||||
"star": "Attiva/disattiva stella",
|
||||
"archive": "Archivia",
|
||||
"delete": "Elimina",
|
||||
"mark_unread": "Segna come non letto",
|
||||
"mark_read": "Segna come letto",
|
||||
"toggle_spam": "Segnala spam / Non spam"
|
||||
},
|
||||
"global": {
|
||||
"compose": "Scrivi nuovo messaggio",
|
||||
"search": "Cerca",
|
||||
"help": "Mostra scorciatoie",
|
||||
"refresh": "Aggiorna messaggi",
|
||||
"select_all": "Seleziona tutto"
|
||||
},
|
||||
"threads": {
|
||||
"expand_collapse": "Espandi/comprimi conversazione"
|
||||
}
|
||||
},
|
||||
"threads": {
|
||||
"messages_one": "{count} messaggio",
|
||||
"messages_other": "{count} messaggi",
|
||||
"expand": "Espandi conversazione",
|
||||
"collapse": "Comprimi conversazione",
|
||||
"loading": "Caricamento conversazione...",
|
||||
"mark_read": "Segna conversazione come letta",
|
||||
"mark_unread": "Segna conversazione come non letta",
|
||||
"archive": "Archivia conversazione",
|
||||
"delete": "Elimina conversazione",
|
||||
"star": "Aggiungi stella alla conversazione",
|
||||
"unstar": "Rimuovi stella dalla conversazione"
|
||||
},
|
||||
"identities": {
|
||||
"modal_title": "Gestisci identità di invio",
|
||||
"create_new": "Crea nuova identità",
|
||||
"edit_identity": "Modifica identità",
|
||||
"delete_confirm": "Eliminare questa identità? Questa azione non può essere annullata.",
|
||||
"cannot_delete": "Questa identità non può essere eliminata",
|
||||
"primary_identity": "Principale",
|
||||
"no_identities": "Nessuna identità trovata",
|
||||
"display": {
|
||||
"reply_to": "Rispondi a:",
|
||||
"bcc": "CCN:",
|
||||
"signature": "Firma:",
|
||||
"preview": "Anteprima:"
|
||||
},
|
||||
"validation_errors": {
|
||||
"invalid_emails": "Email non valide: {emails}",
|
||||
"unknown_error": "Errore sconosciuto"
|
||||
},
|
||||
"form": {
|
||||
"name_label": "Nome visualizzato",
|
||||
"name_placeholder": "es. Email lavoro, Personale",
|
||||
"name_required": "Il nome è obbligatorio",
|
||||
"email_label": "Indirizzo email",
|
||||
"email_placeholder": "tua.email@esempio.com",
|
||||
"email_required": "L'email è obbligatoria",
|
||||
"email_invalid": "Inserisci un indirizzo email valido",
|
||||
"email_immutable": "L'indirizzo email non può essere modificato dopo la creazione",
|
||||
"reply_to_label": "Rispondi a (facoltativo)",
|
||||
"reply_to_placeholder": "diversa@email.com",
|
||||
"bcc_label": "CCN automatica (facoltativo)",
|
||||
"bcc_placeholder": "archivio@email.com",
|
||||
"text_signature_label": "Firma di testo",
|
||||
"html_signature_label": "Firma HTML",
|
||||
"save": "Salva identità",
|
||||
"cancel": "Annulla",
|
||||
"creating": "Creazione...",
|
||||
"updating": "Aggiornamento..."
|
||||
},
|
||||
"sub_address": {
|
||||
"button_tooltip": "Usa sotto-indirizzo",
|
||||
"popover_title": "Aggiungi tag sotto-indirizzo",
|
||||
"tag_input_placeholder": "Inserisci tag (es. shopping)",
|
||||
"preview_label": "Anteprima:",
|
||||
"recent_tags": "Tag recenti",
|
||||
"suggested_tags": "Suggeriti",
|
||||
"use_address": "Usa questo indirizzo",
|
||||
"invalid_tag": "Il tag deve contenere solo caratteri alfanumerici e trattini",
|
||||
"tag_too_long": "Il tag deve essere di massimo 30 caratteri",
|
||||
"help_text": "I messaggi inviati a utente+tag@dominio.com arriveranno nella tua casella di posta",
|
||||
"validation": {
|
||||
"empty": "Il tag non può essere vuoto",
|
||||
"too_long": "Il tag deve essere di massimo {max} caratteri",
|
||||
"invalid_chars": "Il tag deve contenere solo lettere, numeri e trattini"
|
||||
}
|
||||
},
|
||||
"badge": {
|
||||
"sent_via": "tramite",
|
||||
"sub_address_tag": "Inviato usando sotto-indirizzo: {tag}",
|
||||
"identity_name": "Inviato usando identità: {name}",
|
||||
"identity_short": "tramite {name}",
|
||||
"subaddress_tag": "+{tag}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,746 @@
|
||||
{
|
||||
"login": {
|
||||
"title": "ウェブメール",
|
||||
"username_label": "メールアドレス",
|
||||
"username_placeholder": "user@example.com",
|
||||
"password_label": "パスワード",
|
||||
"password_placeholder": "パスワードを入力",
|
||||
"sign_in": "サインイン",
|
||||
"signing_in": "サインイン中...",
|
||||
"loading": "読み込み中...",
|
||||
"error": {
|
||||
"invalid_credentials": "メールアドレスまたはパスワードが無効です",
|
||||
"connection_failed": "サーバーへの接続に失敗しました",
|
||||
"generic": "エラーが発生しました。もう一度お試しください。"
|
||||
},
|
||||
"config_error": {
|
||||
"title": "設定エラー",
|
||||
"fetch_failed": "アプリケーション設定を読み込めません。後でもう一度お試しください。",
|
||||
"server_not_configured": "メールサーバーが設定されていません。管理者にお問い合わせください。"
|
||||
},
|
||||
"remove_from_history": "履歴から削除"
|
||||
},
|
||||
"sidebar": {
|
||||
"close": "閉じる",
|
||||
"compose": "作成",
|
||||
"search_placeholder": "メールを検索...",
|
||||
"storage": "ストレージ",
|
||||
"sign_out": "サインアウト",
|
||||
"settings": "設定",
|
||||
"loading_mailboxes": "メールボックスを読み込み中...",
|
||||
"push_connected": "リアルタイム更新が有効",
|
||||
"push_disconnected": "リアルタイム更新が無効",
|
||||
"theme": {
|
||||
"light": "ライトモード",
|
||||
"dark": "ダークモード",
|
||||
"system": "システムテーマ"
|
||||
},
|
||||
"language": {
|
||||
"title": "言語"
|
||||
},
|
||||
"mailboxes": {
|
||||
"inbox": "受信トレイ",
|
||||
"sent": "送信済み",
|
||||
"drafts": "下書き",
|
||||
"trash": "ゴミ箱",
|
||||
"archive": "アーカイブ",
|
||||
"starred": "スター付き",
|
||||
"all_mail": "すべてのメール",
|
||||
"spam": "迷惑メール",
|
||||
"important": "重要"
|
||||
},
|
||||
"expand": "展開",
|
||||
"collapse": "折りたたむ",
|
||||
"expand_tooltip": "展開",
|
||||
"collapse_tooltip": "折りたたむ",
|
||||
"mobile": {
|
||||
"search": "検索",
|
||||
"compose": "作成",
|
||||
"go_back": "戻る"
|
||||
},
|
||||
"clear_search": "検索をクリア"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "メールがありません",
|
||||
"no_emails_description": "新しいメールを作成してください",
|
||||
"loading": "メールを読み込み中...",
|
||||
"unread": "未読",
|
||||
"to_me": "宛先: 自分",
|
||||
"to_recipients": "{{count}}人の宛先",
|
||||
"and_others": "他{{count}}人",
|
||||
"draft": "下書き",
|
||||
"starred": "スター付き",
|
||||
"conversations_count": "{total}件中{count}件の会話",
|
||||
"conversations_count_plus": "{count}件以上の会話",
|
||||
"conversations_count_simple": "{count}件の会話",
|
||||
"no_conversations": "会話がありません",
|
||||
"loading_more": "さらにメールを読み込み中...",
|
||||
"no_more_emails": "読み込むメールがありません",
|
||||
"batch_actions": {
|
||||
"mark_read": "既読にする",
|
||||
"mark_unread": "未読にする",
|
||||
"delete": "削除",
|
||||
"clear_selection": "選択を解除"
|
||||
}
|
||||
},
|
||||
"email_viewer": {
|
||||
"no_email_selected": "メールが選択されていません",
|
||||
"no_email_description": "リストからメールを選択して表示してください",
|
||||
"no_conversation_selected": "会話が選択されていません",
|
||||
"no_conversation_description": "リストから会話を選択して読んでください",
|
||||
"no_subject": "(件名なし)",
|
||||
"loading_email": "メールを読み込み中...",
|
||||
"loading": "読み込み中...",
|
||||
"reply": "返信",
|
||||
"reply_all": "全員に返信",
|
||||
"forward": "転送",
|
||||
"delete": "削除",
|
||||
"archive": "アーカイブ",
|
||||
"star": "スターを付ける",
|
||||
"unstar": "スターを外す",
|
||||
"mark_unread": "未読にする",
|
||||
"mark_read": "既読にする",
|
||||
"print": "印刷",
|
||||
"view_source": "ソースを表示",
|
||||
"email_source": "メールソース",
|
||||
"copy_source": "クリップボードにコピー",
|
||||
"source_copied": "ソースをクリップボードにコピーしました",
|
||||
"attachments": "添付ファイル",
|
||||
"important": "重要",
|
||||
"download": "ダウンロード",
|
||||
"from": "送信者",
|
||||
"to": "宛先",
|
||||
"cc": "CC",
|
||||
"bcc": "BCC",
|
||||
"date": "日付",
|
||||
"subject": "件名",
|
||||
"show_details": "詳細を表示",
|
||||
"hide_details": "詳細を非表示",
|
||||
"external_content_warning": "画像と外部コンテンツがブロックされました",
|
||||
"load_external_content": "画像を読み込む",
|
||||
"trust_sender": "常にこの送信者を信頼する",
|
||||
"back_to_list": "リストに戻る",
|
||||
"message_details": "メッセージの詳細",
|
||||
"more_reply_options": "その他の返信オプション",
|
||||
"set_color": "色を設定",
|
||||
"more_actions": "その他の操作",
|
||||
"remove_color": "色を削除",
|
||||
"more_count": "他{count}件",
|
||||
"characters_count": "{count}文字",
|
||||
"quick_reply_placeholder": "クイック返信を入力...",
|
||||
"more_options": "その他のオプション",
|
||||
"sending": "送信中...",
|
||||
"security_authentication": "セキュリティと認証",
|
||||
"technical_details": "技術的な詳細",
|
||||
"message_id_label": "メッセージID:",
|
||||
"reply_to_label": "返信先:",
|
||||
"delivery_time_label": "配信時刻:",
|
||||
"conversation_part_label": "会話の一部:",
|
||||
"previous_messages": "{count}件の以前のメッセージ",
|
||||
"previous_messages_plural": "{count}件の以前のメッセージ",
|
||||
"time": {
|
||||
"day": "日",
|
||||
"days": "日",
|
||||
"hour": "時間",
|
||||
"hours": "時間",
|
||||
"minute": "分",
|
||||
"minutes": "分"
|
||||
},
|
||||
"unknown_sender": "不明",
|
||||
"recipient_me": "自分",
|
||||
"recipient_and_others": "{name}と他{count}人",
|
||||
"recipient_to_prefix": "宛先:",
|
||||
"authentication": {
|
||||
"title": "認証",
|
||||
"status": {
|
||||
"verified": "確認済み",
|
||||
"warning": "警告",
|
||||
"none": "未認証"
|
||||
},
|
||||
"spf": {
|
||||
"pass": "SPF合格",
|
||||
"fail": "SPF不合格",
|
||||
"none": "SPFなし"
|
||||
},
|
||||
"dkim": {
|
||||
"pass": "DKIM有効",
|
||||
"fail": "DKIM無効",
|
||||
"none": "DKIMなし"
|
||||
},
|
||||
"dmarc": {
|
||||
"pass": "DMARC合格",
|
||||
"fail": "DMARC不合格",
|
||||
"none": "DMARCなし"
|
||||
},
|
||||
"spam_score": "スパムスコア"
|
||||
},
|
||||
"headers": {
|
||||
"routing": "ルーティング",
|
||||
"received": "受信",
|
||||
"message_id": "メッセージID",
|
||||
"list_info": "リスト情報"
|
||||
},
|
||||
"color_tag": {
|
||||
"title": "カラータグ",
|
||||
"red": "赤",
|
||||
"orange": "オレンジ",
|
||||
"yellow": "黄色",
|
||||
"green": "緑",
|
||||
"blue": "青",
|
||||
"purple": "紫",
|
||||
"pink": "ピンク",
|
||||
"none": "なし"
|
||||
},
|
||||
"tooltips": {
|
||||
"reply": "返信",
|
||||
"archive": "アーカイブ",
|
||||
"delete": "削除"
|
||||
},
|
||||
"spam": {
|
||||
"button_title": "迷惑メールを報告",
|
||||
"not_spam_title": "正当なメールとしてマーク",
|
||||
"toast_success": "迷惑メールに移動しました",
|
||||
"toast_batch": "{count}件のメールを迷惑メールに移動しました",
|
||||
"toast_undo": "元に戻す",
|
||||
"toast_not_spam_success": "受信トレイに移動しました",
|
||||
"toast_not_spam_batch": "{count}件のメールを受信トレイに移動しました",
|
||||
"error": "迷惑メールの報告に失敗しました",
|
||||
"error_not_spam": "メールの復元に失敗しました"
|
||||
},
|
||||
"unsubscribe_banner": {
|
||||
"label": "ニュースレター",
|
||||
"button": "購読解除",
|
||||
"confirm_title": "この送信者の購読を解除しますか?",
|
||||
"confirm_button": "確認",
|
||||
"cancel": "キャンセル",
|
||||
"success_http": "購読解除ページを新しいタブで開きました",
|
||||
"success_mailto": "購読解除リクエストをメールクライアントに送信しました",
|
||||
"error": "購読解除できませんでした",
|
||||
"dismiss": "閉じる"
|
||||
}
|
||||
},
|
||||
"email_composer": {
|
||||
"new_message": "新規メッセージ",
|
||||
"reply": "返信",
|
||||
"reply_all": "全員に返信",
|
||||
"forward": "転送",
|
||||
"reply_to": "返信",
|
||||
"reply_all_to": "全員に返信",
|
||||
"forward_message": "転送",
|
||||
"from": "送信元",
|
||||
"to": "宛先",
|
||||
"cc": "CC",
|
||||
"bcc": "BCC",
|
||||
"subject": "件名",
|
||||
"body_placeholder": "メッセージを入力...",
|
||||
"send": "送信",
|
||||
"cancel": "キャンセル",
|
||||
"attach": "添付",
|
||||
"discard": "破棄",
|
||||
"discard_draft_confirm": "未保存の変更があります。この下書きを破棄しますか?",
|
||||
"saving": "保存中...",
|
||||
"draft_saved": "下書きを保存しました",
|
||||
"save_failed": "保存に失敗しました",
|
||||
"to_placeholder": "受信者のメールアドレス(カンマ区切り)",
|
||||
"cc_placeholder": "CC受信者(カンマ区切り)",
|
||||
"bcc_placeholder": "BCC受信者(カンマ区切り)",
|
||||
"subject_placeholder": "件名",
|
||||
"cc_label": "CC:",
|
||||
"bcc_label": "BCC:",
|
||||
"subject_label": "件名:",
|
||||
"file_size_kb": "KB",
|
||||
"prefix": {
|
||||
"forward": "Fwd:",
|
||||
"reply": "Re:"
|
||||
},
|
||||
"no_subject": "(件名なし)",
|
||||
"unknown_sender": "不明",
|
||||
"quote": {
|
||||
"reply_header": "{{date}}に{{sender}}が書きました:",
|
||||
"forward_header": "---------- 転送メッセージ ----------",
|
||||
"from": "送信者: {{sender}}",
|
||||
"date": "日付: {{date}}",
|
||||
"subject": "件名: {{subject}}",
|
||||
"to": "宛先: {{recipients}}"
|
||||
},
|
||||
"remove_sub_address": "サブアドレスを削除"
|
||||
},
|
||||
"common": {
|
||||
"loading": "読み込み中...",
|
||||
"error": "エラー",
|
||||
"success": "成功",
|
||||
"cancel": "キャンセル",
|
||||
"save": "保存",
|
||||
"delete": "削除",
|
||||
"edit": "編集",
|
||||
"close": "閉じる",
|
||||
"search": "検索",
|
||||
"refresh": "更新",
|
||||
"settings": "設定",
|
||||
"help": "ヘルプ",
|
||||
"logout": "ログアウト",
|
||||
"yes": "はい",
|
||||
"no": "いいえ",
|
||||
"unknown": "不明",
|
||||
"app_title": "ウェブメール"
|
||||
},
|
||||
"notifications": {
|
||||
"email_sent": "メールを送信しました",
|
||||
"email_deleted": "メールを削除しました",
|
||||
"email_archived": "メールをアーカイブしました",
|
||||
"email_starred": "スターを付けました",
|
||||
"email_unstarred": "スターを外しました",
|
||||
"email_marked_read": "既読にしました",
|
||||
"email_marked_unread": "未読にしました",
|
||||
"copied_to_clipboard": "クリップボードにコピーしました",
|
||||
"source_copied": "ソースをクリップボードにコピーしました",
|
||||
"error_sending": "メールの送信に失敗しました",
|
||||
"error_deleting": "メールの削除に失敗しました",
|
||||
"error_loading": "メールの読み込みに失敗しました",
|
||||
"new_email": "新しいメール",
|
||||
"new_email_from": "{sender}から",
|
||||
"click_to_view": "クリックして表示",
|
||||
"email_moved": "メールを移動しました",
|
||||
"emails_moved": "{count}件のメールを移動しました",
|
||||
"moved_to_mailbox": "{mailbox}に移動しました",
|
||||
"move_failed": "移動に失敗しました",
|
||||
"move_error": "選択したフォルダにメールを移動できませんでした",
|
||||
"identity_created": "送信者情報を作成しました",
|
||||
"identity_updated": "送信者情報を更新しました",
|
||||
"identity_deleted": "送信者情報を削除しました",
|
||||
"identity_create_failed": "送信者情報の作成に失敗しました: {{error}}",
|
||||
"identity_update_failed": "送信者情報の更新に失敗しました: {{error}}",
|
||||
"identity_delete_failed": "送信者情報の削除に失敗しました: {{error}}",
|
||||
"identity_unauthorized": "このメールアドレスからの送信は許可されていません",
|
||||
"identity_not_found": "送信者情報が見つかりません"
|
||||
},
|
||||
"date": {
|
||||
"today": "今日",
|
||||
"yesterday": "昨日",
|
||||
"this_week": "今週",
|
||||
"last_week": "先週",
|
||||
"this_month": "今月",
|
||||
"older": "それ以前",
|
||||
"just_now": "たった今",
|
||||
"minutes_ago": "{{count}}分前",
|
||||
"minutes_ago_plural": "{{count}}分前",
|
||||
"hours_ago": "{{count}}時間前",
|
||||
"hours_ago_plural": "{{count}}時間前",
|
||||
"days_ago": "{{count}}日前",
|
||||
"days_ago_plural": "{{count}}日前"
|
||||
},
|
||||
"language": {
|
||||
"title": "言語",
|
||||
"english": "English",
|
||||
"french": "Français",
|
||||
"japanese": "日本語",
|
||||
"spanish": "Español",
|
||||
"italian": "Italiano",
|
||||
"german": "Deutsch",
|
||||
"dutch": "Nederlands",
|
||||
"portuguese": "Português",
|
||||
"select_language": "言語を選択",
|
||||
"switch_to_english": "英語に切り替え",
|
||||
"switch_to_french": "フランス語に切り替え",
|
||||
"switch_to_japanese": "日本語に切り替え",
|
||||
"switch_to_spanish": "スペイン語に切り替え",
|
||||
"switch_to_italian": "イタリア語に切り替え",
|
||||
"switch_to_german": "ドイツ語に切り替え",
|
||||
"switch_to_dutch": "オランダ語に切り替え",
|
||||
"switch_to_portuguese": "ポルトガル語に切り替え",
|
||||
"switching": "言語を変更中..."
|
||||
},
|
||||
"settings": {
|
||||
"title": "設定",
|
||||
"back_to_mail": "メールに戻る",
|
||||
"save_success": "設定を保存しました",
|
||||
"import_success": "設定をインポートしました",
|
||||
"import_error": "設定のインポートに失敗しました",
|
||||
"reset_confirm": "すべての設定をデフォルトにリセットしてもよろしいですか?",
|
||||
"tabs": {
|
||||
"appearance": "外観",
|
||||
"language": "言語と地域",
|
||||
"email": "メール動作",
|
||||
"composer": "作成",
|
||||
"privacy": "プライバシーとセキュリティ",
|
||||
"account": "アカウント",
|
||||
"identities": "送信者情報",
|
||||
"advanced": "詳細設定"
|
||||
},
|
||||
"appearance": {
|
||||
"title": "外観",
|
||||
"description": "ウェブメールの見た目をカスタマイズ",
|
||||
"theme": {
|
||||
"label": "テーマ",
|
||||
"description": "お好みの配色を選択",
|
||||
"light": "ライト",
|
||||
"dark": "ダーク",
|
||||
"system": "システム"
|
||||
},
|
||||
"language": {
|
||||
"label": "言語",
|
||||
"description": "お好みの言語を選択"
|
||||
},
|
||||
"font_size": {
|
||||
"label": "フォントサイズ",
|
||||
"description": "読みやすさのためにテキストサイズを調整",
|
||||
"small": "小",
|
||||
"medium": "中",
|
||||
"large": "大"
|
||||
},
|
||||
"list_density": {
|
||||
"label": "リストの密度",
|
||||
"description": "メールリストの間隔を調整",
|
||||
"compact": "コンパクト",
|
||||
"regular": "標準",
|
||||
"comfortable": "ゆったり"
|
||||
},
|
||||
"animations": {
|
||||
"label": "アニメーションを有効にする",
|
||||
"description": "スムーズな遷移とエフェクトを表示"
|
||||
}
|
||||
},
|
||||
"language_region": {
|
||||
"title": "言語と地域",
|
||||
"description": "言語と地域の設定を構成",
|
||||
"language": {
|
||||
"label": "言語",
|
||||
"description": "お好みの言語を選択",
|
||||
"english": "English",
|
||||
"french": "Français"
|
||||
},
|
||||
"date_format": {
|
||||
"label": "日付形式",
|
||||
"description": "日付の表示形式",
|
||||
"regional": "地域設定",
|
||||
"iso": "ISO 8601",
|
||||
"custom": "カスタム"
|
||||
},
|
||||
"time_format": {
|
||||
"label": "時刻形式",
|
||||
"description": "12時間制または24時間制を選択",
|
||||
"12h": "12時間制",
|
||||
"24h": "24時間制"
|
||||
},
|
||||
"first_day": {
|
||||
"label": "週の開始日",
|
||||
"description": "日曜日または月曜日から開始",
|
||||
"sunday": "日曜日",
|
||||
"monday": "月曜日"
|
||||
}
|
||||
},
|
||||
"email_behavior": {
|
||||
"title": "メール動作",
|
||||
"description": "メールの処理方法を設定",
|
||||
"mark_read": {
|
||||
"label": "既読にする",
|
||||
"description": "メールを開いたときに既読にするタイミング",
|
||||
"instant": "即座",
|
||||
"delay_3s": "3秒後",
|
||||
"delay_5s": "5秒後",
|
||||
"never": "既読にしない"
|
||||
},
|
||||
"delete_action": {
|
||||
"label": "削除動作",
|
||||
"description": "メール削除時の動作",
|
||||
"trash": "ゴミ箱に移動",
|
||||
"permanent": "完全に削除"
|
||||
},
|
||||
"show_preview": {
|
||||
"label": "プレビューテキストを表示",
|
||||
"description": "リストにメールのプレビューを表示"
|
||||
},
|
||||
"emails_per_page": {
|
||||
"label": "ページごとのメール数",
|
||||
"description": "一度に読み込むメールの数",
|
||||
"25": "25件",
|
||||
"50": "50件",
|
||||
"100": "100件"
|
||||
},
|
||||
"external_content": {
|
||||
"label": "外部コンテンツ",
|
||||
"description": "画像と外部コンテンツの処理方法",
|
||||
"ask": "常に確認",
|
||||
"block": "常にブロック",
|
||||
"allow": "常に許可"
|
||||
},
|
||||
"trusted_senders": {
|
||||
"label": "信頼する送信者",
|
||||
"description": "画像が自動的に読み込まれる送信者を管理",
|
||||
"count_zero": "なし",
|
||||
"count_one": "1件",
|
||||
"count_other": "{count}件",
|
||||
"modal_title": "信頼する送信者",
|
||||
"empty_title": "信頼する送信者はまだありません",
|
||||
"empty_description": "ブロックされた画像を含むメールを表示するときに、「常にこの送信者を信頼する」をクリックしてここに追加します。",
|
||||
"add_manually": "送信者を手動で追加",
|
||||
"add_button": "追加",
|
||||
"add_placeholder": "メールアドレスを入力",
|
||||
"search_placeholder": "送信者を検索...",
|
||||
"no_results": "検索に一致する送信者がありません",
|
||||
"remove": "削除",
|
||||
"close": "閉じる",
|
||||
"invalid_email": "有効なメールアドレスを入力してください",
|
||||
"already_added": "この送信者はすでに信頼されています"
|
||||
}
|
||||
},
|
||||
"composer": {
|
||||
"title": "作成",
|
||||
"description": "メール作成の設定を構成",
|
||||
"autosave": {
|
||||
"label": "自動保存間隔",
|
||||
"description": "下書きを自動保存する頻度",
|
||||
"30s": "30秒ごと",
|
||||
"1m": "1分ごと",
|
||||
"2m": "2分ごと",
|
||||
"5m": "5分ごと"
|
||||
},
|
||||
"send_confirmation": {
|
||||
"label": "送信確認",
|
||||
"description": "メール送信前に確認を求める"
|
||||
},
|
||||
"default_reply": {
|
||||
"label": "デフォルトの返信モード",
|
||||
"description": "返信をクリックしたときのデフォルト動作",
|
||||
"reply": "返信",
|
||||
"reply_all": "全員に返信"
|
||||
}
|
||||
},
|
||||
"privacy": {
|
||||
"title": "プライバシーとセキュリティ",
|
||||
"description": "プライバシーとセキュリティ設定を管理",
|
||||
"external_images": {
|
||||
"label": "外部画像をブロック",
|
||||
"description": "外部画像による追跡を防止"
|
||||
},
|
||||
"session_timeout": {
|
||||
"label": "セッションタイムアウト",
|
||||
"description": "非アクティブ時に自動的にログアウト",
|
||||
"never": "なし",
|
||||
"30m": "30分",
|
||||
"1h": "1時間",
|
||||
"4h": "4時間"
|
||||
},
|
||||
"clear_cache": {
|
||||
"label": "キャッシュをクリア",
|
||||
"description": "キャッシュデータと一時ファイルを削除",
|
||||
"button": "キャッシュをクリア",
|
||||
"confirm": "キャッシュをクリアしてもよろしいですか?",
|
||||
"success": "キャッシュをクリアしました"
|
||||
}
|
||||
},
|
||||
"account": {
|
||||
"title": "アカウント",
|
||||
"description": "アカウント情報を表示",
|
||||
"email": {
|
||||
"label": "メールアドレス",
|
||||
"value": "{{email}}"
|
||||
},
|
||||
"server": {
|
||||
"label": "JMAPサーバー",
|
||||
"value": "{{server}}"
|
||||
},
|
||||
"storage": {
|
||||
"label": "ストレージ使用量",
|
||||
"used": "{{total}}中{{used}}使用",
|
||||
"percentage": "{{percent}}%使用"
|
||||
},
|
||||
"last_sync": {
|
||||
"label": "最終同期",
|
||||
"value": "{{time}}"
|
||||
}
|
||||
},
|
||||
"identities": {
|
||||
"title": "送信者情報",
|
||||
"description": "送信に使用するメールアドレスを管理",
|
||||
"identities_count": {
|
||||
"label": "送信者情報",
|
||||
"description": "送信用に設定されたメールアドレス",
|
||||
"count_zero": "送信者情報なし",
|
||||
"count_one": "1件",
|
||||
"count_other": "{{count}}件"
|
||||
},
|
||||
"manage": "送信者情報を管理",
|
||||
"sub_addressing": {
|
||||
"label": "サブアドレス",
|
||||
"description": "user+tag@domain.comのようなタグを使用して受信メールを整理",
|
||||
"learn_more": "詳細"
|
||||
}
|
||||
},
|
||||
"advanced": {
|
||||
"title": "詳細設定",
|
||||
"description": "詳細オプションと開発者設定",
|
||||
"debug_mode": {
|
||||
"label": "デバッグモード",
|
||||
"description": "トラブルシューティング用の詳細ログを有効化"
|
||||
},
|
||||
"keyboard_shortcuts": {
|
||||
"label": "キーボードショートカット",
|
||||
"description": "利用可能なキーボードショートカットを表示",
|
||||
"button": "ショートカットを表示"
|
||||
},
|
||||
"reset_settings": {
|
||||
"label": "設定をリセット",
|
||||
"description": "すべての設定をデフォルト値に戻す",
|
||||
"button": "デフォルトにリセット"
|
||||
},
|
||||
"export_settings": {
|
||||
"label": "設定をエクスポート",
|
||||
"description": "設定をJSONとしてダウンロード",
|
||||
"button": "エクスポート"
|
||||
},
|
||||
"import_settings": {
|
||||
"label": "設定をインポート",
|
||||
"description": "JSONファイルから設定をアップロード",
|
||||
"button": "インポート"
|
||||
}
|
||||
}
|
||||
},
|
||||
"errors": {
|
||||
"page_error_title": "問題が発生しました",
|
||||
"page_error_description": "予期しないエラーが発生しました。もう一度お試しいただくか、ホームページに戻ってください。",
|
||||
"sidebar_error": "メールボックスを読み込めません",
|
||||
"email_list_error": "メールを読み込めません",
|
||||
"viewer_error_title": "メールを表示できません",
|
||||
"viewer_error_description": "このメールのレンダリングに問題が発生しました。サポートされていないコンテンツが含まれている可能性があります。",
|
||||
"composer_error": "作成画面を読み込めません",
|
||||
"settings_error_title": "設定を利用できません",
|
||||
"settings_error_description": "設定を読み込めません。設定が保存されない可能性があります。",
|
||||
"try_again": "再試行",
|
||||
"reload": "再読み込み",
|
||||
"reload_emails": "メールを再読み込み",
|
||||
"reload_settings": "設定を再読み込み",
|
||||
"retry": "リトライ",
|
||||
"go_home": "受信トレイに移動"
|
||||
},
|
||||
"context_menu": {
|
||||
"reply": "返信",
|
||||
"reply_all": "全員に返信",
|
||||
"forward": "転送",
|
||||
"mark_read": "既読にする",
|
||||
"mark_unread": "未読にする",
|
||||
"star": "スターを付ける",
|
||||
"unstar": "スターを外す",
|
||||
"move_to": "移動...",
|
||||
"archive": "アーカイブ",
|
||||
"delete": "削除",
|
||||
"mark_as_spam": "迷惑メールを報告",
|
||||
"not_spam": "迷惑メールでない",
|
||||
"color_tag": "カラータグ",
|
||||
"remove_color": "色を削除",
|
||||
"items_selected": "{{count}}件のメールを選択"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "キーボードショートカット",
|
||||
"tip": "? キーを押すといつでもこのヘルプを表示できます",
|
||||
"sections": {
|
||||
"navigation": "ナビゲーション",
|
||||
"actions": "メール操作",
|
||||
"global": "全般",
|
||||
"threads": "スレッド"
|
||||
},
|
||||
"navigation": {
|
||||
"next_email": "次のメール",
|
||||
"previous_email": "前のメール",
|
||||
"open_email": "メールを開く",
|
||||
"close_email": "閉じる / 選択解除"
|
||||
},
|
||||
"actions": {
|
||||
"reply": "返信",
|
||||
"reply_all": "全員に返信",
|
||||
"forward": "転送",
|
||||
"star": "スターの切り替え",
|
||||
"archive": "アーカイブ",
|
||||
"delete": "削除",
|
||||
"mark_unread": "未読にする",
|
||||
"mark_read": "既読にする",
|
||||
"toggle_spam": "迷惑メールを報告 / 迷惑メールでない"
|
||||
},
|
||||
"global": {
|
||||
"compose": "新規メールを作成",
|
||||
"search": "検索にフォーカス",
|
||||
"help": "ショートカットを表示",
|
||||
"refresh": "メールを更新",
|
||||
"select_all": "すべて選択"
|
||||
},
|
||||
"threads": {
|
||||
"expand_collapse": "スレッドの展開/折りたたみ"
|
||||
}
|
||||
},
|
||||
"threads": {
|
||||
"messages_one": "{count}件のメッセージ",
|
||||
"messages_other": "{count}件のメッセージ",
|
||||
"expand": "会話を展開",
|
||||
"collapse": "会話を折りたたむ",
|
||||
"loading": "会話を読み込み中...",
|
||||
"mark_read": "会話を既読にする",
|
||||
"mark_unread": "会話を未読にする",
|
||||
"archive": "会話をアーカイブ",
|
||||
"delete": "会話を削除",
|
||||
"star": "会話にスターを付ける",
|
||||
"unstar": "会話のスターを外す"
|
||||
},
|
||||
"identities": {
|
||||
"modal_title": "送信者情報を管理",
|
||||
"create_new": "新しい送信者情報を作成",
|
||||
"edit_identity": "送信者情報を編集",
|
||||
"delete_confirm": "この送信者情報を削除しますか?この操作は元に戻せません。",
|
||||
"cannot_delete": "この送信者情報は削除できません",
|
||||
"primary_identity": "プライマリ",
|
||||
"no_identities": "送信者情報が見つかりません",
|
||||
"display": {
|
||||
"reply_to": "返信先:",
|
||||
"bcc": "BCC:",
|
||||
"signature": "署名:",
|
||||
"preview": "プレビュー:"
|
||||
},
|
||||
"validation_errors": {
|
||||
"invalid_emails": "無効なメールアドレス: {emails}",
|
||||
"unknown_error": "不明なエラー"
|
||||
},
|
||||
"form": {
|
||||
"name_label": "表示名",
|
||||
"name_placeholder": "例: 仕事用、個人用",
|
||||
"name_required": "名前は必須です",
|
||||
"email_label": "メールアドレス",
|
||||
"email_placeholder": "your.email@example.com",
|
||||
"email_required": "メールアドレスは必須です",
|
||||
"email_invalid": "有効なメールアドレスを入力してください",
|
||||
"email_immutable": "メールアドレスは作成後に変更できません",
|
||||
"reply_to_label": "返信先(オプション)",
|
||||
"reply_to_placeholder": "different@email.com",
|
||||
"bcc_label": "自動BCC(オプション)",
|
||||
"bcc_placeholder": "archive@email.com",
|
||||
"text_signature_label": "テキスト署名",
|
||||
"html_signature_label": "HTML署名",
|
||||
"save": "送信者情報を保存",
|
||||
"cancel": "キャンセル",
|
||||
"creating": "作成中...",
|
||||
"updating": "更新中..."
|
||||
},
|
||||
"sub_address": {
|
||||
"button_tooltip": "サブアドレスを使用",
|
||||
"popover_title": "サブアドレスタグを追加",
|
||||
"tag_input_placeholder": "タグを入力(例: shopping)",
|
||||
"preview_label": "プレビュー:",
|
||||
"recent_tags": "最近のタグ",
|
||||
"suggested_tags": "候補",
|
||||
"use_address": "このアドレスを使用",
|
||||
"invalid_tag": "タグは英数字とハイフンのみ使用できます",
|
||||
"tag_too_long": "タグは30文字以内にしてください",
|
||||
"help_text": "user+tag@domain.comに送信されたメールは受信トレイに届きます",
|
||||
"validation": {
|
||||
"empty": "タグは空にできません",
|
||||
"too_long": "タグは{max}文字以内にしてください",
|
||||
"invalid_chars": "タグは文字、数字、ハイフンのみ使用できます"
|
||||
}
|
||||
},
|
||||
"badge": {
|
||||
"sent_via": "経由",
|
||||
"sub_address_tag": "サブアドレスを使用して送信: {tag}",
|
||||
"identity_name": "送信者情報を使用して送信: {name}",
|
||||
"identity_short": "{name}経由",
|
||||
"subaddress_tag": "+{tag}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,746 @@
|
||||
{
|
||||
"login": {
|
||||
"title": "Webmail",
|
||||
"username_label": "E-mail",
|
||||
"username_placeholder": "gebruiker@voorbeeld.nl",
|
||||
"password_label": "Wachtwoord",
|
||||
"password_placeholder": "Voer je wachtwoord in",
|
||||
"sign_in": "Aanmelden",
|
||||
"signing_in": "Aanmelden...",
|
||||
"loading": "Laden...",
|
||||
"error": {
|
||||
"invalid_credentials": "Ongeldig e-mailadres of wachtwoord",
|
||||
"connection_failed": "Kan geen verbinding maken met de server",
|
||||
"generic": "Er is een fout opgetreden. Probeer het opnieuw."
|
||||
},
|
||||
"config_error": {
|
||||
"title": "Configuratiefout",
|
||||
"fetch_failed": "Kan de applicatieconfiguratie niet laden. Probeer het later opnieuw.",
|
||||
"server_not_configured": "De mailserver is niet geconfigureerd. Neem contact op met je beheerder."
|
||||
},
|
||||
"remove_from_history": "Verwijder uit geschiedenis"
|
||||
},
|
||||
"sidebar": {
|
||||
"close": "Sluiten",
|
||||
"compose": "Nieuw bericht",
|
||||
"search_placeholder": "Zoeken in e-mail...",
|
||||
"storage": "Opslag",
|
||||
"sign_out": "Afmelden",
|
||||
"settings": "Instellingen",
|
||||
"loading_mailboxes": "Mappen laden...",
|
||||
"push_connected": "Real-time updates actief",
|
||||
"push_disconnected": "Real-time updates inactief",
|
||||
"theme": {
|
||||
"light": "Lichte modus",
|
||||
"dark": "Donkere modus",
|
||||
"system": "Systeemthema"
|
||||
},
|
||||
"language": {
|
||||
"title": "Taal"
|
||||
},
|
||||
"mailboxes": {
|
||||
"inbox": "Postvak IN",
|
||||
"sent": "Verzonden",
|
||||
"drafts": "Concepten",
|
||||
"trash": "Prullenbak",
|
||||
"archive": "Archief",
|
||||
"starred": "Met ster",
|
||||
"all_mail": "Alle e-mail",
|
||||
"spam": "Spam",
|
||||
"important": "Belangrijk"
|
||||
},
|
||||
"expand": "Uitklappen",
|
||||
"collapse": "Inklappen",
|
||||
"expand_tooltip": "Uitklappen",
|
||||
"collapse_tooltip": "Inklappen",
|
||||
"mobile": {
|
||||
"search": "Zoeken",
|
||||
"compose": "Opstellen",
|
||||
"go_back": "Terug"
|
||||
},
|
||||
"clear_search": "Zoekopdracht wissen"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Geen e-mails",
|
||||
"no_emails_description": "Begin met het opstellen van een nieuw bericht",
|
||||
"loading": "E-mails laden...",
|
||||
"unread": "ongelezen",
|
||||
"to_me": "Aan mij",
|
||||
"to_recipients": "Aan {{count}} ontvangers",
|
||||
"and_others": "en {{count}} anderen",
|
||||
"draft": "Concept",
|
||||
"starred": "Met ster",
|
||||
"conversations_count": "{count} van {total} gesprekken",
|
||||
"conversations_count_plus": "{count}+ gesprekken",
|
||||
"conversations_count_simple": "{count} gesprekken",
|
||||
"no_conversations": "Geen gesprekken",
|
||||
"loading_more": "Meer e-mails laden...",
|
||||
"no_more_emails": "Geen e-mails meer om te laden",
|
||||
"batch_actions": {
|
||||
"mark_read": "Markeren als gelezen",
|
||||
"mark_unread": "Markeren als ongelezen",
|
||||
"delete": "Verwijderen",
|
||||
"clear_selection": "Selectie wissen"
|
||||
}
|
||||
},
|
||||
"email_viewer": {
|
||||
"no_email_selected": "Geen e-mail geselecteerd",
|
||||
"no_email_description": "Selecteer een e-mail uit de lijst om deze hier te bekijken",
|
||||
"no_conversation_selected": "Geen gesprek geselecteerd",
|
||||
"no_conversation_description": "Kies een gesprek uit de lijst om het hier te lezen",
|
||||
"no_subject": "(Geen onderwerp)",
|
||||
"loading_email": "E-mail laden...",
|
||||
"loading": "Laden...",
|
||||
"reply": "Beantwoorden",
|
||||
"reply_all": "Allen beantwoorden",
|
||||
"forward": "Doorsturen",
|
||||
"delete": "Verwijderen",
|
||||
"archive": "Archiveren",
|
||||
"star": "Ster toevoegen",
|
||||
"unstar": "Ster verwijderen",
|
||||
"mark_unread": "Markeren als ongelezen",
|
||||
"mark_read": "Markeren als gelezen",
|
||||
"print": "Afdrukken",
|
||||
"view_source": "Bron bekijken",
|
||||
"email_source": "E-mailbron",
|
||||
"copy_source": "Kopiëren naar klembord",
|
||||
"source_copied": "Bron gekopieerd naar klembord",
|
||||
"attachments": "Bijlagen",
|
||||
"important": "Belangrijk",
|
||||
"download": "Downloaden",
|
||||
"from": "Van",
|
||||
"to": "Aan",
|
||||
"cc": "CC",
|
||||
"bcc": "BCC",
|
||||
"date": "Datum",
|
||||
"subject": "Onderwerp",
|
||||
"show_details": "Details tonen",
|
||||
"hide_details": "Details verbergen",
|
||||
"external_content_warning": "Afbeeldingen en externe inhoud zijn geblokkeerd",
|
||||
"load_external_content": "Afbeeldingen laden",
|
||||
"trust_sender": "Deze afzender altijd vertrouwen",
|
||||
"back_to_list": "Terug naar lijst",
|
||||
"message_details": "Berichtdetails",
|
||||
"more_reply_options": "Meer antwoordopties",
|
||||
"set_color": "Kleur instellen",
|
||||
"more_actions": "Meer acties",
|
||||
"remove_color": "Kleur verwijderen",
|
||||
"more_count": "+{count} meer",
|
||||
"characters_count": "{count} tekens",
|
||||
"quick_reply_placeholder": "Schrijf een snel antwoord...",
|
||||
"more_options": "Meer opties",
|
||||
"sending": "Verzenden...",
|
||||
"security_authentication": "Beveiliging & Authenticatie",
|
||||
"technical_details": "Technische details",
|
||||
"message_id_label": "Bericht-ID:",
|
||||
"reply_to_label": "Antwoord naar:",
|
||||
"delivery_time_label": "Bezorgtijd:",
|
||||
"conversation_part_label": "Onderdeel van gesprek:",
|
||||
"previous_messages": "{count} vorig bericht",
|
||||
"previous_messages_plural": "{count} vorige berichten",
|
||||
"time": {
|
||||
"day": "dag",
|
||||
"days": "dagen",
|
||||
"hour": "uur",
|
||||
"hours": "uur",
|
||||
"minute": "minuut",
|
||||
"minutes": "minuten"
|
||||
},
|
||||
"unknown_sender": "Onbekend",
|
||||
"recipient_me": "mij",
|
||||
"recipient_and_others": "{name} en {count} anderen",
|
||||
"recipient_to_prefix": "Aan:",
|
||||
"authentication": {
|
||||
"title": "Authenticatie",
|
||||
"status": {
|
||||
"verified": "Geverifieerd",
|
||||
"warning": "Waarschuwing",
|
||||
"none": "Niet geauthenticeerd"
|
||||
},
|
||||
"spf": {
|
||||
"pass": "SPF Geslaagd",
|
||||
"fail": "SPF Mislukt",
|
||||
"none": "Geen SPF"
|
||||
},
|
||||
"dkim": {
|
||||
"pass": "DKIM Geldig",
|
||||
"fail": "DKIM Ongeldig",
|
||||
"none": "Geen DKIM"
|
||||
},
|
||||
"dmarc": {
|
||||
"pass": "DMARC Geslaagd",
|
||||
"fail": "DMARC Mislukt",
|
||||
"none": "Geen DMARC"
|
||||
},
|
||||
"spam_score": "Spamscore"
|
||||
},
|
||||
"headers": {
|
||||
"routing": "Routering",
|
||||
"received": "Ontvangen",
|
||||
"message_id": "Bericht-ID",
|
||||
"list_info": "Lijstinformatie"
|
||||
},
|
||||
"color_tag": {
|
||||
"title": "Kleurtag",
|
||||
"red": "Rood",
|
||||
"orange": "Oranje",
|
||||
"yellow": "Geel",
|
||||
"green": "Groen",
|
||||
"blue": "Blauw",
|
||||
"purple": "Paars",
|
||||
"pink": "Roze",
|
||||
"none": "Geen"
|
||||
},
|
||||
"tooltips": {
|
||||
"reply": "Beantwoorden",
|
||||
"archive": "Archiveren",
|
||||
"delete": "Verwijderen"
|
||||
},
|
||||
"spam": {
|
||||
"button_title": "Spam melden",
|
||||
"not_spam_title": "Markeren als legitiem",
|
||||
"toast_success": "Verplaatst naar Ongewenst",
|
||||
"toast_batch": "{count} e-mails verplaatst naar Ongewenst",
|
||||
"toast_undo": "Ongedaan maken",
|
||||
"toast_not_spam_success": "Verplaatst naar Postvak IN",
|
||||
"toast_not_spam_batch": "{count} e-mails verplaatst naar Postvak IN",
|
||||
"error": "Kan spam niet melden",
|
||||
"error_not_spam": "Kan e-mail niet herstellen"
|
||||
},
|
||||
"unsubscribe_banner": {
|
||||
"label": "Nieuwsbrief",
|
||||
"button": "Uitschrijven",
|
||||
"confirm_title": "Uitschrijven van deze afzender?",
|
||||
"confirm_button": "Bevestigen",
|
||||
"cancel": "Annuleren",
|
||||
"success_http": "Uitschrijfpagina geopend in nieuw tabblad",
|
||||
"success_mailto": "Uitschrijfverzoek verzonden naar je e-mailclient",
|
||||
"error": "Kan niet uitschrijven",
|
||||
"dismiss": "Sluiten"
|
||||
}
|
||||
},
|
||||
"email_composer": {
|
||||
"new_message": "Nieuw bericht",
|
||||
"reply": "Beantwoorden",
|
||||
"reply_all": "Allen beantwoorden",
|
||||
"forward": "Doorsturen",
|
||||
"reply_to": "Beantwoorden",
|
||||
"reply_all_to": "Allen beantwoorden",
|
||||
"forward_message": "Doorsturen",
|
||||
"from": "Van",
|
||||
"to": "Aan",
|
||||
"cc": "CC",
|
||||
"bcc": "BCC",
|
||||
"subject": "Onderwerp",
|
||||
"body_placeholder": "Schrijf je bericht...",
|
||||
"send": "Verzenden",
|
||||
"cancel": "Annuleren",
|
||||
"attach": "Bijlage toevoegen",
|
||||
"discard": "Verwijderen",
|
||||
"discard_draft_confirm": "Je hebt niet-opgeslagen wijzigingen. Wil je dit concept verwijderen?",
|
||||
"saving": "Opslaan...",
|
||||
"draft_saved": "Concept opgeslagen",
|
||||
"save_failed": "Opslaan mislukt",
|
||||
"to_placeholder": "E-mailadressen van ontvangers (komma gescheiden)",
|
||||
"cc_placeholder": "CC-ontvangers (komma gescheiden)",
|
||||
"bcc_placeholder": "BCC-ontvangers (komma gescheiden)",
|
||||
"subject_placeholder": "Onderwerp",
|
||||
"cc_label": "CC:",
|
||||
"bcc_label": "BCC:",
|
||||
"subject_label": "Onderwerp:",
|
||||
"file_size_kb": "KB",
|
||||
"prefix": {
|
||||
"forward": "Fwd:",
|
||||
"reply": "Re:"
|
||||
},
|
||||
"no_subject": "(Geen onderwerp)",
|
||||
"unknown_sender": "Onbekend",
|
||||
"quote": {
|
||||
"reply_header": "Op {{date}} schreef {{sender}}:",
|
||||
"forward_header": "---------- Doorgestuurd bericht ----------",
|
||||
"from": "Van: {{sender}}",
|
||||
"date": "Datum: {{date}}",
|
||||
"subject": "Onderwerp: {{subject}}",
|
||||
"to": "Aan: {{recipients}}"
|
||||
},
|
||||
"remove_sub_address": "Sub-adres verwijderen"
|
||||
},
|
||||
"common": {
|
||||
"loading": "Laden...",
|
||||
"error": "Fout",
|
||||
"success": "Geslaagd",
|
||||
"cancel": "Annuleren",
|
||||
"save": "Opslaan",
|
||||
"delete": "Verwijderen",
|
||||
"edit": "Bewerken",
|
||||
"close": "Sluiten",
|
||||
"search": "Zoeken",
|
||||
"refresh": "Vernieuwen",
|
||||
"settings": "Instellingen",
|
||||
"help": "Help",
|
||||
"logout": "Uitloggen",
|
||||
"yes": "Ja",
|
||||
"no": "Nee",
|
||||
"unknown": "Onbekend",
|
||||
"app_title": "Webmail"
|
||||
},
|
||||
"notifications": {
|
||||
"email_sent": "E-mail succesvol verzonden",
|
||||
"email_deleted": "E-mail verwijderd",
|
||||
"email_archived": "E-mail gearchiveerd",
|
||||
"email_starred": "Ster toegevoegd aan e-mail",
|
||||
"email_unstarred": "Ster verwijderd van e-mail",
|
||||
"email_marked_read": "E-mail gemarkeerd als gelezen",
|
||||
"email_marked_unread": "E-mail gemarkeerd als ongelezen",
|
||||
"copied_to_clipboard": "Gekopieerd naar klembord",
|
||||
"source_copied": "Bron gekopieerd naar klembord",
|
||||
"error_sending": "Kan e-mail niet verzenden",
|
||||
"error_deleting": "Kan e-mail niet verwijderen",
|
||||
"error_loading": "Kan e-mails niet laden",
|
||||
"new_email": "Nieuwe e-mail",
|
||||
"new_email_from": "Van {sender}",
|
||||
"click_to_view": "Klik om te bekijken",
|
||||
"email_moved": "E-mail verplaatst",
|
||||
"emails_moved": "{count} e-mails verplaatst",
|
||||
"moved_to_mailbox": "Verplaatst naar {mailbox}",
|
||||
"move_failed": "Verplaatsen mislukt",
|
||||
"move_error": "Kan e-mails niet verplaatsen naar de geselecteerde map",
|
||||
"identity_created": "Identiteit succesvol aangemaakt",
|
||||
"identity_updated": "Identiteit succesvol bijgewerkt",
|
||||
"identity_deleted": "Identiteit verwijderd",
|
||||
"identity_create_failed": "Kan identiteit niet aanmaken: {{error}}",
|
||||
"identity_update_failed": "Kan identiteit niet bijwerken: {{error}}",
|
||||
"identity_delete_failed": "Kan identiteit niet verwijderen: {{error}}",
|
||||
"identity_unauthorized": "Je bent niet geautoriseerd om vanaf dit e-mailadres te verzenden",
|
||||
"identity_not_found": "Identiteit niet gevonden"
|
||||
},
|
||||
"date": {
|
||||
"today": "Vandaag",
|
||||
"yesterday": "Gisteren",
|
||||
"this_week": "Deze week",
|
||||
"last_week": "Vorige week",
|
||||
"this_month": "Deze maand",
|
||||
"older": "Ouder",
|
||||
"just_now": "Zojuist",
|
||||
"minutes_ago": "{{count}} minuut geleden",
|
||||
"minutes_ago_plural": "{{count}} minuten geleden",
|
||||
"hours_ago": "{{count}} uur geleden",
|
||||
"hours_ago_plural": "{{count}} uur geleden",
|
||||
"days_ago": "{{count}} dag geleden",
|
||||
"days_ago_plural": "{{count}} dagen geleden"
|
||||
},
|
||||
"language": {
|
||||
"title": "Taal",
|
||||
"english": "English",
|
||||
"french": "Français",
|
||||
"japanese": "日本語",
|
||||
"spanish": "Español",
|
||||
"italian": "Italiano",
|
||||
"german": "Deutsch",
|
||||
"dutch": "Nederlands",
|
||||
"portuguese": "Português",
|
||||
"select_language": "Selecteer taal",
|
||||
"switch_to_english": "Overschakelen naar Engels",
|
||||
"switch_to_french": "Overschakelen naar Frans",
|
||||
"switch_to_japanese": "Overschakelen naar Japans",
|
||||
"switch_to_spanish": "Overschakelen naar Spaans",
|
||||
"switch_to_italian": "Overschakelen naar Italiaans",
|
||||
"switch_to_german": "Overschakelen naar Duits",
|
||||
"switch_to_dutch": "Overschakelen naar Nederlands",
|
||||
"switch_to_portuguese": "Overschakelen naar Portugees",
|
||||
"switching": "Taal wijzigen..."
|
||||
},
|
||||
"settings": {
|
||||
"title": "Instellingen",
|
||||
"back_to_mail": "Terug naar Mail",
|
||||
"save_success": "Instellingen succesvol opgeslagen",
|
||||
"import_success": "Instellingen succesvol geïmporteerd",
|
||||
"import_error": "Kan instellingen niet importeren",
|
||||
"reset_confirm": "Weet je zeker dat je alle instellingen wilt resetten naar de standaardwaarden?",
|
||||
"tabs": {
|
||||
"appearance": "Uiterlijk",
|
||||
"language": "Taal & Regio",
|
||||
"email": "E-mailgedrag",
|
||||
"composer": "Opstellen",
|
||||
"privacy": "Privacy & Beveiliging",
|
||||
"account": "Account",
|
||||
"identities": "Identiteiten",
|
||||
"advanced": "Geavanceerd"
|
||||
},
|
||||
"appearance": {
|
||||
"title": "Uiterlijk",
|
||||
"description": "Pas het uiterlijk van je webmail aan",
|
||||
"theme": {
|
||||
"label": "Thema",
|
||||
"description": "Kies je voorkeurkleurenschema",
|
||||
"light": "Licht",
|
||||
"dark": "Donker",
|
||||
"system": "Systeem"
|
||||
},
|
||||
"language": {
|
||||
"label": "Taal",
|
||||
"description": "Kies je voorkeurstaal"
|
||||
},
|
||||
"font_size": {
|
||||
"label": "Lettergrootte",
|
||||
"description": "Pas de tekstgrootte aan voor betere leesbaarheid",
|
||||
"small": "Klein",
|
||||
"medium": "Middel",
|
||||
"large": "Groot"
|
||||
},
|
||||
"list_density": {
|
||||
"label": "Lijstdichtheid",
|
||||
"description": "Regeleer de ruimte in e-maillijsten",
|
||||
"compact": "Compact",
|
||||
"regular": "Normaal",
|
||||
"comfortable": "Comfortabel"
|
||||
},
|
||||
"animations": {
|
||||
"label": "Animaties inschakelen",
|
||||
"description": "Vloeiende overgangen en effecten tonen"
|
||||
}
|
||||
},
|
||||
"language_region": {
|
||||
"title": "Taal & Regio",
|
||||
"description": "Configureer taal- en regiovoorkeuren",
|
||||
"language": {
|
||||
"label": "Taal",
|
||||
"description": "Kies je voorkeurstaal",
|
||||
"english": "English",
|
||||
"french": "Français"
|
||||
},
|
||||
"date_format": {
|
||||
"label": "Datumnotatie",
|
||||
"description": "Hoe datums moeten worden weergegeven",
|
||||
"regional": "Regionaal",
|
||||
"iso": "ISO 8601",
|
||||
"custom": "Aangepast"
|
||||
},
|
||||
"time_format": {
|
||||
"label": "Tijdnotatie",
|
||||
"description": "Kies tussen 12-uurs of 24-uurs klok",
|
||||
"12h": "12-uurs",
|
||||
"24h": "24-uurs"
|
||||
},
|
||||
"first_day": {
|
||||
"label": "Eerste dag van de week",
|
||||
"description": "Begin de week op zondag of maandag",
|
||||
"sunday": "Zondag",
|
||||
"monday": "Maandag"
|
||||
}
|
||||
},
|
||||
"email_behavior": {
|
||||
"title": "E-mailgedrag",
|
||||
"description": "Configureer hoe e-mails worden verwerkt",
|
||||
"mark_read": {
|
||||
"label": "Markeren als gelezen",
|
||||
"description": "Wanneer e-mails als gelezen worden gemarkeerd bij openen",
|
||||
"instant": "Direct",
|
||||
"delay_3s": "Na 3 seconden",
|
||||
"delay_5s": "Na 5 seconden",
|
||||
"never": "Nooit"
|
||||
},
|
||||
"delete_action": {
|
||||
"label": "Verwijderactie",
|
||||
"description": "Wat er gebeurt wanneer je een e-mail verwijdert",
|
||||
"trash": "Verplaatsen naar prullenbak",
|
||||
"permanent": "Permanent verwijderen"
|
||||
},
|
||||
"show_preview": {
|
||||
"label": "Voorbeeldtekst tonen",
|
||||
"description": "E-mailvoorbeeld weergeven in de lijst"
|
||||
},
|
||||
"emails_per_page": {
|
||||
"label": "E-mails per pagina",
|
||||
"description": "Aantal e-mails dat in één keer wordt geladen",
|
||||
"25": "25 e-mails",
|
||||
"50": "50 e-mails",
|
||||
"100": "100 e-mails"
|
||||
},
|
||||
"external_content": {
|
||||
"label": "Externe inhoud",
|
||||
"description": "Hoe afbeeldingen en externe inhoud moeten worden verwerkt",
|
||||
"ask": "Altijd vragen",
|
||||
"block": "Altijd blokkeren",
|
||||
"allow": "Altijd toestaan"
|
||||
},
|
||||
"trusted_senders": {
|
||||
"label": "Vertrouwde afzenders",
|
||||
"description": "Beheer afzenders van wie afbeeldingen automatisch worden geladen",
|
||||
"count_zero": "Geen",
|
||||
"count_one": "1 afzender",
|
||||
"count_other": "{count} afzenders",
|
||||
"modal_title": "Vertrouwde afzenders",
|
||||
"empty_title": "Nog geen vertrouwde afzenders",
|
||||
"empty_description": "Wanneer je een e-mail bekijkt met geblokkeerde afbeeldingen, klik op \"Deze afzender altijd vertrouwen\" om ze hier toe te voegen.",
|
||||
"add_manually": "Afzender handmatig toevoegen",
|
||||
"add_button": "Toevoegen",
|
||||
"add_placeholder": "Voer e-mailadres in",
|
||||
"search_placeholder": "Zoek afzenders...",
|
||||
"no_results": "Geen afzenders komen overeen met je zoekopdracht",
|
||||
"remove": "Verwijderen",
|
||||
"close": "Sluiten",
|
||||
"invalid_email": "Voer een geldig e-mailadres in",
|
||||
"already_added": "Deze afzender wordt al vertrouwd"
|
||||
}
|
||||
},
|
||||
"composer": {
|
||||
"title": "Opstellen",
|
||||
"description": "Configureer instellingen voor het opstellen van e-mails",
|
||||
"autosave": {
|
||||
"label": "Automatisch opslaan interval",
|
||||
"description": "Hoe vaak concepten automatisch worden opgeslagen",
|
||||
"30s": "Elke 30 seconden",
|
||||
"1m": "Elke minuut",
|
||||
"2m": "Elke 2 minuten",
|
||||
"5m": "Elke 5 minuten"
|
||||
},
|
||||
"send_confirmation": {
|
||||
"label": "Verzendbevestiging",
|
||||
"description": "Vraag om bevestiging voordat e-mails worden verzonden"
|
||||
},
|
||||
"default_reply": {
|
||||
"label": "Standaard antwoordmodus",
|
||||
"description": "Standaardactie bij klikken op beantwoorden",
|
||||
"reply": "Beantwoorden",
|
||||
"reply_all": "Allen beantwoorden"
|
||||
}
|
||||
},
|
||||
"privacy": {
|
||||
"title": "Privacy & Beveiliging",
|
||||
"description": "Beheer je privacy- en beveiligingsinstellingen",
|
||||
"external_images": {
|
||||
"label": "Externe afbeeldingen blokkeren",
|
||||
"description": "Voorkom tracking via externe afbeeldingen"
|
||||
},
|
||||
"session_timeout": {
|
||||
"label": "Sessie time-out",
|
||||
"description": "Automatisch uitloggen na inactiviteit",
|
||||
"never": "Nooit",
|
||||
"30m": "30 minuten",
|
||||
"1h": "1 uur",
|
||||
"4h": "4 uur"
|
||||
},
|
||||
"clear_cache": {
|
||||
"label": "Cache wissen",
|
||||
"description": "Verwijder gecachte gegevens en tijdelijke bestanden",
|
||||
"button": "Cache wissen",
|
||||
"confirm": "Weet je zeker dat je de cache wilt wissen?",
|
||||
"success": "Cache succesvol gewist"
|
||||
}
|
||||
},
|
||||
"account": {
|
||||
"title": "Account",
|
||||
"description": "Bekijk je accountinformatie",
|
||||
"email": {
|
||||
"label": "E-mailadres",
|
||||
"value": "{{email}}"
|
||||
},
|
||||
"server": {
|
||||
"label": "JMAP-server",
|
||||
"value": "{{server}}"
|
||||
},
|
||||
"storage": {
|
||||
"label": "Opslaggebruik",
|
||||
"used": "{{used}} van {{total}} gebruikt",
|
||||
"percentage": "{{percent}}% gebruikt"
|
||||
},
|
||||
"last_sync": {
|
||||
"label": "Laatste synchronisatie",
|
||||
"value": "{{time}}"
|
||||
}
|
||||
},
|
||||
"identities": {
|
||||
"title": "Verzendidentiteiten",
|
||||
"description": "Beheer e-mailadressen van waaruit je kunt verzenden",
|
||||
"identities_count": {
|
||||
"label": "Je identiteiten",
|
||||
"description": "E-mailadressen geconfigureerd voor verzenden",
|
||||
"count_zero": "Geen identiteiten",
|
||||
"count_one": "1 identiteit",
|
||||
"count_other": "{{count}} identiteiten"
|
||||
},
|
||||
"manage": "Identiteiten beheren",
|
||||
"sub_addressing": {
|
||||
"label": "Sub-adressering",
|
||||
"description": "Gebruik tags zoals gebruiker+tag@domein.nl om inkomende mail te organiseren",
|
||||
"learn_more": "Meer informatie"
|
||||
}
|
||||
},
|
||||
"advanced": {
|
||||
"title": "Geavanceerd",
|
||||
"description": "Geavanceerde opties en ontwikkelaarsinstellingen",
|
||||
"debug_mode": {
|
||||
"label": "Debugmodus",
|
||||
"description": "Schakel gedetailleerde logging in voor probleemoplossing"
|
||||
},
|
||||
"keyboard_shortcuts": {
|
||||
"label": "Sneltoetsen",
|
||||
"description": "Bekijk beschikbare sneltoetsen",
|
||||
"button": "Sneltoetsen bekijken"
|
||||
},
|
||||
"reset_settings": {
|
||||
"label": "Instellingen resetten",
|
||||
"description": "Herstel alle instellingen naar standaardwaarden",
|
||||
"button": "Resetten naar standaard"
|
||||
},
|
||||
"export_settings": {
|
||||
"label": "Instellingen exporteren",
|
||||
"description": "Download je instellingen als JSON",
|
||||
"button": "Exporteren"
|
||||
},
|
||||
"import_settings": {
|
||||
"label": "Instellingen importeren",
|
||||
"description": "Upload instellingen vanuit JSON-bestand",
|
||||
"button": "Importeren"
|
||||
}
|
||||
}
|
||||
},
|
||||
"errors": {
|
||||
"page_error_title": "Er is iets misgegaan",
|
||||
"page_error_description": "We hebben een onverwachte fout ondervonden. Probeer het opnieuw of keer terug naar de startpagina.",
|
||||
"sidebar_error": "Kan mappen niet laden",
|
||||
"email_list_error": "Kan e-mails niet laden",
|
||||
"viewer_error_title": "Kan e-mail niet weergeven",
|
||||
"viewer_error_description": "Er was een probleem met het renderen van deze e-mail. Het kan niet-ondersteunde inhoud bevatten.",
|
||||
"composer_error": "Kan opsteller niet laden",
|
||||
"settings_error_title": "Instellingen niet beschikbaar",
|
||||
"settings_error_description": "Kan instellingen niet laden. Je voorkeuren worden mogelijk niet opgeslagen.",
|
||||
"try_again": "Opnieuw proberen",
|
||||
"reload": "Herladen",
|
||||
"reload_emails": "E-mails herladen",
|
||||
"reload_settings": "Instellingen herladen",
|
||||
"retry": "Opnieuw proberen",
|
||||
"go_home": "Ga naar postvak IN"
|
||||
},
|
||||
"context_menu": {
|
||||
"reply": "Beantwoorden",
|
||||
"reply_all": "Allen beantwoorden",
|
||||
"forward": "Doorsturen",
|
||||
"mark_read": "Markeren als gelezen",
|
||||
"mark_unread": "Markeren als ongelezen",
|
||||
"star": "Ster toevoegen",
|
||||
"unstar": "Ster verwijderen",
|
||||
"move_to": "Verplaatsen naar...",
|
||||
"archive": "Archiveren",
|
||||
"delete": "Verwijderen",
|
||||
"mark_as_spam": "Spam melden",
|
||||
"not_spam": "Geen spam",
|
||||
"color_tag": "Kleurtag",
|
||||
"remove_color": "Kleur verwijderen",
|
||||
"items_selected": "{{count}} e-mails geselecteerd"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "Sneltoetsen",
|
||||
"tip": "Druk op ? om deze hulp te tonen",
|
||||
"sections": {
|
||||
"navigation": "Navigatie",
|
||||
"actions": "E-mailacties",
|
||||
"global": "Globaal",
|
||||
"threads": "Gesprekken"
|
||||
},
|
||||
"navigation": {
|
||||
"next_email": "Volgende e-mail",
|
||||
"previous_email": "Vorige e-mail",
|
||||
"open_email": "E-mail openen",
|
||||
"close_email": "Sluiten / Deselecteren"
|
||||
},
|
||||
"actions": {
|
||||
"reply": "Beantwoorden",
|
||||
"reply_all": "Allen beantwoorden",
|
||||
"forward": "Doorsturen",
|
||||
"star": "Ster aan/uit",
|
||||
"archive": "Archiveren",
|
||||
"delete": "Verwijderen",
|
||||
"mark_unread": "Markeren als ongelezen",
|
||||
"mark_read": "Markeren als gelezen",
|
||||
"toggle_spam": "Spam melden / Geen spam"
|
||||
},
|
||||
"global": {
|
||||
"compose": "Nieuw bericht opstellen",
|
||||
"search": "Focus op zoeken",
|
||||
"help": "Sneltoetsen tonen",
|
||||
"refresh": "E-mails vernieuwen",
|
||||
"select_all": "Alles selecteren"
|
||||
},
|
||||
"threads": {
|
||||
"expand_collapse": "Gesprek uitklappen/inklappen"
|
||||
}
|
||||
},
|
||||
"threads": {
|
||||
"messages_one": "{count} bericht",
|
||||
"messages_other": "{count} berichten",
|
||||
"expand": "Gesprek uitklappen",
|
||||
"collapse": "Gesprek inklappen",
|
||||
"loading": "Gesprek laden...",
|
||||
"mark_read": "Gesprek markeren als gelezen",
|
||||
"mark_unread": "Gesprek markeren als ongelezen",
|
||||
"archive": "Gesprek archiveren",
|
||||
"delete": "Gesprek verwijderen",
|
||||
"star": "Ster toevoegen aan gesprek",
|
||||
"unstar": "Ster verwijderen van gesprek"
|
||||
},
|
||||
"identities": {
|
||||
"modal_title": "Verzendidentiteiten beheren",
|
||||
"create_new": "Nieuwe identiteit aanmaken",
|
||||
"edit_identity": "Identiteit bewerken",
|
||||
"delete_confirm": "Deze identiteit verwijderen? Dit kan niet ongedaan worden gemaakt.",
|
||||
"cannot_delete": "Deze identiteit kan niet worden verwijderd",
|
||||
"primary_identity": "Primair",
|
||||
"no_identities": "Geen identiteiten gevonden",
|
||||
"display": {
|
||||
"reply_to": "Antwoord naar:",
|
||||
"bcc": "BCC:",
|
||||
"signature": "Handtekening:",
|
||||
"preview": "Voorbeeld:"
|
||||
},
|
||||
"validation_errors": {
|
||||
"invalid_emails": "Ongeldige e-mails: {emails}",
|
||||
"unknown_error": "Onbekende fout"
|
||||
},
|
||||
"form": {
|
||||
"name_label": "Weergavenaam",
|
||||
"name_placeholder": "bijv. Werk-e-mail, Persoonlijk",
|
||||
"name_required": "Naam is vereist",
|
||||
"email_label": "E-mailadres",
|
||||
"email_placeholder": "jouw.email@voorbeeld.nl",
|
||||
"email_required": "E-mail is vereist",
|
||||
"email_invalid": "Voer een geldig e-mailadres in",
|
||||
"email_immutable": "E-mailadres kan niet worden gewijzigd na aanmaak",
|
||||
"reply_to_label": "Antwoord naar (optioneel)",
|
||||
"reply_to_placeholder": "ander@email.nl",
|
||||
"bcc_label": "Automatische BCC (optioneel)",
|
||||
"bcc_placeholder": "archief@email.nl",
|
||||
"text_signature_label": "Teksthandtekening",
|
||||
"html_signature_label": "HTML-handtekening",
|
||||
"save": "Identiteit opslaan",
|
||||
"cancel": "Annuleren",
|
||||
"creating": "Aanmaken...",
|
||||
"updating": "Bijwerken..."
|
||||
},
|
||||
"sub_address": {
|
||||
"button_tooltip": "Sub-adres gebruiken",
|
||||
"popover_title": "Sub-adrestag toevoegen",
|
||||
"tag_input_placeholder": "Voer tag in (bijv. winkelen)",
|
||||
"preview_label": "Voorbeeld:",
|
||||
"recent_tags": "Recente tags",
|
||||
"suggested_tags": "Voorgesteld",
|
||||
"use_address": "Dit adres gebruiken",
|
||||
"invalid_tag": "Tag mag alleen letters, cijfers en streepjes bevatten",
|
||||
"tag_too_long": "Tag mag maximaal 30 tekens bevatten",
|
||||
"help_text": "E-mails verzonden naar gebruiker+tag@domein.nl komen in je postvak IN aan",
|
||||
"validation": {
|
||||
"empty": "Tag mag niet leeg zijn",
|
||||
"too_long": "Tag mag maximaal {max} tekens bevatten",
|
||||
"invalid_chars": "Tag mag alleen letters, cijfers en streepjes bevatten"
|
||||
}
|
||||
},
|
||||
"badge": {
|
||||
"sent_via": "via",
|
||||
"sub_address_tag": "Verzonden met sub-adres: {tag}",
|
||||
"identity_name": "Verzonden met identiteit: {name}",
|
||||
"identity_short": "via {name}",
|
||||
"subaddress_tag": "+{tag}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,746 @@
|
||||
{
|
||||
"login": {
|
||||
"title": "Webmail",
|
||||
"username_label": "E-mail",
|
||||
"username_placeholder": "usuario@exemplo.com",
|
||||
"password_label": "Senha",
|
||||
"password_placeholder": "Digite sua senha",
|
||||
"sign_in": "Entrar",
|
||||
"signing_in": "Entrando...",
|
||||
"loading": "Carregando...",
|
||||
"error": {
|
||||
"invalid_credentials": "E-mail ou senha inválidos",
|
||||
"connection_failed": "Falha ao conectar com o servidor",
|
||||
"generic": "Ocorreu um erro. Por favor, tente novamente."
|
||||
},
|
||||
"config_error": {
|
||||
"title": "Erro de Configuração",
|
||||
"fetch_failed": "Não foi possível carregar a configuração do aplicativo. Por favor, tente novamente mais tarde.",
|
||||
"server_not_configured": "O servidor de e-mail não foi configurado. Por favor, contate seu administrador."
|
||||
},
|
||||
"remove_from_history": "Remover do histórico"
|
||||
},
|
||||
"sidebar": {
|
||||
"close": "Fechar",
|
||||
"compose": "Escrever",
|
||||
"search_placeholder": "Buscar e-mails...",
|
||||
"storage": "Armazenamento",
|
||||
"sign_out": "Sair",
|
||||
"settings": "Configurações",
|
||||
"loading_mailboxes": "Carregando caixas de entrada...",
|
||||
"push_connected": "Atualizações em tempo real ativas",
|
||||
"push_disconnected": "Atualizações em tempo real inativas",
|
||||
"theme": {
|
||||
"light": "Modo claro",
|
||||
"dark": "Modo escuro",
|
||||
"system": "Tema do sistema"
|
||||
},
|
||||
"language": {
|
||||
"title": "Idioma"
|
||||
},
|
||||
"mailboxes": {
|
||||
"inbox": "Caixa de Entrada",
|
||||
"sent": "Enviados",
|
||||
"drafts": "Rascunhos",
|
||||
"trash": "Lixeira",
|
||||
"archive": "Arquivo",
|
||||
"starred": "Com Estrela",
|
||||
"all_mail": "Todos os E-mails",
|
||||
"spam": "Spam",
|
||||
"important": "Importante"
|
||||
},
|
||||
"expand": "Expandir",
|
||||
"collapse": "Recolher",
|
||||
"expand_tooltip": "Expandir",
|
||||
"collapse_tooltip": "Recolher",
|
||||
"mobile": {
|
||||
"search": "Buscar",
|
||||
"compose": "Escrever",
|
||||
"go_back": "Voltar"
|
||||
},
|
||||
"clear_search": "Limpar busca"
|
||||
},
|
||||
"email_list": {
|
||||
"no_emails": "Nenhum e-mail",
|
||||
"no_emails_description": "Comece escrevendo um novo e-mail",
|
||||
"loading": "Carregando e-mails...",
|
||||
"unread": "não lido",
|
||||
"to_me": "Para mim",
|
||||
"to_recipients": "Para {{count}} destinatários",
|
||||
"and_others": "e {{count}} outros",
|
||||
"draft": "Rascunho",
|
||||
"starred": "Com Estrela",
|
||||
"conversations_count": "{count} de {total} conversas",
|
||||
"conversations_count_plus": "{count}+ conversas",
|
||||
"conversations_count_simple": "{count} conversas",
|
||||
"no_conversations": "Nenhuma conversa",
|
||||
"loading_more": "Carregando mais e-mails...",
|
||||
"no_more_emails": "Não há mais e-mails para carregar",
|
||||
"batch_actions": {
|
||||
"mark_read": "Marcar como lido",
|
||||
"mark_unread": "Marcar como não lido",
|
||||
"delete": "Excluir",
|
||||
"clear_selection": "Limpar seleção"
|
||||
}
|
||||
},
|
||||
"email_viewer": {
|
||||
"no_email_selected": "Nenhum e-mail selecionado",
|
||||
"no_email_description": "Selecione um e-mail da lista para visualizá-lo aqui",
|
||||
"no_conversation_selected": "Nenhuma conversa selecionada",
|
||||
"no_conversation_description": "Escolha uma conversa da lista para lê-la aqui",
|
||||
"no_subject": "(Sem Assunto)",
|
||||
"loading_email": "Carregando e-mail...",
|
||||
"loading": "Carregando...",
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a Todos",
|
||||
"forward": "Encaminhar",
|
||||
"delete": "Excluir",
|
||||
"archive": "Arquivar",
|
||||
"star": "Adicionar Estrela",
|
||||
"unstar": "Remover Estrela",
|
||||
"mark_unread": "Marcar como não lido",
|
||||
"mark_read": "Marcar como lido",
|
||||
"print": "Imprimir",
|
||||
"view_source": "Ver código-fonte",
|
||||
"email_source": "Código-fonte do E-mail",
|
||||
"copy_source": "Copiar para a área de transferência",
|
||||
"source_copied": "Código-fonte copiado para a área de transferência",
|
||||
"attachments": "Anexos",
|
||||
"important": "Importante",
|
||||
"download": "Baixar",
|
||||
"from": "De",
|
||||
"to": "Para",
|
||||
"cc": "CC",
|
||||
"bcc": "CCO",
|
||||
"date": "Data",
|
||||
"subject": "Assunto",
|
||||
"show_details": "Mostrar detalhes",
|
||||
"hide_details": "Ocultar detalhes",
|
||||
"external_content_warning": "Imagens e conteúdo externo foram bloqueados",
|
||||
"load_external_content": "Carregar imagens",
|
||||
"trust_sender": "Sempre confiar neste remetente",
|
||||
"back_to_list": "Voltar para a lista",
|
||||
"message_details": "Detalhes da Mensagem",
|
||||
"more_reply_options": "Mais opções de resposta",
|
||||
"set_color": "Definir cor",
|
||||
"more_actions": "Mais ações",
|
||||
"remove_color": "Remover cor",
|
||||
"more_count": "+{count} mais",
|
||||
"characters_count": "{count} caracteres",
|
||||
"quick_reply_placeholder": "Escreva uma resposta rápida...",
|
||||
"more_options": "Mais opções",
|
||||
"sending": "Enviando...",
|
||||
"security_authentication": "Segurança & Autenticação",
|
||||
"technical_details": "Detalhes Técnicos",
|
||||
"message_id_label": "Message-ID:",
|
||||
"reply_to_label": "Responder para:",
|
||||
"delivery_time_label": "Horário de entrega:",
|
||||
"conversation_part_label": "Parte da conversa:",
|
||||
"previous_messages": "{count} mensagem anterior",
|
||||
"previous_messages_plural": "{count} mensagens anteriores",
|
||||
"time": {
|
||||
"day": "dia",
|
||||
"days": "dias",
|
||||
"hour": "hora",
|
||||
"hours": "horas",
|
||||
"minute": "minuto",
|
||||
"minutes": "minutos"
|
||||
},
|
||||
"unknown_sender": "Desconhecido",
|
||||
"recipient_me": "eu",
|
||||
"recipient_and_others": "{name} e {count} outros",
|
||||
"recipient_to_prefix": "Para:",
|
||||
"authentication": {
|
||||
"title": "Autenticação",
|
||||
"status": {
|
||||
"verified": "Verificado",
|
||||
"warning": "Aviso",
|
||||
"none": "Não autenticado"
|
||||
},
|
||||
"spf": {
|
||||
"pass": "SPF Aprovado",
|
||||
"fail": "SPF Falhou",
|
||||
"none": "Sem SPF"
|
||||
},
|
||||
"dkim": {
|
||||
"pass": "DKIM Válido",
|
||||
"fail": "DKIM Inválido",
|
||||
"none": "Sem DKIM"
|
||||
},
|
||||
"dmarc": {
|
||||
"pass": "DMARC Aprovado",
|
||||
"fail": "DMARC Falhou",
|
||||
"none": "Sem DMARC"
|
||||
},
|
||||
"spam_score": "Pontuação de Spam"
|
||||
},
|
||||
"headers": {
|
||||
"routing": "Roteamento",
|
||||
"received": "Recebido",
|
||||
"message_id": "ID da Mensagem",
|
||||
"list_info": "Informações da Lista"
|
||||
},
|
||||
"color_tag": {
|
||||
"title": "Etiqueta de Cor",
|
||||
"red": "Vermelho",
|
||||
"orange": "Laranja",
|
||||
"yellow": "Amarelo",
|
||||
"green": "Verde",
|
||||
"blue": "Azul",
|
||||
"purple": "Roxo",
|
||||
"pink": "Rosa",
|
||||
"none": "Nenhuma"
|
||||
},
|
||||
"tooltips": {
|
||||
"reply": "Responder",
|
||||
"archive": "Arquivar",
|
||||
"delete": "Excluir"
|
||||
},
|
||||
"spam": {
|
||||
"button_title": "Reportar spam",
|
||||
"not_spam_title": "Marcar como legítimo",
|
||||
"toast_success": "Movido para Spam",
|
||||
"toast_batch": "{count} e-mails movidos para Spam",
|
||||
"toast_undo": "Desfazer",
|
||||
"toast_not_spam_success": "Movido para Caixa de Entrada",
|
||||
"toast_not_spam_batch": "{count} e-mails movidos para Caixa de Entrada",
|
||||
"error": "Falha ao reportar spam",
|
||||
"error_not_spam": "Falha ao restaurar e-mail"
|
||||
},
|
||||
"unsubscribe_banner": {
|
||||
"label": "Newsletter",
|
||||
"button": "Cancelar inscrição",
|
||||
"confirm_title": "Cancelar inscrição deste remetente?",
|
||||
"confirm_button": "Confirmar",
|
||||
"cancel": "Cancelar",
|
||||
"success_http": "Página de cancelamento aberta em nova aba",
|
||||
"success_mailto": "Solicitação de cancelamento enviada para seu cliente de e-mail",
|
||||
"error": "Não foi possível cancelar a inscrição",
|
||||
"dismiss": "Dispensar"
|
||||
}
|
||||
},
|
||||
"email_composer": {
|
||||
"new_message": "Nova Mensagem",
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a Todos",
|
||||
"forward": "Encaminhar",
|
||||
"reply_to": "Responder",
|
||||
"reply_all_to": "Responder a Todos",
|
||||
"forward_message": "Encaminhar",
|
||||
"from": "De",
|
||||
"to": "Para",
|
||||
"cc": "CC",
|
||||
"bcc": "CCO",
|
||||
"subject": "Assunto",
|
||||
"body_placeholder": "Escreva sua mensagem...",
|
||||
"send": "Enviar",
|
||||
"cancel": "Cancelar",
|
||||
"attach": "Anexar",
|
||||
"discard": "Descartar",
|
||||
"discard_draft_confirm": "Você tem alterações não salvas. Deseja descartar este rascunho?",
|
||||
"saving": "Salvando...",
|
||||
"draft_saved": "Rascunho salvo",
|
||||
"save_failed": "Falha ao salvar",
|
||||
"to_placeholder": "Endereços de e-mail dos destinatários (separados por vírgula)",
|
||||
"cc_placeholder": "Destinatários CC (separados por vírgula)",
|
||||
"bcc_placeholder": "Destinatários CCO (separados por vírgula)",
|
||||
"subject_placeholder": "Assunto",
|
||||
"cc_label": "CC:",
|
||||
"bcc_label": "CCO:",
|
||||
"subject_label": "Assunto:",
|
||||
"file_size_kb": "KB",
|
||||
"prefix": {
|
||||
"forward": "Enc:",
|
||||
"reply": "Re:"
|
||||
},
|
||||
"no_subject": "(Sem Assunto)",
|
||||
"unknown_sender": "Desconhecido",
|
||||
"quote": {
|
||||
"reply_header": "Em {{date}}, {{sender}} escreveu:",
|
||||
"forward_header": "---------- Mensagem encaminhada ----------",
|
||||
"from": "De: {{sender}}",
|
||||
"date": "Data: {{date}}",
|
||||
"subject": "Assunto: {{subject}}",
|
||||
"to": "Para: {{recipients}}"
|
||||
},
|
||||
"remove_sub_address": "Remover sub-endereço"
|
||||
},
|
||||
"common": {
|
||||
"loading": "Carregando...",
|
||||
"error": "Erro",
|
||||
"success": "Sucesso",
|
||||
"cancel": "Cancelar",
|
||||
"save": "Salvar",
|
||||
"delete": "Excluir",
|
||||
"edit": "Editar",
|
||||
"close": "Fechar",
|
||||
"search": "Buscar",
|
||||
"refresh": "Atualizar",
|
||||
"settings": "Configurações",
|
||||
"help": "Ajuda",
|
||||
"logout": "Sair",
|
||||
"yes": "Sim",
|
||||
"no": "Não",
|
||||
"unknown": "Desconhecido",
|
||||
"app_title": "Webmail"
|
||||
},
|
||||
"notifications": {
|
||||
"email_sent": "E-mail enviado com sucesso",
|
||||
"email_deleted": "E-mail excluído",
|
||||
"email_archived": "E-mail arquivado",
|
||||
"email_starred": "E-mail marcado com estrela",
|
||||
"email_unstarred": "Estrela removida do e-mail",
|
||||
"email_marked_read": "E-mail marcado como lido",
|
||||
"email_marked_unread": "E-mail marcado como não lido",
|
||||
"copied_to_clipboard": "Copiado para a área de transferência",
|
||||
"source_copied": "Código-fonte copiado para a área de transferência",
|
||||
"error_sending": "Falha ao enviar e-mail",
|
||||
"error_deleting": "Falha ao excluir e-mail",
|
||||
"error_loading": "Falha ao carregar e-mails",
|
||||
"new_email": "Novo e-mail",
|
||||
"new_email_from": "De {sender}",
|
||||
"click_to_view": "Clique para visualizar",
|
||||
"email_moved": "E-mail movido",
|
||||
"emails_moved": "{count} e-mails movidos",
|
||||
"moved_to_mailbox": "Movido para {mailbox}",
|
||||
"move_failed": "Falha ao mover",
|
||||
"move_error": "Não foi possível mover os e-mails para a pasta selecionada",
|
||||
"identity_created": "Identidade criada com sucesso",
|
||||
"identity_updated": "Identidade atualizada com sucesso",
|
||||
"identity_deleted": "Identidade excluída",
|
||||
"identity_create_failed": "Falha ao criar identidade: {{error}}",
|
||||
"identity_update_failed": "Falha ao atualizar identidade: {{error}}",
|
||||
"identity_delete_failed": "Falha ao excluir identidade: {{error}}",
|
||||
"identity_unauthorized": "Você não está autorizado a enviar deste endereço de e-mail",
|
||||
"identity_not_found": "Identidade não encontrada"
|
||||
},
|
||||
"date": {
|
||||
"today": "Hoje",
|
||||
"yesterday": "Ontem",
|
||||
"this_week": "Esta semana",
|
||||
"last_week": "Semana passada",
|
||||
"this_month": "Este mês",
|
||||
"older": "Mais antigos",
|
||||
"just_now": "Agora mesmo",
|
||||
"minutes_ago": "{{count}} minuto atrás",
|
||||
"minutes_ago_plural": "{{count}} minutos atrás",
|
||||
"hours_ago": "{{count}} hora atrás",
|
||||
"hours_ago_plural": "{{count}} horas atrás",
|
||||
"days_ago": "{{count}} dia atrás",
|
||||
"days_ago_plural": "{{count}} dias atrás"
|
||||
},
|
||||
"language": {
|
||||
"title": "Idioma",
|
||||
"english": "English",
|
||||
"french": "Français",
|
||||
"japanese": "日本語",
|
||||
"spanish": "Español",
|
||||
"italian": "Italiano",
|
||||
"german": "Deutsch",
|
||||
"dutch": "Nederlands",
|
||||
"portuguese": "Português",
|
||||
"select_language": "Selecionar idioma",
|
||||
"switch_to_english": "Mudar para Inglês",
|
||||
"switch_to_french": "Mudar para Francês",
|
||||
"switch_to_japanese": "Mudar para Japonês",
|
||||
"switch_to_spanish": "Mudar para Espanhol",
|
||||
"switch_to_italian": "Mudar para Italiano",
|
||||
"switch_to_german": "Mudar para Alemão",
|
||||
"switch_to_dutch": "Mudar para Holandês",
|
||||
"switch_to_portuguese": "Mudar para Português",
|
||||
"switching": "Alterando idioma..."
|
||||
},
|
||||
"settings": {
|
||||
"title": "Configurações",
|
||||
"back_to_mail": "Voltar para E-mails",
|
||||
"save_success": "Configurações salvas com sucesso",
|
||||
"import_success": "Configurações importadas com sucesso",
|
||||
"import_error": "Falha ao importar configurações",
|
||||
"reset_confirm": "Tem certeza de que deseja redefinir todas as configurações para os padrões?",
|
||||
"tabs": {
|
||||
"appearance": "Aparência",
|
||||
"language": "Idioma e Região",
|
||||
"email": "Comportamento de E-mail",
|
||||
"composer": "Editor",
|
||||
"privacy": "Privacidade e Segurança",
|
||||
"account": "Conta",
|
||||
"identities": "Identidades",
|
||||
"advanced": "Avançado"
|
||||
},
|
||||
"appearance": {
|
||||
"title": "Aparência",
|
||||
"description": "Personalize a aparência do seu webmail",
|
||||
"theme": {
|
||||
"label": "Tema",
|
||||
"description": "Escolha seu esquema de cores preferido",
|
||||
"light": "Claro",
|
||||
"dark": "Escuro",
|
||||
"system": "Sistema"
|
||||
},
|
||||
"language": {
|
||||
"label": "Idioma",
|
||||
"description": "Escolha seu idioma preferido"
|
||||
},
|
||||
"font_size": {
|
||||
"label": "Tamanho da Fonte",
|
||||
"description": "Ajuste o tamanho do texto para melhor legibilidade",
|
||||
"small": "Pequeno",
|
||||
"medium": "Médio",
|
||||
"large": "Grande"
|
||||
},
|
||||
"list_density": {
|
||||
"label": "Densidade da Lista",
|
||||
"description": "Controle o espaçamento nas listas de e-mail",
|
||||
"compact": "Compacto",
|
||||
"regular": "Regular",
|
||||
"comfortable": "Confortável"
|
||||
},
|
||||
"animations": {
|
||||
"label": "Habilitar Animações",
|
||||
"description": "Mostrar transições e efeitos suaves"
|
||||
}
|
||||
},
|
||||
"language_region": {
|
||||
"title": "Idioma e Região",
|
||||
"description": "Configure preferências de idioma e região",
|
||||
"language": {
|
||||
"label": "Idioma",
|
||||
"description": "Escolha seu idioma preferido",
|
||||
"english": "English",
|
||||
"french": "Français"
|
||||
},
|
||||
"date_format": {
|
||||
"label": "Formato de Data",
|
||||
"description": "Como as datas devem ser exibidas",
|
||||
"regional": "Regional",
|
||||
"iso": "ISO 8601",
|
||||
"custom": "Personalizado"
|
||||
},
|
||||
"time_format": {
|
||||
"label": "Formato de Hora",
|
||||
"description": "Escolha entre relógio de 12 ou 24 horas",
|
||||
"12h": "12 horas",
|
||||
"24h": "24 horas"
|
||||
},
|
||||
"first_day": {
|
||||
"label": "Primeiro Dia da Semana",
|
||||
"description": "Começar a semana no domingo ou segunda-feira",
|
||||
"sunday": "Domingo",
|
||||
"monday": "Segunda-feira"
|
||||
}
|
||||
},
|
||||
"email_behavior": {
|
||||
"title": "Comportamento de E-mail",
|
||||
"description": "Configure como os e-mails são manipulados",
|
||||
"mark_read": {
|
||||
"label": "Marcar como Lido",
|
||||
"description": "Quando marcar e-mails como lidos ao abri-los",
|
||||
"instant": "Instantaneamente",
|
||||
"delay_3s": "Após 3 segundos",
|
||||
"delay_5s": "Após 5 segundos",
|
||||
"never": "Nunca"
|
||||
},
|
||||
"delete_action": {
|
||||
"label": "Ação de Exclusão",
|
||||
"description": "O que acontece quando você exclui um e-mail",
|
||||
"trash": "Mover para Lixeira",
|
||||
"permanent": "Excluir Permanentemente"
|
||||
},
|
||||
"show_preview": {
|
||||
"label": "Mostrar Texto de Visualização",
|
||||
"description": "Exibir visualização do e-mail na lista"
|
||||
},
|
||||
"emails_per_page": {
|
||||
"label": "E-mails Por Página",
|
||||
"description": "Número de e-mails a carregar de uma vez",
|
||||
"25": "25 e-mails",
|
||||
"50": "50 e-mails",
|
||||
"100": "100 e-mails"
|
||||
},
|
||||
"external_content": {
|
||||
"label": "Conteúdo Externo",
|
||||
"description": "Como lidar com imagens e conteúdo externo",
|
||||
"ask": "Sempre perguntar",
|
||||
"block": "Sempre bloquear",
|
||||
"allow": "Sempre permitir"
|
||||
},
|
||||
"trusted_senders": {
|
||||
"label": "Remetentes Confiáveis",
|
||||
"description": "Gerencie remetentes cujas imagens são carregadas automaticamente",
|
||||
"count_zero": "Nenhum",
|
||||
"count_one": "1 remetente",
|
||||
"count_other": "{count} remetentes",
|
||||
"modal_title": "Remetentes Confiáveis",
|
||||
"empty_title": "Nenhum remetente confiável ainda",
|
||||
"empty_description": "Ao visualizar um e-mail com imagens bloqueadas, clique em \"Sempre confiar neste remetente\" para adicioná-lo aqui.",
|
||||
"add_manually": "Adicionar remetente manualmente",
|
||||
"add_button": "Adicionar",
|
||||
"add_placeholder": "Digite o endereço de e-mail",
|
||||
"search_placeholder": "Buscar remetentes...",
|
||||
"no_results": "Nenhum remetente corresponde à sua busca",
|
||||
"remove": "Remover",
|
||||
"close": "Fechar",
|
||||
"invalid_email": "Por favor, digite um endereço de e-mail válido",
|
||||
"already_added": "Este remetente já é confiável"
|
||||
}
|
||||
},
|
||||
"composer": {
|
||||
"title": "Editor",
|
||||
"description": "Configure as configurações de composição de e-mail",
|
||||
"autosave": {
|
||||
"label": "Intervalo de Salvamento Automático",
|
||||
"description": "Com que frequência salvar rascunhos automaticamente",
|
||||
"30s": "A cada 30 segundos",
|
||||
"1m": "A cada minuto",
|
||||
"2m": "A cada 2 minutos",
|
||||
"5m": "A cada 5 minutos"
|
||||
},
|
||||
"send_confirmation": {
|
||||
"label": "Confirmação de Envio",
|
||||
"description": "Pedir confirmação antes de enviar e-mails"
|
||||
},
|
||||
"default_reply": {
|
||||
"label": "Modo de Resposta Padrão",
|
||||
"description": "Ação padrão ao clicar em responder",
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a Todos"
|
||||
}
|
||||
},
|
||||
"privacy": {
|
||||
"title": "Privacidade e Segurança",
|
||||
"description": "Gerencie suas configurações de privacidade e segurança",
|
||||
"external_images": {
|
||||
"label": "Bloquear Imagens Externas",
|
||||
"description": "Prevenir rastreamento através de imagens externas"
|
||||
},
|
||||
"session_timeout": {
|
||||
"label": "Tempo Limite de Sessão",
|
||||
"description": "Sair automaticamente após inatividade",
|
||||
"never": "Nunca",
|
||||
"30m": "30 minutos",
|
||||
"1h": "1 hora",
|
||||
"4h": "4 horas"
|
||||
},
|
||||
"clear_cache": {
|
||||
"label": "Limpar Cache",
|
||||
"description": "Remover dados em cache e arquivos temporários",
|
||||
"button": "Limpar Cache",
|
||||
"confirm": "Tem certeza de que deseja limpar o cache?",
|
||||
"success": "Cache limpo com sucesso"
|
||||
}
|
||||
},
|
||||
"account": {
|
||||
"title": "Conta",
|
||||
"description": "Visualize as informações da sua conta",
|
||||
"email": {
|
||||
"label": "Endereço de E-mail",
|
||||
"value": "{{email}}"
|
||||
},
|
||||
"server": {
|
||||
"label": "Servidor JMAP",
|
||||
"value": "{{server}}"
|
||||
},
|
||||
"storage": {
|
||||
"label": "Uso de Armazenamento",
|
||||
"used": "{{used}} de {{total}} usado",
|
||||
"percentage": "{{percent}}% usado"
|
||||
},
|
||||
"last_sync": {
|
||||
"label": "Última Sincronização",
|
||||
"value": "{{time}}"
|
||||
}
|
||||
},
|
||||
"identities": {
|
||||
"title": "Identidades de Envio",
|
||||
"description": "Gerencie endereços de e-mail que você pode usar para enviar",
|
||||
"identities_count": {
|
||||
"label": "Suas Identidades",
|
||||
"description": "Endereços de e-mail configurados para envio",
|
||||
"count_zero": "Nenhuma identidade",
|
||||
"count_one": "1 identidade",
|
||||
"count_other": "{{count}} identidades"
|
||||
},
|
||||
"manage": "Gerenciar Identidades",
|
||||
"sub_addressing": {
|
||||
"label": "Sub-Endereçamento",
|
||||
"description": "Use tags como usuario+tag@dominio.com para organizar e-mails recebidos",
|
||||
"learn_more": "Saiba Mais"
|
||||
}
|
||||
},
|
||||
"advanced": {
|
||||
"title": "Avançado",
|
||||
"description": "Opções avançadas e configurações de desenvolvedor",
|
||||
"debug_mode": {
|
||||
"label": "Modo de Depuração",
|
||||
"description": "Habilitar registro detalhado para solução de problemas"
|
||||
},
|
||||
"keyboard_shortcuts": {
|
||||
"label": "Atalhos de Teclado",
|
||||
"description": "Visualizar atalhos de teclado disponíveis",
|
||||
"button": "Ver Atalhos"
|
||||
},
|
||||
"reset_settings": {
|
||||
"label": "Redefinir Configurações",
|
||||
"description": "Restaurar todas as configurações para valores padrão",
|
||||
"button": "Redefinir para Padrões"
|
||||
},
|
||||
"export_settings": {
|
||||
"label": "Exportar Configurações",
|
||||
"description": "Baixar suas configurações como JSON",
|
||||
"button": "Exportar"
|
||||
},
|
||||
"import_settings": {
|
||||
"label": "Importar Configurações",
|
||||
"description": "Fazer upload de configurações de arquivo JSON",
|
||||
"button": "Importar"
|
||||
}
|
||||
}
|
||||
},
|
||||
"errors": {
|
||||
"page_error_title": "Algo deu errado",
|
||||
"page_error_description": "Encontramos um erro inesperado. Por favor, tente novamente ou volte para a página inicial.",
|
||||
"sidebar_error": "Não foi possível carregar as caixas de entrada",
|
||||
"email_list_error": "Não foi possível carregar os e-mails",
|
||||
"viewer_error_title": "Não foi possível exibir o e-mail",
|
||||
"viewer_error_description": "Houve um problema ao renderizar este e-mail. Ele pode conter conteúdo não suportado.",
|
||||
"composer_error": "Não foi possível carregar o editor",
|
||||
"settings_error_title": "Configurações indisponíveis",
|
||||
"settings_error_description": "Não foi possível carregar as configurações. Suas preferências podem não ser salvas.",
|
||||
"try_again": "Tentar novamente",
|
||||
"reload": "Recarregar",
|
||||
"reload_emails": "Recarregar e-mails",
|
||||
"reload_settings": "Recarregar configurações",
|
||||
"retry": "Tentar novamente",
|
||||
"go_home": "Ir para caixa de entrada"
|
||||
},
|
||||
"context_menu": {
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a Todos",
|
||||
"forward": "Encaminhar",
|
||||
"mark_read": "Marcar como Lido",
|
||||
"mark_unread": "Marcar como Não Lido",
|
||||
"star": "Adicionar Estrela",
|
||||
"unstar": "Remover Estrela",
|
||||
"move_to": "Mover para...",
|
||||
"archive": "Arquivar",
|
||||
"delete": "Excluir",
|
||||
"mark_as_spam": "Reportar spam",
|
||||
"not_spam": "Não é spam",
|
||||
"color_tag": "Etiqueta de Cor",
|
||||
"remove_color": "Remover Cor",
|
||||
"items_selected": "{{count}} e-mails selecionados"
|
||||
},
|
||||
"shortcuts": {
|
||||
"title": "Atalhos de Teclado",
|
||||
"tip": "Pressione ? a qualquer momento para mostrar esta ajuda",
|
||||
"sections": {
|
||||
"navigation": "Navegação",
|
||||
"actions": "Ações de E-mail",
|
||||
"global": "Global",
|
||||
"threads": "Conversas"
|
||||
},
|
||||
"navigation": {
|
||||
"next_email": "Próximo e-mail",
|
||||
"previous_email": "E-mail anterior",
|
||||
"open_email": "Abrir e-mail",
|
||||
"close_email": "Fechar / Desselecionar"
|
||||
},
|
||||
"actions": {
|
||||
"reply": "Responder",
|
||||
"reply_all": "Responder a todos",
|
||||
"forward": "Encaminhar",
|
||||
"star": "Alternar estrela",
|
||||
"archive": "Arquivar",
|
||||
"delete": "Excluir",
|
||||
"mark_unread": "Marcar como não lido",
|
||||
"mark_read": "Marcar como lido",
|
||||
"toggle_spam": "Reportar spam / Não é spam"
|
||||
},
|
||||
"global": {
|
||||
"compose": "Escrever novo e-mail",
|
||||
"search": "Focar busca",
|
||||
"help": "Mostrar atalhos",
|
||||
"refresh": "Atualizar e-mails",
|
||||
"select_all": "Selecionar todos"
|
||||
},
|
||||
"threads": {
|
||||
"expand_collapse": "Expandir/recolher conversa"
|
||||
}
|
||||
},
|
||||
"threads": {
|
||||
"messages_one": "{count} mensagem",
|
||||
"messages_other": "{count} mensagens",
|
||||
"expand": "Expandir conversa",
|
||||
"collapse": "Recolher conversa",
|
||||
"loading": "Carregando conversa...",
|
||||
"mark_read": "Marcar conversa como lida",
|
||||
"mark_unread": "Marcar conversa como não lida",
|
||||
"archive": "Arquivar conversa",
|
||||
"delete": "Excluir conversa",
|
||||
"star": "Adicionar estrela à conversa",
|
||||
"unstar": "Remover estrela da conversa"
|
||||
},
|
||||
"identities": {
|
||||
"modal_title": "Gerenciar Identidades de Envio",
|
||||
"create_new": "Criar Nova Identidade",
|
||||
"edit_identity": "Editar Identidade",
|
||||
"delete_confirm": "Excluir esta identidade? Isso não pode ser desfeito.",
|
||||
"cannot_delete": "Esta identidade não pode ser excluída",
|
||||
"primary_identity": "Principal",
|
||||
"no_identities": "Nenhuma identidade encontrada",
|
||||
"display": {
|
||||
"reply_to": "Responder para:",
|
||||
"bcc": "CCO:",
|
||||
"signature": "Assinatura:",
|
||||
"preview": "Visualização:"
|
||||
},
|
||||
"validation_errors": {
|
||||
"invalid_emails": "E-mails inválidos: {emails}",
|
||||
"unknown_error": "Erro desconhecido"
|
||||
},
|
||||
"form": {
|
||||
"name_label": "Nome de Exibição",
|
||||
"name_placeholder": "ex: E-mail do Trabalho, Pessoal",
|
||||
"name_required": "Nome é obrigatório",
|
||||
"email_label": "Endereço de E-mail",
|
||||
"email_placeholder": "seu.email@exemplo.com",
|
||||
"email_required": "E-mail é obrigatório",
|
||||
"email_invalid": "Por favor, digite um endereço de e-mail válido",
|
||||
"email_immutable": "O endereço de e-mail não pode ser alterado após a criação",
|
||||
"reply_to_label": "Responder para (opcional)",
|
||||
"reply_to_placeholder": "diferente@email.com",
|
||||
"bcc_label": "CCO Automático (opcional)",
|
||||
"bcc_placeholder": "arquivo@email.com",
|
||||
"text_signature_label": "Assinatura de Texto",
|
||||
"html_signature_label": "Assinatura HTML",
|
||||
"save": "Salvar Identidade",
|
||||
"cancel": "Cancelar",
|
||||
"creating": "Criando...",
|
||||
"updating": "Atualizando..."
|
||||
},
|
||||
"sub_address": {
|
||||
"button_tooltip": "Usar sub-endereço",
|
||||
"popover_title": "Adicionar Tag de Sub-Endereço",
|
||||
"tag_input_placeholder": "Digite a tag (ex: compras)",
|
||||
"preview_label": "Visualização:",
|
||||
"recent_tags": "Tags Recentes",
|
||||
"suggested_tags": "Sugeridas",
|
||||
"use_address": "Usar Este Endereço",
|
||||
"invalid_tag": "A tag deve conter apenas caracteres alfanuméricos e hífens",
|
||||
"tag_too_long": "A tag deve ter no máximo 30 caracteres",
|
||||
"help_text": "E-mails enviados para usuario+tag@dominio.com chegarão na sua caixa de entrada",
|
||||
"validation": {
|
||||
"empty": "A tag não pode estar vazia",
|
||||
"too_long": "A tag deve ter no máximo {max} caracteres",
|
||||
"invalid_chars": "A tag deve conter apenas letras, números e hífens"
|
||||
}
|
||||
},
|
||||
"badge": {
|
||||
"sent_via": "via",
|
||||
"sub_address_tag": "Enviado usando sub-endereço: {tag}",
|
||||
"identity_name": "Enviado usando identidade: {name}",
|
||||
"identity_short": "via {name}",
|
||||
"subaddress_tag": "+{tag}"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user