diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f780c1aec9..6c46487efa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,10 @@ name: autofix.ci + on: pull_request: - push: -permissions: {} + jobs: - prettier: + autofix: runs-on: ubuntu-latest steps: - name: Checkout Code 🛎 @@ -14,6 +14,11 @@ jobs: uses: oven-sh/setup-bun@v1 with: bun-version: latest - - uses: actions/setup-node@v4 - - run: | - bun install + + - name: Setup Node 📦 + uses: actions/setup-node@v4 + with: + node-version: latest + + - name: Install dependencies 📦 + run: bun install diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000..9b54a3605d --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,42 @@ +name: main + +on: + push: + branches: + - main + workflow_dispatch: + inputs: + skip_localization: + description: "Skip Lingo.dev step" + type: "boolean" + default: false + +permissions: + contents: write + pull-requests: write + +jobs: + main: + runs-on: ubuntu-latest + steps: + - name: Checkout Code 🛎 + uses: actions/checkout@v4 + + - name: Setup Bun 🌟 + uses: oven-sh/setup-bun@v1 + with: + bun-version: latest + + - name: Setup Node 📦 + uses: actions/setup-node@v4 + with: + node-version: latest + + - name: Install dependencies 📦 + run: bun install + + - name: Run Lingo.dev Localization 🌐 + if: ${{ !inputs.skip_localization }} + uses: lingodotdev/lingo.dev@main + with: + api-key: ${{ secrets.LINGODOTDEV_API_KEY }} diff --git a/.gitignore b/.gitignore index dc3b58f7ee..91ed378893 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,4 @@ next-env.d.ts .idea .vscode .turbo +i18n.cache diff --git a/apps/mail/i18n/config.ts b/apps/mail/i18n/config.ts index 73a22a357d..725f703f71 100644 --- a/apps/mail/i18n/config.ts +++ b/apps/mail/i18n/config.ts @@ -12,7 +12,8 @@ const LANGUAGES = { pt: "Portuguese", ru: "Russian", tr: "Turkish", - lv: "Latvian" + lv: "Latvian", + hu: "Hungarian", } as const; export type Locale = keyof typeof LANGUAGES; diff --git a/apps/mail/locales/ar.json b/apps/mail/locales/ar.json index 279b957c39..4ee160b47b 100644 --- a/apps/mail/locales/ar.json +++ b/apps/mail/locales/ar.json @@ -10,425 +10,425 @@ "close": "غلق", "signingOut": "تسجيل الخروج...", "signedOutSuccess": "تم تسجيل الخروج بنجاح!", - "signOutError": "Error signing out", - "refresh": "Refresh", - "loading": "Loading...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "signOutError": "خطأ في تسجيل الخروج", + "refresh": "تحديث", + "loading": "جارٍ التحميل...", + "featureNotImplemented": "هذه الميزة غير متوفرة بعد", + "moving": "جارٍ النقل...", + "movedToInbox": "تم النقل إلى صندوق الوارد", + "movingToInbox": "جارٍ النقل إلى صندوق الوارد...", + "movedToSpam": "تم النقل إلى البريد المزعج", + "movingToSpam": "جارٍ النقل إلى البريد المزعج...", + "archiving": "جارٍ الأرشفة...", + "archived": "تمت الأرشفة", + "failedToMove": "فشل نقل الرسالة", + "addingToFavorites": "جارٍ الإضافة إلى المفضلة...", + "removingFromFavorites": "جارٍ الإزالة من المفضلة...", + "addedToFavorites": "تمت الإضافة إلى المفضلة", + "removedFromFavorites": "تمت الإزالة من المفضلة", + "failedToAddToFavorites": "فشلت الإضافة إلى المفضلة", + "failedToRemoveFromFavorites": "فشلت الإزالة من المفضلة", + "failedToModifyFavorites": "فشل تعديل المفضلة", + "movingToBin": "جارٍ النقل إلى سلة المهملات...", + "movedToBin": "تم النقل إلى سلة المهملات", + "failedToMoveToBin": "فشل النقل إلى سلة المهملات", + "markingAsRead": "جارٍ التعليم كمقروءة...", + "markingAsUnread": "جارٍ التعليم كغير مقروءة...", + "hiddenImagesWarning": "تم إخفاء الصور افتراضيًا لأسباب أمنية.", + "showImages": "عرض الصور", + "disableImages": "إخفاء الصور", + "trustSender": "الوثوق بالمرسل", + "cancel": "إلغاء", + "save": "حفظ", + "remove": "إزالة" }, "themes": { - "dark": "Dark", - "light": "Light", - "system": "System" + "dark": "داكن", + "light": "فاتح", + "system": "النظام" }, "commandPalette": { - "title": "Command Palette", - "description": "Quick navigation and actions for Mail-0", - "placeholder": "Type a command or search...", - "noResults": "No results found", + "title": "لوحة الأوامر", + "description": "التنقل السريع والإجراءات لـ Mail-0", + "placeholder": "اكتب أمرًا أو ابحث...", + "noResults": "لم يتم العثور على نتائج", "groups": { "mail": "البريد", "settings": "الإعدادات", "actions": "الإجراءات", - "help": "Help", - "navigation": "Navigation" + "help": "مساعدة", + "navigation": "التنقل" }, "commands": { - "goToInbox": "Go to Inbox", - "goToDrafts": "Go to Drafts", - "goToSent": "Go to Sent", - "goToSpam": "Go to Spam", - "goToArchive": "Go to Archive", - "goToBin": "Go to Bin", - "goToSettings": "Go to Settings", - "newEmail": "New Email", - "composeMessage": "Compose message", - "searchEmails": "Search Emails", - "toggleTheme": "Toggle Theme", - "backToMail": "Back to Mail", - "goToDocs": "Go to docs", - "helpWithShortcuts": "Help with shortcuts" + "goToInbox": "الذهاب إلى صندوق الوارد", + "goToDrafts": "الذهاب إلى المسودات", + "goToSent": "الذهاب إلى الرسائل المرسلة", + "goToSpam": "الذهاب إلى البريد المزعج", + "goToArchive": "الذهاب إلى الأرشيف", + "goToBin": "الذهاب إلى سلة المهملات", + "goToSettings": "الذهاب إلى الإعدادات", + "newEmail": "بريد إلكتروني جديد", + "composeMessage": "إنشاء رسالة", + "searchEmails": "البحث في الرسائل", + "toggleTheme": "تبديل السمة", + "backToMail": "العودة إلى البريد", + "goToDocs": "الذهاب إلى المستندات", + "helpWithShortcuts": "المساعدة في الاختصارات" } }, "searchBar": { - "pickDateRange": "Pick a date or a range", - "search": "Search", - "clearSearch": "Clear search", - "advancedSearch": "Advanced search", - "quickFilters": "Quick filters", - "searchIn": "Search in", - "recipient": "Recipient", - "sender": "Sender", - "subject": "Subject", - "dateRange": "Date range", - "category": "Category", - "folder": "Folder", - "allMail": "All Mail", - "unread": "Unread", - "hasAttachment": "Has Attachment", - "starred": "Starred", - "applyFilters": "Apply filters", - "reset": "Reset", - "searching": "Searching...", - "aiSuggestions": "AI Suggestions", - "aiSearching": "AI is searching...", - "aiSearchError": "AI search failed. Please try again.", - "aiNoResults": "No AI suggestions found", - "aiEnhancedQuery": "Enhanced search query" + "pickDateRange": "اختر تاريخًا أو نطاقًا", + "search": "بحث", + "clearSearch": "مسح البحث", + "advancedSearch": "بحث متقدم", + "quickFilters": "تصفية سريعة", + "searchIn": "البحث في", + "recipient": "المستلم", + "sender": "المرسل", + "subject": "الموضوع", + "dateRange": "النطاق الزمني", + "category": "الفئة", + "folder": "المجلد", + "allMail": "كل الرسائل", + "unread": "غير مقروءة", + "hasAttachment": "تحتوي على مرفقات", + "starred": "مميزة بنجمة", + "applyFilters": "تطبيق التصفية", + "reset": "إعادة ضبط", + "searching": "جارٍ البحث...", + "aiSuggestions": "اقتراحات الذكاء الاصطناعي", + "aiSearching": "الذكاء الاصطناعي يبحث...", + "aiSearchError": "فشل بحث الذكاء الاصطناعي. يرجى المحاولة مرة أخرى.", + "aiNoResults": "لم يتم العثور على اقتراحات من الذكاء الاصطناعي", + "aiEnhancedQuery": "استعلام بحث محسّن" }, "navUser": { - "customerSupport": "Community", - "documentation": "Documentation", - "appTheme": "App Theme", - "accounts": "Accounts", - "signIn": "Sign in" + "customerSupport": "المجتمع", + "documentation": "الوثائق", + "appTheme": "مظهر التطبيق", + "accounts": "الحسابات", + "signIn": "تسجيل الدخول" }, "mailCategories": { - "primary": "Primary", - "allMail": "All Mail", - "important": "Important", - "personal": "Personal", - "updates": "Updates", - "promotions": "Promotions", - "social": "Social" + "primary": "الرئيسية", + "allMail": "كل الرسائل", + "important": "مهم", + "personal": "شخصي", + "updates": "تحديثات", + "promotions": "عروض", + "social": "اجتماعي" }, "replyCompose": { - "replyTo": "Reply to", - "thisEmail": "this email", - "dropFiles": "Drop files to attach", - "attachments": "Attachments", - "attachmentCount": "{count, plural, =0 {attachments} one {attachment} other {attachments}}", - "fileCount": "{count, plural, =0 {files} one {file} other {files}}", - "saveDraft": "Save draft", - "send": "Send", - "forward": "Forward" + "replyTo": "الرد على", + "thisEmail": "هذا البريد الإلكتروني", + "dropFiles": "أفلت الملفات للإرفاق", + "attachments": "المرفقات", + "attachmentCount": "{count, plural, =0 {مرفقات} one {مرفق} two {مرفقان} few {مرفقات} many {مرفقات} other {مرفقات}}", + "fileCount": "{count, plural, =0 {ملفات} one {ملف} two {ملفان} few {ملفات} many {ملفات} other {ملفات}}", + "saveDraft": "حفظ المسودة", + "send": "إرسال", + "forward": "إعادة توجيه" }, "mailDisplay": { - "details": "Details", - "from": "From", - "to": "To", - "cc": "Cc", - "date": "Date", - "mailedBy": "Mailed-By", - "signedBy": "Signed-By", - "security": "Security", - "standardEncryption": "Standard encryption (TLS)", - "loadingMailContent": "Loading mail content...", - "unsubscribe": "Unsubscribe", - "unsubscribed": "Unsubscribed", - "unsubscribeDescription": "Are you sure you want to unsubscribe from this mailing list?", - "unsubscribeOpenSiteDescription": "To stop getting messages from this mailing list, go to their website to unsubscribe.", - "cancel": "Cancel", - "goToWebsite": "Go to website", - "failedToUnsubscribe": "Failed to unsubscribe from mailing list" + "details": "التفاصيل", + "from": "من", + "to": "إلى", + "cc": "نسخة", + "date": "التاريخ", + "mailedBy": "مرسل بواسطة", + "signedBy": "موقع بواسطة", + "security": "الأمان", + "standardEncryption": "تشفير قياسي (TLS)", + "loadingMailContent": "جاري تحميل محتوى البريد...", + "unsubscribe": "إلغاء الاشتراك", + "unsubscribed": "تم إلغاء الاشتراك", + "unsubscribeDescription": "هل أنت متأكد من رغبتك في إلغاء الاشتراك من هذه القائمة البريدية؟", + "unsubscribeOpenSiteDescription": "للتوقف عن تلقي رسائل من هذه القائمة البريدية، انتقل إلى موقعهم الإلكتروني لإلغاء الاشتراك.", + "cancel": "إلغاء", + "goToWebsite": "الانتقال إلى الموقع", + "failedToUnsubscribe": "فشل إلغاء الاشتراك من القائمة البريدية" }, "threadDisplay": { - "exitFullscreen": "Exit fullscreen", - "enterFullscreen": "Enter fullscreen", - "archive": "Archive", - "reply": "Reply", - "moreOptions": "More options", - "moveToSpam": "Move to Spam", - "replyAll": "Reply all", - "forward": "Forward", - "markAsUnread": "Mark as Unread", - "markAsRead": "Mark as Read", - "addLabel": "Add label", - "muteThread": "Mute thread", - "favourites": "Favourites", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "exitFullscreen": "الخروج من وضع ملء الشاشة", + "enterFullscreen": "الدخول إلى وضع ملء الشاشة", + "archive": "أرشفة", + "reply": "رد", + "moreOptions": "خيارات أخرى", + "moveToSpam": "نقل إلى البريد المزعج", + "replyAll": "الرد على الكل", + "forward": "إعادة توجيه", + "markAsUnread": "تحديد كغير مقروء", + "markAsRead": "تحديد كمقروء", + "addLabel": "إضافة تصنيف", + "muteThread": "كتم المحادثة", + "favourites": "المفضلة", + "disableImages": "إخفاء الصور", + "enableImages": "عرض الصور" }, "notes": { - "title": "Notes", - "empty": "No notes for this email", - "emptyDescription": "Add notes to keep track of important information or follow-ups.", - "addNote": "Add a note", - "addYourNote": "Add your note here...", - "editNote": "Edit note", - "deleteNote": "Delete note", - "deleteConfirm": "Are you sure you want to delete this note?", - "deleteConfirmDescription": "This action cannot be undone.", - "cancel": "Cancel", - "delete": "Delete", - "save": "Save note", - "toSave": "to save", - "label": "Label:", - "search": "Search notes...", - "noteCount": "{count, plural, =0 {Add notes} one {# note} other {# notes}}", - "notePinned": "Note pinned", - "noteUnpinned": "Note unpinned", - "colorChanged": "Note color updated", - "noteUpdated": "Note updated", - "noteDeleted": "Note deleted", - "noteCopied": "Copied to clipboard", - "noteAdded": "Note added", - "notesReordered": "Notes reordered", - "noMatchingNotes": "No notes matching \"{query}\"", - "clearSearch": "Clear search", - "pinnedNotes": "Pinned notes", - "otherNotes": "Other notes", - "created": "Created", - "updated": "Updated", + "title": "الملاحظات", + "empty": "لا توجد ملاحظات لهذا البريد الإلكتروني", + "emptyDescription": "أضف ملاحظات لتتبع المعلومات المهمة أو المتابعات.", + "addNote": "إضافة ملاحظة", + "addYourNote": "أضف ملاحظتك هنا...", + "editNote": "تعديل الملاحظة", + "deleteNote": "حذف الملاحظة", + "deleteConfirm": "هل أنت متأكد من رغبتك في حذف هذه الملاحظة؟", + "deleteConfirmDescription": "لا يمكن التراجع عن هذا الإجراء.", + "cancel": "إلغاء", + "delete": "حذف", + "save": "حفظ الملاحظة", + "toSave": "للحفظ", + "label": "التصنيف:", + "search": "البحث في الملاحظات...", + "noteCount": "{count, plural, =0 {إضافة ملاحظات} one {ملاحظة واحدة} two {ملاحظتان} few {# ملاحظات} many {# ملاحظة} other {# ملاحظة}}", + "notePinned": "تم تثبيت الملاحظة", + "noteUnpinned": "تم إلغاء تثبيت الملاحظة", + "colorChanged": "تم تحديث لون الملاحظة", + "noteUpdated": "تم تحديث الملاحظة", + "noteDeleted": "تم حذف الملاحظة", + "noteCopied": "تم النسخ إلى الحافظة", + "noteAdded": "تمت إضافة الملاحظة", + "notesReordered": "تم إعادة ترتيب الملاحظات", + "noMatchingNotes": "لا توجد ملاحظات تطابق \"{query}\"", + "clearSearch": "مسح البحث", + "pinnedNotes": "الملاحظات المثبتة", + "otherNotes": "ملاحظات أخرى", + "created": "تم الإنشاء", + "updated": "تم التحديث", "errors": { - "failedToLoadNotes": "Failed to load notes", - "failedToLoadThreadNotes": "Failed to load thread notes", - "failedToAddNote": "Failed to add note", - "failedToUpdateNote": "Failed to update note", - "failedToDeleteNote": "Failed to delete note", - "failedToUpdateNoteColor": "Failed to update note color", - "noValidNotesToReorder": "No valid notes to reorder", - "failedToReorderNotes": "Failed to reorder notes" + "failedToLoadNotes": "فشل تحميل الملاحظات", + "failedToLoadThreadNotes": "فشل تحميل ملاحظات المحادثة", + "failedToAddNote": "فشل إضافة الملاحظة", + "failedToUpdateNote": "فشل تحديث الملاحظة", + "failedToDeleteNote": "فشل حذف الملاحظة", + "failedToUpdateNoteColor": "فشل تحديث لون الملاحظة", + "noValidNotesToReorder": "لا توجد ملاحظات صالحة لإعادة الترتيب", + "failedToReorderNotes": "فشل إعادة ترتيب الملاحظات" }, "colors": { - "default": "Default", - "red": "Red", - "orange": "Orange", - "yellow": "Yellow", - "green": "Green", - "blue": "Blue", - "purple": "Purple", - "pink": "Pink" + "default": "افتراضي", + "red": "أحمر", + "orange": "برتقالي", + "yellow": "أصفر", + "green": "أخضر", + "blue": "أزرق", + "purple": "بنفسجي", + "pink": "وردي" }, "actions": { - "pin": "Pin note", - "unpin": "Unpin note", - "edit": "Edit note", - "delete": "Delete note", - "copy": "Copy note", - "changeColor": "Change color" + "pin": "تثبيت الملاحظة", + "unpin": "إلغاء تثبيت الملاحظة", + "edit": "تعديل الملاحظة", + "delete": "حذف الملاحظة", + "copy": "نسخ الملاحظة", + "changeColor": "تغيير اللون" } }, "settings": { - "notFound": "Settings not found", - "saved": "Settings saved", - "failedToSave": "Failed to save settings", - "languageChanged": "Language changed to {locale}" + "notFound": "لم يتم العثور على الإعدادات", + "saved": "تم حفظ الإعدادات", + "failedToSave": "فشل في حفظ الإعدادات", + "languageChanged": "تم تغيير اللغة إلى {locale}" }, "mail": { - "replies": "{count, plural, =0 {replies} one {# reply} other {# replies}}", - "deselectAll": "Deselected all emails", - "selectedEmails": "Selected {count} emails", - "noEmailsToSelect": "No emails to select", - "markedAsRead": "Marked as read", - "markedAsUnread": "Marked as unread", - "failedToMarkAsRead": "Failed to mark as read", - "failedToMarkAsUnread": "Failed to mark as unread", - "selected": "{count} selected", - "clearSelection": "Clear Selection", - "mute": "Mute", - "moveToSpam": "Move to Spam", - "moveToInbox": "Move to Inbox", - "unarchive": "Unarchive", - "archive": "Archive", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", - "markAsUnread": "Mark as Unread", - "markAsRead": "Mark as Read", - "addFavorite": "Favorite", - "removeFavorite": "Unfavorite", - "muteThread": "Mute Thread", - "moving": "Moving...", - "moved": "Moved", - "errorMoving": "Error moving", - "reply": "Reply", - "replyAll": "Reply All", - "forward": "Forward", - "labels": "Labels", - "createNewLabel": "Create New Label", - "noLabelsAvailable": "No labels available", - "loadMore": "Load more" + "replies": "{count, plural, =0 {ردود} one {رد واحد} two {ردان} few {# ردود} many {# رداً} other {# رد}}", + "deselectAll": "تم إلغاء تحديد جميع الرسائل", + "selectedEmails": "تم تحديد {count} من الرسائل", + "noEmailsToSelect": "لا توجد رسائل للتحديد", + "markedAsRead": "تم تحديدها كمقروءة", + "markedAsUnread": "تم تحديدها كغير مقروءة", + "failedToMarkAsRead": "فشل في التحديد كمقروءة", + "failedToMarkAsUnread": "فشل في التحديد كغير مقروءة", + "selected": "تم تحديد {count}", + "clearSelection": "مسح التحديد", + "mute": "كتم", + "moveToSpam": "نقل إلى البريد المزعج", + "moveToInbox": "نقل إلى صندوق الوارد", + "unarchive": "إلغاء الأرشفة", + "archive": "أرشفة", + "moveToBin": "نقل إلى سلة المهملات", + "restoreFromBin": "استعادة من سلة المهملات", + "markAsUnread": "تحديد كغير مقروء", + "markAsRead": "تحديد كمقروء", + "addFavorite": "إضافة للمفضلة", + "removeFavorite": "إزالة من المفضلة", + "muteThread": "كتم المحادثة", + "moving": "جارٍ النقل...", + "moved": "تم النقل", + "errorMoving": "خطأ في النقل", + "reply": "رد", + "replyAll": "رد على الكل", + "forward": "إعادة توجيه", + "labels": "التصنيفات", + "createNewLabel": "إنشاء تصنيف جديد", + "noLabelsAvailable": "لا توجد تصنيفات متاحة", + "loadMore": "تحميل المزيد" }, "units": { - "mb": "{amount} MB" + "mb": "{amount} ميجابايت" } }, "navigation": { "sidebar": { - "inbox": "Inbox", - "drafts": "Drafts", - "sent": "Sent", - "spam": "Spam", - "archive": "Archive", - "bin": "Bin", - "feedback": "Feedback", - "settings": "Settings" + "inbox": "البريد الوارد", + "drafts": "المسودات", + "sent": "المرسلة", + "spam": "البريد المزعج", + "archive": "الأرشيف", + "bin": "سلة المحذوفات", + "feedback": "الملاحظات", + "settings": "الإعدادات" }, "settings": { - "general": "General", - "connections": "Connections", - "security": "Security", - "appearance": "Appearance", - "signatures": "Signatures", - "shortcuts": "Shortcuts" + "general": "عام", + "connections": "الاتصالات", + "security": "الأمان", + "appearance": "المظهر", + "signatures": "التوقيعات", + "shortcuts": "الاختصارات" } }, "pages": { "error": { "notFound": { - "title": "Page Not Found", - "description": "Oops! The page you're looking for doesn't exist or has been moved.", - "goBack": "Go Back" + "title": "الصفحة غير موجودة", + "description": "عذراً! الصفحة التي تبحث عنها غير موجودة أو تم نقلها.", + "goBack": "العودة" }, - "settingsNotFound": "404 - Settings page not found" + "settingsNotFound": "404 - صفحة الإعدادات غير موجودة" }, "settings": { "general": { - "title": "General", - "description": "Manage settings for your language and email display preferences.", - "language": "Language", - "selectLanguage": "Select a language", - "timezone": "Timezone", - "selectTimezone": "Select a timezone", - "dynamicContent": "Dynamic Content", - "dynamicContentDescription": "Allow emails to display dynamic content.", - "externalImages": "Display External Images", - "externalImagesDescription": "Allow emails to display images from external sources.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", - "languageChangedTo": "Language changed to {locale}", - "customPrompt": "Custom AI Prompt", - "customPromptPlaceholder": "Enter your custom prompt for the AI...", - "customPromptDescription": "Customize how the AI writes your email replies. This will be added to the base prompt." + "title": "عام", + "description": "إدارة إعدادات اللغة وتفضيلات عرض البريد الإلكتروني.", + "language": "اللغة", + "selectLanguage": "اختر لغة", + "timezone": "المنطقة الزمنية", + "selectTimezone": "اختر منطقة زمنية", + "dynamicContent": "المحتوى الديناميكي", + "dynamicContentDescription": "السماح للرسائل بعرض محتوى ديناميكي.", + "externalImages": "عرض الصور الخارجية", + "externalImagesDescription": "السماح للرسائل بعرض صور من مصادر خارجية.", + "trustedSenders": "المرسلون الموثوقون", + "trustedSendersDescription": "عرض الصور دائماً لهؤلاء المرسلين.", + "languageChangedTo": "تم تغيير اللغة إلى {locale}", + "customPrompt": "توجيه الذكاء الاصطناعي المخصص", + "customPromptPlaceholder": "أدخل توجيهك المخصص للذكاء الاصطناعي...", + "customPromptDescription": "خصص كيفية كتابة الذكاء الاصطناعي لردود بريدك الإلكتروني. سيتم إضافة هذا إلى التوجيه الأساسي." }, "connections": { - "title": "Email Connections", - "description": "Connect your email accounts to Zero.", - "disconnectTitle": "Disconnect Email Account", - "disconnectDescription": "Are you sure you want to disconnect this email?", - "cancel": "Cancel", - "remove": "Remove", - "disconnectSuccess": "Account disconnected successfully", - "disconnectError": "Failed to disconnect account", - "addEmail": "Add Connection", - "connectEmail": "Connect Email", - "connectEmailDescription": "Select an email provider to connect", - "moreComingSoon": "More coming soon" + "title": "اتصالات البريد الإلكتروني", + "description": "قم بربط حسابات بريدك الإلكتروني بـ Zero.", + "disconnectTitle": "فصل حساب البريد الإلكتروني", + "disconnectDescription": "هل أنت متأكد من رغبتك في فصل هذا البريد الإلكتروني؟", + "cancel": "إلغاء", + "remove": "إزالة", + "disconnectSuccess": "تم فصل الحساب بنجاح", + "disconnectError": "فشل في فصل الحساب", + "addEmail": "إضافة اتصال", + "connectEmail": "ربط البريد الإلكتروني", + "connectEmailDescription": "اختر مزود بريد إلكتروني للاتصال", + "moreComingSoon": "المزيد قريبًا" }, "security": { - "title": "Security", - "description": "Manage your security preferences and account protection.", - "twoFactorAuth": "Two-Factor Authentication", - "twoFactorAuthDescription": "Add an extra layer of security to your account", - "loginNotifications": "Login Notifications", - "loginNotificationsDescription": "Get notified about new login attempts", - "deleteAccount": "Delete Account", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "title": "الأمان", + "description": "إدارة تفضيلات الأمان وحماية الحساب.", + "twoFactorAuth": "المصادقة الثنائية", + "twoFactorAuthDescription": "أضف طبقة إضافية من الأمان لحسابك", + "loginNotifications": "إشعارات تسجيل الدخول", + "loginNotificationsDescription": "الحصول على إشعارات حول محاولات تسجيل الدخول الجديدة", + "deleteAccount": "حذف الحساب", + "loadImagesDefault": "تحميل الصور افتراضيًا", + "loadImagesDefaultDescription": "لا يتم تحميل الصور افتراضيًا لأسباب أمنية." }, "appearance": { - "title": "Appearance", - "description": "Customize colors, fonts and view options.", - "theme": "Theme", - "inboxType": "Inbox Type" + "title": "المظهر", + "description": "تخصيص الألوان والخطوط وخيارات العرض.", + "theme": "السمة", + "inboxType": "نوع صندوق الوارد" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "توقيعات البريد الإلكتروني", + "description": "إنشاء وإدارة توقيع بريدك الإلكتروني الذي يظهر في أسفل رسائلك.", + "enableSignature": "تفعيل التوقيع", + "enableSignatureDescription": "إضافة توقيعك إلى نهاية جميع الرسائل الصادرة.", + "includeByDefault": "تضمين افتراضيًا", + "includeByDefaultDescription": "إضافة توقيعك تلقائيًا عند إنشاء رسائل إلكترونية جديدة.", + "signatureContent": "محتوى التوقيع", + "signatureContentPlaceholder": "أنشئ توقيعك مع التنسيق والروابط والصور.", + "signaturePreview": "معاينة التوقيع", + "signatureSaved": "تم حفظ التوقيع بنجاح", + "signaturePreviewDescription": "هكذا سيظهر توقيعك في رسائل البريد الإلكتروني.", + "editorType": "نوع المحرر", + "editorTypeDescription": "اختر بين إدخال النص العادي/HTML أو محرر النص المنسق لتوقيعك.", + "plainText": "نص عادي / HTML", + "richText": "محرر النص المنسق", + "richTextDescription": "استخدم محرر النص المنسق لتنسيق توقيعك.", + "richTextPlaceholder": "قم بتنسيق توقيعك باستخدام محرر النص المنسق...", + "signatureContentHelp": "يمكنك استخدام HTML لإضافة تنسيق وروابط وصور إلى توقيعك." }, "shortcuts": { - "title": "Keyboard Shortcuts", - "description": "View and customize keyboard shortcuts for quick actions.", + "title": "اختصارات لوحة المفاتيح", + "description": "عرض وتخصيص اختصارات لوحة المفاتيح للإجراءات السريعة.", "actions": { - "newEmail": "New Email", - "sendEmail": "Send Email", - "reply": "Reply", - "replyAll": "Reply All", - "forward": "Forward", - "drafts": "Drafts", - "inbox": "Inbox", - "sentMail": "Sent Mail", - "delete": "Delete", - "search": "Search", - "markAsUnread": "Mark as Unread", - "muteThread": "Mute Thread", - "printEmail": "Print Email", - "archiveEmail": "Archive Email", - "markAsSpam": "Mark as Spam", - "moveToFolder": "Move to Folder", - "undoLastAction": "Undo Last Action", - "viewEmailDetails": "View Email Details", - "goToDrafts": "Go to Drafts", - "expandEmailView": "Expand Email View", - "helpWithShortcuts": "Help with shortcuts" + "newEmail": "بريد إلكتروني جديد", + "sendEmail": "إرسال بريد إلكتروني", + "reply": "الرد", + "replyAll": "الرد على الكل", + "forward": "إعادة توجيه", + "drafts": "المسودات", + "inbox": "صندوق الوارد", + "sentMail": "البريد المرسل", + "delete": "حذف", + "search": "بحث", + "markAsUnread": "تحديد كغير مقروء", + "muteThread": "كتم المحادثة", + "printEmail": "طباعة البريد الإلكتروني", + "archiveEmail": "أرشفة البريد الإلكتروني", + "markAsSpam": "تحديد كبريد مزعج", + "moveToFolder": "نقل إلى مجلد", + "undoLastAction": "التراجع عن آخر إجراء", + "viewEmailDetails": "عرض تفاصيل البريد الإلكتروني", + "goToDrafts": "الانتقال إلى المسودات", + "expandEmailView": "توسيع عرض البريد الإلكتروني", + "helpWithShortcuts": "المساعدة في اختصارات لوحة المفاتيح" } } }, "createEmail": { - "body": "Body", + "body": "المحتوى", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", - "dropFilesToAttach": "Drop files to attach", - "writeYourMessageHere": "Write your message here...", - "emailSentSuccessfully": "Email sent successfully", - "failedToSendEmail": "Failed to send email. Please try again.", + "attachments": "المرفقات ({count})", + "addMore": "إضافة المزيد", + "dropFilesToAttach": "أسقط الملفات لإرفاقها", + "writeYourMessageHere": "اكتب رسالتك هنا...", + "emailSentSuccessfully": "تم إرسال البريد الإلكتروني بنجاح", + "failedToSendEmail": "فشل في إرسال البريد الإلكتروني. يرجى المحاولة مرة أخرى.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "التوقيع", + "include": "تضمين التوقيع", + "remove": "إزالة التوقيع", + "enable": "تفعيل التوقيع", + "disable": "تعطيل التوقيع", + "add": "إضافة توقيع" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "إضافة رابط", + "addUrlToCreateALink": "أضف عنوان URL لإنشاء رابط. سيفتح الرابط في علامة تبويب جديدة.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "عنوان 1", + "heading2": "عنوان 2", + "heading3": "عنوان 3", + "bold": "غامق", + "italic": "مائل", + "strikethrough": "يتوسطه خط", + "underline": "تحته خط", + "link": "رابط", + "bulletList": "قائمة نقطية", + "orderedList": "قائمة مرتبة", + "viewAttachments": "عرض المرفقات", + "attachFiles": "إرفاق ملفات" } } } diff --git a/apps/mail/locales/ca.json b/apps/mail/locales/ca.json index 915f5e738c..034294f642 100644 --- a/apps/mail/locales/ca.json +++ b/apps/mail/locales/ca.json @@ -11,36 +11,36 @@ "signingOut": "S'està tancant la sessió...", "signedOutSuccess": "S'ha tancat la sessió amb èxit!", "signOutError": "Error tancant la sessió", - "refresh": "Refresh", - "loading": "Loading...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "refresh": "Actualitzar", + "loading": "Carregant...", + "featureNotImplemented": "Aquesta funció encara no està implementada", + "moving": "Movent...", + "movedToInbox": "Mogut a la safata d'entrada", + "movingToInbox": "Movent a la safata d'entrada...", + "movedToSpam": "Mogut a spam", + "movingToSpam": "Movent a spam...", + "archiving": "Arxivant...", + "archived": "Arxivat", + "failedToMove": "No s'ha pogut moure el missatge", + "addingToFavorites": "Afegint a preferits...", + "removingFromFavorites": "Eliminant de preferits...", + "addedToFavorites": "Afegit a preferits", + "removedFromFavorites": "Eliminat de preferits", + "failedToAddToFavorites": "No s'ha pogut afegir a preferits", + "failedToRemoveFromFavorites": "No s'ha pogut eliminar de preferits", + "failedToModifyFavorites": "No s'han pogut modificar els preferits", + "movingToBin": "Movent a la paperera...", + "movedToBin": "Mogut a la paperera", + "failedToMoveToBin": "No s'ha pogut moure a la paperera", + "markingAsRead": "Marcant com a llegit...", + "markingAsUnread": "Marcant com a no llegit...", + "hiddenImagesWarning": "Les imatges estan ocultes per defecte per raons de seguretat.", + "showImages": "Mostrar imatges", + "disableImages": "Ocultar imatges", + "trustSender": "Confiar en el remitent", + "cancel": "Cancel·lar", + "save": "Desar", + "remove": "Eliminar" }, "themes": { "dark": "Fosc", @@ -95,15 +95,15 @@ "starred": "Destacat", "applyFilters": "Aplicar filtres", "reset": "Restablir", - "searching": "Searching...", - "aiSuggestions": "AI Suggestions", - "aiSearching": "AI is searching...", - "aiSearchError": "AI search failed. Please try again.", - "aiNoResults": "No AI suggestions found", - "aiEnhancedQuery": "Enhanced search query" + "searching": "Cercant...", + "aiSuggestions": "Suggeriments d'IA", + "aiSearching": "La IA està cercant...", + "aiSearchError": "La cerca d'IA ha fallat. Torneu-ho a provar.", + "aiNoResults": "No s'han trobat suggeriments d'IA", + "aiEnhancedQuery": "Consulta de cerca millorada" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "Comunitat", "documentation": "Documentació", "appTheme": "Tema de l'aplicació", "accounts": "Comptes", @@ -111,7 +111,7 @@ }, "mailCategories": { "primary": "Primari", - "allMail": "All Mail", + "allMail": "Tot el correu", "important": "Important", "personal": "Personal", "updates": "Actualitzacions", @@ -127,7 +127,7 @@ "fileCount": "{count, plural, =0 {fitxers} one {fitxer} other {fitxers}}", "saveDraft": "Desa l'esborrany", "send": "Enviar", - "forward": "Forward" + "forward": "Reenviar" }, "mailDisplay": { "details": "Detalls", @@ -140,13 +140,13 @@ "security": "Seguretat", "standardEncryption": "Cifrat estàndard (TLS)", "loadingMailContent": "Carregant el contingut del correu...", - "unsubscribe": "Unsubscribe", - "unsubscribed": "Unsubscribed", - "unsubscribeDescription": "Are you sure you want to unsubscribe from this mailing list?", - "unsubscribeOpenSiteDescription": "To stop getting messages from this mailing list, go to their website to unsubscribe.", - "cancel": "Cancel", - "goToWebsite": "Go to website", - "failedToUnsubscribe": "Failed to unsubscribe from mailing list" + "unsubscribe": "Cancel·lar subscripció", + "unsubscribed": "Subscripció cancel·lada", + "unsubscribeDescription": "Esteu segur que voleu cancel·lar la subscripció a aquesta llista de correu?", + "unsubscribeOpenSiteDescription": "Per deixar de rebre missatges d'aquesta llista de correu, aneu al seu lloc web per cancel·lar la subscripció.", + "cancel": "Cancel·lar", + "goToWebsite": "Anar al lloc web", + "failedToUnsubscribe": "No s'ha pogut cancel·lar la subscripció a la llista de correu" }, "threadDisplay": { "exitFullscreen": "Sortir de la visualització en pantalla completa", @@ -154,116 +154,116 @@ "archive": "Arxivar", "reply": "Respondre", "moreOptions": "Més opcions", - "moveToSpam": "Move to Spam", + "moveToSpam": "Moure a spam", "replyAll": "Respon a tots", "forward": "Reenviar", - "markAsUnread": "Mark as Unread", - "markAsRead": "Mark as Read", + "markAsUnread": "Marcar com a no llegit", + "markAsRead": "Marcar com a llegit", "addLabel": "Afegeix una etiqueta", "muteThread": "Silenciar el fil", - "favourites": "Favourites", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "favourites": "Preferits", + "disableImages": "Amaga les imatges", + "enableImages": "Mostra les imatges" }, "notes": { "title": "Notes", - "empty": "No notes for this email", - "emptyDescription": "Add notes to keep track of important information or follow-ups.", - "addNote": "Add a note", - "addYourNote": "Add your note here...", - "editNote": "Edit note", - "deleteNote": "Delete note", - "deleteConfirm": "Are you sure you want to delete this note?", - "deleteConfirmDescription": "This action cannot be undone.", - "cancel": "Cancel", - "delete": "Delete", - "save": "Save note", - "toSave": "to save", - "label": "Label:", - "search": "Search notes...", - "noteCount": "{count, plural, =0 {Add notes} one {# note} other {# notes}}", - "notePinned": "Note pinned", - "noteUnpinned": "Note unpinned", - "colorChanged": "Note color updated", - "noteUpdated": "Note updated", - "noteDeleted": "Note deleted", - "noteCopied": "Copied to clipboard", - "noteAdded": "Note added", - "notesReordered": "Notes reordered", - "noMatchingNotes": "No notes matching \"{query}\"", - "clearSearch": "Clear search", - "pinnedNotes": "Pinned notes", - "otherNotes": "Other notes", - "created": "Created", - "updated": "Updated", + "empty": "No hi ha notes per a aquest correu", + "emptyDescription": "Afegeix notes per fer seguiment d'informació important o recordatoris.", + "addNote": "Afegeix una nota", + "addYourNote": "Afegeix la teva nota aquí...", + "editNote": "Edita la nota", + "deleteNote": "Elimina la nota", + "deleteConfirm": "Estàs segur que vols eliminar aquesta nota?", + "deleteConfirmDescription": "Aquesta acció no es pot desfer.", + "cancel": "Cancel·lar", + "delete": "Eliminar", + "save": "Desa la nota", + "toSave": "per desar", + "label": "Etiqueta:", + "search": "Cerca notes...", + "noteCount": "{count, plural, =0 {Afegeix notes} one {# nota} other {# notes}}", + "notePinned": "Nota fixada", + "noteUnpinned": "Nota desfixada", + "colorChanged": "Color de la nota actualitzat", + "noteUpdated": "Nota actualitzada", + "noteDeleted": "Nota eliminada", + "noteCopied": "Copiat al porta-retalls", + "noteAdded": "Nota afegida", + "notesReordered": "Notes reordenades", + "noMatchingNotes": "No hi ha notes que coincideixin amb \"{query}\"", + "clearSearch": "Esborra la cerca", + "pinnedNotes": "Notes fixades", + "otherNotes": "Altres notes", + "created": "Creada", + "updated": "Actualitzada", "errors": { - "failedToLoadNotes": "Failed to load notes", - "failedToLoadThreadNotes": "Failed to load thread notes", - "failedToAddNote": "Failed to add note", - "failedToUpdateNote": "Failed to update note", - "failedToDeleteNote": "Failed to delete note", - "failedToUpdateNoteColor": "Failed to update note color", - "noValidNotesToReorder": "No valid notes to reorder", - "failedToReorderNotes": "Failed to reorder notes" + "failedToLoadNotes": "No s'han pogut carregar les notes", + "failedToLoadThreadNotes": "No s'han pogut carregar les notes del fil", + "failedToAddNote": "No s'ha pogut afegir la nota", + "failedToUpdateNote": "No s'ha pogut actualitzar la nota", + "failedToDeleteNote": "No s'ha pogut eliminar la nota", + "failedToUpdateNoteColor": "No s'ha pogut actualitzar el color de la nota", + "noValidNotesToReorder": "No hi ha notes vàlides per reordenar", + "failedToReorderNotes": "No s'han pogut reordenar les notes" }, "colors": { - "default": "Default", - "red": "Red", - "orange": "Orange", - "yellow": "Yellow", - "green": "Green", - "blue": "Blue", - "purple": "Purple", - "pink": "Pink" + "default": "Predeterminat", + "red": "Vermell", + "orange": "Taronja", + "yellow": "Groc", + "green": "Verd", + "blue": "Blau", + "purple": "Lila", + "pink": "Rosa" }, "actions": { - "pin": "Pin note", - "unpin": "Unpin note", - "edit": "Edit note", - "delete": "Delete note", - "copy": "Copy note", - "changeColor": "Change color" + "pin": "Fixa la nota", + "unpin": "Desancorar nota", + "edit": "Editar nota", + "delete": "Eliminar nota", + "copy": "Copiar nota", + "changeColor": "Canviar color" } }, "settings": { - "notFound": "Settings not found", - "saved": "Settings saved", - "failedToSave": "Failed to save settings", - "languageChanged": "Language changed to {locale}" + "notFound": "Configuració no trobada", + "saved": "Configuració desada", + "failedToSave": "No s'ha pogut desar la configuració", + "languageChanged": "Idioma canviat a {locale}" }, "mail": { - "replies": "{count, plural, =0 {replies} one {# reply} other {# replies}}", - "deselectAll": "Deselected all emails", - "selectedEmails": "Selected {count} emails", - "noEmailsToSelect": "No emails to select", - "markedAsRead": "Marked as read", - "markedAsUnread": "Marked as unread", - "failedToMarkAsRead": "Failed to mark as read", - "failedToMarkAsUnread": "Failed to mark as unread", - "selected": "{count} selected", - "clearSelection": "Clear Selection", - "mute": "Mute", - "moveToSpam": "Move to Spam", - "moveToInbox": "Move to Inbox", - "unarchive": "Unarchive", - "archive": "Archive", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", - "markAsUnread": "Mark as Unread", - "markAsRead": "Mark as Read", - "addFavorite": "Favorite", - "removeFavorite": "Unfavorite", - "muteThread": "Mute Thread", - "moving": "Moving...", - "moved": "Moved", - "errorMoving": "Error moving", - "reply": "Reply", - "replyAll": "Reply All", - "forward": "Forward", - "labels": "Labels", - "createNewLabel": "Create New Label", - "noLabelsAvailable": "No labels available", - "loadMore": "Load more" + "replies": "{count, plural, =0 {respostes} one {# resposta} other {# respostes}}", + "deselectAll": "S'han desseleccionat tots els correus", + "selectedEmails": "S'han seleccionat {count} correus", + "noEmailsToSelect": "No hi ha correus per seleccionar", + "markedAsRead": "Marcat com a llegit", + "markedAsUnread": "Marcat com a no llegit", + "failedToMarkAsRead": "No s'ha pogut marcar com a llegit", + "failedToMarkAsUnread": "No s'ha pogut marcar com a no llegit", + "selected": "{count} seleccionats", + "clearSelection": "Esborrar selecció", + "mute": "Silenciar", + "moveToSpam": "Moure a spam", + "moveToInbox": "Moure a safata d'entrada", + "unarchive": "Desarxivar", + "archive": "Arxivar", + "moveToBin": "Moure a la paperera", + "restoreFromBin": "Restaurar de la paperera", + "markAsUnread": "Marcar com a no llegit", + "markAsRead": "Marcar com a llegit", + "addFavorite": "Afegir a preferits", + "removeFavorite": "Eliminar de preferits", + "muteThread": "Silenciar el fil", + "moving": "Movent...", + "moved": "Mogut", + "errorMoving": "Error en moure", + "reply": "Respondre", + "replyAll": "Respondre a tothom", + "forward": "Reenviar", + "labels": "Etiquetes", + "createNewLabel": "Crear nova etiqueta", + "noLabelsAvailable": "No hi ha etiquetes disponibles", + "loadMore": "Carregar més" }, "units": { "mb": "{amount} MB" @@ -303,19 +303,19 @@ "title": "General", "description": "Gestiona la configuració del teu idioma i les preferències de visualització del correu.", "language": "Idioma", - "selectLanguage": "Select a language", + "selectLanguage": "Selecciona un idioma", "timezone": "Zona horària", - "selectTimezone": "Select a timezone", + "selectTimezone": "Selecciona una zona horària", "dynamicContent": "Contingut dinàmic", "dynamicContentDescription": "Permet que els correus mostrin contingut dinàmic.", "externalImages": "Mostrar imatges externes", "externalImagesDescription": "Permet que els correus mostrin imatges des de fonts externes.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", - "languageChangedTo": "Language changed to {locale}", - "customPrompt": "Custom AI Prompt", - "customPromptPlaceholder": "Enter your custom prompt for the AI...", - "customPromptDescription": "Customize how the AI writes your email replies. This will be added to the base prompt." + "trustedSenders": "Remitents de confiança", + "trustedSendersDescription": "Mostra sempre les imatges d'aquests remitents.", + "languageChangedTo": "Idioma canviat a {locale}", + "customPrompt": "Instrucció personalitzada per a la IA", + "customPromptPlaceholder": "Introdueix la teva instrucció personalitzada per a la IA...", + "customPromptDescription": "Personalitza com la IA escriu les teves respostes de correu. Això s'afegirà a la instrucció base." }, "connections": { "title": "Connexions Correu", @@ -339,8 +339,8 @@ "loginNotifications": "Notificacions d'inici de sessió.", "loginNotificationsDescription": "Rebre notificacions sobre nous intents d'inici de sessió\n\n\n\n", "deleteAccount": "Elimina el compte", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "Carregar imatges per defecte", + "loadImagesDefaultDescription": "Les imatges no es carreguen per defecte per motius de seguretat." }, "appearance": { "title": "Aparença", @@ -349,24 +349,24 @@ "inboxType": "Tipus de safata d'entrada" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "Signatures de correu", + "description": "Crea i gestiona la teva signatura de correu que apareix al final dels teus missatges.", + "enableSignature": "Activar signatura", + "enableSignatureDescription": "Afegeix la teva signatura al final de tots els missatges sortints.", + "includeByDefault": "Incloure per defecte", + "includeByDefaultDescription": "Afegeix automàticament la teva signatura quan escriguis nous correus.", + "signatureContent": "Contingut de la signatura", + "signatureContentPlaceholder": "Crea la teva signatura amb format, enllaços i imatges.", + "signaturePreview": "Previsualització de la signatura", + "signatureSaved": "Signatura desada correctament", + "signaturePreviewDescription": "Així és com apareixerà la teva signatura als correus.", + "editorType": "Tipus d'editor", + "editorTypeDescription": "Tria entre text pla/HTML o un editor de text enriquit per a la teva signatura.", + "plainText": "Text pla / HTML", + "richText": "Editor de text enriquit", + "richTextDescription": "Utilitza l'editor de text enriquit per formatar la teva signatura.", + "richTextPlaceholder": "Formata la teva signatura amb l'editor de text enriquit...", + "signatureContentHelp": "Pots utilitzar HTML per afegir format, enllaços i imatges a la teva signatura." }, "shortcuts": { "title": "Dreceres de Teclat", @@ -399,36 +399,36 @@ "createEmail": { "body": "Cos", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "Adjunts", + "addMore": "Afegir més", "dropFilesToAttach": "Arrossega arxius per adjuntar", "writeYourMessageHere": "Escriu aquí el teu missatge...", "emailSentSuccessfully": "Correu electrònic enviat amb èxit", "failedToSendEmail": "No s'ha pogut enviar el correu. Si us plau, intenta-ho de nou.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "Signatura", + "include": "Incloure signatura", + "remove": "Eliminar signatura", + "enable": "Activar signatura", + "disable": "Desactivar signatura", + "add": "Afegir signatura" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "Afegir enllaç", + "addUrlToCreateALink": "Afegeix una URL per crear un enllaç. L'enllaç s'obrirà en una nova pestanya.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "Títol 1", + "heading2": "Títol 2", + "heading3": "Títol 3", + "bold": "Negreta", + "italic": "Cursiva", + "strikethrough": "Ratllat", + "underline": "Subratllat", + "link": "Enllaç", + "bulletList": "Llista amb vinyetes", + "orderedList": "Llista numerada", + "viewAttachments": "Veure fitxers adjunts", + "attachFiles": "Adjuntar fitxers" } } } diff --git a/apps/mail/locales/cs.json b/apps/mail/locales/cs.json index 529aff05aa..34ca29c837 100644 --- a/apps/mail/locales/cs.json +++ b/apps/mail/locales/cs.json @@ -11,36 +11,36 @@ "signingOut": "Odhlašování...", "signedOutSuccess": "Odhlášení proběhlo úspěšně!", "signOutError": "Chyba při odhlášení", - "refresh": "Refresh", - "loading": "Loading...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "refresh": "Obnovit", + "loading": "Načítání...", + "featureNotImplemented": "Tato funkce ještě není implementována", + "moving": "Přesouvání...", + "movedToInbox": "Přesunuto do doručené pošty", + "movingToInbox": "Přesouvání do doručené pošty...", + "movedToSpam": "Přesunuto do spamu", + "movingToSpam": "Přesouvání do spamu...", + "archiving": "Archivace...", + "archived": "Archivováno", + "failedToMove": "Nepodařilo se přesunout zprávu", + "addingToFavorites": "Přidávání do oblíbených...", + "removingFromFavorites": "Odebírání z oblíbených...", + "addedToFavorites": "Přidáno do oblíbených", + "removedFromFavorites": "Odebráno z oblíbených", + "failedToAddToFavorites": "Nepodařilo se přidat do oblíbených", + "failedToRemoveFromFavorites": "Nepodařilo se odebrat z oblíbených", + "failedToModifyFavorites": "Nepodařilo se upravit oblíbené", + "movingToBin": "Přesouvání do koše...", + "movedToBin": "Přesunuto do koše", + "failedToMoveToBin": "Nepodařilo se přesunout do koše", + "markingAsRead": "Označování jako přečtené...", + "markingAsUnread": "Označování jako nepřečtené...", + "hiddenImagesWarning": "Obrázky jsou z bezpečnostních důvodů ve výchozím nastavení skryty.", + "showImages": "Zobrazit obrázky", + "disableImages": "Skrýt obrázky", + "trustSender": "Důvěřovat odesílateli", + "cancel": "Zrušit", + "save": "Uložit", + "remove": "Odstranit" }, "themes": { "dark": "Tmavé", @@ -95,15 +95,15 @@ "starred": "Oblíbené", "applyFilters": "Použít filtry", "reset": "Obnovit", - "searching": "Searching...", - "aiSuggestions": "AI Suggestions", - "aiSearching": "AI is searching...", - "aiSearchError": "AI search failed. Please try again.", - "aiNoResults": "No AI suggestions found", - "aiEnhancedQuery": "Enhanced search query" + "searching": "Vyhledávání...", + "aiSuggestions": "AI návrhy", + "aiSearching": "AI vyhledává...", + "aiSearchError": "AI vyhledávání selhalo. Zkuste to prosím znovu.", + "aiNoResults": "Žádné AI návrhy nenalezeny", + "aiEnhancedQuery": "Vylepšený vyhledávací dotaz" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "Komunita", "documentation": "Dokumentace", "appTheme": "Vzhled aplikace", "accounts": "Účty", @@ -111,7 +111,7 @@ }, "mailCategories": { "primary": "Hlavní", - "allMail": "All Mail", + "allMail": "Všechna pošta", "important": "Důležité", "personal": "Osobní", "updates": "Aktualizace", @@ -127,7 +127,7 @@ "fileCount": "{count, plural, =0 {souborů} one {soubor} few {soubory} many {souborů} other {souborů}}", "saveDraft": "Uložit koncept", "send": "Odeslat", - "forward": "Forward" + "forward": "Přeposlat" }, "mailDisplay": { "details": "Podrobnosti", @@ -162,8 +162,8 @@ "addLabel": "Přidat značku", "muteThread": "Ztlumit vlákno", "favourites": "Oblíbené", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "disableImages": "Skrýt obrázky", + "enableImages": "Zobrazit obrázky" }, "notes": { "title": "Poznámky", @@ -247,12 +247,12 @@ "moveToInbox": "Přesunout do složky Doporučená pošta", "unarchive": "Obnovit z archivu", "archive": "Archiv", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", + "moveToBin": "Přesunout do koše", + "restoreFromBin": "Obnovit z koše", "markAsUnread": "Označit jako nepřečtené", "markAsRead": "Označit jako přečtené", - "addFavorite": "Favorite", - "removeFavorite": "Unfavorite", + "addFavorite": "Přidat do oblíbených", + "removeFavorite": "Odebrat z oblíbených", "muteThread": "Ztlumit vlákno", "moving": "Přesouvání...", "moved": "Přesunuto", @@ -263,7 +263,7 @@ "labels": "Štítky", "createNewLabel": "Vytvořit nový štítek", "noLabelsAvailable": "Nejsou dostupné žádné štítky", - "loadMore": "Load more" + "loadMore": "Načíst více" }, "units": { "mb": "{amount} MB" @@ -285,7 +285,7 @@ "connections": "Propojení", "security": "Zabezpečení", "appearance": "Vzhled", - "signatures": "Signatures", + "signatures": "Podpisy", "shortcuts": "Zástupci" } }, @@ -310,12 +310,12 @@ "dynamicContentDescription": "Povolit emailům zobrazení dynamického obsahu.", "externalImages": "Zobrazit externí obrázky", "externalImagesDescription": "Povolit zobrazení emailů z externích zdrojů.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", - "languageChangedTo": "Language changed to {locale}", - "customPrompt": "Custom AI Prompt", - "customPromptPlaceholder": "Enter your custom prompt for the AI...", - "customPromptDescription": "Customize how the AI writes your email replies. This will be added to the base prompt." + "trustedSenders": "Důvěryhodní odesílatelé", + "trustedSendersDescription": "Vždy zobrazovat obrázky od těchto odesílatelů.", + "languageChangedTo": "Jazyk změněn na {locale}", + "customPrompt": "Vlastní AI pokyn", + "customPromptPlaceholder": "Zadejte vlastní pokyn pro AI...", + "customPromptDescription": "Přizpůsobte, jak AI píše vaše e-mailové odpovědi. Toto bude přidáno k základnímu pokynu." }, "connections": { "title": "Propojení emailu", @@ -339,8 +339,8 @@ "loginNotifications": "Upozornění o přihlášení", "loginNotificationsDescription": "Získejte upozornění při novém pokusu o přihlášení", "deleteAccount": "Smazat účet", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "Načítat obrázky ve výchozím nastavení", + "loadImagesDefaultDescription": "Z bezpečnostních důvodů nejsou obrázky ve výchozím nastavení načítány." }, "appearance": { "title": "Vzhled", @@ -349,24 +349,24 @@ "inboxType": "Typ doporučené pošty" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "E-mailové podpisy", + "description": "Vytvářejte a spravujte svůj e-mailový podpis, který se zobrazuje na konci vašich zpráv.", + "enableSignature": "Povolit podpis", + "enableSignatureDescription": "Přidat váš podpis na konec všech odchozích zpráv.", + "includeByDefault": "Zahrnout ve výchozím nastavení", + "includeByDefaultDescription": "Automaticky přidat váš podpis při vytváření nových e-mailů.", + "signatureContent": "Obsah podpisu", + "signatureContentPlaceholder": "Vytvořte svůj podpis s formátováním, odkazy a obrázky.", + "signaturePreview": "Náhled podpisu", + "signatureSaved": "Podpis byl úspěšně uložen", + "signaturePreviewDescription": "Takto bude váš podpis vypadat v e-mailech.", + "editorType": "Typ editoru", + "editorTypeDescription": "Vyberte mezi prostým textem/HTML nebo editorem formátovaného textu pro váš podpis.", + "plainText": "Prostý text / HTML", + "richText": "Editor formátovaného textu", + "richTextDescription": "Použijte editor formátovaného textu pro formátování vašeho podpisu.", + "richTextPlaceholder": "Formátujte svůj podpis pomocí editoru formátovaného textu...", + "signatureContentHelp": "Můžete použít HTML pro přidání formátování, odkazů a obrázků do vašeho podpisu." }, "shortcuts": { "title": "Klávesové zkratky", @@ -399,36 +399,36 @@ "createEmail": { "body": "Tělo", "example": "nula@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "Přílohy", + "addMore": "Přidat další", "dropFilesToAttach": "Přetáhněte sem soubory", "writeYourMessageHere": "Sem napište svojí zprávu...", "emailSentSuccessfully": "Email úspěšně odeslán", "failedToSendEmail": "Odeslání emailu se nazdrařilo. Zkuste to prosím znovu.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "Podpis", + "include": "Zahrnout podpis", + "remove": "Odstranit podpis", + "enable": "Povolit podpis", + "disable": "Zakázat podpis", + "add": "Přidat podpis" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "Přidat odkaz", + "addUrlToCreateALink": "Přidejte URL pro vytvoření odkazu. Odkaz se otevře v nové záložce.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "Nadpis 1", + "heading2": "Nadpis 2", + "heading3": "Nadpis 3", + "bold": "Tučné", + "italic": "Kurzíva", + "strikethrough": "Přeškrtnuté", + "underline": "Podtržené", + "link": "Odkaz", + "bulletList": "Odrážkový seznam", + "orderedList": "Číslovaný seznam", + "viewAttachments": "Zobrazit přílohy", + "attachFiles": "Připojit soubory" } } } diff --git a/apps/mail/locales/de.json b/apps/mail/locales/de.json index 00cd003bb8..1d0f124e72 100644 --- a/apps/mail/locales/de.json +++ b/apps/mail/locales/de.json @@ -15,32 +15,32 @@ "loading": "Wird geladen...", "featureNotImplemented": "Diese Funktion ist noch nicht implementiert", "moving": "Wird verschoben...", - "movedToInbox": "Wurde in den Posteingang verschoben", + "movedToInbox": "In Posteingang verschoben", "movingToInbox": "Wird in Posteingang verschoben...", "movedToSpam": "In Spam verschoben", "movingToSpam": "Wird in Spam verschoben...", "archiving": "Wird archiviert...", "archived": "Archiviert", - "failedToMove": "Fehler beim Verschieben der Nachricht", + "failedToMove": "Nachricht konnte nicht verschoben werden", "addingToFavorites": "Wird zu Favoriten hinzugefügt...", "removingFromFavorites": "Wird aus Favoriten entfernt...", - "addedToFavorites": "Zu den Favoriten hinzugefügt", + "addedToFavorites": "Zu Favoriten hinzugefügt", "removedFromFavorites": "Aus Favoriten entfernt", - "failedToAddToFavorites": "Fehler beim Hinzufügen zu den Favoriten", - "failedToRemoveFromFavorites": "Fehler beim Entfernen der Favoriten", - "failedToModifyFavorites": "Fehler beim Ändern der Favoriten", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", + "failedToAddToFavorites": "Konnte nicht zu Favoriten hinzugefügt werden", + "failedToRemoveFromFavorites": "Konnte nicht aus Favoriten entfernt werden", + "failedToModifyFavorites": "Favoriten konnten nicht geändert werden", + "movingToBin": "Wird in den Papierkorb verschoben...", + "movedToBin": "In den Papierkorb verschoben", + "failedToMoveToBin": "Konnte nicht in den Papierkorb verschoben werden", "markingAsRead": "Wird als gelesen markiert...", "markingAsUnread": "Wird als ungelesen markiert...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "hiddenImagesWarning": "Bilder sind aus Sicherheitsgründen standardmäßig ausgeblendet.", + "showImages": "Bilder anzeigen", + "disableImages": "Bilder ausblenden", + "trustSender": "Absender vertrauen", + "cancel": "Abbrechen", + "save": "Speichern", + "remove": "Entfernen" }, "themes": { "dark": "Dunkel", @@ -48,7 +48,7 @@ "system": "System" }, "commandPalette": { - "title": "Command Palette", + "title": "Befehlspalette", "description": "Schnellzugriff für Mail-0", "placeholder": "Befehl eingeben oder suchen...", "noResults": "Keine Ergebnisse gefunden", @@ -111,7 +111,7 @@ }, "mailCategories": { "primary": "Primär", - "allMail": "Alle E-Mails", + "allMail": "All Mail", "important": "Wichtig", "personal": "Persönlich", "updates": "Updates", @@ -162,8 +162,8 @@ "addLabel": "Label hinzufügen", "muteThread": "Thread stummschalten", "favourites": "Favoriten", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "disableImages": "Bilder ausblenden", + "enableImages": "Bilder anzeigen" }, "notes": { "title": "Notizen", @@ -247,12 +247,12 @@ "moveToInbox": "In Posteingang verschieben", "unarchive": "Entarchivieren", "archive": "Archivieren", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", + "moveToBin": "In den Papierkorb verschieben", + "restoreFromBin": "Aus dem Papierkorb wiederherstellen", "markAsUnread": "Als ungelesen markieren", "markAsRead": "Als gelesen markieren", - "addFavorite": "Favorit", - "removeFavorite": "Aus Favoriten entfernen", + "addFavorite": "Favorite", + "removeFavorite": "Unfavorite", "muteThread": "Thread stummschalten", "moving": "Wird verschoben...", "moved": "Verschoben", @@ -285,7 +285,7 @@ "connections": "Verbindungen", "security": "Sicherheit", "appearance": "Gestaltung", - "signatures": "Signatures", + "signatures": "Signaturen", "shortcuts": "Shortcuts" } }, @@ -310,8 +310,8 @@ "dynamicContentDescription": "Dynamischen Inhalt erlauben", "externalImages": "Externe Bilder anzeigen", "externalImagesDescription": "Das Anzeigen externer Bilder erlauben.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", + "trustedSenders": "Vertrauenswürdige Absender", + "trustedSendersDescription": "Bilder von diesen Absendern immer anzeigen.", "languageChangedTo": "Sprache zu {locale} geändert", "customPrompt": "Benutzerdefinierte KI-Aufforderung", "customPromptPlaceholder": "Geben Sie Ihre benutzerdefinierte Eingabeaufforderung für die KI ein...", @@ -339,34 +339,34 @@ "loginNotifications": "Anmeldebenachrichtigungen", "loginNotificationsDescription": "Über neue Anmeldeversuche benachrichtigt werden", "deleteAccount": "Benutzerkonto löschen", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "Bilder standardmäßig laden", + "loadImagesDefaultDescription": "Aus Sicherheitsgründen werden Bilder standardmäßig nicht geladen." }, "appearance": { "title": "Gestaltung", "description": "Farben, Schriften und Ansicht anpassen", "theme": "Theme", - "inboxType": "" + "inboxType": "Posteingangstyp" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "E-Mail-Signaturen", + "description": "Erstellen und verwalten Sie Ihre E-Mail-Signatur, die am Ende Ihrer Nachrichten erscheint.", + "enableSignature": "Signatur aktivieren", + "enableSignatureDescription": "Fügen Sie Ihre Signatur am Ende aller ausgehenden Nachrichten hinzu.", + "includeByDefault": "Standardmäßig einfügen", + "includeByDefaultDescription": "Signatur beim Verfassen neuer E-Mails automatisch hinzufügen.", + "signatureContent": "Signaturinhalt", + "signatureContentPlaceholder": "Erstellen Sie Ihre Signatur mit Formatierung, Links und Bildern.", + "signaturePreview": "Signaturvorschau", + "signatureSaved": "Signatur erfolgreich gespeichert", + "signaturePreviewDescription": "So wird Ihre Signatur in E-Mails angezeigt.", + "editorType": "Editor-Typ", + "editorTypeDescription": "Wählen Sie zwischen Klartext/HTML-Eingabe oder einem Rich-Text-Editor für Ihre Signatur.", + "plainText": "Klartext / HTML", + "richText": "Rich-Text-Editor", + "richTextDescription": "Verwenden Sie den Rich-Text-Editor, um Ihre Signatur zu formatieren.", + "richTextPlaceholder": "Formatieren Sie Ihre Signatur mit dem Rich-Text-Editor...", + "signatureContentHelp": "Sie können HTML verwenden, um Formatierungen, Links und Bilder zu Ihrer Signatur hinzuzufügen." }, "shortcuts": { "title": "Tastaturkürzel", @@ -399,36 +399,36 @@ "createEmail": { "body": "Inhalt", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "Anhänge", + "addMore": "Mehr hinzufügen", "dropFilesToAttach": "Dateien hier ablegen, um sie anzuhängen", "writeYourMessageHere": "Schreiben Sie hier Ihre Nachricht...", "emailSentSuccessfully": "E-Mail wurde erfolgreich Versendet", "failedToSendEmail": "Senden der E-Mail fehlgeschlagen. Bitte versuchen Sie es erneut.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "Signatur", + "include": "Signatur einfügen", + "remove": "Signatur entfernen", + "enable": "Signatur aktivieren", + "disable": "Signatur deaktivieren", + "add": "Signatur hinzufügen" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "Link hinzufügen", + "addUrlToCreateALink": "URL hinzufügen, um einen Link zu erstellen. Der Link wird in einem neuen Tab geöffnet.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", + "heading1": "Überschrift 1", + "heading2": "Überschrift 2", + "heading3": "Überschrift 3", + "bold": "Fett", + "italic": "Kursiv", + "strikethrough": "Durchgestrichen", + "underline": "Unterstrichen", "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "bulletList": "Aufzählungsliste", + "orderedList": "Nummerierte Liste", + "viewAttachments": "Anhänge anzeigen", + "attachFiles": "Dateien anhängen" } } } diff --git a/apps/mail/locales/es.json b/apps/mail/locales/es.json index b524911399..eecaadc56b 100644 --- a/apps/mail/locales/es.json +++ b/apps/mail/locales/es.json @@ -13,34 +13,34 @@ "signOutError": "Error al cerrar sesión", "refresh": "Actualizar", "loading": "Loading...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "featureNotImplemented": "Esta función aún no está implementada", + "moving": "Moviendo...", + "movedToInbox": "Movido a la bandeja de entrada", + "movingToInbox": "Moviendo a la bandeja de entrada...", + "movedToSpam": "Movido a spam", + "movingToSpam": "Moviendo a spam...", + "archiving": "Archivando...", + "archived": "Archivado", + "failedToMove": "Error al mover el mensaje", + "addingToFavorites": "Añadiendo a favoritos...", + "removingFromFavorites": "Eliminando de favoritos...", + "addedToFavorites": "Añadido a favoritos", + "removedFromFavorites": "Eliminado de favoritos", + "failedToAddToFavorites": "Error al añadir a favoritos", + "failedToRemoveFromFavorites": "Error al eliminar de favoritos", + "failedToModifyFavorites": "Error al modificar favoritos", + "movingToBin": "Moviendo a la papelera...", + "movedToBin": "Movido a la papelera", + "failedToMoveToBin": "Error al mover a la papelera", + "markingAsRead": "Marcando como leído...", + "markingAsUnread": "Marcando como no leído...", + "hiddenImagesWarning": "Las imágenes están ocultas por defecto por razones de seguridad.", + "showImages": "Mostrar imágenes", + "disableImages": "Ocultar imágenes", + "trustSender": "Confiar en remitente", + "cancel": "Cancelar", + "save": "Guardar", + "remove": "Eliminar" }, "themes": { "dark": "Oscuro", @@ -103,7 +103,7 @@ "aiEnhancedQuery": "Búsqueda mejorada" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "Comunidad", "documentation": "Documentación", "appTheme": "Tema de aplicación", "accounts": "Cuentas", @@ -162,8 +162,8 @@ "addLabel": "Añadir etiqueta", "muteThread": "Silenciar hilo", "favourites": "Favoritos", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "disableImages": "Ocultar imágenes", + "enableImages": "Mostrar imágenes" }, "notes": { "title": "Notas", @@ -247,8 +247,8 @@ "moveToInbox": "Mover a bandeja de entrada", "unarchive": "Desarchivar", "archive": "Archivar", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", + "moveToBin": "Mover a la papelera", + "restoreFromBin": "Restaurar de la papelera", "markAsUnread": "Marcar como no leído", "markAsRead": "Marcar como leído", "addFavorite": "Favorite", @@ -285,7 +285,7 @@ "connections": "Conexiones", "security": "Seguridad", "appearance": "Apariencia", - "signatures": "Signatures", + "signatures": "Firmas", "shortcuts": "Accesos directos" } }, @@ -310,8 +310,8 @@ "dynamicContentDescription": "Permitir que los correos electrónicos muestren contenido dinámico.", "externalImages": "Mostrar imágenes externas", "externalImagesDescription": "Permitir que los correos electrónicos muestren imágenes de fuentes externas.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", + "trustedSenders": "Remitentes de confianza", + "trustedSendersDescription": "Mostrar siempre imágenes de estos remitentes.", "languageChangedTo": "Idioma cambiado a {locale}", "customPrompt": "Prompt de IA personalizado", "customPromptPlaceholder": "Introduzca su prompt personalizado para la IA...", @@ -339,8 +339,8 @@ "loginNotifications": "Notificaciones de inicio de sesión", "loginNotificationsDescription": "Recibir notificaciones de nuevos intentos de inicio de sesión", "deleteAccount": "Eliminar cuenta", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "Cargar imágenes por defecto", + "loadImagesDefaultDescription": "Las imágenes no se cargan por defecto por razones de seguridad." }, "appearance": { "title": "Apariencia", @@ -349,24 +349,24 @@ "inboxType": "Tipo de bandeja de entrada" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "Firmas de correo electrónico", + "description": "Crea y gestiona tu firma de correo electrónico que aparece al final de tus mensajes.", + "enableSignature": "Activar firma", + "enableSignatureDescription": "Añade tu firma al final de todos los mensajes salientes.", + "includeByDefault": "Incluir por defecto", + "includeByDefaultDescription": "Añadir automáticamente tu firma al redactar nuevos correos.", + "signatureContent": "Contenido de la firma", + "signatureContentPlaceholder": "Crea tu firma con formato, enlaces e imágenes.", + "signaturePreview": "Vista previa de la firma", + "signatureSaved": "Firma guardada correctamente", + "signaturePreviewDescription": "Así es como aparecerá tu firma en los correos.", + "editorType": "Tipo de editor", + "editorTypeDescription": "Elige entre texto plano/HTML o un editor de texto enriquecido para tu firma.", + "plainText": "Texto plano / HTML", + "richText": "Editor de texto enriquecido", + "richTextDescription": "Usa el editor de texto enriquecido para formatear tu firma.", + "richTextPlaceholder": "Formatea tu firma con el editor de texto enriquecido...", + "signatureContentHelp": "Puedes usar HTML para añadir formato, enlaces e imágenes a tu firma." }, "shortcuts": { "title": "Atajos de teclado", @@ -399,36 +399,36 @@ "createEmail": { "body": "Cuerpo", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "Archivos adjuntos", + "addMore": "Añadir más", "dropFilesToAttach": "Suelte los archivos para adjuntarlos", "writeYourMessageHere": "Escribe tu mensaje aquí...", "emailSentSuccessfully": "E-mail enviado con éxito", "failedToSendEmail": "Error al enviar el correo electrónico. Por favor, inténtalo de nuevo.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "Firma", + "include": "Incluir firma", + "remove": "Eliminar firma", + "enable": "Activar firma", + "disable": "Desactivar firma", + "add": "Añadir firma" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "Añadir enlace", + "addUrlToCreateALink": "Añade URL para crear un enlace. El enlace se abrirá en una nueva pestaña.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "Encabezado 1", + "heading2": "Encabezado 2", + "heading3": "Encabezado 3", + "bold": "Negrita", + "italic": "Cursiva", + "strikethrough": "Tachado", + "underline": "Subrayado", + "link": "Enlace", + "bulletList": "Lista con viñetas", + "orderedList": "Lista numerada", + "viewAttachments": "Ver adjuntos", + "attachFiles": "Adjuntar archivos" } } } diff --git a/apps/mail/locales/fr.json b/apps/mail/locales/fr.json index 4b437ea585..44e12da6af 100644 --- a/apps/mail/locales/fr.json +++ b/apps/mail/locales/fr.json @@ -13,34 +13,34 @@ "signOutError": "Erreur de déconnexion", "refresh": "Actualiser", "loading": "Chargement...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Déplacé dans Spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "featureNotImplemented": "Cette fonctionnalité n'est pas encore implémentée", + "moving": "Déplacement...", + "movedToInbox": "Déplacé vers la boîte de réception", + "movingToInbox": "Déplacement vers la boîte de réception...", + "movedToSpam": "Déplacé vers les indésirables", + "movingToSpam": "Déplacement vers les indésirables...", + "archiving": "Archivage...", + "archived": "Archivé", + "failedToMove": "Échec du déplacement du message", + "addingToFavorites": "Ajout aux favoris...", + "removingFromFavorites": "Suppression des favoris...", + "addedToFavorites": "Ajouté aux favoris", + "removedFromFavorites": "Retiré des favoris", + "failedToAddToFavorites": "Échec de l'ajout aux favoris", + "failedToRemoveFromFavorites": "Échec de la suppression des favoris", + "failedToModifyFavorites": "Échec de la modification des favoris", + "movingToBin": "Déplacement vers la corbeille...", + "movedToBin": "Déplacé vers la corbeille", + "failedToMoveToBin": "Échec du déplacement vers la corbeille", + "markingAsRead": "Marquage comme lu...", + "markingAsUnread": "Marquage comme non lu...", + "hiddenImagesWarning": "Les images sont masquées par défaut pour des raisons de sécurité.", + "showImages": "Afficher les images", + "disableImages": "Masquer les images", + "trustSender": "Faire confiance à l'expéditeur", + "cancel": "Annuler", + "save": "Enregistrer", + "remove": "Supprimer" }, "themes": { "dark": "Sombre", @@ -103,7 +103,7 @@ "aiEnhancedQuery": "Requête de recherche avancée" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "Communauté", "documentation": "Documentation", "appTheme": "Thème de l'application", "accounts": "Comptes", @@ -162,8 +162,8 @@ "addLabel": "Ajouter une étiquette", "muteThread": "Mettre en sourdine", "favourites": "Favoris", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "disableImages": "Masquer les images", + "enableImages": "Afficher les images" }, "notes": { "title": "Notes", @@ -247,12 +247,12 @@ "moveToInbox": "Déplacer dans boîte de réception", "unarchive": "Désarchiver", "archive": "Archiver", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", + "moveToBin": "Déplacer vers la corbeille", + "restoreFromBin": "Restaurer depuis la corbeille", "markAsUnread": "Marquer comme non lu", "markAsRead": "Marquer comme lu", "addFavorite": "Favorite", - "removeFavorite": "Retirer des favoris", + "removeFavorite": "Unfavorite", "muteThread": "Mettre en sourdine", "moving": "Déplacement...", "moved": "Déplacé", @@ -266,7 +266,7 @@ "loadMore": "Charger plus d'éléments" }, "units": { - "mb": "{amount} MB" + "mb": "{amount} Mo" } }, "navigation": { @@ -310,8 +310,8 @@ "dynamicContentDescription": "Autoriser les courriels à afficher du contenu dynamique.", "externalImages": "Afficher les images externes", "externalImagesDescription": "Autoriser les courriels à afficher des images provenant de sources externes.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", + "trustedSenders": "Expéditeurs de confiance", + "trustedSendersDescription": "Toujours afficher les images pour ces expéditeurs.", "languageChangedTo": "Langue changée en {locale}", "customPrompt": "Requêtes IA personnalisées", "customPromptPlaceholder": "Entrez votre requête personnalisée pour l'IA...", @@ -339,8 +339,8 @@ "loginNotifications": "Notifications de connexion", "loginNotificationsDescription": "Soyez notifié des nouvelles tentatives de connexion", "deleteAccount": "Supprimer le compte", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "Charger les images par défaut", + "loadImagesDefaultDescription": "Les images ne sont pas chargées par défaut pour des raisons de sécurité." }, "appearance": { "title": "Apparence", @@ -349,24 +349,24 @@ "inboxType": "Type de boîte de réception" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "Signatures d'e-mail", + "description": "Créez et gérez votre signature d'e-mail qui apparaît au bas de vos messages.", + "enableSignature": "Activer la signature", + "enableSignatureDescription": "Ajoutez votre signature à la fin de tous les messages sortants.", + "includeByDefault": "Inclure par défaut", + "includeByDefaultDescription": "Ajouter automatiquement votre signature lors de la rédaction de nouveaux e-mails.", + "signatureContent": "Contenu de la signature", + "signatureContentPlaceholder": "Créez votre signature avec mise en forme, liens et images.", + "signaturePreview": "Aperçu de la signature", + "signatureSaved": "Signature enregistrée avec succès", + "signaturePreviewDescription": "Voici comment votre signature apparaîtra dans les e-mails.", + "editorType": "Type d'éditeur", + "editorTypeDescription": "Choisissez entre texte brut/HTML ou un éditeur de texte enrichi pour votre signature.", + "plainText": "Texte brut / HTML", + "richText": "Éditeur de texte enrichi", + "richTextDescription": "Utilisez l'éditeur de texte enrichi pour formater votre signature.", + "richTextPlaceholder": "Formatez votre signature avec l'éditeur de texte enrichi...", + "signatureContentHelp": "Vous pouvez utiliser HTML pour ajouter de la mise en forme, des liens et des images à votre signature." }, "shortcuts": { "title": "Raccourcis clavier", @@ -399,36 +399,36 @@ "createEmail": { "body": "Corps", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "Pièces jointes", + "addMore": "Ajouter plus", "dropFilesToAttach": "Déposez des fichiers pour les joindre", "writeYourMessageHere": "Écrivez votre message ici...", "emailSentSuccessfully": "Email envoyé avec succès", "failedToSendEmail": "Échec d'envoi de l'email. Veuillez réessayer.", "signature": { "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "include": "Inclure la signature", + "remove": "Supprimer la signature", + "enable": "Activer la signature", + "disable": "Désactiver la signature", + "add": "Ajouter une signature" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "Ajouter un lien", + "addUrlToCreateALink": "Ajoutez une URL pour créer un lien. Le lien s'ouvrira dans un nouvel onglet.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "Titre 1", + "heading2": "Titre 2", + "heading3": "Titre 3", + "bold": "Gras", + "italic": "Italique", + "strikethrough": "Barré", + "underline": "Souligné", + "link": "Lien", + "bulletList": "Liste à puces", + "orderedList": "Liste numérotée", + "viewAttachments": "Voir les pièces jointes", + "attachFiles": "Joindre des fichiers" } } } diff --git a/apps/mail/locales/hi.json b/apps/mail/locales/hi.json index eaca695d57..be6de58e18 100644 --- a/apps/mail/locales/hi.json +++ b/apps/mail/locales/hi.json @@ -11,36 +11,36 @@ "signingOut": "साइनआउट कर रहे हैं...", "signedOutSuccess": "सफलतापूर्वक साइन आउट हो गया!", "signOutError": "साइन आउट करने में एरर", - "refresh": "Refresh", - "loading": "Loading...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "refresh": "रिफ्रेश करें", + "loading": "लोड हो रहा है...", + "featureNotImplemented": "यह सुविधा अभी लागू नहीं की गई है", + "moving": "स्थानांतरित कर रहा है...", + "movedToInbox": "इनबॉक्स में स्थानांतरित किया गया", + "movingToInbox": "इनबॉक्स में स्थानांतरित कर रहा है...", + "movedToSpam": "स्पैम में स्थानांतरित किया गया", + "movingToSpam": "स्पैम में स्थानांतरित कर रहा है...", + "archiving": "आर्काइव कर रहा है...", + "archived": "आर्काइव किया गया", + "failedToMove": "संदेश स्थानांतरित करने में विफल", + "addingToFavorites": "पसंदीदा में जोड़ रहा है...", + "removingFromFavorites": "पसंदीदा से हटा रहा है...", + "addedToFavorites": "पसंदीदा में जोड़ा गया", + "removedFromFavorites": "पसंदीदा से हटाया गया", + "failedToAddToFavorites": "पसंदीदा में जोड़ने में विफल", + "failedToRemoveFromFavorites": "पसंदीदा से हटाने में विफल", + "failedToModifyFavorites": "पसंदीदा को संशोधित करने में विफल", + "movingToBin": "बिन में ले जा रहा है...", + "movedToBin": "बिन में ले जाया गया", + "failedToMoveToBin": "बिन में ले जाने में विफल रहा", + "markingAsRead": "पढ़ा हुआ के रूप में चिह्नित कर रहा है...", + "markingAsUnread": "अपठित के रूप में चिह्नित कर रहा है...", + "hiddenImagesWarning": "सुरक्षा कारणों से छवियां डिफ़ॉल्ट रूप से छिपी हुई हैं।", + "showImages": "छवियां दिखाएं", + "disableImages": "छवियां छिपाएं", + "trustSender": "प्रेषक पर भरोसा करें", + "cancel": "रद्द करें", + "save": "सेव करें", + "remove": "हटाएँ" }, "themes": { "dark": "काला", @@ -95,15 +95,15 @@ "starred": "स्टार के निशान वाले", "applyFilters": "फिल्टर लगाएं", "reset": "रीसेट करें", - "searching": "Searching...", - "aiSuggestions": "AI Suggestions", - "aiSearching": "AI is searching...", - "aiSearchError": "AI search failed. Please try again.", - "aiNoResults": "No AI suggestions found", - "aiEnhancedQuery": "Enhanced search query" + "searching": "खोज रहे हैं...", + "aiSuggestions": "AI सुझाव", + "aiSearching": "AI खोज रहा है...", + "aiSearchError": "AI खोज विफल हुई। कृपया पुनः प्रयास करें।", + "aiNoResults": "कोई AI सुझाव नहीं मिला", + "aiEnhancedQuery": "बेहतर खोज क्वेरी" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "समुदाय", "documentation": "डॉक्यूमेंटेशन", "appTheme": "एप थीम", "accounts": "खाता", @@ -111,7 +111,7 @@ }, "mailCategories": { "primary": "प्राइमरी", - "allMail": "All Mail", + "allMail": "सभी मेल", "important": "महत्वपूर्ण", "personal": "पर्सनल", "updates": "अपडेट", @@ -127,7 +127,7 @@ "fileCount": "{count, plural, =0 {फ़ाइलें} one {फाइल्} other {फ़ाइलें}}", "saveDraft": "ड्राफ्ट सेव करें", "send": "भेजें", - "forward": "Forward" + "forward": "आगे भेजें" }, "mailDisplay": { "details": "डिटेल्स", @@ -140,13 +140,13 @@ "security": "सुरक्षा", "standardEncryption": "स्टैंडर्ड एन्क्रिप्शन (TLS)", "loadingMailContent": "मेल कंटेंट लोड हो रहा है...", - "unsubscribe": "Unsubscribe", - "unsubscribed": "Unsubscribed", - "unsubscribeDescription": "Are you sure you want to unsubscribe from this mailing list?", - "unsubscribeOpenSiteDescription": "To stop getting messages from this mailing list, go to their website to unsubscribe.", - "cancel": "Cancel", - "goToWebsite": "Go to website", - "failedToUnsubscribe": "Failed to unsubscribe from mailing list" + "unsubscribe": "सदस्यता समाप्त करें", + "unsubscribed": "सदस्यता समाप्त की गई", + "unsubscribeDescription": "क्या आप वाकई इस मेलिंग लिस्ट से सदस्यता समाप्त करना चाहते हैं?", + "unsubscribeOpenSiteDescription": "इस मेलिंग लिस्ट से संदेश प्राप्त करना बंद करने के लिए, सदस्यता समाप्त करने के लिए उनकी वेबसाइट पर जाएँ।", + "cancel": "रद्द करें", + "goToWebsite": "वेबसाइट पर जाएँ", + "failedToUnsubscribe": "मेलिंग लिस्ट से सदस्यता समाप्त करने में विफल" }, "threadDisplay": { "exitFullscreen": "फ़ुल स्क्रीन से बाहर निकलें", @@ -154,116 +154,116 @@ "archive": "आर्काइव", "reply": "जवाब दें", "moreOptions": "अधिक विकल्प", - "moveToSpam": "Move to Spam", + "moveToSpam": "स्पैम में ले जाएँ", "replyAll": "सभी को जवाब दें", "forward": "आगे भेजें ", - "markAsUnread": "Mark as Unread", - "markAsRead": "Mark as Read", + "markAsUnread": "अपठित के रूप में चिह्नित करें", + "markAsRead": "पठित के रूप में चिह्नित करें", "addLabel": "लेबल जोड़ें", "muteThread": "थ्रेड म्यूट करें", - "favourites": "Favourites", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "favourites": "पसंदीदा", + "disableImages": "छवियाँ छिपाएँ", + "enableImages": "छवियाँ दिखाएँ" }, "notes": { - "title": "Notes", - "empty": "No notes for this email", - "emptyDescription": "Add notes to keep track of important information or follow-ups.", - "addNote": "Add a note", - "addYourNote": "Add your note here...", - "editNote": "Edit note", - "deleteNote": "Delete note", - "deleteConfirm": "Are you sure you want to delete this note?", - "deleteConfirmDescription": "This action cannot be undone.", - "cancel": "Cancel", - "delete": "Delete", - "save": "Save note", - "toSave": "to save", - "label": "Label:", - "search": "Search notes...", - "noteCount": "{count, plural, =0 {Add notes} one {# note} other {# notes}}", - "notePinned": "Note pinned", - "noteUnpinned": "Note unpinned", - "colorChanged": "Note color updated", - "noteUpdated": "Note updated", - "noteDeleted": "Note deleted", - "noteCopied": "Copied to clipboard", - "noteAdded": "Note added", - "notesReordered": "Notes reordered", - "noMatchingNotes": "No notes matching \"{query}\"", - "clearSearch": "Clear search", - "pinnedNotes": "Pinned notes", - "otherNotes": "Other notes", - "created": "Created", - "updated": "Updated", + "title": "नोट्स", + "empty": "इस ईमेल के लिए कोई नोट्स नहीं हैं", + "emptyDescription": "महत्वपूर्ण जानकारी या फॉलो-अप्स को ट्रैक करने के लिए नोट्स जोड़ें।", + "addNote": "नोट जोड़ें", + "addYourNote": "अपना नोट यहां जोड़ें...", + "editNote": "नोट एडिट करें", + "deleteNote": "नोट डिलीट करें", + "deleteConfirm": "क्या आप वाकई इस नोट को डिलीट करना चाहते हैं?", + "deleteConfirmDescription": "यह क्रिया वापस नहीं ली जा सकती।", + "cancel": "कैंसल करें", + "delete": "डिलीट करें", + "save": "नोट सेव करें", + "toSave": "सेव करने के लिए", + "label": "लेबल:", + "search": "नोट्स खोजें...", + "noteCount": "{count, plural, =0 {नोट्स जोड़ें} one {# नोट} other {# नोट्स}}", + "notePinned": "नोट पिन किया गया", + "noteUnpinned": "नोट अनपिन किया गया", + "colorChanged": "नोट का रंग अपडेट किया गया", + "noteUpdated": "नोट अपडेट किया गया", + "noteDeleted": "नोट डिलीट किया गया", + "noteCopied": "क्लिपबोर्ड पर कॉपी किया गया", + "noteAdded": "नोट जोड़ा गया", + "notesReordered": "नोट्स का क्रम बदला गया", + "noMatchingNotes": "\"{query}\" से मिलते जुलते कोई नोट्स नहीं हैं", + "clearSearch": "सर्च मिटाएँ", + "pinnedNotes": "पिन किए गए नोट्स", + "otherNotes": "अन्य नोट्स", + "created": "बनाया गया", + "updated": "अपडेट किया गया", "errors": { - "failedToLoadNotes": "Failed to load notes", - "failedToLoadThreadNotes": "Failed to load thread notes", - "failedToAddNote": "Failed to add note", - "failedToUpdateNote": "Failed to update note", - "failedToDeleteNote": "Failed to delete note", - "failedToUpdateNoteColor": "Failed to update note color", - "noValidNotesToReorder": "No valid notes to reorder", - "failedToReorderNotes": "Failed to reorder notes" + "failedToLoadNotes": "नोट्स लोड करने में विफल", + "failedToLoadThreadNotes": "थ्रेड नोट्स लोड करने में विफल", + "failedToAddNote": "नोट जोड़ने में विफल", + "failedToUpdateNote": "नोट अपडेट करने में विफल", + "failedToDeleteNote": "नोट हटाने में विफल", + "failedToUpdateNoteColor": "नोट का रंग अपडेट करने में विफल", + "noValidNotesToReorder": "पुनर्व्यवस्थित करने के लिए कोई वैध नोट्स नहीं", + "failedToReorderNotes": "नोट्स पुनर्व्यवस्थित करने में विफल" }, "colors": { - "default": "Default", - "red": "Red", - "orange": "Orange", - "yellow": "Yellow", - "green": "Green", - "blue": "Blue", - "purple": "Purple", - "pink": "Pink" + "default": "डिफ़ॉल्ट", + "red": "लाल", + "orange": "नारंगी", + "yellow": "पीला", + "green": "हरा", + "blue": "नीला", + "purple": "बैंगनी", + "pink": "गुलाबी" }, "actions": { - "pin": "Pin note", - "unpin": "Unpin note", - "edit": "Edit note", - "delete": "Delete note", - "copy": "Copy note", - "changeColor": "Change color" + "pin": "नोट पिन करें", + "unpin": "नोट अनपिन करें", + "edit": "नोट संपादित करें", + "delete": "नोट हटाएं", + "copy": "नोट कॉपी करें", + "changeColor": "रंग बदलें" } }, "settings": { - "notFound": "Settings not found", - "saved": "Settings saved", - "failedToSave": "Failed to save settings", - "languageChanged": "Language changed to {locale}" + "notFound": "सेटिंग्स नहीं मिली", + "saved": "सेटिंग्स सहेजी गई", + "failedToSave": "सेटिंग्स सहेजने में विफल", + "languageChanged": "भाषा बदलकर {locale} कर दी गई" }, "mail": { - "replies": "{count, plural, =0 {replies} one {# reply} other {# replies}}", - "deselectAll": "Deselected all emails", - "selectedEmails": "Selected {count} emails", - "noEmailsToSelect": "No emails to select", - "markedAsRead": "Marked as read", - "markedAsUnread": "Marked as unread", - "failedToMarkAsRead": "Failed to mark as read", - "failedToMarkAsUnread": "Failed to mark as unread", - "selected": "{count} selected", - "clearSelection": "Clear Selection", - "mute": "Mute", - "moveToSpam": "Move to Spam", - "moveToInbox": "Move to Inbox", - "unarchive": "Unarchive", - "archive": "Archive", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", - "markAsUnread": "Mark as Unread", - "markAsRead": "Mark as Read", - "addFavorite": "Favorite", - "removeFavorite": "Unfavorite", - "muteThread": "Mute Thread", - "moving": "Moving...", - "moved": "Moved", - "errorMoving": "Error moving", - "reply": "Reply", - "replyAll": "Reply All", - "forward": "Forward", - "labels": "Labels", - "createNewLabel": "Create New Label", - "noLabelsAvailable": "No labels available", - "loadMore": "Load more" + "replies": "{count, plural, =0 {जवाब} one {# जवाब} other {# जवाब}}", + "deselectAll": "सभी ईमेल अचयनित किए गए", + "selectedEmails": "{count} ईमेल चयनित किए गए", + "noEmailsToSelect": "चयन करने के लिए कोई ईमेल नहीं है", + "markedAsRead": "पढ़ा हुआ चिह्नित किया गया", + "markedAsUnread": "अपठित चिह्नित किया गया", + "failedToMarkAsRead": "पढ़ा हुआ चिह्नित करने में विफल", + "failedToMarkAsUnread": "अपठित चिह्नित करने में विफल", + "selected": "{count} चयनित", + "clearSelection": "चयन हटाएं", + "mute": "म्यूट करें", + "moveToSpam": "स्पैम में ले जाएं", + "moveToInbox": "इनबॉक्स में ले जाएं", + "unarchive": "अनआर्काइव करें", + "archive": "आर्काइव करें", + "moveToBin": "बिन में ले जाएं", + "restoreFromBin": "बिन से पुनर्स्थापित करें", + "markAsUnread": "अपठित के रूप में चिह्नित करें", + "markAsRead": "पढ़ा हुआ चिह्नित करें", + "addFavorite": "पसंदीदा बनाएं", + "removeFavorite": "पसंदीदा हटाएं", + "muteThread": "थ्रेड म्यूट करें", + "moving": "स्थानांतरित कर रहा है...", + "moved": "स्थानांतरित किया गया", + "errorMoving": "स्थानांतरण में त्रुटि", + "reply": "जवाब दें", + "replyAll": "सभी को जवाब दें", + "forward": "आगे भेजें", + "labels": "लेबल", + "createNewLabel": "नया लेबल बनाएं", + "noLabelsAvailable": "कोई लेबल उपलब्ध नहीं", + "loadMore": "और लोड करें" }, "units": { "mb": "{amount} MB" @@ -285,7 +285,7 @@ "connections": "कनेक्शन", "security": "सुरक्षा", "appearance": "अपियरेंस", - "signatures": "Signatures", + "signatures": "हस्ताक्षर", "shortcuts": "शॉर्टकट" } }, @@ -303,19 +303,19 @@ "title": "सामान्य", "description": "अपनी भाषा और ईमेल डिस्प्ले प्राथमिकताओं के लिए सेटिंग्स प्रबंधित करें।", "language": "भाषा", - "selectLanguage": "Select a language", + "selectLanguage": "भाषा चुनें", "timezone": "टाइमज़ोन", - "selectTimezone": "Select a timezone", + "selectTimezone": "समय क्षेत्र चुनें", "dynamicContent": "डायनामिक कंटेंट", "dynamicContentDescription": "ईमेल्स को डायनामिक कंटेंट दिखाने की अनुमति दें।", "externalImages": "बाहरी इमेजेस प्रदर्शित करें", "externalImagesDescription": "ईमेल्स को बाहरी स्रोतों से इमेजेस दिखाने की अनुमति दें।", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", - "languageChangedTo": "Language changed to {locale}", - "customPrompt": "Custom AI Prompt", - "customPromptPlaceholder": "Enter your custom prompt for the AI...", - "customPromptDescription": "Customize how the AI writes your email replies. This will be added to the base prompt." + "trustedSenders": "विश्वसनीय प्रेषक", + "trustedSendersDescription": "इन प्रेषकों के लिए हमेशा चित्र प्रदर्शित करें।", + "languageChangedTo": "भाषा {locale} में बदल दी गई", + "customPrompt": "कस्टम AI प्रॉम्प्ट", + "customPromptPlaceholder": "AI के लिए अपना कस्टम प्रॉम्प्ट दर्ज करें...", + "customPromptDescription": "AI आपके ईमेल जवाब कैसे लिखता है, इसे अनुकूलित करें। यह आधार प्रॉम्प्ट में जोड़ा जाएगा।" }, "connections": { "title": "ईमेल कनेक्शन्स", @@ -339,8 +339,8 @@ "loginNotifications": "लॉगिन नोटिफिकेशन्स", "loginNotificationsDescription": "नए लॉगिन प्रयासों के बारे में सूचित करें", "deleteAccount": "अकाउंट डिलीट करें", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "डिफ़ॉल्ट रूप से चित्र लोड करें", + "loadImagesDefaultDescription": "सुरक्षा कारणों से चित्र डिफ़ॉल्ट रूप से लोड नहीं किए जाते हैं।" }, "appearance": { "title": "अपियरेंस", @@ -349,24 +349,24 @@ "inboxType": "इनबॉक्स प्रकार" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "ईमेल हस्ताक्षर", + "description": "अपना ईमेल हस्ताक्षर बनाएं और प्रबंधित करें जो आपके संदेशों के नीचे दिखाई देता है।", + "enableSignature": "हस्ताक्षर सक्षम करें", + "enableSignatureDescription": "सभी आउटगोइंग संदेशों के अंत में अपना हस्ताक्षर जोड़ें।", + "includeByDefault": "डिफ़ॉल्ट रूप से शामिल करें", + "includeByDefaultDescription": "नए ईमेल लिखते समय अपना हस्ताक्षर स्वचालित रूप से जोड़ें।", + "signatureContent": "हस्ताक्षर सामग्री", + "signatureContentPlaceholder": "फॉर्मेटिंग, लिंक और छवियों के साथ अपना हस्ताक्षर बनाएं।", + "signaturePreview": "हस्ताक्षर पूर्वावलोकन", + "signatureSaved": "हस्ताक्षर सफलतापूर्वक सहेजा गया", + "signaturePreviewDescription": "आपका हस्ताक्षर ईमेल में ऐसा दिखाई देगा।", + "editorType": "संपादक प्रकार", + "editorTypeDescription": "अपने हस्ताक्षर के लिए सादा टेक्स्ट/HTML इनपुट या रिच टेक्स्ट एडिटर के बीच चुनें।", + "plainText": "सादा टेक्स्ट / HTML", + "richText": "रिच टेक्स्ट एडिटर", + "richTextDescription": "अपने हस्ताक्षर को फॉर्मेट करने के लिए रिच टेक्स्ट एडिटर का उपयोग करें।", + "richTextPlaceholder": "रिच टेक्स्ट एडिटर से अपने हस्ताक्षर को फॉर्मेट करें...", + "signatureContentHelp": "आप अपने हस्ताक्षर में फॉर्मेटिंग, लिंक और छवियां जोड़ने के लिए HTML का उपयोग कर सकते हैं।" }, "shortcuts": { "title": "कीबोर्ड शॉर्टकट्स", @@ -399,36 +399,36 @@ "createEmail": { "body": "बॉडी", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "अटैचमेंटस", + "addMore": "और जोड़ें", "dropFilesToAttach": "अटैच करने के लिए फाइलें यहां छोड़ें", "writeYourMessageHere": "अपना संदेश यहां लिखें...", "emailSentSuccessfully": "ई-मेल सफलतापूर्वक भेजा गया", "failedToSendEmail": "ईमेल भेजने में विफल। कृपया फिर से प्रयास करें।", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "हस्ताक्षर", + "include": "हस्ताक्षर शामिल करें", + "remove": "हस्ताक्षर हटाएं", + "enable": "हस्ताक्षर सक्षम करें", + "disable": "हस्ताक्षर अक्षम करें", + "add": "हस्ताक्षर जोड़ें" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "लिंक जोड़ें", + "addUrlToCreateALink": "लिंक बनाने के लिए URL जोड़ें। लिंक नए टैब में खुलेगा।", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "शीर्षक 1", + "heading2": "शीर्षक 2", + "heading3": "शीर्षक 3", + "bold": "बोल्ड", + "italic": "इटैलिक", + "strikethrough": "स्ट्राइकथ्रू", + "underline": "अंडरलाइन", + "link": "लिंक", + "bulletList": "बुलेट सूची", + "orderedList": "क्रमबद्ध सूची", + "viewAttachments": "अटैचमेंट देखें", + "attachFiles": "फ़ाइलें अटैच करें" } } } diff --git a/apps/mail/locales/hu.json b/apps/mail/locales/hu.json new file mode 100644 index 0000000000..bfe6ba4a5b --- /dev/null +++ b/apps/mail/locales/hu.json @@ -0,0 +1,436 @@ +{ + "common": { + "actions": { + "logout": "Kijelentkezés", + "back": "Vissza", + "create": "E-mail létrehozása", + "saveChanges": "Módosítások mentése", + "saving": "Mentés...", + "resetToDefaults": "Alapértelmezések visszaállítása", + "close": "Bezárás", + "signingOut": "Kijelentkezés...", + "signedOutSuccess": "Sikeresen kijelentkezett!", + "signOutError": "Hiba a kijelentkezés során", + "refresh": "Frissítés", + "loading": "Betöltés...", + "featureNotImplemented": "Ez a funkció még nincs implementálva", + "moving": "Áthelyezés...", + "movedToInbox": "Áthelyezve a beérkező levelekhez", + "movingToInbox": "Áthelyezés a beérkező levelekhez...", + "movedToSpam": "Áthelyezve a spambe", + "movingToSpam": "Áthelyezés a spambe...", + "archiving": "Archiválás...", + "archived": "Archiválva", + "failedToMove": "Nem sikerült áthelyezni az üzenetet", + "addingToFavorites": "Hozzáadás a kedvencekhez...", + "removingFromFavorites": "Eltávolítás a kedvencekből...", + "addedToFavorites": "Hozzáadva a kedvencekhez", + "removedFromFavorites": "Eltávolítva a kedvencekből", + "failedToAddToFavorites": "Nem sikerült hozzáadni a kedvencekhez", + "failedToRemoveFromFavorites": "Nem sikerült eltávolítani a kedvencekből", + "failedToModifyFavorites": "Nem sikerült módosítani a kedvenceket", + "movingToBin": "Áthelyezés a kukába...", + "movedToBin": "Áthelyezve a kukába", + "failedToMoveToBin": "Nem sikerült áthelyezni a kukába", + "markingAsRead": "Olvasottként jelölés...", + "markingAsUnread": "Olvasatlanként jelölés...", + "hiddenImagesWarning": "A képek biztonsági okokból alapértelmezetten rejtve vannak.", + "showImages": "Képek megjelenítése", + "disableImages": "Képek elrejtése", + "trustSender": "Feladó megbízhatónak jelölése", + "cancel": "Mégse", + "save": "Mentés", + "remove": "Eltávolítás" + }, + "themes": { + "dark": "Sötét", + "light": "Világos", + "system": "Rendszer" + }, + "commandPalette": { + "title": "Parancspaletta", + "description": "Gyors navigáció és műveletek a Mail-0 számára", + "placeholder": "Írj be egy parancsot vagy keress...", + "noResults": "Nincs találat", + "groups": { + "mail": "Levelezés", + "settings": "Beállítások", + "actions": "Műveletek", + "help": "Súgó", + "navigation": "Navigáció" + }, + "commands": { + "goToInbox": "Ugrás a beérkező levelekhez", + "goToDrafts": "Ugrás a Piszkozatokhoz", + "goToSent": "Ugrás az Elküldött elemekhez", + "goToSpam": "Ugrás a Spamhez", + "goToArchive": "Ugrás az Archívumhoz", + "goToBin": "Ugrás a Lomtárhoz", + "goToSettings": "Ugrás a Beállításokhoz", + "newEmail": "Új e-mail", + "composeMessage": "Üzenet írása", + "searchEmails": "E-mailek keresése", + "toggleTheme": "Téma váltása", + "backToMail": "Vissza a levelezéshez", + "goToDocs": "Ugrás a dokumentációhoz", + "helpWithShortcuts": "Segítség a gyorsbillentyűkhöz" + } + }, + "searchBar": { + "pickDateRange": "Válassz dátumot vagy időtartományt", + "search": "Keresés", + "clearSearch": "Keresés törlése", + "advancedSearch": "Részletes keresés", + "quickFilters": "Gyorsszűrők", + "searchIn": "Keresés helye", + "recipient": "Címzett", + "sender": "Feladó", + "subject": "Tárgy", + "dateRange": "Dátumtartomány", + "category": "Kategória", + "folder": "Mappa", + "allMail": "Összes levél", + "unread": "Olvasatlan", + "hasAttachment": "Van melléklet", + "starred": "Csillagozott", + "applyFilters": "Szűrők alkalmazása", + "reset": "Visszaállítás", + "searching": "Keresés...", + "aiSuggestions": "MI javaslatok", + "aiSearching": "Az MI keres...", + "aiSearchError": "MI keresés sikertelen. Kérjük, próbálja újra.", + "aiNoResults": "Nincsenek MI javaslatok", + "aiEnhancedQuery": "Továbbfejlesztett keresési lekérdezés" + }, + "navUser": { + "customerSupport": "Közösség", + "documentation": "Dokumentáció", + "appTheme": "Alkalmazás téma", + "accounts": "Fiókok", + "signIn": "Bejelentkezés" + }, + "mailCategories": { + "primary": "Elsődleges", + "allMail": "Összes levél", + "important": "Fontos", + "personal": "Személyes", + "updates": "Frissítések", + "promotions": "Promóciók", + "social": "Közösségi" + }, + "replyCompose": { + "replyTo": "Válasz erre", + "thisEmail": "ez az e-mail", + "dropFiles": "Húzd ide a fájlokat a csatoláshoz", + "attachments": "Csatolmányok", + "attachmentCount": "{count, plural, =0 {csatolmány} one {csatolmány} other {csatolmány}}", + "fileCount": "{count, plural, =0 {fájl} one {fájl} other {fájl}}", + "saveDraft": "Piszkozat mentése", + "send": "Küldés", + "forward": "Továbbítás" + }, + "mailDisplay": { + "details": "Részletek", + "from": "Feladó", + "to": "Címzett", + "cc": "Másolat", + "date": "Dátum", + "mailedBy": "Küldő", + "signedBy": "Aláíró", + "security": "Biztonság", + "standardEncryption": "Normál titkosítás (TLS)", + "loadingMailContent": "E-mail tartalom betöltése...", + "unsubscribe": "Leiratkozás", + "unsubscribed": "Leiratkozva", + "unsubscribeDescription": "Biztosan le szeretnél iratkozni erről a levelezőlistáról?", + "unsubscribeOpenSiteDescription": "Ha nem szeretnél több üzenetet kapni ettől a levelezőlistától, látogass el a weboldalukra a leiratkozáshoz.", + "cancel": "Mégse", + "goToWebsite": "Ugrás a weboldalra", + "failedToUnsubscribe": "Nem sikerült leiratkozni a levelezőlistáról" + }, + "threadDisplay": { + "exitFullscreen": "Kilépés a teljes képernyőből", + "enterFullscreen": "Teljes képernyő", + "archive": "Archiválás", + "reply": "Válasz", + "moreOptions": "További lehetőségek", + "moveToSpam": "Áthelyezés a spambe", + "replyAll": "Válasz mindenkinek", + "forward": "Továbbítás", + "markAsUnread": "Megjelölés olvasatlanként", + "markAsRead": "Megjelölés olvasottként", + "addLabel": "Címke hozzáadása", + "muteThread": "Beszélgetés némítása", + "favourites": "Kedvencek", + "disableImages": "Képek elrejtése", + "enableImages": "Képek megjelenítése" + }, + "notes": { + "title": "Jegyzetek", + "empty": "Nincsenek jegyzetek ehhez az e-mailhez", + "emptyDescription": "Adjon hozzá jegyzeteket a fontos információk vagy teendők nyomon követéséhez.", + "addNote": "Jegyzet hozzáadása", + "addYourNote": "Írja ide a jegyzetét...", + "editNote": "Jegyzet szerkesztése", + "deleteNote": "Jegyzet törlése", + "deleteConfirm": "Biztosan törölni szeretné ezt a jegyzetet?", + "deleteConfirmDescription": "Ez a művelet nem vonható vissza.", + "cancel": "Mégse", + "delete": "Törlés", + "save": "Jegyzet mentése", + "toSave": "mentéshez", + "label": "Címke:", + "search": "Jegyzetek keresése...", + "noteCount": "{count, plural, =0 {Jegyzetek hozzáadása} one {# jegyzet} other {# jegyzet}}", + "notePinned": "Jegyzet rögzítve", + "noteUnpinned": "Jegyzet rögzítése feloldva", + "colorChanged": "Jegyzet színe frissítve", + "noteUpdated": "Jegyzet frissítve", + "noteDeleted": "Jegyzet törölve", + "noteCopied": "Vágólapra másolva", + "noteAdded": "Jegyzet hozzáadva", + "notesReordered": "Jegyzetek átrendezve", + "noMatchingNotes": "Nincs a(z) \"{query}\" keresésnek megfelelő jegyzet", + "clearSearch": "Keresés törlése", + "pinnedNotes": "Rögzített jegyzetek", + "otherNotes": "Egyéb jegyzetek", + "created": "Létrehozva", + "updated": "Frissítve", + "errors": { + "failedToLoadNotes": "Nem sikerült betölteni a jegyzeteket", + "failedToLoadThreadNotes": "Nem sikerült betölteni a beszélgetés jegyzeteit", + "failedToAddNote": "Nem sikerült hozzáadni a jegyzetet", + "failedToUpdateNote": "Nem sikerült frissíteni a jegyzetet", + "failedToDeleteNote": "Nem sikerült törölni a jegyzetet", + "failedToUpdateNoteColor": "Nem sikerült frissíteni a jegyzet színét", + "noValidNotesToReorder": "Nincsenek érvényes jegyzetek az átrendezéshez", + "failedToReorderNotes": "Nem sikerült átrendezni a jegyzeteket" + }, + "colors": { + "default": "Alapértelmezett", + "red": "Piros", + "orange": "Narancssárga", + "yellow": "Sárga", + "green": "Zöld", + "blue": "Kék", + "purple": "Lila", + "pink": "Rózsaszín" + }, + "actions": { + "pin": "Jegyzet rögzítése", + "unpin": "Jegyzet rögzítésének feloldása", + "edit": "Jegyzet szerkesztése", + "delete": "Jegyzet törlése", + "copy": "Jegyzet másolása", + "changeColor": "Szín módosítása" + } + }, + "settings": { + "notFound": "Beállítások nem találhatók", + "saved": "Beállítások mentve", + "failedToSave": "Nem sikerült menteni a beállításokat", + "languageChanged": "Nyelv megváltoztatva erre: {locale}" + }, + "mail": { + "replies": "{count, plural, =0 {válasz} one {# válasz} other {# válasz}}", + "deselectAll": "Összes e-mail kijelölése megszüntetve", + "selectedEmails": "{count} e-mail kiválasztva", + "noEmailsToSelect": "Nincsenek kiválasztható e-mailek", + "markedAsRead": "Olvasottként megjelölve", + "markedAsUnread": "Olvasatlanként megjelölve", + "failedToMarkAsRead": "Nem sikerült olvasottként megjelölni", + "failedToMarkAsUnread": "Nem sikerült olvasatlanként megjelölni", + "selected": "{count} kiválasztva", + "clearSelection": "Kijelölés törlése", + "mute": "Némítás", + "moveToSpam": "Áthelyezés a spambe", + "moveToInbox": "Áthelyezés a beérkező levelekbe", + "unarchive": "Visszaállítás az archívumból", + "archive": "Archiválás", + "moveToBin": "Áthelyezés a kukába", + "restoreFromBin": "Visszaállítás a kukából", + "markAsUnread": "Megjelölés olvasatlanként", + "markAsRead": "Megjelölés olvasottként", + "addFavorite": "Kedvencekhez adás", + "removeFavorite": "Eltávolítás a kedvencekből", + "muteThread": "Beszélgetés némítása", + "moving": "Áthelyezés...", + "moved": "Áthelyezve", + "errorMoving": "Hiba az áthelyezés során", + "reply": "Válasz", + "replyAll": "Válasz mindenkinek", + "forward": "Továbbítás", + "labels": "Címkék", + "createNewLabel": "Új címke létrehozása", + "noLabelsAvailable": "Nincsenek elérhető címkék", + "loadMore": "Továbbiak betöltése" + }, + "units": { + "mb": "{amount} MB" + } + }, + "navigation": { + "sidebar": { + "inbox": "Beérkező levelek", + "drafts": "Piszkozatok", + "sent": "Elküldött levelek", + "spam": "Spam", + "archive": "Archívum", + "bin": "Lomtár", + "feedback": "Visszajelzés", + "settings": "Beállítások" + }, + "settings": { + "general": "Általános", + "connections": "Kapcsolatok", + "security": "Biztonság", + "appearance": "Megjelenés", + "signatures": "Aláírások", + "shortcuts": "Gyorsbillentyűk" + } + }, + "pages": { + "error": { + "notFound": { + "title": "Az oldal nem található", + "description": "Hoppá! A keresett oldal nem létezik vagy áthelyezték.", + "goBack": "Vissza" + }, + "settingsNotFound": "404 - A beállítások oldal nem található" + }, + "settings": { + "general": { + "title": "Általános", + "description": "Nyelvi és e-mail megjelenítési beállítások kezelése.", + "language": "Nyelv", + "selectLanguage": "Válassz nyelvet", + "timezone": "Időzóna", + "selectTimezone": "Válassz időzónát", + "dynamicContent": "Dinamikus tartalom", + "dynamicContentDescription": "E-mailek dinamikus tartalmának megjelenítése.", + "externalImages": "Külső képek megjelenítése", + "externalImagesDescription": "E-mailekben külső forrásból származó képek megjelenítésének engedélyezése.", + "trustedSenders": "Megbízható feladók", + "trustedSendersDescription": "Mindig jelenítsd meg a képeket ezektől a feladóktól.", + "languageChangedTo": "Nyelv megváltoztatva erre: {locale}", + "customPrompt": "Egyéni AI utasítás", + "customPromptPlaceholder": "Írd be az egyéni utasításodat az AI számára...", + "customPromptDescription": "Szabd testre, hogyan írja az AI az e-mail válaszaidat. Ez hozzáadódik az alap utasításhoz." + }, + "connections": { + "title": "E-mail kapcsolatok", + "description": "Kapcsold össze e-mail fiókjaidat a Zero-val.", + "disconnectTitle": "E-mail fiók leválasztása", + "disconnectDescription": "Biztosan le szeretnéd választani ezt az e-mail fiókot?", + "cancel": "Mégsem", + "remove": "Eltávolítás", + "disconnectSuccess": "Fiók sikeresen leválasztva", + "disconnectError": "Nem sikerült leválasztani a fiókot", + "addEmail": "Kapcsolat hozzáadása", + "connectEmail": "E-mail összekapcsolása", + "connectEmailDescription": "Válassz egy e-mail szolgáltatót a kapcsolódáshoz", + "moreComingSoon": "Hamarosan több is érkezik" + }, + "security": { + "title": "Biztonság", + "description": "Biztonsági beállítások és fiók védelem kezelése.", + "twoFactorAuth": "Kétlépcsős hitelesítés", + "twoFactorAuthDescription": "Adj hozzá egy extra biztonsági réteget a fiókodhoz", + "loginNotifications": "Bejelentkezési értesítések", + "loginNotificationsDescription": "Értesítést kapsz az új bejelentkezési kísérletekről", + "deleteAccount": "Fiók törlése", + "loadImagesDefault": "Képek betöltése alapértelmezetten", + "loadImagesDefaultDescription": "Biztonsági okokból a képek alapértelmezetten nem töltődnek be." + }, + "appearance": { + "title": "Megjelenés", + "description": "Színek, betűtípusok és nézeti beállítások testreszabása.", + "theme": "Téma", + "inboxType": "Bejövő levelek típusa" + }, + "signatures": { + "title": "E-mail aláírások", + "description": "Hozd létre és kezeld az e-mail aláírásod, amely az üzeneteid alján jelenik meg.", + "enableSignature": "Aláírás engedélyezése", + "enableSignatureDescription": "Aláírás hozzáadása minden kimenő üzenethez.", + "includeByDefault": "Alapértelmezett hozzáadás", + "includeByDefaultDescription": "Aláírás automatikus hozzáadása új e-mailek írásakor.", + "signatureContent": "Aláírás tartalma", + "signatureContentPlaceholder": "Hozd létre aláírásod formázással, linkekkel és képekkel.", + "signaturePreview": "Aláírás előnézete", + "signatureSaved": "Aláírás sikeresen mentve", + "signaturePreviewDescription": "Így fog megjelenni az aláírásod az e-mailekben.", + "editorType": "Szerkesztő típusa", + "editorTypeDescription": "Válassz sima szöveg/HTML bevitel vagy formázott szövegszerkesztő között az aláírásodhoz.", + "plainText": "Egyszerű szöveg / HTML", + "richText": "Formázott szövegszerkesztő", + "richTextDescription": "Használd a formázott szövegszerkesztőt az aláírásod formázásához.", + "richTextPlaceholder": "Formázd az aláírásodat a formázott szövegszerkesztővel...", + "signatureContentHelp": "HTML-t használhatsz formázás, linkek és képek hozzáadásához az aláírásodhoz." + }, + "shortcuts": { + "title": "Billentyűparancsok", + "description": "Tekintsd meg és szabd testre a billentyűparancsokat a gyors műveletekhez.", + "actions": { + "newEmail": "Új e-mail", + "sendEmail": "E-mail küldése", + "reply": "Válasz", + "replyAll": "Válasz mindenkinek", + "forward": "Továbbítás", + "drafts": "Piszkozatok", + "inbox": "Beérkező levelek", + "sentMail": "Elküldött levelek", + "delete": "Törlés", + "search": "Keresés", + "markAsUnread": "Megjelölés olvasatlanként", + "muteThread": "Beszélgetés némítása", + "printEmail": "E-mail nyomtatása", + "archiveEmail": "E-mail archiválása", + "markAsSpam": "Megjelölés spamként", + "moveToFolder": "Áthelyezés mappába", + "undoLastAction": "Utolsó művelet visszavonása", + "viewEmailDetails": "E-mail részletek megtekintése", + "goToDrafts": "Ugrás a piszkozatokhoz", + "expandEmailView": "E-mail nézet kibontása", + "helpWithShortcuts": "Segítség a gyorsbillentyűkhöz" + } + } + }, + "createEmail": { + "body": "Törzs", + "example": "zero@0.email", + "attachments": "Mellékletek ({count})", + "addMore": "További hozzáadása", + "dropFilesToAttach": "Húzza ide a fájlokat a csatoláshoz", + "writeYourMessageHere": "Írja ide az üzenetét...", + "emailSentSuccessfully": "E-mail sikeresen elküldve", + "failedToSendEmail": "Nem sikerült elküldeni az e-mailt. Kérjük, próbálja újra.", + "signature": { + "title": "Aláírás", + "include": "Aláírás hozzáadása", + "remove": "Aláírás eltávolítása", + "enable": "Aláírás engedélyezése", + "disable": "Aláírás letiltása", + "add": "Aláírás hozzáadása" + }, + "addLink": "Link hozzáadása", + "addUrlToCreateALink": "Adjon meg egy URL-t a link létrehozásához. A link új lapon nyílik meg.", + "editor": { + "menuBar": { + "heading1": "1. címsor", + "heading2": "2. címsor", + "heading3": "3. címsor", + "bold": "Félkövér", + "italic": "Dőlt", + "strikethrough": "Áthúzott", + "underline": "Aláhúzás", + "link": "Hivatkozás", + "bulletList": "Felsorolásjeles lista", + "orderedList": "Számozott lista", + "viewAttachments": "Mellékletek megtekintése", + "attachFiles": "Fájlok csatolása" + } + } + } + } +} \ No newline at end of file diff --git a/apps/mail/locales/ja.json b/apps/mail/locales/ja.json index 0c9f16f26b..64e881090b 100644 --- a/apps/mail/locales/ja.json +++ b/apps/mail/locales/ja.json @@ -13,34 +13,34 @@ "signOutError": "サインアウトエラー", "refresh": "更新", "loading": "読み込み中...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "featureNotImplemented": "この機能はまだ実装されていません", + "moving": "移動中...", + "movedToInbox": "受信箱に移動しました", + "movingToInbox": "受信箱に移動中...", + "movedToSpam": "迷惑メールに移動しました", + "movingToSpam": "迷惑メールに移動中...", + "archiving": "アーカイブ中...", + "archived": "アーカイブしました", + "failedToMove": "メッセージの移動に失敗しました", + "addingToFavorites": "お気に入りに追加中...", + "removingFromFavorites": "お気に入りから削除中...", + "addedToFavorites": "お気に入りに追加しました", + "removedFromFavorites": "お気に入りから削除しました", + "failedToAddToFavorites": "お気に入りへの追加に失敗しました", + "failedToRemoveFromFavorites": "お気に入りからの削除に失敗しました", + "failedToModifyFavorites": "お気に入りの変更に失敗しました", + "movingToBin": "ゴミ箱に移動中...", + "movedToBin": "ゴミ箱に移動しました", + "failedToMoveToBin": "ゴミ箱への移動に失敗しました", + "markingAsRead": "既読にしています...", + "markingAsUnread": "未読にしています...", + "hiddenImagesWarning": "セキュリティ上の理由から、画像はデフォルトで非表示になっています。", + "showImages": "画像を表示", + "disableImages": "画像を非表示", + "trustSender": "送信者を信頼", + "cancel": "キャンセル", + "save": "保存", + "remove": "削除" }, "themes": { "dark": "ダーク", @@ -103,7 +103,7 @@ "aiEnhancedQuery": "拡張検索クエリ" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "コミュニティ", "documentation": "ドキュメント", "appTheme": "テーマ", "accounts": "アカウント", @@ -162,8 +162,8 @@ "addLabel": "ラベルを追加", "muteThread": "スレッドをミュート", "favourites": "お気に入り", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "disableImages": "画像を非表示", + "enableImages": "画像を表示" }, "notes": { "title": "メモ", @@ -247,8 +247,8 @@ "moveToInbox": "受信箱に移動", "unarchive": "アーカイブ解除", "archive": "アーカイブ", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", + "moveToBin": "ゴミ箱に移動", + "restoreFromBin": "ゴミ箱から復元", "markAsUnread": "未読にする", "markAsRead": "既読にする", "addFavorite": "Favorite", @@ -285,7 +285,7 @@ "connections": "接続", "security": "セキュリティ", "appearance": "外観", - "signatures": "Signatures", + "signatures": "署名", "shortcuts": "ショートカット" } }, @@ -310,8 +310,8 @@ "dynamicContentDescription": "電子メールの動的なコンテンツの表示を許可します。", "externalImages": "外部画像を表示する", "externalImagesDescription": "電子メールによる外部ソースからの画像の表示を許可します。", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", + "trustedSenders": "信頼できる送信者", + "trustedSendersDescription": "これらの送信者からの画像を常に表示します。", "languageChangedTo": "言語を {locale}に変更しました", "customPrompt": "カスタムAIプロンプト", "customPromptPlaceholder": "AIのカスタムプロンプトを入力...", @@ -339,8 +339,8 @@ "loginNotifications": "ログイン通知", "loginNotificationsDescription": "新しいログイン試行について通知を受け取ります", "deleteAccount": "アカウントを削除", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "デフォルトで画像を読み込む", + "loadImagesDefaultDescription": "セキュリティ上の理由から、画像はデフォルトでは読み込まれません。" }, "appearance": { "title": "外観", @@ -349,24 +349,24 @@ "inboxType": "受信トレイの種類" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "メール署名", + "description": "メッセージの末尾に表示されるメール署名を作成・管理します。", + "enableSignature": "署名を有効にする", + "enableSignatureDescription": "すべての送信メッセージの末尾に署名を追加します。", + "includeByDefault": "デフォルトで含める", + "includeByDefaultDescription": "新しいメールを作成する際に自動的に署名を追加します。", + "signatureContent": "署名の内容", + "signatureContentPlaceholder": "書式設定、リンク、画像を含む署名を作成してください。", + "signaturePreview": "署名のプレビュー", + "signatureSaved": "署名が正常に保存されました", + "signaturePreviewDescription": "メールでの署名の表示例です。", + "editorType": "エディタの種類", + "editorTypeDescription": "署名用にプレーンテキスト/HTML入力またはリッチテキストエディタを選択してください。", + "plainText": "プレーンテキスト / HTML", + "richText": "リッチテキストエディタ", + "richTextDescription": "リッチテキストエディタを使用して署名を書式設定します。", + "richTextPlaceholder": "リッチテキストエディタで署名を書式設定してください...", + "signatureContentHelp": "HTMLを使用して、署名に書式設定、リンク、画像を追加できます。" }, "shortcuts": { "title": "キーボードショートカット", @@ -399,36 +399,36 @@ "createEmail": { "body": "本文", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "添付ファイル", + "addMore": "さらに追加", "dropFilesToAttach": "添付するファイルをドロップ", "writeYourMessageHere": "ここにメッセージを書いてください", "emailSentSuccessfully": "メールを送信しました", "failedToSendEmail": "メールを送信できませんでした。もう一度やり直してください。", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "署名", + "include": "署名を含める", + "remove": "署名を削除", + "enable": "署名を有効にする", + "disable": "署名を無効にする", + "add": "署名を追加" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "リンクを追加", + "addUrlToCreateALink": "リンクを作成するにはURLを追加してください。リンクは新しいタブで開きます。", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "見出し1", + "heading2": "見出し2", + "heading3": "見出し3", + "bold": "太字", + "italic": "斜体", + "strikethrough": "取り消し線", + "underline": "下線", + "link": "リンク", + "bulletList": "箇条書きリスト", + "orderedList": "番号付きリスト", + "viewAttachments": "添付ファイルを表示", + "attachFiles": "ファイルを添付" } } } diff --git a/apps/mail/locales/ko.json b/apps/mail/locales/ko.json index c7f4027254..05e97f09b4 100644 --- a/apps/mail/locales/ko.json +++ b/apps/mail/locales/ko.json @@ -11,36 +11,36 @@ "signingOut": "로그아웃 중...", "signedOutSuccess": "로그아웃에 성공했습니다!", "signOutError": "로그아웃 오류 발생", - "refresh": "Refresh", - "loading": "Loading...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "refresh": "새로고침", + "loading": "로딩 중...", + "featureNotImplemented": "이 기능은 아직 구현되지 않았습니다", + "moving": "이동 중...", + "movedToInbox": "받은 편지함으로 이동됨", + "movingToInbox": "받은 편지함으로 이동 중...", + "movedToSpam": "스팸으로 이동됨", + "movingToSpam": "스팸으로 이동 중...", + "archiving": "보관 중...", + "archived": "보관됨", + "failedToMove": "메시지 이동 실패", + "addingToFavorites": "즐겨찾기에 추가 중...", + "removingFromFavorites": "즐겨찾기에서 제거 중...", + "addedToFavorites": "즐겨찾기에 추가됨", + "removedFromFavorites": "즐겨찾기에서 제거됨", + "failedToAddToFavorites": "즐겨찾기 추가 실패", + "failedToRemoveFromFavorites": "즐겨찾기 제거 실패", + "failedToModifyFavorites": "즐겨찾기 수정 실패", + "movingToBin": "휴지통으로 이동 중...", + "movedToBin": "휴지통으로 이동됨", + "failedToMoveToBin": "휴지통으로 이동 실패", + "markingAsRead": "읽음으로 표시 중...", + "markingAsUnread": "읽지 않음으로 표시 중...", + "hiddenImagesWarning": "보안상의 이유로 이미지는 기본적으로 숨겨져 있습니다.", + "showImages": "이미지 표시", + "disableImages": "이미지 숨기기", + "trustSender": "발신자 신뢰", + "cancel": "취소", + "save": "저장", + "remove": "삭제" }, "themes": { "dark": "다크 모드", @@ -95,15 +95,15 @@ "starred": "별표 처리됨", "applyFilters": "필터 적용", "reset": "초기화", - "searching": "Searching...", - "aiSuggestions": "AI Suggestions", - "aiSearching": "AI is searching...", - "aiSearchError": "AI search failed. Please try again.", - "aiNoResults": "No AI suggestions found", - "aiEnhancedQuery": "Enhanced search query" + "searching": "검색 중...", + "aiSuggestions": "AI 추천", + "aiSearching": "AI가 검색 중...", + "aiSearchError": "AI 검색에 실패했습니다. 다시 시도해 주세요.", + "aiNoResults": "AI 추천 결과가 없습니다", + "aiEnhancedQuery": "향상된 검색 쿼리" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "커뮤니티", "documentation": "문서", "appTheme": "앱 테마", "accounts": "계정", @@ -111,7 +111,7 @@ }, "mailCategories": { "primary": "기본", - "allMail": "All Mail", + "allMail": "모든 메일", "important": "중요", "personal": "개인", "updates": "업데이트", @@ -127,7 +127,7 @@ "fileCount": "{count, plural, =0 {파일} other {파일}}", "saveDraft": "임시 저장", "send": "전송", - "forward": "Forward" + "forward": "전달" }, "mailDisplay": { "details": "세부 사항", @@ -162,8 +162,8 @@ "addLabel": "라벨 추가", "muteThread": "스레드 음소거", "favourites": "즐겨찾기", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "disableImages": "이미지 숨기기", + "enableImages": "이미지 표시" }, "notes": { "title": "노트", @@ -181,7 +181,7 @@ "toSave": "저장하기", "label": "라벨:", "search": "노트 검색...", - "noteCount": "{count, plural, =0 {Add notes} one {# note} other {# notes}}", + "noteCount": "{count, plural, =0 {메모 추가} one {메모 #개} other {메모 #개}}", "notePinned": "노트를 고정했습니다", "noteUnpinned": "노트를 고정 해제했습니다", "colorChanged": "노트 색상을 변경했습니다", @@ -200,7 +200,7 @@ "failedToLoadNotes": "노트 불러오기 실패", "failedToLoadThreadNotes": "스레드 노트 불러오기 실패", "failedToAddNote": "노트 추가 실패", - "failedToUpdateNote": "Failed to update note", + "failedToUpdateNote": "메모 업데이트 실패", "failedToDeleteNote": "노트 삭제 실패", "failedToUpdateNoteColor": "노트 색상 변경 실패", "noValidNotesToReorder": "정렬할 유효한 노트가 없습니다", @@ -208,13 +208,13 @@ }, "colors": { "default": "기본", - "red": "Red", - "orange": "Orange", - "yellow": "Yellow", - "green": "Green", - "blue": "Blue", - "purple": "Purple", - "pink": "Pink" + "red": "빨간색", + "orange": "주황색", + "yellow": "노란색", + "green": "초록색", + "blue": "파란색", + "purple": "보라색", + "pink": "분홍색" }, "actions": { "pin": "노트 고정", @@ -226,14 +226,14 @@ } }, "settings": { - "notFound": "Settings not found", + "notFound": "설정을 찾을 수 없습니다", "saved": "설정 저장됨", "failedToSave": "설정 저장 실패", "languageChanged": "언어가 {locale}(으)로 변경되었습니다" }, "mail": { - "replies": "{count, plural, =0 {replies} one {# reply} other {# replies}}", - "deselectAll": "Deselected all emails", + "replies": "{count, plural, =0 {답장} one {답장 #개} other {답장 #개}}", + "deselectAll": "모든 이메일 선택 해제됨", "selectedEmails": "{count}개의 이메일 선택됨", "noEmailsToSelect": "선택할 이메일이 없습니다", "markedAsRead": "읽음으로 표시되었습니다", @@ -247,12 +247,12 @@ "moveToInbox": "받은 편지함으로 이동", "unarchive": "보관 해제", "archive": "보관처리", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", + "moveToBin": "휴지통으로 이동", + "restoreFromBin": "휴지통에서 복원", "markAsUnread": "읽지 않음으로 표시", "markAsRead": "읽음으로 표시", - "addFavorite": "Favorite", - "removeFavorite": "Unfavorite", + "addFavorite": "즐겨찾기", + "removeFavorite": "즐겨찾기 해제", "muteThread": "스레드 음소거", "moving": "이동 중...", "moved": "이동됨", @@ -263,7 +263,7 @@ "labels": "라벨", "createNewLabel": "새 라벨 생성", "noLabelsAvailable": "사용 가능한 라벨 없음", - "loadMore": "Load more" + "loadMore": "더 불러오기" }, "units": { "mb": "{amount} MB" @@ -285,7 +285,7 @@ "connections": "연결", "security": "보안", "appearance": "외관", - "signatures": "Signatures", + "signatures": "서명", "shortcuts": "단축키" } }, @@ -310,12 +310,12 @@ "dynamicContentDescription": "이메일에 동적 콘텐츠를 표시하도록 허용합니다.", "externalImages": "외부 이미지 표시", "externalImagesDescription": "이메일에 외부 소스의 이미지를 표시하도록 허용합니다.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", - "languageChangedTo": "Language changed to {locale}", - "customPrompt": "Custom AI Prompt", - "customPromptPlaceholder": "Enter your custom prompt for the AI...", - "customPromptDescription": "Customize how the AI writes your email replies. This will be added to the base prompt." + "trustedSenders": "신뢰할 수 있는 발신자", + "trustedSendersDescription": "이 발신자들의 이미지를 항상 표시합니다.", + "languageChangedTo": "언어가 {locale}(으)로 변경되었습니다", + "customPrompt": "맞춤 AI 프롬프트", + "customPromptPlaceholder": "AI를 위한 맞춤 프롬프트를 입력하세요...", + "customPromptDescription": "AI가 이메일 답장을 작성하는 방식을 맞춤설정하세요. 이것은 기본 프롬프트에 추가됩니다." }, "connections": { "title": "이메일 연결", @@ -339,8 +339,8 @@ "loginNotifications": "로그인 알림", "loginNotificationsDescription": "새 로그인 시도 알림 받기", "deleteAccount": "계정 삭제", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "기본적으로 이미지 로드", + "loadImagesDefaultDescription": "보안상의 이유로 이미지는 기본적으로 로드되지 않습니다." }, "appearance": { "title": "외관", @@ -349,24 +349,24 @@ "inboxType": "받은 편지함 종류" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "이메일 서명", + "description": "메시지 하단에 표시되는 이메일 서명을 생성하고 관리하세요.", + "enableSignature": "서명 활성화", + "enableSignatureDescription": "모든 발신 메시지 끝에 서명을 추가합니다.", + "includeByDefault": "기본적으로 포함", + "includeByDefaultDescription": "새 이메일 작성 시 자동으로 서명을 추가합니다.", + "signatureContent": "서명 내용", + "signatureContentPlaceholder": "서식, 링크 및 이미지가 포함된 서명을 만드세요.", + "signaturePreview": "서명 미리보기", + "signatureSaved": "서명이 성공적으로 저장되었습니다", + "signaturePreviewDescription": "이메일에 표시될 서명 모습입니다.", + "editorType": "에디터 유형", + "editorTypeDescription": "서명을 위해 일반 텍스트/HTML 입력 또는 서식 있는 텍스트 에디터 중에서 선택하세요.", + "plainText": "일반 텍스트 / HTML", + "richText": "서식 있는 텍스트 편집기", + "richTextDescription": "서식 있는 텍스트 편집기를 사용하여 서명을 포맷하세요.", + "richTextPlaceholder": "서식 있는 텍스트 편집기로 서명을 포맷하세요...", + "signatureContentHelp": "HTML을 사용하여 서명에 서식, 링크 및 이미지를 추가할 수 있습니다." }, "shortcuts": { "title": "키보드 단축키", @@ -399,36 +399,36 @@ "createEmail": { "body": "본문", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "첨부 파일", + "addMore": "더 추가하기", "dropFilesToAttach": "첨부할 파일 끌어놓기", "writeYourMessageHere": "이곳에 메시지를 작성하세요...", "emailSentSuccessfully": "이메일이 성공적으로 전송되었습니다", "failedToSendEmail": "이메일 전송에 실패했습니다. 다시 시도해 주세요.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "서명", + "include": "서명 포함하기", + "remove": "서명 제거하기", + "enable": "서명 활성화하기", + "disable": "서명 비활성화하기", + "add": "서명 추가하기" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "링크 추가하기", + "addUrlToCreateALink": "링크를 생성하려면 URL을 추가하세요. 링크는 새 탭에서 열립니다.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "제목 1", + "heading2": "제목 2", + "heading3": "제목 3", + "bold": "굵게", + "italic": "기울임꼴", + "strikethrough": "취소선", + "underline": "밑줄", + "link": "링크", + "bulletList": "글머리 기호 목록", + "orderedList": "번호 매기기 목록", + "viewAttachments": "첨부 파일 보기", + "attachFiles": "파일 첨부" } } } diff --git a/apps/mail/locales/lv.json b/apps/mail/locales/lv.json index edb27afec0..801e1323d3 100644 --- a/apps/mail/locales/lv.json +++ b/apps/mail/locales/lv.json @@ -13,34 +13,34 @@ "signOutError": "Kļūda, izrakstoties no sistēmas", "refresh": "Atjaunot", "loading": "Ielādē...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "featureNotImplemented": "Šī funkcija vēl nav ieviesta", + "moving": "Pārvieto...", + "movedToInbox": "Pārvietots uz iesūtni", + "movingToInbox": "Pārvieto uz iesūtni...", + "movedToSpam": "Pārvietots uz mēstulēm", + "movingToSpam": "Pārvieto uz mēstulēm...", + "archiving": "Arhivē...", + "archived": "Arhivēts", + "failedToMove": "Neizdevās pārvietot ziņojumu", + "addingToFavorites": "Pievieno izlasei...", + "removingFromFavorites": "Noņem no izlases...", + "addedToFavorites": "Pievienots izlasei", + "removedFromFavorites": "Noņemts no izlases", + "failedToAddToFavorites": "Neizdevās pievienot izlasei", + "failedToRemoveFromFavorites": "Neizdevās noņemt no izlases", + "failedToModifyFavorites": "Neizdevās modificēt izlasi", + "movingToBin": "Pārvieto uz atkritni...", + "movedToBin": "Pārvietots uz atkritni", + "failedToMoveToBin": "Neizdevās pārvietot uz atkritni", + "markingAsRead": "Atzīmē kā lasītu...", + "markingAsUnread": "Atzīmē kā nelasītu...", + "hiddenImagesWarning": "Drošības apsvērumu dēļ attēli pēc noklusējuma ir paslēpti.", + "showImages": "Rādīt attēlus", + "disableImages": "Paslēpt attēlus", + "trustSender": "Uzticēties sūtītājam", + "cancel": "Atcelt", + "save": "Saglabāt", + "remove": "Noņemt" }, "themes": { "dark": "Tumšs", @@ -103,7 +103,7 @@ "aiEnhancedQuery": "Uzlabota meklēšanas frāze" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "Kopiena", "documentation": "Dokumentācija", "appTheme": "Aplikācijas motīvs", "accounts": "Konti", @@ -162,8 +162,8 @@ "addLabel": "Pievienot iezīmi", "muteThread": "Apklusināt pavedienu", "favourites": "Izlase", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "disableImages": "Slēpt attēlus", + "enableImages": "Rādīt attēlus" }, "notes": { "title": "Piezīmes", @@ -247,8 +247,8 @@ "moveToInbox": "Pārvietot uz Iesūtni", "unarchive": "Izņemt no arhīva", "archive": "Arhivēt", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", + "moveToBin": "Pārvietot uz atkritni", + "restoreFromBin": "Atjaunot no atkritnes", "markAsUnread": "Atzīmēt kā nelasītu", "markAsRead": "Atzīmēt kā lasītu", "addFavorite": "Favorite", @@ -285,7 +285,7 @@ "connections": "Savienojumi", "security": "Drošība", "appearance": "Izskats", - "signatures": "Signatures", + "signatures": "Paraksti", "shortcuts": "Īsceļi" } }, @@ -310,8 +310,8 @@ "dynamicContentDescription": "Atļaut e-pastiem rādīt dinamisku saturu.", "externalImages": "Rādīt ārējos attēlus", "externalImagesDescription": "Atļaut e-pastiem rādīt attēlus no ārējiem avotiem.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", + "trustedSenders": "Uzticami sūtītāji", + "trustedSendersDescription": "Vienmēr rādīt attēlus no šiem sūtītājiem.", "languageChangedTo": "Valoda nomainīta uz {locale}", "customPrompt": "Pielāgota AI instrukcija", "customPromptPlaceholder": "Ievadi savu pielāgoto norādījumu AI...", @@ -339,8 +339,8 @@ "loginNotifications": "Paziņojumi par pierakstīšanos", "loginNotificationsDescription": "Saņemt paziņojumus par jauniem mēģinājumiem pierakstīties", "deleteAccount": "Dzēst kontu", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "Ielādēt attēlus pēc noklusējuma", + "loadImagesDefaultDescription": "Drošības apsvērumu dēļ attēli netiek ielādēti pēc noklusējuma." }, "appearance": { "title": "Izskats", @@ -349,24 +349,24 @@ "inboxType": "Iesūtnes tips" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "E-pasta paraksti", + "description": "Izveidojiet un pārvaldiet savu e-pasta parakstu, kas parādās jūsu ziņojumu beigās.", + "enableSignature": "Iespējot parakstu", + "enableSignatureDescription": "Pievienot parakstu visu izejošo ziņojumu beigās.", + "includeByDefault": "Iekļaut pēc noklusējuma", + "includeByDefaultDescription": "Automātiski pievienot parakstu, rakstot jaunus e-pastus.", + "signatureContent": "Paraksta saturs", + "signatureContentPlaceholder": "Izveidojiet savu parakstu ar formatējumu, saitēm un attēliem.", + "signaturePreview": "Paraksta priekšskatījums", + "signatureSaved": "Paraksts veiksmīgi saglabāts", + "signaturePreviewDescription": "Šādi jūsu paraksts izskatīsies e-pastos.", + "editorType": "Redaktora veids", + "editorTypeDescription": "Izvēlieties starp vienkāršu tekstu/HTML ievadi vai bagātinātu teksta redaktoru jūsu parakstam.", + "plainText": "Vienkāršs teksts / HTML", + "richText": "Bagātināts teksta redaktors", + "richTextDescription": "Izmantojiet bagātinātu teksta redaktoru, lai formatētu savu parakstu.", + "richTextPlaceholder": "Formatējiet savu parakstu ar bagātinātu teksta redaktoru...", + "signatureContentHelp": "Varat izmantot HTML, lai pievienotu formatējumu, saites un attēlus savam parakstam." }, "shortcuts": { "title": "Tastatūras īsceļi", @@ -399,36 +399,36 @@ "createEmail": { "body": "Saturs", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "Pielikumi", + "addMore": "Pievienot vēl", "dropFilesToAttach": "Ievelciet failus, lai pievienotu", "writeYourMessageHere": "Raksti savu ziņu šeit...", "emailSentSuccessfully": "E-pasts veiksmīgi nosūtīts", "failedToSendEmail": "Neizdevās nosūtīt e-pastu. Lūdzu, mēģiniet vēlreiz.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "Paraksts", + "include": "Iekļaut parakstu", + "remove": "Noņemt parakstu", + "enable": "Ieslēgt parakstu", + "disable": "Izslēgt parakstu", + "add": "Pievienot parakstu" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "Pievienot saiti", + "addUrlToCreateALink": "Pievienojiet URL, lai izveidotu saiti. Saite atvērsies jaunā cilnē.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "Virsraksts 1", + "heading2": "Virsraksts 2", + "heading3": "Virsraksts 3", + "bold": "Treknraksts", + "italic": "Slīpraksts", + "strikethrough": "Pārsvītrojums", + "underline": "Pasvītrojums", + "link": "Saite", + "bulletList": "Aizzīmju saraksts", + "orderedList": "Numurēts saraksts", + "viewAttachments": "Skatīt pielikumus", + "attachFiles": "Pievienot failus" } } } diff --git a/apps/mail/locales/pl.json b/apps/mail/locales/pl.json index 9748cb95c4..d5bd615e36 100644 --- a/apps/mail/locales/pl.json +++ b/apps/mail/locales/pl.json @@ -1,269 +1,269 @@ { "common": { "actions": { - "logout": "Logout", - "back": "Back", - "create": "Create Email", - "saveChanges": "Save changes", - "saving": "Saving...", - "resetToDefaults": "Reset to Defaults", - "close": "Close", - "signingOut": "Signing out...", - "signedOutSuccess": "Signed out successfully!", - "signOutError": "Error signing out", - "refresh": "Refresh", - "loading": "Loading...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "logout": "Wyloguj", + "back": "Wstecz", + "create": "Utwórz e-mail", + "saveChanges": "Zapisz zmiany", + "saving": "Zapisywanie...", + "resetToDefaults": "Przywróć ustawienia domyślne", + "close": "Zamknij", + "signingOut": "Wylogowywanie...", + "signedOutSuccess": "Wylogowano pomyślnie!", + "signOutError": "Błąd wylogowania", + "refresh": "Odśwież", + "loading": "Ładowanie...", + "featureNotImplemented": "Ta funkcja nie jest jeszcze zaimplementowana", + "moving": "Przenoszenie...", + "movedToInbox": "Przeniesiono do skrzynki odbiorczej", + "movingToInbox": "Przenoszenie do skrzynki odbiorczej...", + "movedToSpam": "Przeniesiono do spamu", + "movingToSpam": "Przenoszenie do spamu...", + "archiving": "Archiwizowanie...", + "archived": "Zarchiwizowano", + "failedToMove": "Nie udało się przenieść wiadomości", + "addingToFavorites": "Dodawanie do ulubionych...", + "removingFromFavorites": "Usuwanie z ulubionych...", + "addedToFavorites": "Dodano do ulubionych", + "removedFromFavorites": "Usunięto z ulubionych", + "failedToAddToFavorites": "Nie udało się dodać do ulubionych", + "failedToRemoveFromFavorites": "Nie udało się usunąć z ulubionych", + "failedToModifyFavorites": "Nie udało się zmodyfikować ulubionych", + "movingToBin": "Przenoszenie do kosza...", + "movedToBin": "Przeniesiono do kosza", + "failedToMoveToBin": "Nie udało się przenieść do kosza", + "markingAsRead": "Oznaczanie jako przeczytane...", + "markingAsUnread": "Oznaczanie jako nieprzeczytane...", + "hiddenImagesWarning": "Obrazy są domyślnie ukryte ze względów bezpieczeństwa.", + "showImages": "Pokaż obrazy", + "disableImages": "Ukryj obrazy", + "trustSender": "Zaufaj nadawcy", + "cancel": "Anuluj", + "save": "Zapisz", + "remove": "Usuń" }, "themes": { - "dark": "Dark", - "light": "Light", - "system": "System" + "dark": "Ciemny", + "light": "Jasny", + "system": "Systemowy" }, "commandPalette": { - "title": "Command Palette", - "description": "Quick navigation and actions for Mail-0", - "placeholder": "Type a command or search...", - "noResults": "No results found", + "title": "Paleta poleceń", + "description": "Szybka nawigacja i akcje dla Mail-0", + "placeholder": "Wpisz polecenie lub szukaj...", + "noResults": "Nie znaleziono wyników", "groups": { - "mail": "Mail", - "settings": "Settings", - "actions": "Actions", - "help": "Help", - "navigation": "Navigation" + "mail": "Poczta", + "settings": "Ustawienia", + "actions": "Akcje", + "help": "Pomoc", + "navigation": "Nawigacja" }, "commands": { - "goToInbox": "Go to Inbox", - "goToDrafts": "Go to Drafts", - "goToSent": "Go to Sent", - "goToSpam": "Go to Spam", - "goToArchive": "Go to Archive", - "goToBin": "Go to Bin", - "goToSettings": "Go to Settings", - "newEmail": "New Email", - "composeMessage": "Compose message", - "searchEmails": "Search Emails", - "toggleTheme": "Toggle Theme", - "backToMail": "Back to Mail", - "goToDocs": "Go to docs", - "helpWithShortcuts": "Help with shortcuts" + "goToInbox": "Przejdź do skrzynki odbiorczej", + "goToDrafts": "Przejdź do wersji roboczych", + "goToSent": "Przejdź do wysłanych", + "goToSpam": "Przejdź do spamu", + "goToArchive": "Przejdź do archiwum", + "goToBin": "Przejdź do kosza", + "goToSettings": "Przejdź do ustawień", + "newEmail": "Nowy e-mail", + "composeMessage": "Utwórz wiadomość", + "searchEmails": "Szukaj e-maili", + "toggleTheme": "Przełącz motyw", + "backToMail": "Powrót do poczty", + "goToDocs": "Przejdź do dokumentacji", + "helpWithShortcuts": "Pomoc ze skrótami" } }, "searchBar": { - "pickDateRange": "Pick a date or a range", - "search": "Search", - "clearSearch": "Clear search", - "advancedSearch": "Advanced search", - "quickFilters": "Quick filters", - "searchIn": "Search in", - "recipient": "Recipient", - "sender": "Sender", - "subject": "Subject", - "dateRange": "Date range", - "category": "Category", + "pickDateRange": "Wybierz datę lub zakres", + "search": "Szukaj", + "clearSearch": "Wyczyść wyszukiwanie", + "advancedSearch": "Wyszukiwanie zaawansowane", + "quickFilters": "Szybkie filtry", + "searchIn": "Szukaj w", + "recipient": "Odbiorca", + "sender": "Nadawca", + "subject": "Temat", + "dateRange": "Zakres dat", + "category": "Kategoria", "folder": "Folder", - "allMail": "All Mail", - "unread": "Unread", - "hasAttachment": "Has Attachment", - "starred": "Starred", - "applyFilters": "Apply filters", - "reset": "Reset", - "searching": "Searching...", - "aiSuggestions": "AI Suggestions", - "aiSearching": "AI is searching...", - "aiSearchError": "AI search failed. Please try again.", - "aiNoResults": "No AI suggestions found", - "aiEnhancedQuery": "Enhanced search query" + "allMail": "Wszystkie wiadomości", + "unread": "Nieprzeczytane", + "hasAttachment": "Z załącznikiem", + "starred": "Oznaczone gwiazdką", + "applyFilters": "Zastosuj filtry", + "reset": "Resetuj", + "searching": "Wyszukiwanie...", + "aiSuggestions": "Sugestie AI", + "aiSearching": "AI wyszukuje...", + "aiSearchError": "Wyszukiwanie AI nie powiodło się. Spróbuj ponownie.", + "aiNoResults": "Nie znaleziono sugestii AI", + "aiEnhancedQuery": "Ulepszone zapytanie wyszukiwania" }, "navUser": { - "customerSupport": "Community", - "documentation": "Documentation", - "appTheme": "App Theme", - "accounts": "Accounts", - "signIn": "Sign in" + "customerSupport": "Społeczność", + "documentation": "Dokumentacja", + "appTheme": "Motyw aplikacji", + "accounts": "Konta", + "signIn": "Zaloguj się" }, "mailCategories": { - "primary": "Primary", - "allMail": "All Mail", - "important": "Important", - "personal": "Personal", - "updates": "Updates", - "promotions": "Promotions", - "social": "Social" + "primary": "Główne", + "allMail": "Wszystkie wiadomości", + "important": "Ważne", + "personal": "Osobiste", + "updates": "Aktualizacje", + "promotions": "Promocje", + "social": "Społecznościowe" }, "replyCompose": { - "replyTo": "Reply to", - "thisEmail": "this email", - "dropFiles": "Drop files to attach", - "attachments": "Attachments", - "attachmentCount": "{count, plural, =0 {attachments} one {attachment} other {attachments}}", - "fileCount": "{count, plural, =0 {files} one {file} other {files}}", - "saveDraft": "Save draft", - "send": "Send", - "forward": "Forward" + "replyTo": "Odpowiedz do", + "thisEmail": "ten email", + "dropFiles": "Upuść pliki, aby załączyć", + "attachments": "Załączniki", + "attachmentCount": "{count, plural, =0 {załączników} one {załącznik} few {załączniki} many {załączników} other {załączników}}", + "fileCount": "{count, plural, =0 {plików} one {plik} few {pliki} many {plików} other {plików}}", + "saveDraft": "Zapisz wersję roboczą", + "send": "Wyślij", + "forward": "Przekaż dalej" }, "mailDisplay": { - "details": "Details", - "from": "From", - "to": "To", - "cc": "Cc", - "date": "Date", - "mailedBy": "Mailed-By", - "signedBy": "Signed-By", - "security": "Security", - "standardEncryption": "Standard encryption (TLS)", - "loadingMailContent": "Loading mail content...", - "unsubscribe": "Unsubscribe", - "unsubscribed": "Unsubscribed", - "unsubscribeDescription": "Are you sure you want to unsubscribe from this mailing list?", - "unsubscribeOpenSiteDescription": "To stop getting messages from this mailing list, go to their website to unsubscribe.", - "cancel": "Cancel", - "goToWebsite": "Go to website", - "failedToUnsubscribe": "Failed to unsubscribe from mailing list" + "details": "Szczegóły", + "from": "Od", + "to": "Do", + "cc": "Dw", + "date": "Data", + "mailedBy": "Wysłane przez", + "signedBy": "Podpisane przez", + "security": "Bezpieczeństwo", + "standardEncryption": "Standardowe szyfrowanie (TLS)", + "loadingMailContent": "Ładowanie treści wiadomości...", + "unsubscribe": "Wypisz się", + "unsubscribed": "Wypisano", + "unsubscribeDescription": "Czy na pewno chcesz wypisać się z tej listy mailingowej?", + "unsubscribeOpenSiteDescription": "Aby przestać otrzymywać wiadomości z tej listy mailingowej, przejdź na ich stronę internetową, aby się wypisać.", + "cancel": "Anuluj", + "goToWebsite": "Przejdź do strony", + "failedToUnsubscribe": "Nie udało się wypisać z listy mailingowej" }, "threadDisplay": { - "exitFullscreen": "Exit fullscreen", - "enterFullscreen": "Enter fullscreen", - "archive": "Archive", - "reply": "Reply", - "moreOptions": "More options", - "moveToSpam": "Move to Spam", - "replyAll": "Reply all", - "forward": "Forward", - "markAsUnread": "Mark as Unread", - "markAsRead": "Mark as Read", - "addLabel": "Add label", - "muteThread": "Mute thread", - "favourites": "Favourites", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "exitFullscreen": "Wyjdź z pełnego ekranu", + "enterFullscreen": "Pełny ekran", + "archive": "Archiwizuj", + "reply": "Odpowiedz", + "moreOptions": "Więcej opcji", + "moveToSpam": "Przenieś do spamu", + "replyAll": "Odpowiedz wszystkim", + "forward": "Przekaż dalej", + "markAsUnread": "Oznacz jako nieprzeczytane", + "markAsRead": "Oznacz jako przeczytane", + "addLabel": "Dodaj etykietę", + "muteThread": "Wycisz wątek", + "favourites": "Ulubione", + "disableImages": "Ukryj obrazy", + "enableImages": "Pokaż obrazy" }, "notes": { - "title": "Notes", - "empty": "No notes for this email", - "emptyDescription": "Add notes to keep track of important information or follow-ups.", - "addNote": "Add a note", - "addYourNote": "Add your note here...", - "editNote": "Edit note", - "deleteNote": "Delete note", - "deleteConfirm": "Are you sure you want to delete this note?", - "deleteConfirmDescription": "This action cannot be undone.", - "cancel": "Cancel", - "delete": "Delete", - "save": "Save note", - "toSave": "to save", - "label": "Label:", - "search": "Search notes...", - "noteCount": "{count, plural, =0 {Add notes} one {# note} other {# notes}}", - "notePinned": "Note pinned", - "noteUnpinned": "Note unpinned", - "colorChanged": "Note color updated", - "noteUpdated": "Note updated", - "noteDeleted": "Note deleted", - "noteCopied": "Copied to clipboard", - "noteAdded": "Note added", - "notesReordered": "Notes reordered", - "noMatchingNotes": "No notes matching \"{query}\"", - "clearSearch": "Clear search", - "pinnedNotes": "Pinned notes", - "otherNotes": "Other notes", - "created": "Created", - "updated": "Updated", + "title": "Notatki", + "empty": "Brak notatek dla tego e-maila", + "emptyDescription": "Dodaj notatki, aby śledzić ważne informacje lub zadania do wykonania.", + "addNote": "Dodaj notatkę", + "addYourNote": "Dodaj swoją notatkę tutaj...", + "editNote": "Edytuj notatkę", + "deleteNote": "Usuń notatkę", + "deleteConfirm": "Czy na pewno chcesz usunąć tę notatkę?", + "deleteConfirmDescription": "Tej operacji nie można cofnąć.", + "cancel": "Anuluj", + "delete": "Usuń", + "save": "Zapisz notatkę", + "toSave": "aby zapisać", + "label": "Etykieta:", + "search": "Szukaj notatek...", + "noteCount": "{count, plural, =0 {Dodaj notatki} one {# notatka} few {# notatki} many {# notatek} other {# notatek}}", + "notePinned": "Notatka przypięta", + "noteUnpinned": "Notatka odpięta", + "colorChanged": "Kolor notatki zaktualizowany", + "noteUpdated": "Notatka zaktualizowana", + "noteDeleted": "Notatka usunięta", + "noteCopied": "Skopiowano do schowka", + "noteAdded": "Notatka dodana", + "notesReordered": "Notatki przesortowane", + "noMatchingNotes": "Brak notatek pasujących do \"{query}\"", + "clearSearch": "Wyczyść wyszukiwanie", + "pinnedNotes": "Przypięte notatki", + "otherNotes": "Inne notatki", + "created": "Utworzono", + "updated": "Zaktualizowano", "errors": { - "failedToLoadNotes": "Failed to load notes", - "failedToLoadThreadNotes": "Failed to load thread notes", - "failedToAddNote": "Failed to add note", - "failedToUpdateNote": "Failed to update note", - "failedToDeleteNote": "Failed to delete note", - "failedToUpdateNoteColor": "Failed to update note color", - "noValidNotesToReorder": "No valid notes to reorder", - "failedToReorderNotes": "Failed to reorder notes" + "failedToLoadNotes": "Nie udało się załadować notatek", + "failedToLoadThreadNotes": "Nie udało się załadować notatek wątku", + "failedToAddNote": "Nie udało się dodać notatki", + "failedToUpdateNote": "Nie udało się zaktualizować notatki", + "failedToDeleteNote": "Nie udało się usunąć notatki", + "failedToUpdateNoteColor": "Nie udało się zaktualizować koloru notatki", + "noValidNotesToReorder": "Brak prawidłowych notatek do zmiany kolejności", + "failedToReorderNotes": "Nie udało się zmienić kolejności notatek" }, "colors": { - "default": "Default", - "red": "Red", - "orange": "Orange", - "yellow": "Yellow", - "green": "Green", - "blue": "Blue", - "purple": "Purple", - "pink": "Pink" + "default": "Domyślny", + "red": "Czerwony", + "orange": "Pomarańczowy", + "yellow": "Żółty", + "green": "Zielony", + "blue": "Niebieski", + "purple": "Fioletowy", + "pink": "Różowy" }, "actions": { - "pin": "Pin note", - "unpin": "Unpin note", - "edit": "Edit note", - "delete": "Delete note", - "copy": "Copy note", - "changeColor": "Change color" + "pin": "Przypnij notatkę", + "unpin": "Odepnij notatkę", + "edit": "Edytuj notatkę", + "delete": "Usuń notatkę", + "copy": "Kopiuj notatkę", + "changeColor": "Zmień kolor" } }, "settings": { - "notFound": "Settings not found", - "saved": "Settings saved", - "failedToSave": "Failed to save settings", - "languageChanged": "Language changed to {locale}" + "notFound": "Nie znaleziono ustawień", + "saved": "Ustawienia zapisane", + "failedToSave": "Nie udało się zapisać ustawień", + "languageChanged": "Język zmieniony na {locale}" }, "mail": { - "replies": "{count, plural, =0 {replies} one {# reply} other {# replies}}", - "deselectAll": "Deselected all emails", - "selectedEmails": "Selected {count} emails", - "noEmailsToSelect": "No emails to select", - "markedAsRead": "Marked as read", - "markedAsUnread": "Marked as unread", - "failedToMarkAsRead": "Failed to mark as read", - "failedToMarkAsUnread": "Failed to mark as unread", - "selected": "{count} selected", - "clearSelection": "Clear Selection", - "mute": "Mute", - "moveToSpam": "Move to Spam", - "moveToInbox": "Move to Inbox", - "unarchive": "Unarchive", - "archive": "Archive", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", - "markAsUnread": "Mark as Unread", - "markAsRead": "Mark as Read", - "addFavorite": "Favorite", - "removeFavorite": "Unfavorite", - "muteThread": "Mute Thread", - "moving": "Moving...", - "moved": "Moved", - "errorMoving": "Error moving", - "reply": "Reply", - "replyAll": "Reply All", - "forward": "Forward", - "labels": "Labels", - "createNewLabel": "Create New Label", - "noLabelsAvailable": "No labels available", - "loadMore": "Load more" + "replies": "{count, plural, =0 {odpowiedzi} one {# odpowiedź} few {# odpowiedzi} many {# odpowiedzi} other {# odpowiedzi}}", + "deselectAll": "Odznaczono wszystkie e-maile", + "selectedEmails": "Zaznaczono {count} e-maili", + "noEmailsToSelect": "Brak e-maili do zaznaczenia", + "markedAsRead": "Oznaczono jako przeczytane", + "markedAsUnread": "Oznaczono jako nieprzeczytane", + "failedToMarkAsRead": "Nie udało się oznaczyć jako przeczytane", + "failedToMarkAsUnread": "Nie udało się oznaczyć jako nieprzeczytane", + "selected": "Wybrano: {count}", + "clearSelection": "Wyczyść zaznaczenie", + "mute": "Wycisz", + "moveToSpam": "Przenieś do spamu", + "moveToInbox": "Przenieś do skrzynki odbiorczej", + "unarchive": "Przywróć z archiwum", + "archive": "Archiwizuj", + "moveToBin": "Przenieś do kosza", + "restoreFromBin": "Przywróć z kosza", + "markAsUnread": "Oznacz jako nieprzeczytane", + "markAsRead": "Oznacz jako przeczytane", + "addFavorite": "Dodaj do ulubionych", + "removeFavorite": "Usuń z ulubionych", + "muteThread": "Wycisz wątek", + "moving": "Przenoszenie...", + "moved": "Przeniesiono", + "errorMoving": "Błąd podczas przenoszenia", + "reply": "Odpowiedz", + "replyAll": "Odpowiedz wszystkim", + "forward": "Przekaż dalej", + "labels": "Etykiety", + "createNewLabel": "Utwórz nową etykietę", + "noLabelsAvailable": "Brak dostępnych etykiet", + "loadMore": "Wczytaj więcej" }, "units": { "mb": "{amount} MB" @@ -271,164 +271,164 @@ }, "navigation": { "sidebar": { - "inbox": "Inbox", - "drafts": "Drafts", - "sent": "Sent", + "inbox": "Skrzynka odbiorcza", + "drafts": "Wersje robocze", + "sent": "Wysłane", "spam": "Spam", - "archive": "Archive", - "bin": "Bin", - "feedback": "Feedback", - "settings": "Settings" + "archive": "Archiwum", + "bin": "Kosz", + "feedback": "Opinie", + "settings": "Ustawienia" }, "settings": { - "general": "General", - "connections": "Connections", - "security": "Security", - "appearance": "Appearance", - "signatures": "Signatures", - "shortcuts": "Shortcuts" + "general": "Ogólne", + "connections": "Połączenia", + "security": "Bezpieczeństwo", + "appearance": "Wygląd", + "signatures": "Podpisy", + "shortcuts": "Skróty" } }, "pages": { "error": { "notFound": { - "title": "Page Not Found", - "description": "Oops! The page you're looking for doesn't exist or has been moved.", - "goBack": "Go Back" + "title": "Nie znaleziono strony", + "description": "Ups! Strona, której szukasz, nie istnieje lub została przeniesiona.", + "goBack": "Wróć" }, - "settingsNotFound": "404 - Settings page not found" + "settingsNotFound": "404 - Nie znaleziono strony ustawień" }, "settings": { "general": { - "title": "General", - "description": "Manage settings for your language and email display preferences.", - "language": "Language", - "selectLanguage": "Select a language", - "timezone": "Timezone", - "selectTimezone": "Select a timezone", - "dynamicContent": "Dynamic Content", - "dynamicContentDescription": "Allow emails to display dynamic content.", - "externalImages": "Display External Images", - "externalImagesDescription": "Allow emails to display images from external sources.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", - "languageChangedTo": "Language changed to {locale}", - "customPrompt": "Custom AI Prompt", - "customPromptPlaceholder": "Enter your custom prompt for the AI...", - "customPromptDescription": "Customize how the AI writes your email replies. This will be added to the base prompt." + "title": "Ogólne", + "description": "Zarządzaj ustawieniami języka i preferencjami wyświetlania wiadomości.", + "language": "Język", + "selectLanguage": "Wybierz język", + "timezone": "Strefa czasowa", + "selectTimezone": "Wybierz strefę czasową", + "dynamicContent": "Dynamiczna zawartość", + "dynamicContentDescription": "Zezwalaj na wyświetlanie dynamicznej zawartości w e-mailach.", + "externalImages": "Wyświetlaj obrazy zewnętrzne", + "externalImagesDescription": "Zezwalaj na wyświetlanie obrazów z zewnętrznych źródeł w e-mailach.", + "trustedSenders": "Zaufani nadawcy", + "trustedSendersDescription": "Zawsze wyświetlaj obrazy od tych nadawców.", + "languageChangedTo": "Język zmieniony na {locale}", + "customPrompt": "Niestandardowe polecenie dla AI", + "customPromptPlaceholder": "Wprowadź własne polecenie dla AI...", + "customPromptDescription": "Dostosuj sposób, w jaki AI pisze odpowiedzi na Twoje e-maile. Zostanie to dodane do podstawowego polecenia." }, "connections": { - "title": "Email Connections", - "description": "Connect your email accounts to Zero.", - "disconnectTitle": "Disconnect Email Account", - "disconnectDescription": "Are you sure you want to disconnect this email?", - "cancel": "Cancel", - "remove": "Remove", - "disconnectSuccess": "Account disconnected successfully", - "disconnectError": "Failed to disconnect account", - "addEmail": "Add Connection", - "connectEmail": "Connect Email", - "connectEmailDescription": "Select an email provider to connect", - "moreComingSoon": "More coming soon" + "title": "Połączenia e-mail", + "description": "Połącz swoje konta e-mail z Zero.", + "disconnectTitle": "Odłącz konto e-mail", + "disconnectDescription": "Czy na pewno chcesz odłączyć ten e-mail?", + "cancel": "Anuluj", + "remove": "Usuń", + "disconnectSuccess": "Konto zostało pomyślnie odłączone", + "disconnectError": "Nie udało się odłączyć konta", + "addEmail": "Dodaj połączenie", + "connectEmail": "Połącz e-mail", + "connectEmailDescription": "Wybierz dostawcę e-mail, aby się połączyć", + "moreComingSoon": "Więcej wkrótce" }, "security": { - "title": "Security", - "description": "Manage your security preferences and account protection.", - "twoFactorAuth": "Two-Factor Authentication", - "twoFactorAuthDescription": "Add an extra layer of security to your account", - "loginNotifications": "Login Notifications", - "loginNotificationsDescription": "Get notified about new login attempts", - "deleteAccount": "Delete Account", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "title": "Bezpieczeństwo", + "description": "Zarządzaj swoimi preferencjami bezpieczeństwa i ochroną konta.", + "twoFactorAuth": "Uwierzytelnianie dwuskładnikowe", + "twoFactorAuthDescription": "Dodaj dodatkową warstwę zabezpieczeń do swojego konta", + "loginNotifications": "Powiadomienia o logowaniu", + "loginNotificationsDescription": "Otrzymuj powiadomienia o nowych próbach logowania", + "deleteAccount": "Usuń konto", + "loadImagesDefault": "Domyślne wczytywanie obrazów", + "loadImagesDefaultDescription": "Obrazy nie są domyślnie wczytywane ze względów bezpieczeństwa." }, "appearance": { - "title": "Appearance", - "description": "Customize colors, fonts and view options.", - "theme": "Theme", - "inboxType": "Inbox Type" + "title": "Wygląd", + "description": "Dostosuj kolory, czcionki i opcje widoku.", + "theme": "Motyw", + "inboxType": "Typ skrzynki odbiorczej" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "Podpisy e-mail", + "description": "Twórz i zarządzaj swoim podpisem e-mail, który pojawia się na końcu twoich wiadomości.", + "enableSignature": "Włącz podpis", + "enableSignatureDescription": "Dodaj swój podpis na końcu wszystkich wychodzących wiadomości.", + "includeByDefault": "Dołączaj domyślnie", + "includeByDefaultDescription": "Automatycznie dodawaj swój podpis podczas tworzenia nowych e-maili.", + "signatureContent": "Treść podpisu", + "signatureContentPlaceholder": "Utwórz swój podpis z formatowaniem, linkami i obrazami.", + "signaturePreview": "Podgląd podpisu", + "signatureSaved": "Podpis został pomyślnie zapisany", + "signaturePreviewDescription": "Tak będzie wyglądał twój podpis w e-mailach.", + "editorType": "Typ edytora", + "editorTypeDescription": "Wybierz między zwykłym tekstem/HTML a edytorem tekstu sformatowanego dla swojego podpisu.", + "plainText": "Zwykły tekst / HTML", + "richText": "Edytor tekstu sformatowanego", + "richTextDescription": "Użyj edytora tekstu sformatowanego, aby sformatować swoją sygnaturę.", + "richTextPlaceholder": "Sformatuj swoją sygnaturę za pomocą edytora tekstu sformatowanego...", + "signatureContentHelp": "Możesz użyć HTML, aby dodać formatowanie, linki i obrazy do swojej sygnatury." }, "shortcuts": { - "title": "Keyboard Shortcuts", - "description": "View and customize keyboard shortcuts for quick actions.", + "title": "Skróty klawiaturowe", + "description": "Przeglądaj i dostosowuj skróty klawiaturowe dla szybkich działań.", "actions": { - "newEmail": "New Email", - "sendEmail": "Send Email", - "reply": "Reply", - "replyAll": "Reply All", - "forward": "Forward", - "drafts": "Drafts", - "inbox": "Inbox", - "sentMail": "Sent Mail", - "delete": "Delete", - "search": "Search", - "markAsUnread": "Mark as Unread", - "muteThread": "Mute Thread", - "printEmail": "Print Email", - "archiveEmail": "Archive Email", - "markAsSpam": "Mark as Spam", - "moveToFolder": "Move to Folder", - "undoLastAction": "Undo Last Action", - "viewEmailDetails": "View Email Details", - "goToDrafts": "Go to Drafts", - "expandEmailView": "Expand Email View", - "helpWithShortcuts": "Help with shortcuts" + "newEmail": "Nowy e-mail", + "sendEmail": "Wyślij e-mail", + "reply": "Odpowiedz", + "replyAll": "Odpowiedz wszystkim", + "forward": "Przekaż dalej", + "drafts": "Wersje robocze", + "inbox": "Skrzynka odbiorcza", + "sentMail": "Wysłane", + "delete": "Usuń", + "search": "Szukaj", + "markAsUnread": "Oznacz jako nieprzeczytane", + "muteThread": "Wycisz wątek", + "printEmail": "Drukuj e-mail", + "archiveEmail": "Archiwizuj e-mail", + "markAsSpam": "Oznacz jako spam", + "moveToFolder": "Przenieś do folderu", + "undoLastAction": "Cofnij ostatnią akcję", + "viewEmailDetails": "Zobacz szczegóły e-maila", + "goToDrafts": "Przejdź do wersji roboczych", + "expandEmailView": "Rozwiń widok e-maila", + "helpWithShortcuts": "Pomoc ze skrótami" } } }, "createEmail": { - "body": "Body", + "body": "Treść", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", - "dropFilesToAttach": "Drop files to attach", - "writeYourMessageHere": "Write your message here...", - "emailSentSuccessfully": "Email sent successfully", - "failedToSendEmail": "Failed to send email. Please try again.", + "attachments": "Załączniki ({count})", + "addMore": "Dodaj więcej", + "dropFilesToAttach": "Upuść pliki, aby załączyć", + "writeYourMessageHere": "Napisz swoją wiadomość tutaj...", + "emailSentSuccessfully": "E-mail wysłany pomyślnie", + "failedToSendEmail": "Nie udało się wysłać e-maila. Spróbuj ponownie.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "Podpis", + "include": "Dołącz podpis", + "remove": "Usuń podpis", + "enable": "Włącz podpis", + "disable": "Wyłącz podpis", + "add": "Dodaj podpis" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "Dodaj link", + "addUrlToCreateALink": "Dodaj URL, aby utworzyć link. Link otworzy się w nowej karcie.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", + "heading1": "Nagłówek 1", + "heading2": "Nagłówek 2", + "heading3": "Nagłówek 3", + "bold": "Pogrubienie", + "italic": "Kursywa", + "strikethrough": "Przekreślenie", + "underline": "Podkreślenie", "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "bulletList": "Lista punktowana", + "orderedList": "Lista numerowana", + "viewAttachments": "Zobacz załączniki", + "attachFiles": "Załącz pliki" } } } diff --git a/apps/mail/locales/pt.json b/apps/mail/locales/pt.json index 0a3112582d..eabcf03bcb 100644 --- a/apps/mail/locales/pt.json +++ b/apps/mail/locales/pt.json @@ -11,36 +11,36 @@ "signingOut": "Saindo...", "signedOutSuccess": "Sessão terminada com sucesso!", "signOutError": "Erro ao sair", - "refresh": "Refresh", - "loading": "Loading...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "refresh": "Atualizar", + "loading": "Carregando...", + "featureNotImplemented": "Este recurso ainda não foi implementado", + "moving": "Movendo...", + "movedToInbox": "Movido para a caixa de entrada", + "movingToInbox": "Movendo para a caixa de entrada...", + "movedToSpam": "Movido para spam", + "movingToSpam": "Movendo para spam...", + "archiving": "Arquivando...", + "archived": "Arquivado", + "failedToMove": "Falha ao mover mensagem", + "addingToFavorites": "Adicionando aos favoritos...", + "removingFromFavorites": "Removendo dos favoritos...", + "addedToFavorites": "Adicionado aos favoritos", + "removedFromFavorites": "Removido dos favoritos", + "failedToAddToFavorites": "Falha ao adicionar aos favoritos", + "failedToRemoveFromFavorites": "Falha ao remover dos favoritos", + "failedToModifyFavorites": "Falha ao modificar favoritos", + "movingToBin": "Movendo para a lixeira...", + "movedToBin": "Movido para a lixeira", + "failedToMoveToBin": "Falha ao mover para a lixeira", + "markingAsRead": "Marcando como lido...", + "markingAsUnread": "Marcando como não lido...", + "hiddenImagesWarning": "As imagens estão ocultas por padrão por motivos de segurança.", + "showImages": "Mostrar imagens", + "disableImages": "Ocultar imagens", + "trustSender": "Confiar no remetente", + "cancel": "Cancelar", + "save": "Salvar", + "remove": "Remover" }, "themes": { "dark": "Escuro", @@ -95,15 +95,15 @@ "starred": "Favoritos", "applyFilters": "Aplicar filtros", "reset": "Limpar", - "searching": "Searching...", - "aiSuggestions": "AI Suggestions", - "aiSearching": "AI is searching...", - "aiSearchError": "AI search failed. Please try again.", - "aiNoResults": "No AI suggestions found", - "aiEnhancedQuery": "Enhanced search query" + "searching": "Pesquisando...", + "aiSuggestions": "Sugestões de IA", + "aiSearching": "IA está pesquisando...", + "aiSearchError": "Pesquisa de IA falhou. Por favor, tente novamente.", + "aiNoResults": "Nenhuma sugestão de IA encontrada", + "aiEnhancedQuery": "Consulta de pesquisa aprimorada" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "Comunidade", "documentation": "Documentação", "appTheme": "Tema da aplicação", "accounts": "Contas", @@ -111,7 +111,7 @@ }, "mailCategories": { "primary": "Principal", - "allMail": "All Mail", + "allMail": "Todos os E-mails", "important": "Importante", "personal": "Pessoal", "updates": "Atualizações", @@ -127,7 +127,7 @@ "fileCount": "{count, plural, =0 {arquivos} one {arquivo} other {arquivos}}", "saveDraft": "Salvar rascunho", "send": "Enviar", - "forward": "Forward" + "forward": "Encaminhar" }, "mailDisplay": { "details": "Detalhes", @@ -154,16 +154,16 @@ "archive": "Arquivar", "reply": "Responder", "moreOptions": "Mais opções", - "moveToSpam": "Move to Spam", + "moveToSpam": "Mover para Spam", "replyAll": "Responder a todos", "forward": "Encaminhar", - "markAsUnread": "Mark as Unread", - "markAsRead": "Mark as Read", + "markAsUnread": "Marcar como Não Lido", + "markAsRead": "Marcar como Lido", "addLabel": "Adicionar marcador", "muteThread": "Silenciar esta conversa", - "favourites": "Favourites", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "favourites": "Favoritos", + "disableImages": "Ocultar Imagens", + "enableImages": "Mostrar Imagens" }, "notes": { "title": "Notas", @@ -226,10 +226,10 @@ } }, "settings": { - "notFound": "Settings not found", - "saved": "Settings saved", - "failedToSave": "Failed to save settings", - "languageChanged": "Language changed to {locale}" + "notFound": "Configurações não encontradas", + "saved": "Configurações salvas", + "failedToSave": "Falha ao salvar configurações", + "languageChanged": "Idioma alterado para {locale}" }, "mail": { "replies": "{count, plural, =0 {arquivos} one {arquivo} other {arquivos}}", @@ -247,23 +247,23 @@ "moveToInbox": "Mover para a caixa de entrada", "unarchive": "Desarquivar", "archive": "Arquivo", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", + "moveToBin": "Mover para a lixeira", + "restoreFromBin": "Restaurar da lixeira", "markAsUnread": "Marcar como não lido", - "markAsRead": "Mark as Read", - "addFavorite": "Favorite", - "removeFavorite": "Unfavorite", + "markAsRead": "Marcar como Lido", + "addFavorite": "Favoritar", + "removeFavorite": "Remover dos favoritos", "muteThread": "Silenciar esta conversa", "moving": "Movendo...", "moved": "Movido", "errorMoving": "Erro ao mover", - "reply": "Reply", - "replyAll": "Reply All", - "forward": "Forward", - "labels": "Labels", - "createNewLabel": "Create New Label", - "noLabelsAvailable": "No labels available", - "loadMore": "Load more" + "reply": "Responder", + "replyAll": "Responder a Todos", + "forward": "Encaminhar", + "labels": "Etiquetas", + "createNewLabel": "Criar nova etiqueta", + "noLabelsAvailable": "Nenhuma etiqueta disponível", + "loadMore": "Carregar mais" }, "units": { "mb": "{amount} MB" @@ -285,7 +285,7 @@ "connections": "Conexões", "security": "Segurança", "appearance": "Aparência", - "signatures": "Signatures", + "signatures": "Assinaturas", "shortcuts": "Atalhos" } }, @@ -303,19 +303,19 @@ "title": "Geral", "description": "Gerencie as configurações para suas preferências de idioma e de exibição.", "language": "Idioma", - "selectLanguage": "Select a language", + "selectLanguage": "Selecione um idioma", "timezone": "Fuso horário", - "selectTimezone": "Select a timezone", + "selectTimezone": "Selecione um fuso horário", "dynamicContent": "Conteúdo Dinâmico", "dynamicContentDescription": "Permitir que e-mails exibam conteúdo dinâmico.", "externalImages": "Exibir imagens externas", "externalImagesDescription": "Permitir que e-mails exibam imagens de fontes externas.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", - "languageChangedTo": "Language changed to {locale}", - "customPrompt": "Custom AI Prompt", - "customPromptPlaceholder": "Enter your custom prompt for the AI...", - "customPromptDescription": "Customize how the AI writes your email replies. This will be added to the base prompt." + "trustedSenders": "Remetentes confiáveis", + "trustedSendersDescription": "Sempre exibir imagens destes remetentes.", + "languageChangedTo": "Idioma alterado para {locale}", + "customPrompt": "Prompt personalizado de IA", + "customPromptPlaceholder": "Digite seu prompt personalizado para a IA...", + "customPromptDescription": "Personalize como a IA escreve suas respostas de email. Isto será adicionado ao prompt base." }, "connections": { "title": "Conexões de E-mail", @@ -339,8 +339,8 @@ "loginNotifications": "Notificações de Login", "loginNotificationsDescription": "Seja notificado sobre novas tentativas de login", "deleteAccount": "Deletar conta", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "Carregar imagens por padrão", + "loadImagesDefaultDescription": "As imagens não são carregadas por padrão por motivos de segurança." }, "appearance": { "title": "Aparência", @@ -349,24 +349,24 @@ "inboxType": "Tipo de Caixa de E-mail" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "Assinaturas de email", + "description": "Crie e gerencie sua assinatura de email que aparece no final das suas mensagens.", + "enableSignature": "Ativar assinatura", + "enableSignatureDescription": "Adicione sua assinatura ao final de todas as mensagens enviadas.", + "includeByDefault": "Incluir por padrão", + "includeByDefaultDescription": "Adicionar automaticamente sua assinatura ao compor novos emails.", + "signatureContent": "Conteúdo da assinatura", + "signatureContentPlaceholder": "Crie sua assinatura com formatação, links e imagens.", + "signaturePreview": "Pré-visualização da assinatura", + "signatureSaved": "Assinatura salva com sucesso", + "signaturePreviewDescription": "É assim que sua assinatura aparecerá nos emails.", + "editorType": "Tipo de editor", + "editorTypeDescription": "Escolha entre texto simples/HTML ou um editor de texto rico para sua assinatura.", + "plainText": "Texto simples / HTML", + "richText": "Editor de texto rico", + "richTextDescription": "Use o editor de texto rico para formatar sua assinatura.", + "richTextPlaceholder": "Formate sua assinatura com o editor de texto rico...", + "signatureContentHelp": "Você pode usar HTML para adicionar formatação, links e imagens à sua assinatura." }, "shortcuts": { "title": "Atalhos do Teclado", @@ -399,36 +399,36 @@ "createEmail": { "body": "Corpo", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "Anexos", + "addMore": "Adicionar mais", "dropFilesToAttach": "Arraste e solte arquivos para anexar", "writeYourMessageHere": "Escreva sua mensagem aqui...", "emailSentSuccessfully": "E-mail enviado com sucesso", "failedToSendEmail": "Não foi possível enviar o e-mail. Por favor, tente novamente.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "Assinatura", + "include": "Incluir assinatura", + "remove": "Remover assinatura", + "enable": "Ativar assinatura", + "disable": "Desativar assinatura", + "add": "Adicionar assinatura" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "Adicionar link", + "addUrlToCreateALink": "Adicione URL para criar um link. O link abrirá em uma nova aba.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", + "heading1": "Título 1", + "heading2": "Título 2", + "heading3": "Título 3", + "bold": "Negrito", + "italic": "Itálico", + "strikethrough": "Tachado", + "underline": "Sublinhado", "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "bulletList": "Lista com marcadores", + "orderedList": "Lista numerada", + "viewAttachments": "Ver anexos", + "attachFiles": "Anexar arquivos" } } } diff --git a/apps/mail/locales/ru.json b/apps/mail/locales/ru.json index d10859b9b5..188c44e26b 100644 --- a/apps/mail/locales/ru.json +++ b/apps/mail/locales/ru.json @@ -3,7 +3,7 @@ "actions": { "logout": "Выйти", "back": "Назад", - "create": "Написать письмо", + "create": "Создать Письмо", "saveChanges": "Сохранить изменения", "saving": "Сохранение...", "resetToDefaults": "Сбросить к значениям по умолчанию", @@ -18,7 +18,7 @@ "movedToInbox": "Перемещено во входящие", "movingToInbox": "Перемещение во входящие...", "movedToSpam": "Перемещено в спам", - "movingToSpam": "Перемещение в спам...", + "movingToSpam": "Перемещено во входящие", "archiving": "Архивация...", "archived": "В архиве", "failedToMove": "Не удалось переместить сообщение", @@ -29,18 +29,18 @@ "failedToAddToFavorites": "Не удалось добавить в избранное", "failedToRemoveFromFavorites": "Не удалось удалить из избранного", "failedToModifyFavorites": "Не удалось изменить избранные", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", + "movingToBin": "Перемещение в корзину...", + "movedToBin": "Перемещено в корзину", + "failedToMoveToBin": "Не удалось переместить в корзину", "markingAsRead": "Отмечается как прочитанное...", "markingAsUnread": "Отмечается как непрочитанное...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "hiddenImagesWarning": "Изображения скрыты по умолчанию в целях безопасности.", + "showImages": "Показать изображения", + "disableImages": "Скрыть изображения", + "trustSender": "Доверять отправителю", + "cancel": "Отменить", + "save": "Сохранить", + "remove": "Удалить" }, "themes": { "dark": "Тёмный", @@ -103,7 +103,7 @@ "aiEnhancedQuery": "Расширенный поиск" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "Сообщество", "documentation": "Документация", "appTheme": "Тема", "accounts": "Аккаунты", @@ -162,8 +162,8 @@ "addLabel": "Добавить ярлык", "muteThread": "Заглушить ветку", "favourites": "Избранное", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "disableImages": "Скрыть изображения", + "enableImages": "Показать изображения" }, "notes": { "title": "Заметки", @@ -243,12 +243,12 @@ "selected": "Выбрано {count}", "clearSelection": "Очистить выбор", "mute": "Заглушить", - "moveToSpam": "Переместить в Спам", + "moveToSpam": "Переместить в спам", "moveToInbox": "Переместить во Входящие", "unarchive": "Разархивировать", "archive": "Архивировать", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", + "moveToBin": "Переместить в корзину", + "restoreFromBin": "Восстановить из корзины", "markAsUnread": "Отметить как непрочитанное", "markAsRead": "Отметить как прочитанное", "addFavorite": "Избранное", @@ -266,7 +266,7 @@ "loadMore": "Загрузить ещё" }, "units": { - "mb": "{amount} MB" + "mb": "{amount} МБ" } }, "navigation": { @@ -285,7 +285,7 @@ "connections": "Подключения", "security": "Безопасность", "appearance": "Внешний вид", - "signatures": "Signatures", + "signatures": "Подписи", "shortcuts": "Команды" } }, @@ -300,7 +300,7 @@ }, "settings": { "general": { - "title": "Основные", + "title": "Общие", "description": "Управление настройками языка и отображения электронной почты.", "language": "Язык", "selectLanguage": "Выберите язык", @@ -310,8 +310,8 @@ "dynamicContentDescription": "Позволяет электронной почте отображать динамический контент.", "externalImages": "Отображать изображения из внешних источников", "externalImagesDescription": "Позволяет электронной почте отображать изображения из внешних источников.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", + "trustedSenders": "Доверенные отправители", + "trustedSendersDescription": "Всегда отображать изображения от этих отправителей.", "languageChangedTo": "Язык изменен на {locale}", "customPrompt": "Пользовательский ИИ Запрос", "customPromptPlaceholder": "Введите ваш запрос для ИИ...", @@ -339,8 +339,8 @@ "loginNotifications": "Уведомления о входе", "loginNotificationsDescription": "Получать уведомления о новых попытках входа", "deleteAccount": "Удалить аккаунт", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "Загружать изображения по умолчанию", + "loadImagesDefaultDescription": "Изображения не загружаются по умолчанию в целях безопасности." }, "appearance": { "title": "Внешний вид", @@ -349,24 +349,24 @@ "inboxType": "Тип почты" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "Подписи электронной почты", + "description": "Создавайте и управляйте подписью электронной почты, которая отображается внизу ваших сообщений.", + "enableSignature": "Включить подпись", + "enableSignatureDescription": "Добавлять подпись в конец всех исходящих сообщений.", + "includeByDefault": "Включать по умолчанию", + "includeByDefaultDescription": "Автоматически добавлять подпись при создании новых писем.", + "signatureContent": "Содержание подписи", + "signatureContentPlaceholder": "Создайте свою подпись с форматированием, ссылками и изображениями.", + "signaturePreview": "Предварительный просмотр подписи", + "signatureSaved": "Подпись успешно сохранена", + "signaturePreviewDescription": "Так будет выглядеть ваша подпись в письмах.", + "editorType": "Тип редактора", + "editorTypeDescription": "Выберите между вводом обычного текста/HTML или редактором форматированного текста для вашей подписи.", + "plainText": "Обычный текст / HTML", + "richText": "Редактор форматированного текста", + "richTextDescription": "Используйте редактор форматированного текста для оформления вашей подписи.", + "richTextPlaceholder": "Отформатируйте вашу подпись с помощью редактора форматированного текста...", + "signatureContentHelp": "Вы можете использовать HTML для добавления форматирования, ссылок и изображений в вашу подпись." }, "shortcuts": { "title": "Горячие клавиши", @@ -399,36 +399,36 @@ "createEmail": { "body": "Текст письма", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "Приложения", + "addMore": "Добавить ещё", "dropFilesToAttach": "Поместите файлы, чтобы прикрепить", "writeYourMessageHere": "Напишите свое сообщение здесь...", "emailSentSuccessfully": "Письмо отправлено успешно", "failedToSendEmail": "Не удалось отправить письмо. Попробуйте снова.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "Подпись", + "include": "Включить подпись", + "remove": "Удалить подпись", + "enable": "Включить подпись", + "disable": "Отключить подпись", + "add": "Добавить подпись" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "Добавить ссылку", + "addUrlToCreateALink": "Добавьте URL, чтобы создать ссылку. Ссылка откроется в новой вкладке.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "Заголовок 1", + "heading2": "Заголовок 2", + "heading3": "Заголовок 3", + "bold": "Жирный", + "italic": "Курсив", + "strikethrough": "Зачёркнутый", + "underline": "Подчёркнутый", + "link": "Ссылка", + "bulletList": "Маркированный список", + "orderedList": "Нумерованный список", + "viewAttachments": "Просмотр вложений", + "attachFiles": "Прикрепить файлы" } } } diff --git a/apps/mail/locales/tr.json b/apps/mail/locales/tr.json index cedfc5f85b..ebd0955b30 100644 --- a/apps/mail/locales/tr.json +++ b/apps/mail/locales/tr.json @@ -11,36 +11,36 @@ "signingOut": "Çıkış yapılıyor...", "signedOutSuccess": "Çıkış yapıldı!", "signOutError": "Çıkış yapılırken hata oluştu", - "refresh": "Refresh", - "loading": "Loading...", - "featureNotImplemented": "This feature is not implemented yet", - "moving": "Moving...", - "movedToInbox": "Moved to inbox", - "movingToInbox": "Moving to inbox...", - "movedToSpam": "Moved to spam", - "movingToSpam": "Moving to spam...", - "archiving": "Archiving...", - "archived": "Archived", - "failedToMove": "Failed to move message", - "addingToFavorites": "Adding to favorites...", - "removingFromFavorites": "Removing from favorites...", - "addedToFavorites": "Added to favorites", - "removedFromFavorites": "Removed from favorites", - "failedToAddToFavorites": "Failed to add to favorites", - "failedToRemoveFromFavorites": "Failed to remove from favorites", - "failedToModifyFavorites": "Failed to modify favorites", - "movingToBin": "Moving to bin...", - "movedToBin": "Moved to bin", - "failedToMoveToBin": "Failed to move to bin", - "markingAsRead": "Marking as read...", - "markingAsUnread": "Marking as unread...", - "hiddenImagesWarning": "Images are hidden by default for security reasons.", - "showImages": "Show Images", - "disableImages": "Hide Images", - "trustSender": "Trust Sender", - "cancel": "Cancel", - "save": "Save", - "remove": "Remove" + "refresh": "Yenile", + "loading": "Yükleniyor...", + "featureNotImplemented": "Bu özellik henüz uygulanmadı", + "moving": "Taşınıyor...", + "movedToInbox": "Gelen kutusuna taşındı", + "movingToInbox": "Gelen kutusuna taşınıyor...", + "movedToSpam": "İstenmeyen kutusuna taşındı", + "movingToSpam": "İstenmeyen kutusuna taşınıyor...", + "archiving": "Arşivleniyor...", + "archived": "Arşivlendi", + "failedToMove": "Mesaj taşınamadı", + "addingToFavorites": "Favorilere ekleniyor...", + "removingFromFavorites": "Favorilerden kaldırılıyor...", + "addedToFavorites": "Favorilere eklendi", + "removedFromFavorites": "Favorilerden kaldırıldı", + "failedToAddToFavorites": "Favorilere eklenemedi", + "failedToRemoveFromFavorites": "Favorilerden kaldırılamadı", + "failedToModifyFavorites": "Favoriler değiştirilemedi", + "movingToBin": "Çöp kutusuna taşınıyor...", + "movedToBin": "Çöp kutusuna taşındı", + "failedToMoveToBin": "Çöp kutusuna taşınamadı", + "markingAsRead": "Okundu olarak işaretleniyor...", + "markingAsUnread": "Okunmadı olarak işaretleniyor...", + "hiddenImagesWarning": "Güvenlik nedeniyle görseller varsayılan olarak gizlenir.", + "showImages": "Görselleri Göster", + "disableImages": "Görselleri Gizle", + "trustSender": "Gönderene Güven", + "cancel": "İptal", + "save": "Kaydet", + "remove": "Kaldır" }, "themes": { "dark": "Koyu", @@ -95,15 +95,15 @@ "starred": "Yıldızlı", "applyFilters": "Filtreleri Uygula", "reset": "Sıfırla", - "searching": "Searching...", - "aiSuggestions": "AI Suggestions", - "aiSearching": "AI is searching...", - "aiSearchError": "AI search failed. Please try again.", - "aiNoResults": "No AI suggestions found", - "aiEnhancedQuery": "Enhanced search query" + "searching": "Aranıyor...", + "aiSuggestions": "Yapay Zeka Önerileri", + "aiSearching": "Yapay Zeka arama yapıyor...", + "aiSearchError": "Yapay Zeka araması başarısız oldu. Lütfen tekrar deneyin.", + "aiNoResults": "Yapay Zeka önerisi bulunamadı", + "aiEnhancedQuery": "Geliştirilmiş arama sorgusu" }, "navUser": { - "customerSupport": "Community", + "customerSupport": "Topluluk", "documentation": "Dokümantasyon", "appTheme": "Uygulama Teması", "accounts": "Hesaplar", @@ -111,7 +111,7 @@ }, "mailCategories": { "primary": "Birincil", - "allMail": "All Mail", + "allMail": "Tüm E-postalar", "important": "Önemli", "personal": "Kişisel", "updates": "Güncellemeler", @@ -127,7 +127,7 @@ "fileCount": "{count, plural, =0 {dosyalar} one {dosya} other {dosyalar}}", "saveDraft": "Taslağı kaydet", "send": "Gönder", - "forward": "Forward" + "forward": "İlet" }, "mailDisplay": { "details": "Detaylar", @@ -154,16 +154,16 @@ "archive": "Arşivle", "reply": "Yanıtla", "moreOptions": "Daha fazla seçenek", - "moveToSpam": "Move to Spam", + "moveToSpam": "İstenmeyen Kutusuna Taşı", "replyAll": "Tümünü yanıtla", "forward": "İlet", - "markAsUnread": "Mark as Unread", - "markAsRead": "Mark as Read", + "markAsUnread": "Okunmamış Olarak İşaretle", + "markAsRead": "Okundu Olarak İşaretle", "addLabel": "Etiket ekle", "muteThread": "Konuyu sessize al", - "favourites": "Favourites", - "disableImages": "Hide Images", - "enableImages": "Show Images" + "favourites": "Favoriler", + "disableImages": "Görselleri Gizle", + "enableImages": "Görselleri Göster" }, "notes": { "title": "Notlar", @@ -226,10 +226,10 @@ } }, "settings": { - "notFound": "Settings not found", - "saved": "Settings saved", - "failedToSave": "Failed to save settings", - "languageChanged": "Language changed to {locale}" + "notFound": "Ayarlar bulunamadı", + "saved": "Ayarlar kaydedildi", + "failedToSave": "Ayarlar kaydedilemedi", + "languageChanged": "Dil {locale} olarak değiştirildi" }, "mail": { "replies": "{count, plural, =0 {cevaplar} one {# cevap} other {# cevaplar}}", @@ -247,23 +247,23 @@ "moveToInbox": "Gelen Kutusuna Taşı", "unarchive": "Arşivden Çıkar", "archive": "Arşivle", - "moveToBin": "Move to Bin", - "restoreFromBin": "Restore from Bin", + "moveToBin": "Çöp Kutusuna Taşı", + "restoreFromBin": "Çöp Kutusundan Geri Yükle", "markAsUnread": "Okunmamış Olarak İşaretle", - "markAsRead": "Mark as Read", - "addFavorite": "Favorite", - "removeFavorite": "Unfavorite", + "markAsRead": "Okundu Olarak İşaretle", + "addFavorite": "Favorilere Ekle", + "removeFavorite": "Favorilerden Çıkar", "muteThread": "Konuyu Sessize Al", "moving": "Taşınıyor...", "moved": "Taşındı", "errorMoving": "Taşıma Hatası", - "reply": "Reply", - "replyAll": "Reply All", - "forward": "Forward", - "labels": "Labels", - "createNewLabel": "Create New Label", - "noLabelsAvailable": "No labels available", - "loadMore": "Load more" + "reply": "Yanıtla", + "replyAll": "Tümünü Yanıtla", + "forward": "İlet", + "labels": "Etiketler", + "createNewLabel": "Yeni Etiket Oluştur", + "noLabelsAvailable": "Etiket bulunmuyor", + "loadMore": "Daha fazla yükle" }, "units": { "mb": "{amount} MB" @@ -285,7 +285,7 @@ "connections": "Bağlantılar", "security": "Güvenlik", "appearance": "Görünüm", - "signatures": "Signatures", + "signatures": "İmzalar", "shortcuts": "Kısayollar" } }, @@ -303,19 +303,19 @@ "title": "Genel Ayarlar", "description": "Dil ve E-posta görünümü ayarlarını yönetin.", "language": "Dil", - "selectLanguage": "Select a language", + "selectLanguage": "Bir dil seçin", "timezone": "Saat Dilimi", - "selectTimezone": "Select a timezone", + "selectTimezone": "Bir saat dilimi seçin", "dynamicContent": "Dinamik İçerik", "dynamicContentDescription": "E-postaların dinamik içerik göstermesine izin verin.", "externalImages": "Harici Görselleri Göster", "externalImagesDescription": "E-postaların harici kaynaklardan görselleri göstermesine izin verin.", - "trustedSenders": "Trusted Senders", - "trustedSendersDescription": "Always display images for these senders.", - "languageChangedTo": "Language changed to {locale}", - "customPrompt": "Custom AI Prompt", - "customPromptPlaceholder": "Enter your custom prompt for the AI...", - "customPromptDescription": "Customize how the AI writes your email replies. This will be added to the base prompt." + "trustedSenders": "Güvenilir Göndericiler", + "trustedSendersDescription": "Bu göndericilerin görsellerini her zaman göster.", + "languageChangedTo": "Dil {locale} olarak değiştirildi", + "customPrompt": "Özel Yapay Zeka Yönergesi", + "customPromptPlaceholder": "Yapay zeka için özel yönergenizi girin...", + "customPromptDescription": "Yapay zekanın e-posta yanıtlarınızı nasıl yazacağını özelleştirin. Bu, temel yönergeye eklenecektir." }, "connections": { "title": "E-posta Bağlantıları", @@ -339,8 +339,8 @@ "loginNotifications": "Giriş Bildirimleri", "loginNotificationsDescription": "Yeni giriş denemeleri hakkında bildirim alın", "deleteAccount": "Hesabı Sil", - "loadImagesDefault": "Load Images by Default", - "loadImagesDefaultDescription": "Images are not loaded by default for security reasons." + "loadImagesDefault": "Varsayılan Olarak Görselleri Yükle", + "loadImagesDefaultDescription": "Güvenlik nedeniyle görseller varsayılan olarak yüklenmez." }, "appearance": { "title": "Görünüm", @@ -349,24 +349,24 @@ "inboxType": "Gelen Kutusu Tipi" }, "signatures": { - "title": "Email Signatures", - "description": "Create and manage your email signature that appears at the bottom of your messages.", - "enableSignature": "Enable signature", - "enableSignatureDescription": "Add your signature to the end of all outgoing messages.", - "includeByDefault": "Include by default", - "includeByDefaultDescription": "Automatically add your signature when composing new emails.", - "signatureContent": "Signature Content", - "signatureContentPlaceholder": "Create your signature with formatting, links, and images.", - "signaturePreview": "Signature Preview", - "signatureSaved": "Signature saved successfully", - "signaturePreviewDescription": "This is how your signature will appear in emails.", - "editorType": "Editor Type", - "editorTypeDescription": "Choose between plain text/HTML input or a rich text editor for your signature.", - "plainText": "Plain Text / HTML", - "richText": "Rich Text Editor", - "richTextDescription": "Use the rich text editor to format your signature.", - "richTextPlaceholder": "Format your signature with the rich text editor...", - "signatureContentHelp": "You can use HTML to add formatting, links, and images to your signature." + "title": "E-posta İmzaları", + "description": "Mesajlarınızın altında görünen e-posta imzanızı oluşturun ve yönetin.", + "enableSignature": "İmzayı etkinleştir", + "enableSignatureDescription": "Tüm giden mesajlarınızın sonuna imzanızı ekleyin.", + "includeByDefault": "Varsayılan olarak ekle", + "includeByDefaultDescription": "Yeni e-postalar oluştururken imzanızı otomatik olarak ekleyin.", + "signatureContent": "İmza İçeriği", + "signatureContentPlaceholder": "Biçimlendirme, bağlantılar ve görsellerle imzanızı oluşturun.", + "signaturePreview": "İmza Önizleme", + "signatureSaved": "İmza başarıyla kaydedildi", + "signaturePreviewDescription": "İmzanız e-postalarda bu şekilde görünecek.", + "editorType": "Düzenleyici Türü", + "editorTypeDescription": "İmzanız için düz metin/HTML girişi veya zengin metin düzenleyici arasında seçim yapın.", + "plainText": "Düz Metin / HTML", + "richText": "Zengin Metin Düzenleyici", + "richTextDescription": "İmzanızı biçimlendirmek için zengin metin düzenleyiciyi kullanın.", + "richTextPlaceholder": "Zengin metin düzenleyici ile imzanızı biçimlendirin...", + "signatureContentHelp": "İmzanıza biçimlendirme, bağlantılar ve görseller eklemek için HTML kullanabilirsiniz." }, "shortcuts": { "title": "Klavye Kısayolları", @@ -399,36 +399,36 @@ "createEmail": { "body": "İçerik", "example": "zero@0.email", - "attachments": "Attachments ({count})", - "addMore": "Add more", + "attachments": "Ekler", + "addMore": "Daha fazla ekle", "dropFilesToAttach": "Eklemek için dosyaları bırakın", "writeYourMessageHere": "Mesajınızı buraya yazın...", "emailSentSuccessfully": "E-posta başarıyla gönderildi", "failedToSendEmail": "E-posta gönderilemedi. Lütfen tekrar deneyin.", "signature": { - "title": "Signature", - "include": "Include signature", - "remove": "Remove signature", - "enable": "Enable signature", - "disable": "Disable signature", - "add": "Add signature" + "title": "İmza", + "include": "İmza ekle", + "remove": "İmzayı kaldır", + "enable": "İmzayı etkinleştir", + "disable": "İmzayı devre dışı bırak", + "add": "İmza ekle" }, - "addLink": "Add Link", - "addUrlToCreateALink": "Add URL to create a link. The link will open in a new tab.", + "addLink": "Bağlantı Ekle", + "addUrlToCreateALink": "Bağlantı oluşturmak için URL ekleyin. Bağlantı yeni sekmede açılacaktır.", "editor": { "menuBar": { - "heading1": "Heading 1", - "heading2": "Heading 2", - "heading3": "Heading 3", - "bold": "Bold", - "italic": "Italic", - "strikethrough": "Strikethrough", - "underline": "Underline", - "link": "Link", - "bulletList": "Bullet List", - "orderedList": "Ordered List", - "viewAttachments": "View Attachments", - "attachFiles": "Attach Files" + "heading1": "Başlık 1", + "heading2": "Başlık 2", + "heading3": "Başlık 3", + "bold": "Kalın", + "italic": "İtalik", + "strikethrough": "Üstü çizili", + "underline": "Altı çizili", + "link": "Bağlantı", + "bulletList": "Madde işaretli liste", + "orderedList": "Sıralı liste", + "viewAttachments": "Ekleri görüntüle", + "attachFiles": "Dosya ekle" } } } diff --git a/i18n.json b/i18n.json new file mode 100644 index 0000000000..34d02515c8 --- /dev/null +++ b/i18n.json @@ -0,0 +1,31 @@ +{ + "$schema": "https://lingo.dev/schema/i18n.json", + "version": 1.5, + "locale": { + "source": "en", + "targets": [ + "ar", + "ca", + "cs", + "de", + "es", + "fr", + "hi", + "ja", + "ko", + "lv", + "pl", + "pt", + "ru", + "tr", + "hu" + ] + }, + "buckets": { + "json": { + "include": [ + "apps/mail/locales/[locale].json" + ] + } + } +} \ No newline at end of file diff --git a/i18n.lock b/i18n.lock new file mode 100644 index 0000000000..4355d661b0 --- /dev/null +++ b/i18n.lock @@ -0,0 +1,363 @@ +version: 1 +checksums: + 996756d4e2154b5cf06a476118175f9f: + common/actions/logout: 07948fdf20705e04a7bf68ab197512bf + common/actions/back: f541015a827e37cb3b1234e56bc2aa3c + common/actions/create: 566ab5782e0e8ea5a9a6865a22ba9586 + common/actions/saveChanges: 53dd9f4f0a4accc822fa5c1f2f6d118a + common/actions/saving: 7cb2d8f012d57db8a62187b65ef164dc + common/actions/resetToDefaults: bdaee15a0466df4a923dc30d0657a3e5 + common/actions/close: 2c2e22f8424a1031de89063bd0022e16 + common/actions/signingOut: 044983202ea0adae491172d1b38f9cc3 + common/actions/signedOutSuccess: 396443e3ebe20c597b5dedb9ff2c661a + common/actions/signOutError: 0e7e1f2ceb04faa97d227f4a7dd868c3 + common/actions/refresh: c0aec3f31be4c984bae9a482572d2857 + common/actions/loading: 82b4ea7ed1439094d7c4be13aaba9a66 + common/actions/featureNotImplemented: 24f9409547248f371397ef36e9c1ebdc + common/actions/moving: 0f239d832e9ebe673956431915345a6b + common/actions/movedToInbox: 607225b1dfd403c0a068850bfee48d45 + common/actions/movingToInbox: 6ed6d10efa5858a3631d89cb5f00d238 + common/actions/movedToSpam: daec566f29b9f53f9a52f7c789cf305c + common/actions/movingToSpam: 6f72275c731f9159ecc5a7d46b908c8c + common/actions/archiving: 55a5ce6fc03a5bd9be92c0e3182a2b75 + common/actions/archived: cf5127ecfd7e43a35466a1ba5fe16450 + common/actions/failedToMove: 29672fc2a832d1e41dfa4aec2ef4136e + common/actions/addingToFavorites: 720e59eec292be6c8310b47dc6c22a32 + common/actions/removingFromFavorites: 951348f8f0bbce35e3abff396c012620 + common/actions/addedToFavorites: 848046ec65d15913112b466c544722eb + common/actions/removedFromFavorites: 540609ab686ed67b1cfd7649467b8bc1 + common/actions/failedToAddToFavorites: fa51002dd9e7d953a75fd213bbea6ee2 + common/actions/failedToRemoveFromFavorites: 5ac9381e679f0f83cf4a4c87c5028106 + common/actions/failedToModifyFavorites: f30b45c6232d2a9a8fa2570eaeced133 + common/actions/movingToBin: b303252db18a8f86ec36384ae2e3d1e7 + common/actions/movedToBin: dc50a2064c876b2fcb81b8b37ac70e8c + common/actions/failedToMoveToBin: 4b9eadfd5f9adaf47456244854546ce9 + common/actions/markingAsRead: a8609bb92bc58544185059a4fea73b23 + common/actions/markingAsUnread: 4019d279cd09988d9767ffa316fc1f72 + common/actions/hiddenImagesWarning: 6dd424198acc3bcc42ed62e80c7d0966 + common/actions/showImages: b9e8dc2ce5380180886b89cbe9d51508 + common/actions/disableImages: 48609f68b3048e16d0957736cadf25a5 + common/actions/trustSender: 54d80a89833396e920d3614b06e736e9 + common/actions/cancel: 2e2a849c2223911717de8caa2c71bade + common/actions/save: f7a2929f33bc420195e59ac5a8bcd454 + common/actions/remove: dba2fe5fe9f83f8078c687f28cba4b52 + common/themes/dark: 73e6e208ba628b26e90fcf6dce15e1b2 + common/themes/light: bb78ea2c6edd8662676c81a8a13ecb93 + common/themes/system: 803281c327a02a2feba182f4a2b38311 + common/commandPalette/title: 27374fec801ecad6a2a5c58d98c7f531 + common/commandPalette/description: b6ef949ddea133e2ffa9cf3a1d623d27 + common/commandPalette/placeholder: 1df07536a83ad006b7aafd795e233748 + common/commandPalette/noResults: 5518f2865757dc73900aa03ef8be6934 + common/commandPalette/groups/mail: 35cc2a9bb05da8ecbc8944be96fefd9a + common/commandPalette/groups/settings: 8df6777277469c1fd88cc18dde2f1cc3 + common/commandPalette/groups/actions: c46571856723b03262fd33f511116298 + common/commandPalette/groups/help: 62712a1f2fcef75e399e9a9a9ddbd495 + common/commandPalette/groups/navigation: 0373afd8238db1c49f4be4fa6cdf5cd3 + common/commandPalette/commands/goToInbox: 423746055b0db9271d949824557f56f3 + common/commandPalette/commands/goToDrafts: dfa22fb17b8fa3a3d5672505d104e18c + common/commandPalette/commands/goToSent: 944048adaa79fdc8ca2e06f16bd35963 + common/commandPalette/commands/goToSpam: d96fe088ed4fd92ef98be24951de7b3a + common/commandPalette/commands/goToArchive: 0c717740df71d4ddc42b1e90d5a97676 + common/commandPalette/commands/goToBin: 5b567f48c63b3352fc37cd807f6117bf + common/commandPalette/commands/goToSettings: 6ace3a9c8e0d0bcef02e8835a8e0ac08 + common/commandPalette/commands/newEmail: 45b7a175e9f4aaf32558ae59dbfa9541 + common/commandPalette/commands/composeMessage: ef4902ad6a3d1848fda45f9c47c37947 + common/commandPalette/commands/searchEmails: cbe4e19fa34208326dd5a5fcc1e7d02e + common/commandPalette/commands/toggleTheme: 0a3e19fea2f7b1045f53ebf0ccff6bd5 + common/commandPalette/commands/backToMail: 817c4dc48868ed7b46c09f2175442b4a + common/commandPalette/commands/goToDocs: 2c12621537998606d003e6b7a555b31f + common/commandPalette/commands/helpWithShortcuts: f8b89d2e465e3a93ff9c5397a114a094 + common/searchBar/pickDateRange: 580f254a6831994709cba4a82f082a1a + common/searchBar/search: 49dd6c21604b5e8d4153ff1aff2177e1 + common/searchBar/clearSearch: 0ee4a80abe134b7edd90c74f03638877 + common/searchBar/advancedSearch: 67838c483c45b9f2ae14c77c16d4c61a + common/searchBar/quickFilters: 2f691f6413e740287fd3df1622f1687f + common/searchBar/searchIn: 36b2d21bb725e82593319a688637b315 + common/searchBar/recipient: cccd041f08a57c1ae658324b5073fc7d + common/searchBar/sender: a2d18a44b4320d124f6f33a32023e74f + common/searchBar/subject: de5b885eb327b2f233f3b67aab4c4c0a + common/searchBar/dateRange: be548c93a997ed6c2e9ac5c943faac10 + common/searchBar/category: 1b0340cd175aa5a2be745a0d54908466 + common/searchBar/folder: 55abc55b8ff7891f38db1a5b7bf97765 + common/searchBar/allMail: 8ee9a794d1366b252decb770c6f7558a + common/searchBar/unread: 3cc4336d27b43274c0f38350dae2421d + common/searchBar/hasAttachment: 72ac39f8b38b179e3794447e11d13258 + common/searchBar/starred: ffe2e6d743353191e792c494336777f6 + common/searchBar/applyFilters: 6543c1e80038b3da0f4a42848d08d4d1 + common/searchBar/reset: c19c53a05e21c7f3b395247809a14b51 + common/searchBar/searching: 56cf28d6712bf3f7f73af2a81974ac45 + common/searchBar/aiSuggestions: f1c7a7f899377efe0801255efff7c59a + common/searchBar/aiSearching: 672f09b44eaaf3abfc0b1bdfe991b64e + common/searchBar/aiSearchError: d4ee14a7cc979e265a45cd44b895a385 + common/searchBar/aiNoResults: 15ae5ea3fcc516ef967b56b3cd8ace3e + common/searchBar/aiEnhancedQuery: 7bc20def675d9eacbec6d98a7f6cccd0 + common/navUser/customerSupport: aa83f4456d11185e5e72dba3260bf00b + common/navUser/documentation: 1563fcb5ddb5037b0709ccd3dd384a92 + common/navUser/appTheme: bfaec6c6c45b8e7c28ea3b017260e2ce + common/navUser/accounts: dbb9796c495f5e0f0de6f71bd32527ae + common/navUser/signIn: cb8757c7450e17de1e226e82fb0fa4a2 + common/mailCategories/primary: f5fb269c8406736788b7785a0c68e500 + common/mailCategories/allMail: 8ee9a794d1366b252decb770c6f7558a + common/mailCategories/important: 4cf0e8fc8e4e7c5c9b9458059a172a2b + common/mailCategories/personal: 1c619008563115c5c99acdab4e8c9717 + common/mailCategories/updates: c5f658a393f5d8d6e251a0fb5a0de394 + common/mailCategories/promotions: 046d70330572dc2b24522e3296ebddd6 + common/mailCategories/social: ff80c74b36f0511287404d286ec7976e + common/replyCompose/replyTo: e7f83bcc57c1e4248e6835477cd8e28a + common/replyCompose/thisEmail: 74ce60ea90c3119d506bc9a9f1893a5c + common/replyCompose/dropFiles: e24aa4f8bf0eb75c7622ee8d5427840f + common/replyCompose/attachments: c07b0f71c56630aef60ef8d754efd867 + common/replyCompose/attachmentCount: 55a8d16786ad826534004447fcbb5992 + common/replyCompose/fileCount: 189568c39df75e6c235d4d1cedb8a247 + common/replyCompose/saveDraft: 85b75c24897ad6d44953fda57805501a + common/replyCompose/send: 76a8497d7b546628b03bb81d5c1ce995 + common/replyCompose/forward: aa6a7c8cb8116039de946d324e803acc + common/mailDisplay/details: 2a8bbb1bc386c059783f925aca2cc522 + common/mailDisplay/from: 3d84daca8c92c8609deeab4b294b4afb + common/mailDisplay/to: 24ef32707b456cff90a91d438df59bbe + common/mailDisplay/cc: 3502fdcc26caeb501541c6437fcd4d45 + common/mailDisplay/date: 56f41c5d30a76295bb087b20b7bee4c3 + common/mailDisplay/mailedBy: 57b808c440b344c2a7b47a8cc796d606 + common/mailDisplay/signedBy: 03db469bf23bf1dd2c59b56819cfea26 + common/mailDisplay/security: 4b34923fef858a2b9a4a914c3e822889 + common/mailDisplay/standardEncryption: 565594bde62cad1c7a49ec5c0825936b + common/mailDisplay/loadingMailContent: ee74ff3af67c7611e0494b41bce9d100 + common/mailDisplay/unsubscribe: d1a0b07295687d1f08d4df1c411072dd + common/mailDisplay/unsubscribed: f3f3fe4be6764c04c3c205b8b6d9706f + common/mailDisplay/unsubscribeDescription: 744433432fb8ae2c2bfe0f9354b12527 + common/mailDisplay/unsubscribeOpenSiteDescription: 50715a4a56783772155525725dfe7e0e + common/mailDisplay/cancel: 2e2a849c2223911717de8caa2c71bade + common/mailDisplay/goToWebsite: 4a606fcd69b644552771f4ecb9454065 + common/mailDisplay/failedToUnsubscribe: b6c4eafb9b32021163988213d80c7deb + common/threadDisplay/exitFullscreen: 910de8c8ec56a0b09328c471d76ea301 + common/threadDisplay/enterFullscreen: f7e424edfd72ea623565c2cef45b5ccb + common/threadDisplay/archive: fa813ab3074103e5daad07462af25789 + common/threadDisplay/reply: 37a07e1dbda9841da3feb16c9e1e63b5 + common/threadDisplay/moreOptions: 53d90eae6a9b0243b5bc043b3d9de169 + common/threadDisplay/moveToSpam: e06d86eee5c8c14a347764d7dd7c2f0d + common/threadDisplay/replyAll: c5612a9c392c61f530ec598496cdcde4 + common/threadDisplay/forward: aa6a7c8cb8116039de946d324e803acc + common/threadDisplay/markAsUnread: 69a6c98a45e6fec5028ffff79baffeee + common/threadDisplay/markAsRead: 6904117ae35e7c7148a3304092762b08 + common/threadDisplay/addLabel: 0be732d46df263265935fda342097a08 + common/threadDisplay/muteThread: e0740aefc87f17dfc48a152250be87d5 + common/threadDisplay/favourites: 50e845cb3e83330eb1cfa57bf87dad70 + common/threadDisplay/disableImages: 48609f68b3048e16d0957736cadf25a5 + common/threadDisplay/enableImages: b9e8dc2ce5380180886b89cbe9d51508 + common/notes/title: 93c7ef9bc767f51fbe360afcf6b1fecb + common/notes/empty: fa2d823fe4c9adb5df5c5c725ccc3815 + common/notes/emptyDescription: 344e82cfef3fcad6fb4461324874a662 + common/notes/addNote: a7e5149f56b7d6c6c678331bb193b672 + common/notes/addYourNote: 979726fb4d6b1449c072b953c9cb93ce + common/notes/editNote: 3d7f69b6ba53f385810954c8f32e52e4 + common/notes/deleteNote: 7a9f58406aba08b245c31a8a44818239 + common/notes/deleteConfirm: a742969db551363ad6f3ee8aababc174 + common/notes/deleteConfirmDescription: 3d8b13374ffd3cefc0f3f7ce077bd9c9 + common/notes/cancel: 2e2a849c2223911717de8caa2c71bade + common/notes/delete: 8bcf303dd10a645b5baacb02b47d72c9 + common/notes/save: ae249b0e134b2e1ead186a8ff2b574e6 + common/notes/toSave: 8bb9e5fccac0b42d1c6c936f26b6b32e + common/notes/label: 6df9cfa5d832ac8948954cccbbfca902 + common/notes/search: cc4bf061b4de359b716f1bf1494f0698 + common/notes/noteCount: 33e495dde3103f8a33564415174bdb34 + common/notes/notePinned: a94078d0939ef0b72fff4e0fb2227dd9 + common/notes/noteUnpinned: 4ca3023fe22a27ec118baa24c1a45ccc + common/notes/colorChanged: fc4d8c2c42673be1b4af09be42f4784d + common/notes/noteUpdated: 98009af0883685e6c48499e8d9d94206 + common/notes/noteDeleted: 559241f1c974c2d429574ad0127daa18 + common/notes/noteCopied: 6a3c394a9a51646bad2f72d7311b242d + common/notes/noteAdded: 4d2c2b9af5161bacbe1dd4550e0a4819 + common/notes/notesReordered: dce01cb37ab88c6cf98742f79b309050 + common/notes/noMatchingNotes: ec87c712a0c2dec9108a244f4ca598f7 + common/notes/clearSearch: 0ee4a80abe134b7edd90c74f03638877 + common/notes/pinnedNotes: dbdd8fc8059caf4302c13ef60cce37c8 + common/notes/otherNotes: 27cf094cc051ba089f399598b3f80a82 + common/notes/created: 6045b4ff97fb7dca19ebadfa2e34a700 + common/notes/updated: 8aa8ff2dc2977ca4b269e80a513100b4 + common/notes/errors/failedToLoadNotes: 2f3915802290d4475b53e8bc6be84ef2 + common/notes/errors/failedToLoadThreadNotes: 68b7f9117ab0e983c2236d679b78d417 + common/notes/errors/failedToAddNote: 95db53c3dfd96902d6300cc5bfcd7771 + common/notes/errors/failedToUpdateNote: 365abc1e16bf66c8b00adb9e231f3ca6 + common/notes/errors/failedToDeleteNote: 219b882b288bec303918b09cd31c056d + common/notes/errors/failedToUpdateNoteColor: a96934c5d0478063f644e59eeeb5894a + common/notes/errors/noValidNotesToReorder: 5cb0b067585acdd779adbf4c65181d0c + common/notes/errors/failedToReorderNotes: a7a7bd4e1b84add13edb3cda11ca10c2 + common/notes/colors/default: d9c6dc5c412fe94143dfd1d332ec81d4 + common/notes/colors/red: bace0083b78cdb188523bc4abc7b55c6 + common/notes/colors/orange: 836094fa3fcf7488957f6d7cba7c1f60 + common/notes/colors/yellow: 15d533755d35af887dfa584975549fda + common/notes/colors/green: 482ff383a4258357ba404f283682471d + common/notes/colors/blue: a5cf034b2d370a976119335cd99f4217 + common/notes/colors/purple: 547ba93b6f68317e2dfbafb16cabc30f + common/notes/colors/pink: d6c91bab1871309e1f3f304db218a2f9 + common/notes/actions/pin: 103b3620c7c3a447d4342ab217026b05 + common/notes/actions/unpin: ee966ccbd63db18d07b3c2079209a9ac + common/notes/actions/edit: 3d7f69b6ba53f385810954c8f32e52e4 + common/notes/actions/delete: 7a9f58406aba08b245c31a8a44818239 + common/notes/actions/copy: 4bb60f8626001c0da9ddeeb55b817ecb + common/notes/actions/changeColor: fe061f6979f5405cc42ace762de070bf + common/settings/notFound: e8fea4b4c8ddd51d8e5aca9d09b474cc + common/settings/saved: 0f46e6d1d0a3c93ca8136cc8c91fecd4 + common/settings/failedToSave: 40417c48b29d285eadcd5363630dff1a + common/settings/languageChanged: 71fdc3486c49d228838ed1b541de999c + common/mail/replies: fc3e60cff29ffe474db270154bb64099 + common/mail/deselectAll: d06b551a6d60cdc4dfc51c7683644bad + common/mail/selectedEmails: 8070ccaf317cb4216c364b2cb1223fd7 + common/mail/noEmailsToSelect: a797578836d0bf18e69a2537429b119a + common/mail/markedAsRead: 903a51ed4d120f733869deedd94df503 + common/mail/markedAsUnread: 258c883ff7985308ecb3d3d4eea9ddf1 + common/mail/failedToMarkAsRead: 083756295f86655461e45f0aec7f641b + common/mail/failedToMarkAsUnread: 7360e8d11e5f00bc81ac6e06073dd32c + common/mail/selected: e0cafa74c97b9acbc3da9345fa7d8d84 + common/mail/clearSelection: 8866ba583a4b867910caf421b62de2a3 + common/mail/mute: 3ade14017ee6826e52a7e9fa75a54852 + common/mail/moveToSpam: e06d86eee5c8c14a347764d7dd7c2f0d + common/mail/moveToInbox: 75b5f96eeba8305782ae5dc684ea4355 + common/mail/unarchive: 671fc7e9d7c8cb4d182a25a46551c168 + common/mail/archive: fa813ab3074103e5daad07462af25789 + common/mail/moveToBin: 0a1bbf5cacd49c0b7c770d35dac8b5fa + common/mail/restoreFromBin: b3f37114e57b10469978e4b2adfe886c + common/mail/markAsUnread: 69a6c98a45e6fec5028ffff79baffeee + common/mail/markAsRead: 6904117ae35e7c7148a3304092762b08 + common/mail/addFavorite: 8edfa436dade607a9ad05951eaedfe4d + common/mail/removeFavorite: 79618f71f3f2081a74dd726d6a10ad67 + common/mail/muteThread: b024210dfdfb4a2f9875102da5128586 + common/mail/moving: 0f239d832e9ebe673956431915345a6b + common/mail/moved: 1a92e92dcb89f52dbef3fb38c9543bec + common/mail/errorMoving: 7eb7faabc3b73f090b005e0dc6e183cb + common/mail/reply: 37a07e1dbda9841da3feb16c9e1e63b5 + common/mail/replyAll: c8e4a876f387c8d979e0492a65907005 + common/mail/forward: aa6a7c8cb8116039de946d324e803acc + common/mail/labels: 6f15627a90002323eac018274b6922d6 + common/mail/createNewLabel: 67a23bfaf68422b3d232d0357d8b1770 + common/mail/noLabelsAvailable: 927f2a43cd44c2d604249989ff47d7af + common/mail/loadMore: 365c2d8dfc53ac7e9188acd5274e2837 + common/units/mb: ed9c3b369a1ac40741b182458b69143a + navigation/sidebar/inbox: 57e9db873911bf848c79e2ed546ecf45 + navigation/sidebar/drafts: 76dab0f0b2e6c4933b80f69e388070d0 + navigation/sidebar/sent: 01b803329590ea067a0e9b41b3193353 + navigation/sidebar/spam: 904064026d3ce87cd872e0b819a15310 + navigation/sidebar/archive: fa813ab3074103e5daad07462af25789 + navigation/sidebar/bin: e95691895f3a89d896838716e48290bd + navigation/sidebar/feedback: 6fac88806e0c269a30777b283988c61c + navigation/sidebar/settings: 8df6777277469c1fd88cc18dde2f1cc3 + navigation/settings/general: b891e8f15579fc5d97bcaf3637f5ae59 + navigation/settings/connections: e03a59f742f7b798488a69760bf8a603 + navigation/settings/security: 4b34923fef858a2b9a4a914c3e822889 + navigation/settings/appearance: cdd8c41c5fb859234e8a603544fce631 + navigation/settings/signatures: 681d432cf5709e710da79b9d0155aaa2 + navigation/settings/shortcuts: db3330ed3240c398054f3be23c52851f + pages/error/notFound/title: 5b1dea4722f8fd52b68f7ac5ce89875d + pages/error/notFound/description: 057147f33cbf65e4049928e7afa4103d + pages/error/notFound/goBack: b917ea82facb90c88c523b255d29f84b + pages/error/settingsNotFound: a1319609f287ab531e8d12c3865c3c9b + pages/settings/general/title: b891e8f15579fc5d97bcaf3637f5ae59 + pages/settings/general/description: 2a689ea8fffcd92ba6e81636e4ba641d + pages/settings/general/language: 277fd1a41cc237a437cd1d5e4a80463b + pages/settings/general/selectLanguage: 1a08ac1e72413da132b3220242878111 + pages/settings/general/timezone: 370780b854bdbef55320f977a4fb9ddb + pages/settings/general/selectTimezone: b55f0b9eec307c091664d2e2f442ff5f + pages/settings/general/dynamicContent: f2540d1fdacd3fd319ccca98d778d0c0 + pages/settings/general/dynamicContentDescription: 44a7ecf3578b6c1c6c26ffa4be979cd7 + pages/settings/general/externalImages: 330cb188d8382dde410477c9aa838dcd + pages/settings/general/externalImagesDescription: 7e76ca6f6feb479af08be4f2f3bfe93a + pages/settings/general/trustedSenders: d11f34c52317834d329a2daf24e3fb35 + pages/settings/general/trustedSendersDescription: f446f9e23481b953659fd95860d52384 + pages/settings/general/languageChangedTo: 71fdc3486c49d228838ed1b541de999c + pages/settings/general/customPrompt: 6e79aab785ccc1e0f792672cf64c6e35 + pages/settings/general/customPromptPlaceholder: cfc2bb3508913d8f3c0b7d2627cf8ba6 + pages/settings/general/customPromptDescription: cc5fa56cc99ace9ef4bbf669cd9cbd45 + pages/settings/connections/title: d7bc733cc82ab74c649a4816373a2295 + pages/settings/connections/description: f05d355994f9fe0e089ce2c54d0de381 + pages/settings/connections/disconnectTitle: efecc2354d665e68492fe985af575508 + pages/settings/connections/disconnectDescription: 8ebb0ef10e905d22a193a7a001b85378 + pages/settings/connections/cancel: 2e2a849c2223911717de8caa2c71bade + pages/settings/connections/remove: dba2fe5fe9f83f8078c687f28cba4b52 + pages/settings/connections/disconnectSuccess: 9b6bc1d1b9c6a649fe3345130351350f + pages/settings/connections/disconnectError: ee8c4caafa293403a6b2deae51a9c1c9 + pages/settings/connections/addEmail: e463835157222ee941f194512e0badbe + pages/settings/connections/connectEmail: dea62d12c923908e9bee484c0b720b33 + pages/settings/connections/connectEmailDescription: b5383f2bb1c90ffdfec05601a5d56e2c + pages/settings/connections/moreComingSoon: 86b93377c3ac8b265cb42333db3abeab + pages/settings/security/title: 4b34923fef858a2b9a4a914c3e822889 + pages/settings/security/description: e54112d11a6dea5459db28e83b119c38 + pages/settings/security/twoFactorAuth: 8bc1572b5995cc2b222f381d0f75d873 + pages/settings/security/twoFactorAuthDescription: ecdfc7cdaa8a3b078cc17251618848be + pages/settings/security/loginNotifications: b1b5f057cac8cf8c732845d3deff1b7e + pages/settings/security/loginNotificationsDescription: ccd661dcf0875f4c0c478806e564c595 + pages/settings/security/deleteAccount: f5f7b88ff3122fb0d3a330e2b99d7e3d + pages/settings/security/loadImagesDefault: 11026263fbe81b88775c2044116c387b + pages/settings/security/loadImagesDefaultDescription: 3584a6e5b1f8be258d3d5e96a6ce3ce7 + pages/settings/appearance/title: cdd8c41c5fb859234e8a603544fce631 + pages/settings/appearance/description: 7aec60af8dd9c7b4fccc89963b83e299 + pages/settings/appearance/theme: 21fe00b7a518089576fb83c08631107a + pages/settings/appearance/inboxType: 596d44793e1820a9c510cf5c9003dde1 + pages/settings/signatures/title: c1d8ea4f6e2cdb9db3b21290108e4c6e + pages/settings/signatures/description: 832739cebe7db5061db16962ba361883 + pages/settings/signatures/enableSignature: b6f45b8d1006d551e5c65e30f24cfdf2 + pages/settings/signatures/enableSignatureDescription: 2d3f76f1252996b6050577c6675a27d6 + pages/settings/signatures/includeByDefault: 82d3e44316baaae03f3f9454d9fd56fd + pages/settings/signatures/includeByDefaultDescription: 31ea7f10f5b1585a52ee96364164ed5b + pages/settings/signatures/signatureContent: 0213bc51f0c815837f0594e3e03a286b + pages/settings/signatures/signatureContentPlaceholder: 8e17347ad1e8049bf9e6644d91e03d7a + pages/settings/signatures/signaturePreview: 35b7deb5d96759850fd2d35e77eb4ea4 + pages/settings/signatures/signatureSaved: 64dd2728d863469d1ace5bf8f0ffad36 + pages/settings/signatures/signaturePreviewDescription: 52f16a0260af64403497ebda392e0759 + pages/settings/signatures/editorType: 077db32a3c3f4158a93d5875616148d4 + pages/settings/signatures/editorTypeDescription: 871fa700c2499440286b2f8b3c67038a + pages/settings/signatures/plainText: 2299f36d94f030fd34cdefc437f391a6 + pages/settings/signatures/richText: c9219db800f80b1ff1ea137a88ac3d66 + pages/settings/signatures/richTextDescription: f162a63f176440179e396fc22f816c53 + pages/settings/signatures/richTextPlaceholder: 4137555a8778e844a14f33189434be8d + pages/settings/signatures/signatureContentHelp: d9949c5a4ac259dcccd7862caefd46b7 + pages/settings/shortcuts/title: ef00d7494b69def6841620bd6554d040 + pages/settings/shortcuts/description: 0423caf6605293a1279a0e3baa3f8a5c + pages/settings/shortcuts/actions/newEmail: 45b7a175e9f4aaf32558ae59dbfa9541 + pages/settings/shortcuts/actions/sendEmail: 11d380c15cdc68f42d4afa70360b4e10 + pages/settings/shortcuts/actions/reply: 37a07e1dbda9841da3feb16c9e1e63b5 + pages/settings/shortcuts/actions/replyAll: c8e4a876f387c8d979e0492a65907005 + pages/settings/shortcuts/actions/forward: aa6a7c8cb8116039de946d324e803acc + pages/settings/shortcuts/actions/drafts: 76dab0f0b2e6c4933b80f69e388070d0 + pages/settings/shortcuts/actions/inbox: 57e9db873911bf848c79e2ed546ecf45 + pages/settings/shortcuts/actions/sentMail: 235718c0ed6cc35cedd6dd94252ca601 + pages/settings/shortcuts/actions/delete: 8bcf303dd10a645b5baacb02b47d72c9 + pages/settings/shortcuts/actions/search: 49dd6c21604b5e8d4153ff1aff2177e1 + pages/settings/shortcuts/actions/markAsUnread: 69a6c98a45e6fec5028ffff79baffeee + pages/settings/shortcuts/actions/muteThread: b024210dfdfb4a2f9875102da5128586 + pages/settings/shortcuts/actions/printEmail: 0d1f68c48e2416691460ccaaf3a68c0c + pages/settings/shortcuts/actions/archiveEmail: bb0f634127e15591d68bdd26b9526e44 + pages/settings/shortcuts/actions/markAsSpam: 79d13311fa6529ed0604af101f71eb7b + pages/settings/shortcuts/actions/moveToFolder: 4500b74b3c7c79678c53d13f84b19b9f + pages/settings/shortcuts/actions/undoLastAction: f9f2bafa90923e797b4e42d785412ca6 + pages/settings/shortcuts/actions/viewEmailDetails: 324504835744ab1cbdbfcab7afed1be2 + pages/settings/shortcuts/actions/goToDrafts: dfa22fb17b8fa3a3d5672505d104e18c + pages/settings/shortcuts/actions/expandEmailView: ad31f53032e788ee0e30b14f484a6ec3 + pages/settings/shortcuts/actions/helpWithShortcuts: f8b89d2e465e3a93ff9c5397a114a094 + pages/createEmail/body: e88eb1ea71f5ef886aa43ea6ba292d87 + pages/createEmail/example: ff2b301b819e5067ce63d236731e50c2 + pages/createEmail/attachments: 09168a5ca9fef8e18a7cabc8f07d3b34 + pages/createEmail/addMore: 81594be142178561005070421ed6a434 + pages/createEmail/dropFilesToAttach: e24aa4f8bf0eb75c7622ee8d5427840f + pages/createEmail/writeYourMessageHere: 84c11d7b908047ae3454e36ed2255084 + pages/createEmail/emailSentSuccessfully: 981021f0402b2dee2589123c60480ef0 + pages/createEmail/failedToSendEmail: a424e9f9b6c1830e035881fe1c8c4291 + pages/createEmail/signature/title: f27cd2bc9c74af4be75578c6417dad41 + pages/createEmail/signature/include: 149070fa24a067d5f83b4d4cd961273f + pages/createEmail/signature/remove: ccddc41c4269a0ce751f453dabc48c61 + pages/createEmail/signature/enable: b6f45b8d1006d551e5c65e30f24cfdf2 + pages/createEmail/signature/disable: 47231846119b75ae982f392fbc0e0e37 + pages/createEmail/signature/add: 36e33cb26898b6d2746362a6d0ecaeda + pages/createEmail/addLink: 6b5a3fd0ea3a6f9586eb88db9118a80d + pages/createEmail/addUrlToCreateALink: 43187c881fbf7c436921fb03ae5c0981 + pages/createEmail/editor/menuBar/heading1: cbd66aa1808eceecbda71e16fe05747c + pages/createEmail/editor/menuBar/heading2: 317cb373550914953c97c8f97e9b00fa + pages/createEmail/editor/menuBar/heading3: a6daf7c67948ba1c0b81428bd66e4faf + pages/createEmail/editor/menuBar/bold: 4d7306bc355ed2befd6a9237c5452ee6 + pages/createEmail/editor/menuBar/italic: 555c60fb1d12ae305136202afa6deb3d + pages/createEmail/editor/menuBar/strikethrough: f164af28b651b5e7eb2dbe93f7a50f0d + pages/createEmail/editor/menuBar/underline: aed1340c6de1b829ec96c0d0da99e9ec + pages/createEmail/editor/menuBar/link: 60f0aa33e70ca6df3b6659802b16f433 + pages/createEmail/editor/menuBar/bulletList: 10ed24b2b8d641d31231ebbc404da196 + pages/createEmail/editor/menuBar/orderedList: fb2995db78e8fd28b74f8b7e52969c7e + pages/createEmail/editor/menuBar/viewAttachments: d3750ecafb12686d72305e51a239451c + pages/createEmail/editor/menuBar/attachFiles: f618d751abb8f97c634df1b19bf52b10