Initial commit.

This commit is contained in:
Burak Kaan Köse
2024-04-18 01:44:37 +02:00
parent 524ea4c0e1
commit 12d3814626
671 changed files with 77295 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using Wino.Core.Domain.Enums;
namespace Wino.Core.Domain.Translations
{
public class WinoTranslationDictionary : Dictionary<string, string>
{
// Return the key itself in case of translation is not found.
public string GetTranslatedString(string key) => TryGetValue(key, out string keyValue) ? keyValue : key;
public Stream GetLanguageStream(AppLanguage language)
{
var path = GetLanguageFileNameRelativePath(language);
var executingAssembly = Assembly.GetExecutingAssembly();
string languageResourcePath = $"{executingAssembly.ManifestModule.Name.Replace(".dll", ".")}Translations.{path}.resources.json";
return executingAssembly.GetManifestResourceStream(languageResourcePath);
}
/// <summary>
/// Returns the relative path of the language file.
/// All translations are under Translations\{langCode}\resources.json
/// </summary>
/// <param name="language">Language</param>
/// <returns>Relative folder for the language</returns>
private string GetLanguageFileNameRelativePath(AppLanguage language)
{
return language switch
{
AppLanguage.English => "en_US",
AppLanguage.Turkish => "tr_TR",
AppLanguage.Deutsch => "de_DE",
AppLanguage.Russian => "ru_RU",
AppLanguage.Polish => "pl_PL",
AppLanguage.Czech => "cs_CZ",
AppLanguage.French => "fr_FR",
AppLanguage.Chinese => "zh_CH",
AppLanguage.Spanish => "es_ES",
_ => "en_US",
};
}
}
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "all done",
"AccountCreationDialog_Initializing": "initializing",
"AccountCreationDialog_PreparingFolders": "We are getting folder information at the moment.",
"AccountCreationDialog_SigninIn": "Account information is being saved.",
"AccountEditDialog_Message": "Account Name",
"AccountEditDialog_Title": "Edit Account",
"AccountPickerDialog_Title": "Pick an account",
"AddHyperlink": "Add",
"AutoDiscoveryProgressMessage": "Searching for mail settings...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Advanced Configuration",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Your credentials will only be stored locally on your computer.",
"BasicIMAPSetupDialog_Description": "Some accounts require additional steps to sign in",
"BasicIMAPSetupDialog_DisplayName": "Display Name",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"BasicIMAPSetupDialog_LearnMore": "Learn more",
"BasicIMAPSetupDialog_MailAddress": "E-Mail Address",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "johndoe@fabrikam.com",
"BasicIMAPSetupDialog_Password": "Password",
"BasicIMAPSetupDialog_Title": "IMAP Account",
"Buttons_AddAccount": "Add Account",
"Buttons_ApplyTheme": "Apply Theme",
"Buttons_Browse": "Browse",
"Buttons_Cancel": "Cancel",
"Buttons_Close": "Close",
"Buttons_Create": "Create",
"Buttons_CreateAccount": "Create Account",
"Buttons_Delete": "Delete",
"Buttons_Discard": "Discard",
"Buttons_EnableImageRendering": "Enable",
"Buttons_No": "No",
"Buttons_Open": "Open",
"Buttons_Purchase": "Purchase",
"Buttons_RateWino": "Rate Wino",
"Buttons_Save": "Save",
"Buttons_SaveConfiguration": "Save Configuration",
"Buttons_Share": "Share",
"Buttons_SignIn": "Sign In",
"Buttons_Yes": "Yes",
"Center": "Center",
"ComingSoon": "Coming soon...",
"ComposerFrom": "From: ",
"ComposerSubject": "Subject: ",
"ComposerTo": "To: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "click enter to input addresses",
"CustomThemeBuilder_AccentColorDescription": "Set custom accent color if you wish. Not selecting a color will use your Windows accent color.",
"CustomThemeBuilder_AccentColorTitle": "Accent color",
"CustomThemeBuilder_PickColor": "Pick",
"CustomThemeBuilder_ThemeNameDescription": "Unique name for your custom theme.",
"CustomThemeBuilder_ThemeNameTitle": "Theme name",
"CustomThemeBuilder_Title": "Custom Theme Builder",
"CustomThemeBuilder_WallpaperDescription": "Set a custom wallpaper for Wino",
"CustomThemeBuilder_WallpaperTitle": "Set custom wallpaper",
"DialogMessage_AccountLimitMessage": "You have reached the account creation limit.\nWould you like to purchase 'Unlimited Account' add-on to continue?",
"DialogMessage_AccountLimitTitle": "Account Limit Reached",
"DialogMessage_CleanupFolderMessage": "Do you want to permanently delete all the mails in this folder?",
"DialogMessage_CleanupFolderTitle": "Cleanup Folder",
"DialogMessage_ComposerMissingRecipientMessage": "Message has no recipient.",
"DialogMessage_ComposerValidationFailedTitle": "Validation Failed",
"DialogMessage_CreateLinkedAccountMessage": "Give this new link a name. Accounts will be merged under this name.",
"DialogMessage_CreateLinkedAccountTitle": "Account Link Name",
"DialogMessage_DeleteAccountConfirmationMessage": "Delete {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "All data associated with this account will be deleted from disk permanently.",
"DialogMessage_DiscardDraftConfirmationMessage": "This draft will be discarded. Do you want to continue?",
"DialogMessage_DiscardDraftConfirmationTitle": "Discard Draft",
"DialogMessage_HardDeleteConfirmationMessage": "Permanent Delete",
"DialogMessage_HardDeleteConfirmationTitle": "Message(s) will be permanently deleted. Do you want to continue?",
"DialogMessage_NoAccountsForCreateMailMessage": "You don't have any accounts to create message from.",
"DialogMessage_NoAccountsForCreateMailTitle": "Account Missing",
"DialogMessage_RenameLinkedAccountsMessage": "Enter new name for linked account",
"DialogMessage_RenameLinkedAccountsTitle": "Rename Linked Account",
"DialogMessage_UnlinkAccountsConfirmationMessage": "This operation will not delete your accounts but only break the link for shared folder connections. Do you want to continue?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Unlink Accounts",
"DialogMessage_EmptySubjectConfirmation": "Missin Subject",
"DialogMessage_EmptySubjectConfirmationMessage": "Message has no subject. Do you want to continue?",
"Dialog_DontAskAgain": "Don't ask again",
"DiscordChannelDisclaimerMessage": "Wino doesn't have it's own Discord server, but special 'wino-mail' channel is hosted at 'Developer Sanctuary' server.\nTo get the updates about Wino please join Developer Sanctuary server and follow 'wino-mail' channel under 'Community Projects'\n\nYou will be directed to server URL since Discord doesn't support channel invites.",
"DiscordChannelDisclaimerTitle": "Important Discord Information",
"Draft": "Draft",
"EditorToolbarOption_Draw": "Draw",
"EditorToolbarOption_Format": "Format",
"EditorToolbarOption_Insert": "Insert",
"EditorToolbarOption_None": "None",
"EditorToolbarOption_Options": "Options",
"ElementTheme_Dark": "Dark mode",
"ElementTheme_Default": "Use system setting",
"ElementTheme_Light": "Light mode",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "IMAP Client Pool failed.",
"Exception_AuthenticationCanceled": "Authentication canceled",
"Exception_CustomThemeExists": "This theme already exists.",
"Exception_CustomThemeMissingName": "You must provide a name.",
"Exception_CustomThemeMissingWallpaper": "You must provide a custom background image.",
"Exception_FailedToSynchronizeFolders": "Failed to synchronize folders",
"Exception_GoogleAuthCallbackNull": "Callback uri is null on activation.",
"Exception_GoogleAuthCorruptedCode": "Corrupted authorization response.",
"Exception_GoogleAuthError": "OAuth authorization error: {0}",
"Exception_GoogleAuthInvalidResponse": "Received request with invalid state ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Authorization code exchange failed.",
"Exception_InvalidSystemFolderConfiguration": "System folder configuration is not valid. Check configuration and try again.",
"Exception_NullAssignedAccount": "Assigned account is null",
"Exception_NullAssignedFolder": "Assigned folder is null",
"Exception_SynchronizerFailureHTTP": "Response handling failed with error HTTP code {0}",
"Exception_TokenGenerationFailed": "Token generation failed",
"Exception_TokenInfoRetrivalFailed": "Failed to get token information.",
"Exception_UnknowErrorDuringAuthentication": "Unknown error occurred during authentication",
"Exception_UnsupportedAction": "Action {0} is not implemented in request processor",
"Exception_UnsupportedProvider": "This provider is not supported.",
"Exception_UnsupportedSynchronizerOperation": "This operation is not supported for {0}",
"Exception_UserCancelSystemFolderSetupDialog": "User canceled system folder config dialog.",
"Files": "Files",
"FilteringOption_All": "All",
"FilteringOption_Flagged": "Flagged",
"FilteringOption_Unread": "Unread",
"Focused": "Focused",
"FolderOperation_CreateSubFolder": "Create sub folder",
"FolderOperation_Delete": "Delete",
"FolderOperation_DontSync": "Don't sync this folder",
"FolderOperation_Empty": "Empty this folder",
"FolderOperation_MarkAllAsRead": "Mark all as read",
"FolderOperation_Move": "Move",
"DragMoveToFolderCaption": "Move to {0}",
"FolderOperation_None": "None",
"FolderOperation_Pin": "Pin",
"FolderOperation_Rename": "Rename",
"FolderOperation_Unpin": "Unpin",
"HoverActionOption_Archive": "Archive",
"HoverActionOption_Delete": "Delete",
"HoverActionOption_MoveJunk": "Move to Junk",
"HoverActionOption_ToggleFlag": "Flag / Unflag",
"HoverActionOption_ToggleRead": "Read / Unread",
"MergedAccountCommonFolderInbox": "Inbox",
"MergedAccountCommonFolderSent": "Sent",
"MergedAccountCommonFolderDraft": "Draft",
"MergedAccountCommonFolderJunk": "Junk",
"MergedAccountCommonFolderTrash": "Deleted",
"MergedAccountCommonFolderArchive": "Archive",
"IMAPSetupDialog_AccountType": "Account type",
"IMAPSetupDialog_DisplayName": "Display Name",
"IMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"IMAPSetupDialog_IncomingMailServer": "Incoming mail server",
"IMAPSetupDialog_IncomingMailServerPort": "Port",
"IMAPSetupDialog_MailAddress": "Email address",
"IMAPSetupDialog_MailAddressPlaceholder": "someone@example.com",
"IMAPSetupDialog_OutgoingMailServer": "Outgoing (SMTP) mail server",
"IMAPSetupDialog_OutgoingMailServerPassword": "Outgoing server password",
"IMAPSetupDialog_OutgoingMailServerPort": "Port",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Outgoing server requires authentication",
"IMAPSetupDialog_OutgoingMailServerUsername": "Outgoing server user name",
"IMAPSetupDialog_Password": "Password",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Require SSL for incoming email",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Require SSL for outgoing email",
"IMAPSetupDialog_Title": "Advanced IMAP Configuration",
"IMAPSetupDialog_UseSameConfig": "Use the same username and password for sending email",
"IMAPSetupDialog_Username": "Username",
"IMAPSetupDialog_UsernamePlaceholder": "johndoe, johndoe@fabrikam.com, domain/johndoe",
"ImageRenderingDisabled": "Image rendering is disabled for this message.",
"InfoBarAction_Enable": "Enable",
"InfoBarMessage_SynchronizationDisabledFolder": "This folder is disabled for synchronization.",
"InfoBarTitle_SynchronizationDisabledFolder": "Disabled Folder",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} is created",
"Info_AccountCreatedTitle": "Account Creation",
"Info_AccountCreationFailedTitle": "Account Creation Failed",
"Info_AccountDeletedMessage": "{0} is successfuly deleted.",
"Info_AccountDeletedTitle": "Account Deleted",
"Info_AccountIssueFixFailedTitle": "Failed",
"Info_AccountIssueFixSuccessMessage": "Fixed all account issues.",
"Info_AccountIssueFixSuccessTitle": "Success",
"Info_AttachmentOpenFailedMessage": "Can't open this attachment.",
"Info_AttachmentOpenFailedTitle": "Failed",
"Info_AttachmentSaveFailedMessage": "Can't save this attachment.",
"Info_AttachmentSaveFailedTitle": "Failed",
"Info_AttachmentSaveSuccessMessage": "Attachment is saved.",
"Info_AttachmentSaveSuccessTitle": "Attachment Saved",
"Info_BackgroundExecutionDeniedMessage": "Background execution for the app is denied. This may affect background synchronization and live notifications.",
"Info_BackgroundExecutionDeniedTitle": "Denied Background Execution",
"Info_BackgroundExecutionUnknownErrorMessage": "Unknown exception occurred when registering background synchronizer.",
"Info_BackgroundExecutionUnknownErrorTitle": "Background Execution Failure",
"Info_ComposerMissingMIMEMessage": "Couldn't locate the MIME file. Synchronizing may help.",
"Info_ComposerMissingMIMETitle": "Failed",
"Info_ContactExistsMessage": "This contact is already in the recipient list.",
"Info_ContactExistsTitle": "Contact Exists",
"Info_DraftFolderMissingMessage": "Draft folder is missing for this account. Please check your account settings.",
"Info_DraftFolderMissingTitle": "Missing Draft Folder",
"Info_FileLaunchFailedTitle": "Failed to launch file",
"Info_InvalidAddressMessage": "'{0}' is not a valid e-mail address.",
"Info_InvalidAddressTitle": "Invalid Address",
"Info_InvalidMoveTargetMessage": "You can't move selected mails to this folder.",
"Info_InvalidMoveTargetTitle": "Invalid Move Target",
"Info_LogsNotFoundMessage": "There are no logs to share.",
"Info_LogsNotFoundTitle": "Logs Not Found",
"Info_LogsSavedMessage": "{0} is saved to selected folder.",
"Info_LogsSavedTitle": "Saved",
"Info_MailRenderingFailedMessage": "This mail is corrupted or can't be opened.\n{0}",
"Info_MailRenderingFailedTitle": "Render Failed",
"Info_MessageCorruptedMessage": "This message is corrupted.",
"Info_MessageCorruptedTitle": "Error",
"Info_MissingFolderMessage": "{0} doesn't exist for this account.",
"Info_MissingFolderTitle": "Missing Folder",
"Info_PurchaseExistsMessage": "Looks like this product has already been purchased before.",
"Info_PurchaseExistsTitle": "Existing Product",
"Info_PurchaseThankYouMessage": "Thank You",
"Info_PurchaseThankYouTitle": "Purchase successful",
"Info_RequestCreationFailedTitle": "Failed to Create Requests",
"Info_ReviewNetworkErrorMessage": "There was a network issue with your review.",
"Info_ReviewNetworkErrorTitle": "Network Issue",
"Info_ReviewNewMessage": "All feedbacks are appreciated. Thank you for the review!",
"Info_ReviewSuccessTitle": "Thank you",
"Info_ReviewUnknownErrorMessage": "There was an unknown issue with your review. ({0})",
"Info_ReviewUnknownErrorTitle": "Unknown Error",
"Info_ReviewUpdatedMessage": "Thank you for the updated review.",
"Info_SignatureDisabledMessage": "Disabled signature for this account",
"Info_SignatureDisabledTitle": "Success",
"Info_SignatureSavedMessage": "New signature is saved",
"Info_SignatureSavedTitle": "Success",
"Info_SyncCanceledMessage": "Canceled",
"Info_SyncCanceledTitle": "Synchronization",
"Info_SyncFailedTitle": "Synchronization Failed",
"Info_UnsupportedFunctionalityDescription": "This functionality is not implemented yet.",
"Info_UnsupportedFunctionalityTitle": "Unsupported",
"Info_UnsubscribeLinkInvalidTitle": "Invalid Unsubscribe Uri",
"Info_UnsubscribeLinkInvalidMessage": "This unsubscribe link is invalid. Failed to unsubscribe from the list.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Authentication method",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Connection security",
"ImapAuthenticationMethod_Auto": "Auto",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "No authentication",
"ImapAuthenticationMethod_Plain": "Normal password",
"ImapAuthenticationMethod_EncryptedPassword": "Encrypted password",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "None",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Auto",
"Justify": "Justify",
"Left": "Left",
"Link": "Link",
"LinkedAccountsCreatePolicyMessage": "you must have at least 2 accounts to create link\nlink will be removed on save",
"LinkedAccountsTitle": "Linked Accounts",
"MailOperation_AlwaysMoveFocused": "Always Move to Focused",
"MailOperation_AlwaysMoveOther": "Always Move to Other",
"MailOperation_Archive": "Archive",
"MailOperation_ClearFlag": "Clear flag",
"MailOperation_DarkEditor": "Dark",
"MailOperation_Delete": "Delete",
"MailOperation_ExportPDF": "Export to PDF",
"MailOperation_Find": "Find",
"MailOperation_Forward": "Forward",
"MailOperation_Ignore": "Ignore",
"MailOperation_LightEditor": "Light",
"MailOperation_MarkAsJunk": "Mark as junk",
"MailOperation_MarkAsRead": "Mark as read",
"MailOperation_MarkAsUnread": "Mark as unread",
"MailOperation_MarkNotJunk": "Mark as Not Junk",
"MailOperation_Move": "Move",
"MailOperation_MoveFocused": "Move to Focused",
"MailOperation_MoveJunk": "Move to Junk",
"MailOperation_MoveOther": "Move to Other",
"MailOperation_Navigate": "Navigate",
"MailOperation_Print": "Print",
"MailOperation_Reply": "Reply",
"MailOperation_ReplyAll": "Reply all",
"MailOperation_SaveAs": "Save As",
"MailOperation_SetFlag": "Set flag",
"MailOperation_Unarchive": "Unarchive",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} item(s) selected",
"MarkFlagUnflag": "Mark as flagged/unflagged",
"MarkReadUnread": "Mark as read/unread",
"MenuManageAccounts": "Manage Accounts",
"MenuNewMail": "New Mail",
"MenuMergedAccountItemAccountsSuffix": " accounts",
"MenuRate": "Rate Wino",
"MenuSettings": "Settings",
"MergedAccountsAvailableAccountsTitle": "Available Accounts",
"More": "More",
"MoveMailDialog_InvalidFolderMessage": "{0} is not a valid folder for this mail.",
"MoveMailDialog_Title": "Pick a folder",
"NewAccountDialog_AccountName": "Account Name",
"NewAccountDialog_AccountNameDefaultValue": "Personal",
"NewAccountDialog_AccountNamePlaceholder": "eg. Personal Mail",
"NewAccountDialog_Title": "Add New Account",
"NoMailSelected": "no message selected",
"NoMessageCrieteria": "no messages match your search criteria.",
"NoMessageEmptyFolder": "this folder is empty.",
"Notifications_MultipleNotificationsMessage": "You have {0} new mails",
"Notifications_MultipleNotificationsTitle": "New Mails",
"Notifications_WinoUpdatedMessage": "Checkout new version {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail has been updated.",
"Other": "Other",
"PaneLengthOption_Default": "Default",
"PaneLengthOption_ExtraLarge": "Extra Large",
"PaneLengthOption_Large": "Large",
"PaneLengthOption_Medium": "Medium",
"PaneLengthOption_Micro": "Micro",
"PaneLengthOption_Small": "Small",
"Photos": "Photos",
"PreparingFoldersMessage": "Preparing folders",
"ProviderDetail_Gmail_Description": "Google Account",
"ProviderDetail_IMAP_Description": "Custom IMAP/SMTP server",
"ProviderDetail_IMAP_Title": "IMAP Server",
"Results": "Results",
"Right": "Right",
"SynchronizationFolderReport_Success": "up to date",
"SynchronizationFolderReport_Failed": "synchronization is failed",
"SearchBarPlaceholder": "search",
"SearchingIn": "searching in",
"SettingsAboutGithub_Description": "Go to issue tracker GitHub repository.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Append messages to Sent folder",
"SettingsAccountManagementAppendMessage_Description": "Create a copy of the message in Sent folder after the draft is sent. Enable this if you don't see your mails after you sent them in Sent folder.",
"SettingsEditLinkedInbox_Title": "Edit Linked Inbox",
"SettingsEditLinkedInbox_Description": "Add / remove accounts, rename or break the link between accounts.",
"SettingsAboutVersion": "Version ",
"SettingsAboutWinoDescription": "Lightweight mail client for Windows device families.",
"SettingsAbout_Description": "Learn more about Wino.",
"SettingsAbout_Title": "About",
"SettingsAccentColor_Description": "Change application's accent color",
"SettingsAccentColor_Title": "Accent Color",
"SettingsAccentColor_UseWindowsAccentColor": "Use my Windows accent color",
"SettingsAccountName_Description": "Change the name of the account.",
"SettingsAccountName_Title": "Account Name",
"SettingsApplicationTheme_Description": "Personalize Wino with different custom application themes for your like.",
"SettingsApplicationTheme_Title": "Application Theme",
"SettingsAvailableThemes_Description": "Select a theme from Wino's own collection for your taste or apply your own themes.",
"SettingsAvailableThemes_Title": "Available Themes",
"SettingsCustomTheme_Description": "Create your own custom theme with custom wallpaper and accent color.",
"SettingsCustomTheme_Title": "Custom Theme",
"SettingsDeleteAccount_Description": "Delete all e-mails and credentials associated with this account.",
"SettingsDeleteAccount_Title": "Delete this account",
"SettingsDeleteProtection_Description": "Should Wino ask you for comfirmation every time you try to permanently delete a mail using Shift + Del keys?",
"SettingsDeleteProtection_Title": "Permanent Delete Protection",
"SettingsDiagnostics_Description": "For developers",
"SettingsDiagnostics_Title": "Diagnostics",
"SettingsDiscord_Description": "Get regular development updates, join roadmap discussions and provide feedback.",
"SettingsDiscord_Title": "Discord Channel",
"SettingsElementThemeSelectionDisabled": "Element theme selection is disabled when application theme is selected other than Default.",
"SettingsElementTheme_Description": "Select a Windows theme for Wino",
"SettingsElementTheme_Title": "Element Theme",
"SettingsEnableHoverActions_Title": "Enable hover actions",
"SettingsEnableIMAPLogs_Description": "Enable this to provide details about IMAP connectivity issuses you had during IMAP server setup.",
"SettingsEnableIMAPLogs_Title": "Enable IMAP Protocol Logs",
"SettingsEnableLogs_Description": "I might need logs for crashes to diagnose issues you have opened in GitHub. None of the logs will expose your credentials or sensetive information to public.",
"SettingsEnableLogs_Title": "Enable Logs",
"SettingsEnableSignature": "Enable Signature",
"SettingsExpandOnStartup_Description": "Set whether Wino should expand this account's folders on startup.",
"SettingsExpandOnStartup_Title": "Expand Menu on Startup",
"SettingsExternalContent_Description": "Manage external content settings when rendering mails.",
"SettingsExternalContent_Title": "External Content",
"SettingsFocusedInbox_Description": "Set whether Inbox should be split into two as Focused - Other.",
"SettingsFocusedInbox_Title": "Focused Inbox",
"SettingsFolderSync_Description": "Enable or disable specific folders for synchronization.",
"SettingsFolderSync_Title": "Folder Synchronization",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Center Action",
"SettingsHoverActionLeft": "Left Action",
"SettingsHoverActionRight": "Right Action",
"SettingsHoverActions_Description": "Select 3 actions to show up when you hover over the mails with cursor.",
"SettingsHoverActions_Title": "Hover Actions",
"SettingsLanguage_Description": "Change display language for Wino.",
"SettingsLanguage_Title": "Display Language",
"CategoriesFolderNameOverride": "Categories",
"MoreFolderNameOverride": "More",
"SettingsOptions_Title": "Settings",
"SettingsLinkAccounts_Description": "Merge multiple accounts into one. See mails from one Inbox together.",
"SettingsLinkAccounts_Title": "Create Linked Accounts",
"SettingsLinkedAccountsSave_Description": "Modify the current link with the new accounts.",
"SettingsLinkedAccountsSave_Title": "Save Changes",
"SettingsLoadImages_Title": "Load images automatically",
"SettingsLoadStyles_Title": "Load styles automatically",
"SettingsMailSpacing_Description": "Adjust the spacing for listing mails.",
"SettingsMailSpacing_Title": "Mail Spacing",
"SettingsFolderMenuStyle_Title": "Create Nested Folders",
"SettingsFolderMenuStyle_Description": "Change whether account folders should be nested inside an account menu item or not. Toggle this off if you like the old menu system in Windows Mail",
"SettingsManageAccountSettings_Description": "Notifications, signatures, synchronization and other settings per account.",
"SettingsManageAccountSettings_Title": "Manage Account Settings",
"SettingsManageLink_Description": "Move items to add new link or remove existing link.",
"SettingsManageLink_Title": "Manage Link",
"SettingsMarkAsRead_Description": "Change what should happen to the selected item.",
"SettingsMarkAsRead_DontChange": "Don't automatically mark item as read",
"SettingsMarkAsRead_SecondsToWait": "Seconds to wait: ",
"SettingsMarkAsRead_Timer": "When viewed in the reading pane",
"SettingsMarkAsRead_Title": "Mark item as read",
"SettingsMarkAsRead_WhenSelected": "When selected",
"SettingsMessageList_Description": "Change how your messages should be organized in mail list.",
"SettingsMessageList_Title": "Message List",
"SettingsNoAccountSetupMessage": "You didn't setup any accounts yet.",
"SettingsNotifications_Description": "Turn on or off notifications for this account.",
"SettingsNotifications_Title": "Notifications",
"SettingsPaneLength_Description": "Change the width of the mail list.",
"SettingsPaneLength_Title": "Mail List Pane Length",
"SettingsPaypal_Description": "Show much more love ❤️ All donations are appreciated.",
"SettingsPaypal_Title": "Donate via PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Compact Mode",
"SettingsPersonalizationMailDisplayMediumMode": "Medium Mode",
"SettingsPersonalizationMailDisplaySpaciousMode": "Spacious Mode",
"SettingsPersonalization_Description": "Change appearance of Wino as you like.",
"SettingsPersonalization_Title": "Personalization",
"SettingsPrivacyPolicy_Description": "Review privacy policy.",
"SettingsPrivacyPolicy_Title": "Privacy Policy",
"SettingsReadingPane_Description": "Mail rendering options.",
"SettingsReadingPane_Title": "Reading Pane",
"SettingsReaderFont_Title": "Default Reader Font",
"SettingsReaderFontFamily_Description": "Change the default font family and font size for reading mails.",
"SettingsFontFamily_Title": "Font Family",
"SettingsFontSize_Title": "Font Size",
"SettingsFontPreview_Title": "Preview",
"SettingsComposerFont_Title": "Default Composer Font",
"SettingsComposerFontFamily_Description": "Change the default font family and font size for composing mails.",
"SettingsRenameMergeAccount_Description": "Change the display name of the linked accounts.",
"SettingsRenameMergeAccount_Title": "Rename",
"SettingsSemanticZoom_Description": "This will allow you to click on the headers in messages list and go to specific date",
"SettingsSemanticZoom_Title": "Semantic Zoom for Date Headers",
"SettingsShowPreviewText_Description": "Hide/show thepreview text.",
"SettingsShowPreviewText_Title": "Show Preview Text",
"SettingsShowSenderPictures_Description": "Hide/show the thumbnail sender pictures.",
"SettingsShowSenderPictures_Title": "Show Sender Avatars",
"SettingsPrefer24HourClock_Title": "Display Clock Format in 24 Hours",
"SettingsPrefer24HourClock_Description": "Mail recieve times will be displayed in 24 hour format instead of 12 (AM/PM)",
"SettingsSignature_Description": "Edit or remove account signature",
"SettingsSignature_Title": "Signature",
"SettingsStartupItem_Description": "Primary account item to load Inbox at startup.",
"SettingsStartupItem_Title": "Startup Item",
"SettingsStore_Description": "Show some love ❤️",
"SettingsStore_Title": "Rate in Store",
"SettingsThreads_Description": "Organize messages into conversation threads.",
"SettingsThreads_Title": "Conversation Threading",
"SettingsUnlinkAccounts_Description": "Remove the link between accounts. This will not delete your accounts.",
"SettingsUnlinkAccounts_Title": "Unlink Accounts",
"SortingOption_Date": "by date",
"SortingOption_Name": "by name",
"StoreRatingDialog_MessageFirstLine": "All feedbacks are appreciated and they will make much Wino better in the future. Would you like to rate Wino in Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Would you like to rate Wino Mail in Microsoft Store?",
"StoreRatingDialog_Title": "Enjoying Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Deleted messages will be moved to here.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Deleted Folder",
"SystemFolderConfigDialog_DraftFolderDescription": "New mails/replies will be crafted in here.",
"SystemFolderConfigDialog_DraftFolderHeader": "Draft Folder",
"SystemFolderConfigDialog_JunkFolderDescription": "All spam/junk mails will be here.",
"SystemFolderConfigDialog_JunkFolderHeader": "Junk/Spam Folder",
"SystemFolderConfigDialog_MessageFirstLine": "This IMAP server doesn't support SPECIAL-USE extension hence Wino couldn't setup the system folders properly.",
"SystemFolderConfigDialog_MessageSecondLine": "Please select the appropriate folders for specific functionalities.",
"SystemFolderConfigDialog_SentFolderDescription": "Folder that sent messages will be stored.",
"SystemFolderConfigDialog_SentFolderHeader": "Sent Folder",
"SystemFolderConfigDialog_Title": "Configure System Folders",
"TestingImapConnectionMessage": "Testing server connection...",
"Today": "Today",
"UnknownAddress": "unknown address",
"UnknownDateHeader": "Unknown Date",
"UnknownGroupAddress": "unknown Mail Group Address",
"UnknownSender": "Unknown Sender",
"Unsubscribe": "Unsubscribe",
"ViewContactDetails": "View Details",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Upgrade to Unlimited Accounts",
"WinoUpgradeRemainingAccountsMessage": "{0} out of {1} free accounts used.",
"Yesterday": "Yesterday"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "hotovo",
"AccountCreationDialog_Initializing": "inicializace",
"AccountCreationDialog_PreparingFolders": "Stahování informací o složkách.",
"AccountCreationDialog_SigninIn": "Probíhá ukládání informací o účtu.",
"AccountEditDialog_Message": "Název účtu",
"AccountEditDialog_Title": "Upravit účet",
"AccountPickerDialog_Title": "Vybrat účet",
"AddHyperlink": "Přidat",
"AutoDiscoveryProgressMessage": "Vyhledávání v nastaveních mailu...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Pokročilá nastavení",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Vaše nastavení budou uložena pouze lokálně na vašem počítači.",
"BasicIMAPSetupDialog_Description": "Některé účty vyžadují další kroky k přihlášení",
"BasicIMAPSetupDialog_DisplayName": "Zobrazované jméno",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "např. Jan Novák",
"BasicIMAPSetupDialog_LearnMore": "Zjistit více",
"BasicIMAPSetupDialog_MailAddress": "Emailová adresa",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "jan.novak@seznam.cz",
"BasicIMAPSetupDialog_Password": "Heslo",
"BasicIMAPSetupDialog_Title": "IMAP účet",
"Buttons_AddAccount": "Přidat účet",
"Buttons_ApplyTheme": "Použít motiv",
"Buttons_Browse": "Procházet",
"Buttons_Cancel": "Zrušit",
"Buttons_Close": "Zavřít",
"Buttons_Create": "Vytvořit",
"Buttons_CreateAccount": "Vytvořit účet",
"Buttons_Delete": "Smazat",
"Buttons_Discard": "Zahodit",
"Buttons_EnableImageRendering": "Povolit",
"Buttons_No": "Ne",
"Buttons_Open": "Otevřít",
"Buttons_Purchase": "Koupit",
"Buttons_RateWino": "Ohodnotit Wino",
"Buttons_Save": "Uložit",
"Buttons_SaveConfiguration": "Uložit nastavení",
"Buttons_Share": "Sdílet",
"Buttons_SignIn": "Přihlásit se",
"Buttons_Yes": "Ano",
"Center": "Nastřed",
"ComingSoon": "Již brzy...",
"ComposerFrom": "Od: ",
"ComposerSubject": "Předmět: ",
"ComposerTo": "Komu: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "pro vložení adresy zmáčkni Enter",
"CustomThemeBuilder_AccentColorDescription": "Pokud chcete, můžete si nastavit barevný tón. Jinak se použije se výchozí barevný tón Windows.",
"CustomThemeBuilder_AccentColorTitle": "Barevný tón",
"CustomThemeBuilder_PickColor": "Vybrat",
"CustomThemeBuilder_ThemeNameDescription": "Unikátní název pro váš motiv.",
"CustomThemeBuilder_ThemeNameTitle": "Název motivu",
"CustomThemeBuilder_Title": "Nástroj na vytvoření vlastního motivu",
"CustomThemeBuilder_WallpaperDescription": "Nastav vlastní pozadí pro Wino",
"CustomThemeBuilder_WallpaperTitle": "Nastav vlastní pozadí",
"DialogMessage_AccountLimitMessage": "Dosáhli jste limitu vytvořených účtů. Chcete si zakoupit doplněk \"Neomezený účet\", aby jste mohli pokračovat?",
"DialogMessage_AccountLimitTitle": "Dosažen limit počtu účtú",
"DialogMessage_CleanupFolderMessage": "Přejete si trvale smazat všechny maily v této složce?",
"DialogMessage_CleanupFolderTitle": "Vyprázdnit složku",
"DialogMessage_ComposerMissingRecipientMessage": "Zpráva nemá žádného příjemce.",
"DialogMessage_ComposerValidationFailedTitle": "Ověření se nezdařilo",
"DialogMessage_CreateLinkedAccountMessage": "Dejte tomuto novému propojení název. Účty budou propojeny pod tímto názvem.",
"DialogMessage_CreateLinkedAccountTitle": "Název propojeného účtu",
"DialogMessage_DeleteAccountConfirmationMessage": "Odstranit {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "Všechna data spojená s tímto účtem budou trvale smazána z disku.",
"DialogMessage_DiscardDraftConfirmationMessage": "Tento koncept bude zahozen. Chcete pokračovat?",
"DialogMessage_DiscardDraftConfirmationTitle": "Zahodit koncept",
"DialogMessage_HardDeleteConfirmationMessage": "Trvalé smazání",
"DialogMessage_HardDeleteConfirmationTitle": "Zpráva(y) bude trvale odstraněna. Chcete pokračovat?",
"DialogMessage_NoAccountsForCreateMailMessage": "Nemáte žádný účet pro vytvoření zprávy.",
"DialogMessage_NoAccountsForCreateMailTitle": "Chybějící účet",
"DialogMessage_RenameLinkedAccountsMessage": "Zadejte nový název pro propojený účet",
"DialogMessage_RenameLinkedAccountsTitle": "Přejmenovat propojený účet",
"DialogMessage_UnlinkAccountsConfirmationMessage": "Tato operace neodstraní vaše mailové účty, ale pouze zruší jejich propojení. Chcete pokračovat?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Rozpojit účty",
"DialogMessage_EmptySubjectConfirmation": "Chybějící Předmět",
"DialogMessage_EmptySubjectConfirmationMessage": "Zpráva nemá Předmět. Chcete pokračovat?",
"Dialog_DontAskAgain": "Příště se neptat",
"DiscordChannelDisclaimerMessage": "Wino nemá vlastní Discord server, ale speciální kanál 'wino-mail' je hostován na serveru 'Developer Sanctuary'.\nChcete-li získat informace o Winu, připojte se k vývojářskému serveru a sledujte 'wino-mail' kanál v rámci 'Community Projects'. \n\nBudete přesměrováni na stránku serveru 'Developer Sanctuary', protože Discord nepodporuje pozvánky přímo do kanálů.",
"DiscordChannelDisclaimerTitle": "Důležité Discord informace",
"Draft": "Koncept",
"EditorToolbarOption_Draw": "Nakreslit",
"EditorToolbarOption_Format": "Formátovat",
"EditorToolbarOption_Insert": "Vložit",
"EditorToolbarOption_None": "Žádné",
"EditorToolbarOption_Options": "Možnosti",
"ElementTheme_Dark": "Tmavý režim",
"ElementTheme_Default": "Použít nastavení systému",
"ElementTheme_Light": "Světlý režim",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "IMAP Client Pool selhal.",
"Exception_AuthenticationCanceled": "Ověřování bylo zrušeno",
"Exception_CustomThemeExists": "Tento motiv už existuje.",
"Exception_CustomThemeMissingName": "Musíte zadat název.",
"Exception_CustomThemeMissingWallpaper": "Musíte zadat vlastní obrázek pozadí.",
"Exception_FailedToSynchronizeFolders": "Synchronizace složek se nezdařila",
"Exception_GoogleAuthCallbackNull": "Callback uri je při aktivaci null.",
"Exception_GoogleAuthCorruptedCode": "Odpověď z autorizačního serveru je chybná.",
"Exception_GoogleAuthError": "Chyba autorizace OAuth: {0}",
"Exception_GoogleAuthInvalidResponse": "Přijata chybová odpověď ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Ověření autorizačního kódu selhalo.",
"Exception_InvalidSystemFolderConfiguration": "Konfigurace systémové složky není správná. Zkontrolujte konfiguraci a zkuste to znovu.",
"Exception_NullAssignedAccount": "Přiřazený účet je \"null\"",
"Exception_NullAssignedFolder": "Přiřazená složka je \"null\"",
"Exception_SynchronizerFailureHTTP": "Zpracování odpovědi se nezdařilo. HTTP kód chyby: {0}",
"Exception_TokenGenerationFailed": "Generování tokenu selhalo",
"Exception_TokenInfoRetrivalFailed": "Nepodařilo se získat informace o tokenu.",
"Exception_UnknowErrorDuringAuthentication": "Při ověřování došlo k neznámé chybě",
"Exception_UnsupportedAction": "Akce {0} není podporována",
"Exception_UnsupportedProvider": "Tento poskytovatel není podporován.",
"Exception_UnsupportedSynchronizerOperation": "Tato operace není podporována pro {0}",
"Exception_UserCancelSystemFolderSetupDialog": "Uživatel zrušil dialogové okno s konfigurací systémové složky.",
"Files": "Soubory",
"FilteringOption_All": "Všechny",
"FilteringOption_Flagged": "Označené",
"FilteringOption_Unread": "Nepřečtené",
"Focused": "Důležité",
"FolderOperation_CreateSubFolder": "Vytvořit podsložku",
"FolderOperation_Delete": "Odstranit",
"FolderOperation_DontSync": "Nesynchronizovat tuto složku",
"FolderOperation_Empty": "Vyprázdnit tuto složku",
"FolderOperation_MarkAllAsRead": "Označit vše jako přečtené",
"FolderOperation_Move": "Přesunout",
"DragMoveToFolderCaption": "Přesunout do {0}",
"FolderOperation_None": "Žádné",
"FolderOperation_Pin": "Připnout",
"FolderOperation_Rename": "Přejmenovat",
"FolderOperation_Unpin": "Odepnout",
"HoverActionOption_Archive": "Archivovat",
"HoverActionOption_Delete": "Smazat",
"HoverActionOption_MoveJunk": "Přesunout do Koše",
"HoverActionOption_ToggleFlag": "Označit / Zrušit označení",
"HoverActionOption_ToggleRead": "Přečtené / Nepřečtené",
"MergedAccountCommonFolderInbox": "Doručená pošta",
"MergedAccountCommonFolderSent": "Odesláno",
"MergedAccountCommonFolderDraft": "Koncepty",
"MergedAccountCommonFolderJunk": "Nevyžádaná pošta",
"MergedAccountCommonFolderTrash": "Koš",
"MergedAccountCommonFolderArchive": "Archív",
"IMAPSetupDialog_AccountType": "Typ účtu",
"IMAPSetupDialog_DisplayName": "Zobrazované jméno",
"IMAPSetupDialog_DisplayNamePlaceholder": "např. Jan Novák",
"IMAPSetupDialog_IncomingMailServer": "Server příchozí pošty",
"IMAPSetupDialog_IncomingMailServerPort": "Port",
"IMAPSetupDialog_MailAddress": "E-mailová adresa",
"IMAPSetupDialog_MailAddressPlaceholder": "jan.novák@seznam.cz",
"IMAPSetupDialog_OutgoingMailServer": "Server odchozí pošty (SMTP)",
"IMAPSetupDialog_OutgoingMailServerPassword": "Heslo odchozího serveru",
"IMAPSetupDialog_OutgoingMailServerPort": "Port",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Odchozí server vyžaduje ověření",
"IMAPSetupDialog_OutgoingMailServerUsername": "Uživatelské jméno odchozího serveru",
"IMAPSetupDialog_Password": "Heslo",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Vyžadovat SSL pro příchozí e-mail",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Vyžadovat SSL pro odchozí e-mail",
"IMAPSetupDialog_Title": "Pokročilé nastavení IMAP",
"IMAPSetupDialog_UseSameConfig": "Použít stejné uživatelské jméno a heslo pro odesílání e-mailu",
"IMAPSetupDialog_Username": "Uživatelské jméno",
"IMAPSetupDialog_UsernamePlaceholder": "jan.novak, jan.novak@seznam.cz",
"ImageRenderingDisabled": "Vykreslování obrázků je pro tuto zprávu zakázáno.",
"InfoBarAction_Enable": "Zapnout",
"InfoBarMessage_SynchronizationDisabledFolder": "Synchronizace této složky je vypnuta.",
"InfoBarTitle_SynchronizationDisabledFolder": "Synchronizace složky vypnuta",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} je vytvořen",
"Info_AccountCreatedTitle": "Vytvoření účtu",
"Info_AccountCreationFailedTitle": "Vytvoření účtu selhalo",
"Info_AccountDeletedMessage": "{0} byl úspěšně smazán.",
"Info_AccountDeletedTitle": "Účet byl smazán",
"Info_AccountIssueFixFailedTitle": "Oprava účtu selhala",
"Info_AccountIssueFixSuccessMessage": "Opraveny všechny problémy s účtem.",
"Info_AccountIssueFixSuccessTitle": "Úspěšně dokončeno",
"Info_AttachmentOpenFailedMessage": "Tuto přílohu nelze otevřít.",
"Info_AttachmentOpenFailedTitle": "Chyba",
"Info_AttachmentSaveFailedMessage": "Tuto přílohu nelze uložit.",
"Info_AttachmentSaveFailedTitle": "Chyba",
"Info_AttachmentSaveSuccessMessage": "Příloha byla uložena.",
"Info_AttachmentSaveSuccessTitle": "Hotovo",
"Info_BackgroundExecutionDeniedMessage": "Spuštění aplikace na pozadí je zakázáno. To může mít vliv na synchronizaci na pozadí a oznámení.",
"Info_BackgroundExecutionDeniedTitle": "Zakázané spuštění na pozadí",
"Info_BackgroundExecutionUnknownErrorMessage": "Při registraci procesu synchronizace na pozadí došlo k neznámé výjimce.",
"Info_BackgroundExecutionUnknownErrorTitle": "Chyba procesu na pozadí",
"Info_ComposerMissingMIMEMessage": "Nelze zjistit MIME typ souboru. Synchronizace může pomoci.",
"Info_ComposerMissingMIMETitle": "Chyba",
"Info_ContactExistsMessage": "Tento kontakt je již v seznamu příjemců.",
"Info_ContactExistsTitle": "Kontakt existuje",
"Info_DraftFolderMissingMessage": "Složka Koncepty pro tento účet chybí. Zkontrolujte prosím nastavení účtu.",
"Info_DraftFolderMissingTitle": "Chybí složka Koncepty",
"Info_FileLaunchFailedTitle": "Spuštění souboru se nezdařilo",
"Info_InvalidAddressMessage": "'{0}' není platná e-mailová adresa.",
"Info_InvalidAddressTitle": "Neplatná adresa",
"Info_InvalidMoveTargetMessage": "Do této složky nelze přesunout vybrané e-maily.",
"Info_InvalidMoveTargetTitle": "Neplatná složka pro přesun",
"Info_LogsNotFoundMessage": "Neexistují žádné logy ke sdílení.",
"Info_LogsNotFoundTitle": "Logy nenalezeny",
"Info_LogsSavedMessage": "{0} je uložen do vybrané složky.",
"Info_LogsSavedTitle": "Uloženo",
"Info_MailRenderingFailedMessage": "Tento e-mail je poškozený nebo nelze otevřít.\n{0}",
"Info_MailRenderingFailedTitle": "Vykreslení selhalo",
"Info_MessageCorruptedMessage": "Tato zpráva je poškozena.",
"Info_MessageCorruptedTitle": "Chyba",
"Info_MissingFolderMessage": "{0} neexistuje pro tento účet.",
"Info_MissingFolderTitle": "Chybějící složka",
"Info_PurchaseExistsMessage": "Vypadá to, že tento produkt byl již zakoupen.",
"Info_PurchaseExistsTitle": "Stávající produkt",
"Info_PurchaseThankYouMessage": "Děkujeme",
"Info_PurchaseThankYouTitle": "Úspěšný nákup",
"Info_RequestCreationFailedTitle": "Nepodařilo se vytvořit požadavky",
"Info_ReviewNetworkErrorMessage": "Došlo k problému se sítí, při odesílání vaší recenze.",
"Info_ReviewNetworkErrorTitle": "Problém se sítí",
"Info_ReviewNewMessage": "Veškeré zpětné vazby si ceníme. Děkujeme za recenzi!",
"Info_ReviewSuccessTitle": "Děkujeme",
"Info_ReviewUnknownErrorMessage": "Došlo k neznámému problému s vaší recenzí ({0})",
"Info_ReviewUnknownErrorTitle": "Neznámá chyba",
"Info_ReviewUpdatedMessage": "Děkujeme za aktualizaci recenze.",
"Info_SignatureDisabledMessage": "Podpis pro tento účet vypnut",
"Info_SignatureDisabledTitle": "Hotovo",
"Info_SignatureSavedMessage": "Nový podpis byl uložen",
"Info_SignatureSavedTitle": "Hotovo",
"Info_SyncCanceledMessage": "Zrušeno",
"Info_SyncCanceledTitle": "Synchronizace",
"Info_SyncFailedTitle": "Synchronizace se nezdařila",
"Info_UnsupportedFunctionalityDescription": "Tato funkce zatím není implementována.",
"Info_UnsupportedFunctionalityTitle": "Nepodporováno",
"Info_UnsubscribeLinkInvalidTitle": "Neplatná URI pro odhlášení mailu",
"Info_UnsubscribeLinkInvalidMessage": "Tento odkaz pro odhlášení je neplatný. Nepodařilo se odhlásit automatizované zasílání e-mailu.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Způsob ověření",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Zabezpečení připojení",
"ImapAuthenticationMethod_Auto": "Auto",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "Žádné ověření",
"ImapAuthenticationMethod_Plain": "Normální heslo",
"ImapAuthenticationMethod_EncryptedPassword": "Zašifrované heslo",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "Žádné",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Auto",
"Justify": "Do bloku",
"Left": "Zleva",
"Link": "Odkaz",
"LinkedAccountsCreatePolicyMessage": "musíte mít alespoň 2 účty, abyste vytvořili propojení\npropojení bude odstraněno po uložení",
"LinkedAccountsTitle": "Propojené účty",
"MailOperation_AlwaysMoveFocused": "Vždy přesunout do složky \"Důležité\"",
"MailOperation_AlwaysMoveOther": "Vždy se přesunout do složky \"Ostatní\"",
"MailOperation_Archive": "Archivovat",
"MailOperation_ClearFlag": "Zrušit označení",
"MailOperation_DarkEditor": "Tmavý",
"MailOperation_Delete": "Smazat",
"MailOperation_ExportPDF": "Exportovat do PDF",
"MailOperation_Find": "Vyhledat",
"MailOperation_Forward": "Přeposlat",
"MailOperation_Ignore": "Ignorovat",
"MailOperation_LightEditor": "Světlý",
"MailOperation_MarkAsJunk": "Označit jako nevyžádané",
"MailOperation_MarkAsRead": "Označit jako přečtené",
"MailOperation_MarkAsUnread": "Označit jako nepřečtené",
"MailOperation_MarkNotJunk": "Zrušit označení jako Nevyžádané",
"MailOperation_Move": "Přesunout",
"MailOperation_MoveFocused": "Přesunout do \"Důležité\"",
"MailOperation_MoveJunk": "Přesunout do \"Koš\"",
"MailOperation_MoveOther": "Přesunout do \"Ostatní\"",
"MailOperation_Navigate": "Přejděte",
"MailOperation_Print": "Vytisknout",
"MailOperation_Reply": "Odpovědět",
"MailOperation_ReplyAll": "Odpovědět všem",
"MailOperation_SaveAs": "Uložit jako…",
"MailOperation_SetFlag": "Označit vlajkou",
"MailOperation_Unarchive": "Odarchivovat",
"MailOperation_Zoom": "Přiblížit",
"MailsSelected": "Vybráno {0} položek",
"MarkFlagUnflag": "Označit / Zrušit označení vlajkou",
"MarkReadUnread": "Označit jako přečtené/nepřečtené",
"MenuManageAccounts": "Nastavení účtů",
"MenuNewMail": "Nový e-mail",
"MenuMergedAccountItemAccountsSuffix": " účty",
"MenuRate": "Ohodnotit Wino",
"MenuSettings": "Nastavení",
"MergedAccountsAvailableAccountsTitle": "Dostupné účty",
"More": "Více",
"MoveMailDialog_InvalidFolderMessage": "{0} není platná složka pro tento e-mail.",
"MoveMailDialog_Title": "Vyberte složku",
"NewAccountDialog_AccountName": "Název účtu",
"NewAccountDialog_AccountNameDefaultValue": "Osobní",
"NewAccountDialog_AccountNamePlaceholder": "např. Osobní účet",
"NewAccountDialog_Title": "Přidat nový účet",
"NoMailSelected": "nebyly vybrány žádné zprávy",
"NoMessageCrieteria": "žádná zpráva neodpovídá kritériím vyhledávání.",
"NoMessageEmptyFolder": "Tato složka je prázdná.",
"Notifications_MultipleNotificationsMessage": "Máš {0} nových zpráv.",
"Notifications_MultipleNotificationsTitle": "Nová pošta",
"Notifications_WinoUpdatedMessage": "Vyzkoušejte novou verzi {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail byl aktualizován.",
"Other": "Ostatní",
"PaneLengthOption_Default": "Výchozí",
"PaneLengthOption_ExtraLarge": "Extra velké",
"PaneLengthOption_Large": "Velké",
"PaneLengthOption_Medium": "Střední",
"PaneLengthOption_Micro": "Mikro",
"PaneLengthOption_Small": "Malé",
"Photos": "Fotky",
"PreparingFoldersMessage": "Připravování složek",
"ProviderDetail_Gmail_Description": "Google účet",
"ProviderDetail_IMAP_Description": "Vlastní IMAP/SMTP server",
"ProviderDetail_IMAP_Title": "IMAP server",
"Results": "Výsledky",
"Right": "Vpravo",
"SynchronizationFolderReport_Success": "Aktuální",
"SynchronizationFolderReport_Failed": "Synchronizace se nezdařila.",
"SearchBarPlaceholder": "vyhledávaný výraz",
"SearchingIn": "Vyhledávání v",
"SettingsAboutGithub_Description": "Přejít na seznam chyb na GitHub.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Přidat zprávy do složky Odeslané",
"SettingsAccountManagementAppendMessage_Description": "Vytvořit kopii zprávy ve složce \"Odeslané\" po odeslání konceptu. Povolte tuto možnost, pokud nevidíte své e-maily po odeslání ve složky \"Odeslané\".",
"SettingsEditLinkedInbox_Title": "Upravit propojený účet",
"SettingsEditLinkedInbox_Description": "Přidat / odebrat účty, přejmenovat nebo zrušit propojení mezi účty.",
"SettingsAboutVersion": "Verze ",
"SettingsAboutWinoDescription": "Lehký e-mailový klient pro systém Windows.",
"SettingsAbout_Description": "Zjistěte více o Wino.",
"SettingsAbout_Title": "O aplikaci",
"SettingsAccentColor_Description": "Změna barevného tónu aplikace",
"SettingsAccentColor_Title": "Barevný tón",
"SettingsAccentColor_UseWindowsAccentColor": "Použít barevný tón mých Windows",
"SettingsAccountName_Description": "Změnit název účtu",
"SettingsAccountName_Title": "Název účtu",
"SettingsApplicationTheme_Description": "Přizpůsobte si Wino různými motivy dle vaší libosti.",
"SettingsApplicationTheme_Title": "Motiv aplikace",
"SettingsAvailableThemes_Description": "Vyberte si šablonu ze sbírky Wino dle vaší libosti nebo použijte vlastní motiv.",
"SettingsAvailableThemes_Title": "Dostupné motivy",
"SettingsCustomTheme_Description": "Vytvořte si vlastní motiv s vlastním pozadím a barevným tónem.",
"SettingsCustomTheme_Title": "Vlastní motiv",
"SettingsDeleteAccount_Description": "Odstranit všechny e-maily a přihlašovací údaje spojené s tímto účtem.",
"SettingsDeleteAccount_Title": "Smazat tento účet",
"SettingsDeleteProtection_Description": "Měl by vás Wino požádat o potvrzení pokaždé, když se pokoušíte trvale smazat e-mail pomocí kláves Shift + Del?",
"SettingsDeleteProtection_Title": "Ochrana proti trvalému smazání",
"SettingsDiagnostics_Description": "Pro vývojáře",
"SettingsDiagnostics_Title": "Diagnostika",
"SettingsDiscord_Description": "Získejte pravidelné aktualizace z vývoje, připojte se k diskusím o rozvoji aplikace a poskytněte zpětnou vazbu.",
"SettingsDiscord_Title": "Discord kanál",
"SettingsElementThemeSelectionDisabled": "Výběr motivu prvku je zakázán, pokud je vybrán jiný motiv aplikace než výchozí.",
"SettingsElementTheme_Description": "Vyberte motiv Windows pro Wino",
"SettingsElementTheme_Title": "Motiv prvku",
"SettingsEnableHoverActions_Title": "Povolit akce při přejetí myší",
"SettingsEnableIMAPLogs_Description": "Povolte pro poskytnutí podrobností o problémech s připojením IMAP, které jste měli během nastavení serveru IMAP.",
"SettingsEnableIMAPLogs_Title": "Povolit logy protokolu IMAP",
"SettingsEnableLogs_Description": "Možná budu potřebovat protokol o pádech pro diagnostiku problémů, které jste vytvořili na GitHubu. Protokoly jsou anonymizované - žádný protokol neukáže vaše přihlašovací údaje nebo citlivé informace.",
"SettingsEnableLogs_Title": "Povolit logy",
"SettingsEnableSignature": "Zapnout podpis",
"SettingsExpandOnStartup_Description": "Nastavte, zda by měl Wino zobrazit složky tohoto účtu při spuštění rozbalené.",
"SettingsExpandOnStartup_Title": "Zobrazit menu při spuštění",
"SettingsExternalContent_Description": "Správa nastavení vykreslování externích e-mailů.",
"SettingsExternalContent_Title": "Externí obsah",
"SettingsFocusedInbox_Description": "Nastavte, zda by měla být doručená pošta rozdělena do dvou jako \"Důležité\" - \"Ostatní\".",
"SettingsFocusedInbox_Title": "Doporučené",
"SettingsFolderSync_Description": "Povolit nebo zakázat konkrétní složky pro synchronizaci.",
"SettingsFolderSync_Title": "Synchronizace složek",
"SettingsFolderOptions_Title": "Nastavení složky",
"SettingsFolderOptions_Description": "Změnit nastavení jednotlivých složek, například povolit/zakázat synchronizaci, nebo zobrazit/skrýt počet nepřečtených e-mailů.",
"SettingsHoverActionCenter": "Prostřední akce",
"SettingsHoverActionLeft": "Levá akce",
"SettingsHoverActionRight": "Pravá akce",
"SettingsHoverActions_Description": "Vyberte 3 akce, které se zobrazí při přejetí pošty kurzorem.",
"SettingsHoverActions_Title": "Akce při přejetí myší",
"SettingsLanguage_Description": "Změnit jazyk aplikace pro Wino.",
"SettingsLanguage_Title": "Jazyk aplikace",
"CategoriesFolderNameOverride": "Kategorie",
"MoreFolderNameOverride": "Více",
"SettingsOptions_Title": "Nastavení",
"SettingsLinkAccounts_Description": "Sloučit více účtů do jednoho. Podívejte se na e-maily v jedné složce \"Doručená pošta\" společně.",
"SettingsLinkAccounts_Title": "Vytvořit propojené účty",
"SettingsLinkedAccountsSave_Description": "Změnit aktuální propojení s novými účty.",
"SettingsLinkedAccountsSave_Title": "Uložit změny",
"SettingsLoadImages_Title": "Automaticky načítat obrázky",
"SettingsLoadStyles_Title": "Automaticky načítat styly",
"SettingsMailSpacing_Description": "Přizpůsobit rozestupy položek v seznamu e-mailů.",
"SettingsMailSpacing_Title": "Rozestupy e-mailů",
"SettingsFolderMenuStyle_Title": "Zapnout vnořené složky",
"SettingsFolderMenuStyle_Description": "Změnit, zda by složky účtu měly být vnořeny uvnitř nabídky účtu či nikoli. Vypněte tento režim, pokud se vám líbí starý systém menu Windows Mail",
"SettingsManageAccountSettings_Description": "Oznámení, podpisy, synchronizace a další nastavení pro jednotlivé účty.",
"SettingsManageAccountSettings_Title": "Správa nastavení účtů",
"SettingsManageLink_Description": "Přesunout položky pro přidání nového propojení účtů nebo odstranění již existujícího.",
"SettingsManageLink_Title": "Spravovat propojení",
"SettingsMarkAsRead_Description": "Změnit, co by se mělo stát s vybranou položkou.",
"SettingsMarkAsRead_DontChange": "Neoznačovat položku automaticky jako přečtenou",
"SettingsMarkAsRead_SecondsToWait": "Sekund k čekání: ",
"SettingsMarkAsRead_Timer": "Při zobrazení v panelu pro čtení",
"SettingsMarkAsRead_Title": "Označit položku jako přečtenou",
"SettingsMarkAsRead_WhenSelected": "Při výběru",
"SettingsMessageList_Description": "Změňte způsob, jakým by měly být zprávy uspořádány v seznamu e-mailů.",
"SettingsMessageList_Title": "Seznam zpráv",
"SettingsNoAccountSetupMessage": "Zatím jste nenastavili žádný účet.",
"SettingsNotifications_Description": "Zapnout nebo vypnout oznámení pro tento účet.",
"SettingsNotifications_Title": "Oznámení",
"SettingsPaneLength_Description": "Změnit šířku seznamu e-mailů.",
"SettingsPaneLength_Title": "Délka panelu e-mailů",
"SettingsPaypal_Description": "Ukažte mnohem více lásky ❤️ Všechny dary jsou vítany.",
"SettingsPaypal_Title": "Přispět přes PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Kompaktní režim",
"SettingsPersonalizationMailDisplayMediumMode": "Střední režim",
"SettingsPersonalizationMailDisplaySpaciousMode": "Prostorový režim",
"SettingsPersonalization_Description": "Změňte vzhled Wino, jak se vám líbí.",
"SettingsPersonalization_Title": "Přizpůsobení",
"SettingsPrivacyPolicy_Description": "Zkontrolujte zásady ochrany osobních údajů.",
"SettingsPrivacyPolicy_Title": "Zásady ochrany osobních údajů",
"SettingsReadingPane_Description": "Možnosti vykreslování e-mailů.",
"SettingsReadingPane_Title": "Panel s vykreskeným e-mailem",
"SettingsReaderFont_Title": "Výchozí font pro vykreslení e-mailu",
"SettingsReaderFontFamily_Description": "Změna výchozího fontu a jeho velikosti pro vykreslení e-mailu",
"SettingsFontFamily_Title": "Font",
"SettingsFontSize_Title": "Velikost",
"SettingsFontPreview_Title": "Náhled",
"SettingsComposerFont_Title": "Výchozí písmo editoru",
"SettingsComposerFontFamily_Description": "Změna výchozího fontu a jeho velikosti pro editor e-mailu",
"SettingsRenameMergeAccount_Description": "Změnit zobrazený název propojených účtů.",
"SettingsRenameMergeAccount_Title": "Přejmenovat",
"SettingsSemanticZoom_Description": "Toto vám umožní kliknout na hlavičky v seznamu zpráv a přejít na konkrétní datum",
"SettingsSemanticZoom_Title": "Sémanické přiblížení pro záhlaví data",
"SettingsShowPreviewText_Description": "Skrýt/zobrazit náhled textu.",
"SettingsShowPreviewText_Title": "Zobrazit náhled textu",
"SettingsShowSenderPictures_Description": "Skrýt/zobrazit náhled obrázku odesílatele.",
"SettingsShowSenderPictures_Title": "Zobrazit avatary odesílatele",
"SettingsPrefer24HourClock_Title": "Zobrazit 24-hodinový formát času",
"SettingsPrefer24HourClock_Description": "Čas přijetí pošty bude zobrazen ve 24-hodinovém formátu času, namísto 12-hodinového (AM/PM)",
"SettingsSignature_Description": "Upravit nebo odebrat podpis účtu",
"SettingsSignature_Title": "Podpis",
"SettingsStartupItem_Description": "Primární účet zobrazený po startu",
"SettingsStartupItem_Title": "Primární účet",
"SettingsStore_Description": "Ukaž trochu lásky ❤️",
"SettingsStore_Title": "Ohodnotit v obchodě",
"SettingsThreads_Description": "Uspořádat zprávy do konverzačních vláken.",
"SettingsThreads_Title": "Vlákna konverzací",
"SettingsUnlinkAccounts_Description": "Odebrat propojení mezi účty. Toto nesmaže vaše účty.",
"SettingsUnlinkAccounts_Title": "Rozpojit účty",
"SortingOption_Date": "podle data",
"SortingOption_Name": "podle jména",
"StoreRatingDialog_MessageFirstLine": "Veškerá zpětná vazba se cení a v bude mít vliv na zlepšení aplikace Wino. Chcete Wino ohodnotit v Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Chcete ohodnotit Wino Mail v Microsoft Store?",
"StoreRatingDialog_Title": "Líbí se vám Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archivované zprávy budou přesunuty do zde.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "složka \"Archív\"",
"SystemFolderConfigDialog_DeletedFolderDescription": "Smazané zprávy budou přesunuty zde.",
"SystemFolderConfigDialog_DeletedFolderHeader": "složka \"Koš\"",
"SystemFolderConfigDialog_DraftFolderDescription": "Zde budou vytvořeny nové zprávy/odpovědi.",
"SystemFolderConfigDialog_DraftFolderHeader": "složka \"Koncepty\"",
"SystemFolderConfigDialog_JunkFolderDescription": "Veškerá nevyžádaná pošta skončí zde.",
"SystemFolderConfigDialog_JunkFolderHeader": "složka \"Spam\"",
"SystemFolderConfigDialog_MessageFirstLine": "Tento IMAP server nepodporuje rozšíření SPECIAL-USE, proto Wino nemohla správně nastavit systémové složky.",
"SystemFolderConfigDialog_MessageSecondLine": "Vyberte prosím příslušné složky pro konkrétní funkce.",
"SystemFolderConfigDialog_SentFolderDescription": "Zprávy, které byly odeslány, skončí zde. ",
"SystemFolderConfigDialog_SentFolderHeader": "složka \"Odeslané\"",
"SystemFolderConfigDialog_Title": "Nastavit systémové složky",
"TestingImapConnectionMessage": "Testuji připojení k serveru...",
"Today": "Dnes",
"UnknownAddress": "neznámá adresa",
"UnknownDateHeader": "Neznámé datum",
"UnknownGroupAddress": "neznámá adresa skupiny e-mailů",
"UnknownSender": "Neznámý odesílatel",
"Unsubscribe": "Odhlásit se",
"ViewContactDetails": "Zobrazit podrobnosti",
"WinoUpgradeDescription": "Wino nabízí 3 účty zdarma. Pokud potřebujete více než 3 účty, upgradujte prosím.",
"WinoUpgradeMessage": "Přejít na neomezený počet účtů",
"WinoUpgradeRemainingAccountsMessage": "{0} z {1} použitých bezplatných účtů.",
"Yesterday": "Včera"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "all done",
"AccountCreationDialog_Initializing": "initializing",
"AccountCreationDialog_PreparingFolders": "We are getting folder information at the moment.",
"AccountCreationDialog_SigninIn": "Account information is being saved.",
"AccountEditDialog_Message": "Account Name",
"AccountEditDialog_Title": "Edit Account",
"AccountPickerDialog_Title": "Pick an account",
"AddHyperlink": "Add",
"AutoDiscoveryProgressMessage": "Searching for mail settings...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Advanced Configuration",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Your credentials will only be stored locally on your computer.",
"BasicIMAPSetupDialog_Description": "Some accounts require additional steps to sign in",
"BasicIMAPSetupDialog_DisplayName": "Display Name",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"BasicIMAPSetupDialog_LearnMore": "Learn more",
"BasicIMAPSetupDialog_MailAddress": "E-Mail Address",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "johndoe@fabrikam.com",
"BasicIMAPSetupDialog_Password": "Password",
"BasicIMAPSetupDialog_Title": "IMAP Account",
"Buttons_AddAccount": "Add Account",
"Buttons_ApplyTheme": "Apply Theme",
"Buttons_Browse": "Browse",
"Buttons_Cancel": "Cancel",
"Buttons_Close": "Close",
"Buttons_Create": "Create",
"Buttons_CreateAccount": "Create Account",
"Buttons_Delete": "Delete",
"Buttons_Discard": "Discard",
"Buttons_EnableImageRendering": "Enable",
"Buttons_No": "No",
"Buttons_Open": "Open",
"Buttons_Purchase": "Purchase",
"Buttons_RateWino": "Rate Wino",
"Buttons_Save": "Save",
"Buttons_SaveConfiguration": "Save Configuration",
"Buttons_Share": "Share",
"Buttons_SignIn": "Sign In",
"Buttons_Yes": "Yes",
"Center": "Center",
"ComingSoon": "Coming soon...",
"ComposerFrom": "From: ",
"ComposerSubject": "Subject: ",
"ComposerTo": "To: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "click enter to input addresses",
"CustomThemeBuilder_AccentColorDescription": "Set custom accent color if you wish. Not selecting a color will use your Windows accent color.",
"CustomThemeBuilder_AccentColorTitle": "Accent color",
"CustomThemeBuilder_PickColor": "Pick",
"CustomThemeBuilder_ThemeNameDescription": "Unique name for your custom theme.",
"CustomThemeBuilder_ThemeNameTitle": "Theme name",
"CustomThemeBuilder_Title": "Custom Theme Builder",
"CustomThemeBuilder_WallpaperDescription": "Set a custom wallpaper for Wino",
"CustomThemeBuilder_WallpaperTitle": "Set custom wallpaper",
"DialogMessage_AccountLimitMessage": "You have reached the account creation limit.\nWould you like to purchase 'Unlimited Account' add-on to continue?",
"DialogMessage_AccountLimitTitle": "Account Limit Reached",
"DialogMessage_CleanupFolderMessage": "Do you want to permanently delete all the mails in this folder?",
"DialogMessage_CleanupFolderTitle": "Cleanup Folder",
"DialogMessage_ComposerMissingRecipientMessage": "Message has no recipient.",
"DialogMessage_ComposerValidationFailedTitle": "Validation Failed",
"DialogMessage_CreateLinkedAccountMessage": "Give this new link a name. Accounts will be merged under this name.",
"DialogMessage_CreateLinkedAccountTitle": "Account Link Name",
"DialogMessage_DeleteAccountConfirmationMessage": "Delete {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "All data associated with this account will be deleted from disk permanently.",
"DialogMessage_DiscardDraftConfirmationMessage": "This draft will be discarded. Do you want to continue?",
"DialogMessage_DiscardDraftConfirmationTitle": "Discard Draft",
"DialogMessage_HardDeleteConfirmationMessage": "Permanent Delete",
"DialogMessage_HardDeleteConfirmationTitle": "Message(s) will be permanently deleted. Do you want to continue?",
"DialogMessage_NoAccountsForCreateMailMessage": "You don't have any accounts to create message from.",
"DialogMessage_NoAccountsForCreateMailTitle": "Account Missing",
"DialogMessage_RenameLinkedAccountsMessage": "Enter new name for linked account",
"DialogMessage_RenameLinkedAccountsTitle": "Rename Linked Account",
"DialogMessage_UnlinkAccountsConfirmationMessage": "This operation will not delete your accounts but only break the link for shared folder connections. Do you want to continue?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Unlink Accounts",
"DialogMessage_EmptySubjectConfirmation": "Missin Subject",
"DialogMessage_EmptySubjectConfirmationMessage": "Message has no subject. Do you want to continue?",
"Dialog_DontAskAgain": "Don't ask again",
"DiscordChannelDisclaimerMessage": "Wino doesn't have it's own Discord server, but special 'wino-mail' channel is hosted at 'Developer Sanctuary' server.\nTo get the updates about Wino please join Developer Sanctuary server and follow 'wino-mail' channel under 'Community Projects'\n\nYou will be directed to server URL since Discord doesn't support channel invites.",
"DiscordChannelDisclaimerTitle": "Important Discord Information",
"Draft": "Draft",
"EditorToolbarOption_Draw": "Draw",
"EditorToolbarOption_Format": "Format",
"EditorToolbarOption_Insert": "Insert",
"EditorToolbarOption_None": "None",
"EditorToolbarOption_Options": "Options",
"ElementTheme_Dark": "Dark mode",
"ElementTheme_Default": "Use system setting",
"ElementTheme_Light": "Light mode",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "IMAP Client Pool failed.",
"Exception_AuthenticationCanceled": "Authentication canceled",
"Exception_CustomThemeExists": "This theme already exists.",
"Exception_CustomThemeMissingName": "You must provide a name.",
"Exception_CustomThemeMissingWallpaper": "You must provide a custom background image.",
"Exception_FailedToSynchronizeFolders": "Failed to synchronize folders",
"Exception_GoogleAuthCallbackNull": "Callback uri is null on activation.",
"Exception_GoogleAuthCorruptedCode": "Corrupted authorization response.",
"Exception_GoogleAuthError": "OAuth authorization error: {0}",
"Exception_GoogleAuthInvalidResponse": "Received request with invalid state ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Authorization code exchange failed.",
"Exception_InvalidSystemFolderConfiguration": "System folder configuration is not valid. Check configuration and try again.",
"Exception_NullAssignedAccount": "Assigned account is null",
"Exception_NullAssignedFolder": "Assigned folder is null",
"Exception_SynchronizerFailureHTTP": "Response handling failed with error HTTP code {0}",
"Exception_TokenGenerationFailed": "Token generation failed",
"Exception_TokenInfoRetrivalFailed": "Failed to get token information.",
"Exception_UnknowErrorDuringAuthentication": "Unknown error occurred during authentication",
"Exception_UnsupportedAction": "Action {0} is not implemented in request processor",
"Exception_UnsupportedProvider": "This provider is not supported.",
"Exception_UnsupportedSynchronizerOperation": "This operation is not supported for {0}",
"Exception_UserCancelSystemFolderSetupDialog": "User canceled system folder config dialog.",
"Files": "Files",
"FilteringOption_All": "All",
"FilteringOption_Flagged": "Flagged",
"FilteringOption_Unread": "Unread",
"Focused": "Focused",
"FolderOperation_CreateSubFolder": "Create sub folder",
"FolderOperation_Delete": "Delete",
"FolderOperation_DontSync": "Don't sync this folder",
"FolderOperation_Empty": "Empty this folder",
"FolderOperation_MarkAllAsRead": "Mark all as read",
"FolderOperation_Move": "Move",
"DragMoveToFolderCaption": "Move to {0}",
"FolderOperation_None": "None",
"FolderOperation_Pin": "Pin",
"FolderOperation_Rename": "Rename",
"FolderOperation_Unpin": "Unpin",
"HoverActionOption_Archive": "Archive",
"HoverActionOption_Delete": "Delete",
"HoverActionOption_MoveJunk": "Move to Junk",
"HoverActionOption_ToggleFlag": "Flag / Unflag",
"HoverActionOption_ToggleRead": "Read / Unread",
"MergedAccountCommonFolderInbox": "Inbox",
"MergedAccountCommonFolderSent": "Sent",
"MergedAccountCommonFolderDraft": "Draft",
"MergedAccountCommonFolderJunk": "Junk",
"MergedAccountCommonFolderTrash": "Deleted",
"MergedAccountCommonFolderArchive": "Archive",
"IMAPSetupDialog_AccountType": "Account type",
"IMAPSetupDialog_DisplayName": "Display Name",
"IMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"IMAPSetupDialog_IncomingMailServer": "Incoming mail server",
"IMAPSetupDialog_IncomingMailServerPort": "Port",
"IMAPSetupDialog_MailAddress": "Email address",
"IMAPSetupDialog_MailAddressPlaceholder": "someone@example.com",
"IMAPSetupDialog_OutgoingMailServer": "Outgoing (SMTP) mail server",
"IMAPSetupDialog_OutgoingMailServerPassword": "Outgoing server password",
"IMAPSetupDialog_OutgoingMailServerPort": "Port",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Outgoing server requires authentication",
"IMAPSetupDialog_OutgoingMailServerUsername": "Outgoing server user name",
"IMAPSetupDialog_Password": "Password",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Require SSL for incoming email",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Require SSL for outgoing email",
"IMAPSetupDialog_Title": "Advanced IMAP Configuration",
"IMAPSetupDialog_UseSameConfig": "Use the same username and password for sending email",
"IMAPSetupDialog_Username": "Username",
"IMAPSetupDialog_UsernamePlaceholder": "johndoe, johndoe@fabrikam.com, domain/johndoe",
"ImageRenderingDisabled": "Image rendering is disabled for this message.",
"InfoBarAction_Enable": "Enable",
"InfoBarMessage_SynchronizationDisabledFolder": "This folder is disabled for synchronization.",
"InfoBarTitle_SynchronizationDisabledFolder": "Disabled Folder",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} is created",
"Info_AccountCreatedTitle": "Account Creation",
"Info_AccountCreationFailedTitle": "Account Creation Failed",
"Info_AccountDeletedMessage": "{0} is successfuly deleted.",
"Info_AccountDeletedTitle": "Account Deleted",
"Info_AccountIssueFixFailedTitle": "Failed",
"Info_AccountIssueFixSuccessMessage": "Fixed all account issues.",
"Info_AccountIssueFixSuccessTitle": "Success",
"Info_AttachmentOpenFailedMessage": "Can't open this attachment.",
"Info_AttachmentOpenFailedTitle": "Failed",
"Info_AttachmentSaveFailedMessage": "Can't save this attachment.",
"Info_AttachmentSaveFailedTitle": "Failed",
"Info_AttachmentSaveSuccessMessage": "Attachment is saved.",
"Info_AttachmentSaveSuccessTitle": "Attachment Saved",
"Info_BackgroundExecutionDeniedMessage": "Background execution for the app is denied. This may affect background synchronization and live notifications.",
"Info_BackgroundExecutionDeniedTitle": "Denied Background Execution",
"Info_BackgroundExecutionUnknownErrorMessage": "Unknown exception occurred when registering background synchronizer.",
"Info_BackgroundExecutionUnknownErrorTitle": "Background Execution Failure",
"Info_ComposerMissingMIMEMessage": "Couldn't locate the MIME file. Synchronizing may help.",
"Info_ComposerMissingMIMETitle": "Failed",
"Info_ContactExistsMessage": "This contact is already in the recipient list.",
"Info_ContactExistsTitle": "Contact Exists",
"Info_DraftFolderMissingMessage": "Draft folder is missing for this account. Please check your account settings.",
"Info_DraftFolderMissingTitle": "Missing Draft Folder",
"Info_FileLaunchFailedTitle": "Failed to launch file",
"Info_InvalidAddressMessage": "'{0}' is not a valid e-mail address.",
"Info_InvalidAddressTitle": "Invalid Address",
"Info_InvalidMoveTargetMessage": "You can't move selected mails to this folder.",
"Info_InvalidMoveTargetTitle": "Invalid Move Target",
"Info_LogsNotFoundMessage": "There are no logs to share.",
"Info_LogsNotFoundTitle": "Logs Not Found",
"Info_LogsSavedMessage": "{0} is saved to selected folder.",
"Info_LogsSavedTitle": "Saved",
"Info_MailRenderingFailedMessage": "This mail is corrupted or can't be opened.\n{0}",
"Info_MailRenderingFailedTitle": "Render Failed",
"Info_MessageCorruptedMessage": "This message is corrupted.",
"Info_MessageCorruptedTitle": "Error",
"Info_MissingFolderMessage": "{0} doesn't exist for this account.",
"Info_MissingFolderTitle": "Missing Folder",
"Info_PurchaseExistsMessage": "Looks like this product has already been purchased before.",
"Info_PurchaseExistsTitle": "Existing Product",
"Info_PurchaseThankYouMessage": "Thank You",
"Info_PurchaseThankYouTitle": "Purchase successful",
"Info_RequestCreationFailedTitle": "Failed to Create Requests",
"Info_ReviewNetworkErrorMessage": "There was a network issue with your review.",
"Info_ReviewNetworkErrorTitle": "Network Issue",
"Info_ReviewNewMessage": "All feedbacks are appreciated. Thank you for the review!",
"Info_ReviewSuccessTitle": "Thank you",
"Info_ReviewUnknownErrorMessage": "There was an unknown issue with your review. ({0})",
"Info_ReviewUnknownErrorTitle": "Unknown Error",
"Info_ReviewUpdatedMessage": "Thank you for the updated review.",
"Info_SignatureDisabledMessage": "Disabled signature for this account",
"Info_SignatureDisabledTitle": "Success",
"Info_SignatureSavedMessage": "New signature is saved",
"Info_SignatureSavedTitle": "Success",
"Info_SyncCanceledMessage": "Canceled",
"Info_SyncCanceledTitle": "Synchronization",
"Info_SyncFailedTitle": "Synchronization Failed",
"Info_UnsupportedFunctionalityDescription": "This functionality is not implemented yet.",
"Info_UnsupportedFunctionalityTitle": "Unsupported",
"Info_UnsubscribeLinkInvalidTitle": "Invalid Unsubscribe Uri",
"Info_UnsubscribeLinkInvalidMessage": "This unsubscribe link is invalid. Failed to unsubscribe from the list.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Authentication method",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Connection security",
"ImapAuthenticationMethod_Auto": "Auto",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "No authentication",
"ImapAuthenticationMethod_Plain": "Normal password",
"ImapAuthenticationMethod_EncryptedPassword": "Encrypted password",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "None",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Auto",
"Justify": "Justify",
"Left": "Left",
"Link": "Link",
"LinkedAccountsCreatePolicyMessage": "you must have at least 2 accounts to create link\nlink will be removed on save",
"LinkedAccountsTitle": "Linked Accounts",
"MailOperation_AlwaysMoveFocused": "Always Move to Focused",
"MailOperation_AlwaysMoveOther": "Always Move to Other",
"MailOperation_Archive": "Archive",
"MailOperation_ClearFlag": "Clear flag",
"MailOperation_DarkEditor": "Dark",
"MailOperation_Delete": "Delete",
"MailOperation_ExportPDF": "Export to PDF",
"MailOperation_Find": "Find",
"MailOperation_Forward": "Forward",
"MailOperation_Ignore": "Ignore",
"MailOperation_LightEditor": "Light",
"MailOperation_MarkAsJunk": "Mark as junk",
"MailOperation_MarkAsRead": "Mark as read",
"MailOperation_MarkAsUnread": "Mark as unread",
"MailOperation_MarkNotJunk": "Mark as Not Junk",
"MailOperation_Move": "Move",
"MailOperation_MoveFocused": "Move to Focused",
"MailOperation_MoveJunk": "Move to Junk",
"MailOperation_MoveOther": "Move to Other",
"MailOperation_Navigate": "Navigate",
"MailOperation_Print": "Print",
"MailOperation_Reply": "Reply",
"MailOperation_ReplyAll": "Reply all",
"MailOperation_SaveAs": "Save As",
"MailOperation_SetFlag": "Set flag",
"MailOperation_Unarchive": "Unarchive",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} item(s) selected",
"MarkFlagUnflag": "Mark as flagged/unflagged",
"MarkReadUnread": "Mark as read/unread",
"MenuManageAccounts": "Manage Accounts",
"MenuNewMail": "New Mail",
"MenuMergedAccountItemAccountsSuffix": " accounts",
"MenuRate": "Rate Wino",
"MenuSettings": "Settings",
"MergedAccountsAvailableAccountsTitle": "Available Accounts",
"More": "More",
"MoveMailDialog_InvalidFolderMessage": "{0} is not a valid folder for this mail.",
"MoveMailDialog_Title": "Pick a folder",
"NewAccountDialog_AccountName": "Account Name",
"NewAccountDialog_AccountNameDefaultValue": "Personal",
"NewAccountDialog_AccountNamePlaceholder": "eg. Personal Mail",
"NewAccountDialog_Title": "Add New Account",
"NoMailSelected": "no message selected",
"NoMessageCrieteria": "no messages match your search criteria.",
"NoMessageEmptyFolder": "this folder is empty.",
"Notifications_MultipleNotificationsMessage": "You have {0} new mails",
"Notifications_MultipleNotificationsTitle": "New Mails",
"Notifications_WinoUpdatedMessage": "Checkout new version {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail has been updated.",
"Other": "Other",
"PaneLengthOption_Default": "Default",
"PaneLengthOption_ExtraLarge": "Extra Large",
"PaneLengthOption_Large": "Large",
"PaneLengthOption_Medium": "Medium",
"PaneLengthOption_Micro": "Micro",
"PaneLengthOption_Small": "Small",
"Photos": "Photos",
"PreparingFoldersMessage": "Preparing folders",
"ProviderDetail_Gmail_Description": "Google Account",
"ProviderDetail_IMAP_Description": "Custom IMAP/SMTP server",
"ProviderDetail_IMAP_Title": "IMAP Server",
"Results": "Results",
"Right": "Right",
"SynchronizationFolderReport_Success": "up to date",
"SynchronizationFolderReport_Failed": "synchronization is failed",
"SearchBarPlaceholder": "search",
"SearchingIn": "searching in",
"SettingsAboutGithub_Description": "Go to issue tracker GitHub repository.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Append messages to Sent folder",
"SettingsAccountManagementAppendMessage_Description": "Create a copy of the message in Sent folder after the draft is sent. Enable this if you don't see your mails after you sent them in Sent folder.",
"SettingsEditLinkedInbox_Title": "Edit Linked Inbox",
"SettingsEditLinkedInbox_Description": "Add / remove accounts, rename or break the link between accounts.",
"SettingsAboutVersion": "Version ",
"SettingsAboutWinoDescription": "Lightweight mail client for Windows device families.",
"SettingsAbout_Description": "Learn more about Wino.",
"SettingsAbout_Title": "About",
"SettingsAccentColor_Description": "Change application's accent color",
"SettingsAccentColor_Title": "Accent Color",
"SettingsAccentColor_UseWindowsAccentColor": "Use my Windows accent color",
"SettingsAccountName_Description": "Change the name of the account.",
"SettingsAccountName_Title": "Account Name",
"SettingsApplicationTheme_Description": "Personalize Wino with different custom application themes for your like.",
"SettingsApplicationTheme_Title": "Application Theme",
"SettingsAvailableThemes_Description": "Select a theme from Wino's own collection for your taste or apply your own themes.",
"SettingsAvailableThemes_Title": "Available Themes",
"SettingsCustomTheme_Description": "Create your own custom theme with custom wallpaper and accent color.",
"SettingsCustomTheme_Title": "Custom Theme",
"SettingsDeleteAccount_Description": "Delete all e-mails and credentials associated with this account.",
"SettingsDeleteAccount_Title": "Delete this account",
"SettingsDeleteProtection_Description": "Should Wino ask you for comfirmation every time you try to permanently delete a mail using Shift + Del keys?",
"SettingsDeleteProtection_Title": "Permanent Delete Protection",
"SettingsDiagnostics_Description": "For developers",
"SettingsDiagnostics_Title": "Diagnostics",
"SettingsDiscord_Description": "Get regular development updates, join roadmap discussions and provide feedback.",
"SettingsDiscord_Title": "Discord Channel",
"SettingsElementThemeSelectionDisabled": "Element theme selection is disabled when application theme is selected other than Default.",
"SettingsElementTheme_Description": "Select a Windows theme for Wino",
"SettingsElementTheme_Title": "Element Theme",
"SettingsEnableHoverActions_Title": "Enable hover actions",
"SettingsEnableIMAPLogs_Description": "Enable this to provide details about IMAP connectivity issuses you had during IMAP server setup.",
"SettingsEnableIMAPLogs_Title": "Enable IMAP Protocol Logs",
"SettingsEnableLogs_Description": "I might need logs for crashes to diagnose issues you have opened in GitHub. None of the logs will expose your credentials or sensetive information to public.",
"SettingsEnableLogs_Title": "Enable Logs",
"SettingsEnableSignature": "Enable Signature",
"SettingsExpandOnStartup_Description": "Set whether Wino should expand this account's folders on startup.",
"SettingsExpandOnStartup_Title": "Expand Menu on Startup",
"SettingsExternalContent_Description": "Manage external content settings when rendering mails.",
"SettingsExternalContent_Title": "External Content",
"SettingsFocusedInbox_Description": "Set whether Inbox should be split into two as Focused - Other.",
"SettingsFocusedInbox_Title": "Focused Inbox",
"SettingsFolderSync_Description": "Enable or disable specific folders for synchronization.",
"SettingsFolderSync_Title": "Folder Synchronization",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Center Action",
"SettingsHoverActionLeft": "Left Action",
"SettingsHoverActionRight": "Right Action",
"SettingsHoverActions_Description": "Select 3 actions to show up when you hover over the mails with cursor.",
"SettingsHoverActions_Title": "Hover Actions",
"SettingsLanguage_Description": "Change display language for Wino.",
"SettingsLanguage_Title": "Display Language",
"CategoriesFolderNameOverride": "Categories",
"MoreFolderNameOverride": "More",
"SettingsOptions_Title": "Settings",
"SettingsLinkAccounts_Description": "Merge multiple accounts into one. See mails from one Inbox together.",
"SettingsLinkAccounts_Title": "Create Linked Accounts",
"SettingsLinkedAccountsSave_Description": "Modify the current link with the new accounts.",
"SettingsLinkedAccountsSave_Title": "Save Changes",
"SettingsLoadImages_Title": "Load images automatically",
"SettingsLoadStyles_Title": "Load styles automatically",
"SettingsMailSpacing_Description": "Adjust the spacing for listing mails.",
"SettingsMailSpacing_Title": "Mail Spacing",
"SettingsFolderMenuStyle_Title": "Create Nested Folders",
"SettingsFolderMenuStyle_Description": "Change whether account folders should be nested inside an account menu item or not. Toggle this off if you like the old menu system in Windows Mail",
"SettingsManageAccountSettings_Description": "Notifications, signatures, synchronization and other settings per account.",
"SettingsManageAccountSettings_Title": "Manage Account Settings",
"SettingsManageLink_Description": "Move items to add new link or remove existing link.",
"SettingsManageLink_Title": "Manage Link",
"SettingsMarkAsRead_Description": "Change what should happen to the selected item.",
"SettingsMarkAsRead_DontChange": "Don't automatically mark item as read",
"SettingsMarkAsRead_SecondsToWait": "Seconds to wait: ",
"SettingsMarkAsRead_Timer": "When viewed in the reading pane",
"SettingsMarkAsRead_Title": "Mark item as read",
"SettingsMarkAsRead_WhenSelected": "When selected",
"SettingsMessageList_Description": "Change how your messages should be organized in mail list.",
"SettingsMessageList_Title": "Message List",
"SettingsNoAccountSetupMessage": "You didn't setup any accounts yet.",
"SettingsNotifications_Description": "Turn on or off notifications for this account.",
"SettingsNotifications_Title": "Notifications",
"SettingsPaneLength_Description": "Change the width of the mail list.",
"SettingsPaneLength_Title": "Mail List Pane Length",
"SettingsPaypal_Description": "Show much more love ❤️ All donations are appreciated.",
"SettingsPaypal_Title": "Donate via PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Compact Mode",
"SettingsPersonalizationMailDisplayMediumMode": "Medium Mode",
"SettingsPersonalizationMailDisplaySpaciousMode": "Spacious Mode",
"SettingsPersonalization_Description": "Change appearance of Wino as you like.",
"SettingsPersonalization_Title": "Personalization",
"SettingsPrivacyPolicy_Description": "Review privacy policy.",
"SettingsPrivacyPolicy_Title": "Privacy Policy",
"SettingsReadingPane_Description": "Mail rendering options.",
"SettingsReadingPane_Title": "Reading Pane",
"SettingsReaderFont_Title": "Default Reader Font",
"SettingsReaderFontFamily_Description": "Change the default font family and font size for reading mails.",
"SettingsFontFamily_Title": "Font Family",
"SettingsFontSize_Title": "Font Size",
"SettingsFontPreview_Title": "Preview",
"SettingsComposerFont_Title": "Default Composer Font",
"SettingsComposerFontFamily_Description": "Change the default font family and font size for composing mails.",
"SettingsRenameMergeAccount_Description": "Change the display name of the linked accounts.",
"SettingsRenameMergeAccount_Title": "Rename",
"SettingsSemanticZoom_Description": "This will allow you to click on the headers in messages list and go to specific date",
"SettingsSemanticZoom_Title": "Semantic Zoom for Date Headers",
"SettingsShowPreviewText_Description": "Hide/show thepreview text.",
"SettingsShowPreviewText_Title": "Show Preview Text",
"SettingsShowSenderPictures_Description": "Hide/show the thumbnail sender pictures.",
"SettingsShowSenderPictures_Title": "Show Sender Avatars",
"SettingsPrefer24HourClock_Title": "Display Clock Format in 24 Hours",
"SettingsPrefer24HourClock_Description": "Mail recieve times will be displayed in 24 hour format instead of 12 (AM/PM)",
"SettingsSignature_Description": "Edit or remove account signature",
"SettingsSignature_Title": "Signature",
"SettingsStartupItem_Description": "Primary account item to load Inbox at startup.",
"SettingsStartupItem_Title": "Startup Item",
"SettingsStore_Description": "Show some love ❤️",
"SettingsStore_Title": "Rate in Store",
"SettingsThreads_Description": "Organize messages into conversation threads.",
"SettingsThreads_Title": "Conversation Threading",
"SettingsUnlinkAccounts_Description": "Remove the link between accounts. This will not delete your accounts.",
"SettingsUnlinkAccounts_Title": "Unlink Accounts",
"SortingOption_Date": "by date",
"SortingOption_Name": "by name",
"StoreRatingDialog_MessageFirstLine": "All feedbacks are appreciated and they will make much Wino better in the future. Would you like to rate Wino in Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Would you like to rate Wino Mail in Microsoft Store?",
"StoreRatingDialog_Title": "Enjoying Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Deleted messages will be moved to here.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Deleted Folder",
"SystemFolderConfigDialog_DraftFolderDescription": "New mails/replies will be crafted in here.",
"SystemFolderConfigDialog_DraftFolderHeader": "Draft Folder",
"SystemFolderConfigDialog_JunkFolderDescription": "All spam/junk mails will be here.",
"SystemFolderConfigDialog_JunkFolderHeader": "Junk/Spam Folder",
"SystemFolderConfigDialog_MessageFirstLine": "This IMAP server doesn't support SPECIAL-USE extension hence Wino couldn't setup the system folders properly.",
"SystemFolderConfigDialog_MessageSecondLine": "Please select the appropriate folders for specific functionalities.",
"SystemFolderConfigDialog_SentFolderDescription": "Folder that sent messages will be stored.",
"SystemFolderConfigDialog_SentFolderHeader": "Sent Folder",
"SystemFolderConfigDialog_Title": "Configure System Folders",
"TestingImapConnectionMessage": "Testing server connection...",
"Today": "Today",
"UnknownAddress": "unknown address",
"UnknownDateHeader": "Unknown Date",
"UnknownGroupAddress": "unknown Mail Group Address",
"UnknownSender": "Unknown Sender",
"Unsubscribe": "Unsubscribe",
"ViewContactDetails": "View Details",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Upgrade to Unlimited Accounts",
"WinoUpgradeRemainingAccountsMessage": "{0} out of {1} free accounts used.",
"Yesterday": "Yesterday"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "alles erledigt",
"AccountCreationDialog_Initializing": "initialisiere",
"AccountCreationDialog_PreparingFolders": "Es werden Ordner-Informationen gesammelt.",
"AccountCreationDialog_SigninIn": "Kontoinformationen wurden gespeichert.",
"AccountEditDialog_Message": "Konto-Name",
"AccountEditDialog_Title": "Konto bearbeiten",
"AccountPickerDialog_Title": "Konto auswählen",
"AddHyperlink": "Hinzufügen",
"AutoDiscoveryProgressMessage": "Es wird nach Mail-Einstellungen gesucht...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Erweiterte Konfiguration",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Die Zugangsdaten werden nur lokal auf Ihrem Computer gespeichert.",
"BasicIMAPSetupDialog_Description": "Einige Konten benötigen zusätzliche Schritte zum Anmelden",
"BasicIMAPSetupDialog_DisplayName": "Anzeigename",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "z.B. John Doe",
"BasicIMAPSetupDialog_LearnMore": "Mehr erfahren",
"BasicIMAPSetupDialog_MailAddress": "E-Mail Adresse",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "johndoe@fabrikam.com",
"BasicIMAPSetupDialog_Password": "Passwort",
"BasicIMAPSetupDialog_Title": "IMAP-Konto",
"Buttons_AddAccount": "Konto hinzufügen",
"Buttons_ApplyTheme": "Thema anwenden",
"Buttons_Browse": "Durchsuchen",
"Buttons_Cancel": "Abbrechen",
"Buttons_Close": "Schließen",
"Buttons_Create": "Erstellen",
"Buttons_CreateAccount": "Konto erstellen",
"Buttons_Delete": "Löschen",
"Buttons_Discard": "Verwerfen",
"Buttons_EnableImageRendering": "An",
"Buttons_No": "Nein",
"Buttons_Open": "Öffnen",
"Buttons_Purchase": "Kaufen",
"Buttons_RateWino": "Wino bewerten",
"Buttons_Save": "Speichern",
"Buttons_SaveConfiguration": "Einstellungen speichern",
"Buttons_Share": "Teilen",
"Buttons_SignIn": "Anmelden",
"Buttons_Yes": "Ja",
"Center": "Zentriert",
"ComingSoon": "Bald verfügbar...",
"ComposerFrom": "Von: ",
"ComposerSubject": "Betreff: ",
"ComposerTo": "An: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "klicke Enter, um Adressen einzugeben",
"CustomThemeBuilder_AccentColorDescription": "Legen Sie eine benutzerdefinierte Akzentfarbe fest. Wenn Sie keine Farbe wählen, wird die Akzentfarbe von Windows verwendet.",
"CustomThemeBuilder_AccentColorTitle": "Akzentfarbe",
"CustomThemeBuilder_PickColor": "Auswählen",
"CustomThemeBuilder_ThemeNameDescription": "Eindeutiger Name für Ihr benutzerdefiniertes Thema.",
"CustomThemeBuilder_ThemeNameTitle": "Name des Designs",
"CustomThemeBuilder_Title": "Benutzerdefinierter Theme-Generator",
"CustomThemeBuilder_WallpaperDescription": "Eigenen Hintergrund für Wino festlegen",
"CustomThemeBuilder_WallpaperTitle": "Eigenen Hintergrund festlegen",
"DialogMessage_AccountLimitMessage": "Sie haben das Limit für die Kontenanzahl erreicht.\nMöchten Sie die Option \"Unbegrenzte Konten\" kaufen, um fortzufahren?",
"DialogMessage_AccountLimitTitle": "Kontolimit erreicht",
"DialogMessage_CleanupFolderMessage": "Möchten Sie alle Mails in diesem Ordner dauerhaft löschen?",
"DialogMessage_CleanupFolderTitle": "Bereinigungs-Ordner",
"DialogMessage_ComposerMissingRecipientMessage": "Nachricht hat keinen Empfänger.",
"DialogMessage_ComposerValidationFailedTitle": "Validierung fehlgeschlagen",
"DialogMessage_CreateLinkedAccountMessage": "Geben Sie diesem neuen Link einen Namen. Konten werden unter diesem Namen zusammengeführt.",
"DialogMessage_CreateLinkedAccountTitle": "Name des Konto-Links",
"DialogMessage_DeleteAccountConfirmationMessage": "{0} löschen?",
"DialogMessage_DeleteAccountConfirmationTitle": "Alle mit diesem Konto verknüpften Daten werden dauerhaft von der Festplatte gelöscht.",
"DialogMessage_DiscardDraftConfirmationMessage": "Dieser Entwurf wird verworfen. Möchten Sie fortfahren?",
"DialogMessage_DiscardDraftConfirmationTitle": "Entwurf verwerfen",
"DialogMessage_HardDeleteConfirmationMessage": "Dauerhaft löschen",
"DialogMessage_HardDeleteConfirmationTitle": "Nachricht(en) werden dauerhaft gelöscht. Möchten Sie fortfahren?",
"DialogMessage_NoAccountsForCreateMailMessage": "Sie haben keine Konten zum Erstellen von Nachrichten.",
"DialogMessage_NoAccountsForCreateMailTitle": "Konto fehlt",
"DialogMessage_RenameLinkedAccountsMessage": "Neuen Namen für verknüpftes Konto eingeben",
"DialogMessage_RenameLinkedAccountsTitle": "Verknüpftes Konto umbenennen",
"DialogMessage_UnlinkAccountsConfirmationMessage": "Dieser Vorgang wird Ihre Konten nicht löschen, sondern nur den Link für freigegebene Ordnerverbindungen zerstören. Möchten Sie fortfahren?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Konten trennen",
"DialogMessage_EmptySubjectConfirmation": "Betreff fehlt",
"DialogMessage_EmptySubjectConfirmationMessage": "Nachricht hat keinen Betreff. Möchten Sie fortfahren?",
"Dialog_DontAskAgain": "Nicht mehr fragen",
"DiscordChannelDisclaimerMessage": "Wino hat keinen eigenen Discord Server, aber der spezielle 'wino-mail'-Kanal wird auf dem 'Developer Sanctuary' Server gehostet (englisch).\nUm Updates über Wino zu erhalten, treten Sie gerne dem 'Developer Sactuary'-Server bei und folgen dem 'wino-mail'-Kanal unter 'Community Projects'.\n\nSie werden zur Server-URL weitergeleitet, da Discord keine Kanal-Einladungen unterstützt.",
"DiscordChannelDisclaimerTitle": "Wichtige Discord-Informationen",
"Draft": "Entwurf",
"EditorToolbarOption_Draw": "Zeichnen",
"EditorToolbarOption_Format": "Format",
"EditorToolbarOption_Insert": "Einfügen",
"EditorToolbarOption_None": "Keine",
"EditorToolbarOption_Options": "Optionen",
"ElementTheme_Dark": "Dunkler Modus",
"ElementTheme_Default": "Systemeinstellung verwenden",
"ElementTheme_Light": "Heller Modus",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "IMAP Client-Pool fehlgeschlagen.",
"Exception_AuthenticationCanceled": "Authentifizierung abgebrochen",
"Exception_CustomThemeExists": "Dieses Thema existiert bereits.",
"Exception_CustomThemeMissingName": "Sie müssen einen Namen angeben.",
"Exception_CustomThemeMissingWallpaper": "Sie müssen ein eigenes Hintergrundbild angeben.",
"Exception_FailedToSynchronizeFolders": "Fehler beim Synchronisieren der Ordner",
"Exception_GoogleAuthCallbackNull": "'Callback uri ist 'null' bei der Aktivierung.",
"Exception_GoogleAuthCorruptedCode": "Korrupte Autorisierungsantwort.",
"Exception_GoogleAuthError": "OAuth Autorisierungsfehler: {0}",
"Exception_GoogleAuthInvalidResponse": "Anfrage mit ungültigem Status ({0}) erhalten",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Autorisierungscode-Austausch fehlgeschlagen.",
"Exception_InvalidSystemFolderConfiguration": "Die Konfiguration des Systemordners ist nicht gültig. Überprüfen Sie die Konfiguration und versuchen Sie es erneut.",
"Exception_NullAssignedAccount": "Zugewiesenes Konto ist 'null'",
"Exception_NullAssignedFolder": "Zugewiesener Ordner ist 'null'",
"Exception_SynchronizerFailureHTTP": "Antwortbehandlung fehlgeschlagen mit Fehler HTTP-Code {0}",
"Exception_TokenGenerationFailed": "Tokengenerierung fehlgeschlagen",
"Exception_TokenInfoRetrivalFailed": "Fehler beim Abrufen der Token-Informationen.",
"Exception_UnknowErrorDuringAuthentication": "Unbekannter Fehler bei der Authentifizierung",
"Exception_UnsupportedAction": "Aktion {0} ist nicht im Anfrageprozessor implementiert",
"Exception_UnsupportedProvider": "Dieser Anbieter wird nicht unterstützt.",
"Exception_UnsupportedSynchronizerOperation": "Diese Operation wird für {0} nicht unterstützt",
"Exception_UserCancelSystemFolderSetupDialog": "Benutzer hat den Konfigurationsdialog für den Systemordner abgebrochen.",
"Files": "Dateien",
"FilteringOption_All": "Alle",
"FilteringOption_Flagged": "Markiert",
"FilteringOption_Unread": "Ungelesen",
"Focused": "Fokussiert",
"FolderOperation_CreateSubFolder": "Unterordner erstellen",
"FolderOperation_Delete": "Löschen",
"FolderOperation_DontSync": "Ordner nicht synchronisieren",
"FolderOperation_Empty": "Ordner leeren",
"FolderOperation_MarkAllAsRead": "Alle als gelesen markieren",
"FolderOperation_Move": "Verschieben",
"DragMoveToFolderCaption": "Nach {0} verschieben",
"FolderOperation_None": "Keine",
"FolderOperation_Pin": "Anheften",
"FolderOperation_Rename": "Umbenennen",
"FolderOperation_Unpin": "Lösen",
"HoverActionOption_Archive": "Archivieren",
"HoverActionOption_Delete": "Löschen",
"HoverActionOption_MoveJunk": "In den Papierkorb verschieben",
"HoverActionOption_ToggleFlag": "Markieren / Markierung entfernen",
"HoverActionOption_ToggleRead": "Lesen / Ungelesen",
"MergedAccountCommonFolderInbox": "Posteingang",
"MergedAccountCommonFolderSent": "Gesendet",
"MergedAccountCommonFolderDraft": "Entwürfe",
"MergedAccountCommonFolderJunk": "Papierkorb",
"MergedAccountCommonFolderTrash": "Gelöscht",
"MergedAccountCommonFolderArchive": "Archiv",
"IMAPSetupDialog_AccountType": "Kontotyp",
"IMAPSetupDialog_DisplayName": "Anzeigename",
"IMAPSetupDialog_DisplayNamePlaceholder": "z.B. John Doe",
"IMAPSetupDialog_IncomingMailServer": "Eingehender Mail-Server",
"IMAPSetupDialog_IncomingMailServerPort": "Port",
"IMAPSetupDialog_MailAddress": "E-Mail Adresse",
"IMAPSetupDialog_MailAddressPlaceholder": "jemand@beispiel.de",
"IMAPSetupDialog_OutgoingMailServer": "Ausgehender (SMTP) Mail-Server",
"IMAPSetupDialog_OutgoingMailServerPassword": "Ausgehendes Server-Passwort",
"IMAPSetupDialog_OutgoingMailServerPort": "Port",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Ausgehender Server erfordert Authentifizierung",
"IMAPSetupDialog_OutgoingMailServerUsername": "Benutzername für ausgehenden Server",
"IMAPSetupDialog_Password": "Passwort",
"IMAPSetupDialog_RequireSSLForIncomingMail": "SSL für eingehende E-Mails erforderlich machen",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "SSL für ausgehende E-Mails erforderlich machen",
"IMAPSetupDialog_Title": "Erweiterte IMAP-Konfiguration",
"IMAPSetupDialog_UseSameConfig": "Den gleichen Benutzernamen und das gleiche Passwort für das Senden von E-Mails verwenden",
"IMAPSetupDialog_Username": "Benutzername",
"IMAPSetupDialog_UsernamePlaceholder": "johndoe, johndoe@fabrikam.com, domain/johndoe",
"ImageRenderingDisabled": "Bilddarstellung ist für diese Nachricht deaktiviert.",
"InfoBarAction_Enable": "Aktivieren",
"InfoBarMessage_SynchronizationDisabledFolder": "Dieser Ordner wird nicht synchronisiert.",
"InfoBarTitle_SynchronizationDisabledFolder": "Deaktivierter Ordner",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} wurde erstellt",
"Info_AccountCreatedTitle": "Konto-Erstellung",
"Info_AccountCreationFailedTitle": "Konto-Erstellung fehlgeschlagen",
"Info_AccountDeletedMessage": "{0} wurde erfolgreich gelöscht.",
"Info_AccountDeletedTitle": "Konto gelöscht",
"Info_AccountIssueFixFailedTitle": "Fehlschlagen",
"Info_AccountIssueFixSuccessMessage": "Alle Konto-Probleme wurden behoben.",
"Info_AccountIssueFixSuccessTitle": "Erfolg",
"Info_AttachmentOpenFailedMessage": "Anhang kann nicht geöffnet werden.",
"Info_AttachmentOpenFailedTitle": "Fehlschlagen",
"Info_AttachmentSaveFailedMessage": "Anhang kann nicht gespeichert werden.",
"Info_AttachmentSaveFailedTitle": "Fehlschlagen",
"Info_AttachmentSaveSuccessMessage": "Anhang wird gespeichert.",
"Info_AttachmentSaveSuccessTitle": "Anhang gespeichert",
"Info_BackgroundExecutionDeniedMessage": "Hintergrundausführung der App wird verweigert. Dies kann sich auf die Hintergrundsynchronisierung und Live-Benachrichtigungen auswirken.",
"Info_BackgroundExecutionDeniedTitle": "Hintergrundausführung verweigert",
"Info_BackgroundExecutionUnknownErrorMessage": "Unbekannter Fehler beim Registrieren des Hintergrundsynchronisators.",
"Info_BackgroundExecutionUnknownErrorTitle": "Fehler bei der Hintergrundausführung",
"Info_ComposerMissingMIMEMessage": "Die MIME-Datei konnte nicht gefunden werden. Synchronisierung kann helfen.",
"Info_ComposerMissingMIMETitle": "Fehlschlagen",
"Info_ContactExistsMessage": "Dieser Kontakt ist bereits in der Empfängerliste.",
"Info_ContactExistsTitle": "Kontakt existiert",
"Info_DraftFolderMissingMessage": "Entwürfe-Ordner fehlt für dieses Konto. Bitte überprüfen Sie Ihre Konto-Einstellungen.",
"Info_DraftFolderMissingTitle": "Entwürfe-Ordner fehlt",
"Info_FileLaunchFailedTitle": "Fehler beim Starten der Datei",
"Info_InvalidAddressMessage": "'{0}' ist keine gültige E-Mail-Adresse.",
"Info_InvalidAddressTitle": "Ungültige Adresse",
"Info_InvalidMoveTargetMessage": "Sie können die ausgewählten Mails nicht in diesen Ordner verschieben.",
"Info_InvalidMoveTargetTitle": "Ungültiges Verschiebungsziel",
"Info_LogsNotFoundMessage": "Keine Logs zum Teilen vorhanden.",
"Info_LogsNotFoundTitle": "Logs nicht gefunden",
"Info_LogsSavedMessage": "{0} wird im ausgewählten Ordner gespeichert.",
"Info_LogsSavedTitle": "Gespeichert",
"Info_MailRenderingFailedMessage": "Diese Mail ist beschädigt oder kann nicht geöffnet werden.\n{0}",
"Info_MailRenderingFailedTitle": "Darstellen fehlgeschlagen",
"Info_MessageCorruptedMessage": "Diese Nachricht ist beschädigt.",
"Info_MessageCorruptedTitle": "Fehler",
"Info_MissingFolderMessage": "{0} existiert für dieses Konto nicht.",
"Info_MissingFolderTitle": "Fehlender Ordner",
"Info_PurchaseExistsMessage": "Es sieht so aus, als ob dieses Produkt bereits gekauft wurde.",
"Info_PurchaseExistsTitle": "Vorhandenes Produkt",
"Info_PurchaseThankYouMessage": "Vielen Dank",
"Info_PurchaseThankYouTitle": "Kauf abgeschlossen",
"Info_RequestCreationFailedTitle": "Fehler beim Erstellen von Anfragen",
"Info_ReviewNetworkErrorMessage": "Es gab ein Netzwerkproblem bei Ihrer Bewertung.",
"Info_ReviewNetworkErrorTitle": "Netzwerkfehler",
"Info_ReviewNewMessage": "Alle Rückmeldungen werden geschätzt. Vielen Dank für die Bewertung!",
"Info_ReviewSuccessTitle": "Vielen Dank",
"Info_ReviewUnknownErrorMessage": "Es gab ein unbekanntes Problem mit Ihrer Bewertung. ({0})",
"Info_ReviewUnknownErrorTitle": "Unbekannter Fehler",
"Info_ReviewUpdatedMessage": "Vielen Dank für die aktualisierte Bewertung.",
"Info_SignatureDisabledMessage": "Signatur für dieses Konto deaktiviert",
"Info_SignatureDisabledTitle": "Erfolg",
"Info_SignatureSavedMessage": "Neue Signatur gespeichert",
"Info_SignatureSavedTitle": "Erfolg",
"Info_SyncCanceledMessage": "Abgebrochen",
"Info_SyncCanceledTitle": "Synchronisierung",
"Info_SyncFailedTitle": "Synchronisierung fehlgeschlagen",
"Info_UnsupportedFunctionalityDescription": "Diese Funktionalität ist noch nicht implementiert.",
"Info_UnsupportedFunctionalityTitle": "Nicht unterstützt",
"Info_UnsubscribeLinkInvalidTitle": "Ungültige Abmelde-Uri",
"Info_UnsubscribeLinkInvalidMessage": "Dieser Abmeldelink ist ungültig. Fehler beim Abmelden der Liste.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Authentifizierungsmethode",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Verbindungssicherheit",
"ImapAuthenticationMethod_Auto": "Auto",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "Keine Authentifizierung",
"ImapAuthenticationMethod_Plain": "Normales Passwort",
"ImapAuthenticationMethod_EncryptedPassword": "Verschlüsseltes Passwort",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "Keine",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Auto",
"Justify": "Block",
"Left": "Links",
"Link": "Link",
"LinkedAccountsCreatePolicyMessage": "Sie müssen mindestens 2 Konten haben, um Link zu erstellen\nLink wird beim Speichern entfernt",
"LinkedAccountsTitle": "Verknüpfte Konten",
"MailOperation_AlwaysMoveFocused": "Immer in Fokussiert",
"MailOperation_AlwaysMoveOther": "Immer in Andere verschieben",
"MailOperation_Archive": "Archiv",
"MailOperation_ClearFlag": "Markierung aufheben",
"MailOperation_DarkEditor": "Dunkel",
"MailOperation_Delete": "Löschen",
"MailOperation_ExportPDF": "Als PDF exportieren",
"MailOperation_Find": "Suchen",
"MailOperation_Forward": "Weiterleiten",
"MailOperation_Ignore": "Ignorieren",
"MailOperation_LightEditor": "Hell",
"MailOperation_MarkAsJunk": "Als Spam markieren",
"MailOperation_MarkAsRead": "Als gelesen markieren",
"MailOperation_MarkAsUnread": "Als ungelesen markieren",
"MailOperation_MarkNotJunk": "Nicht mehr als Spam markieren",
"MailOperation_Move": "Verschieben",
"MailOperation_MoveFocused": "Nach Fokussiert verschieben",
"MailOperation_MoveJunk": "In den Spam verschieben",
"MailOperation_MoveOther": "In Andere verschieben",
"MailOperation_Navigate": "Navigieren",
"MailOperation_Print": "Drucken",
"MailOperation_Reply": "Antworten",
"MailOperation_ReplyAll": "Allen antworten",
"MailOperation_SaveAs": "Speichern als",
"MailOperation_SetFlag": "Markierung setzen",
"MailOperation_Unarchive": "Archivierung aufheben",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} Element(e) ausgewählt",
"MarkFlagUnflag": "Als markiert/nicht markiert setzen",
"MarkReadUnread": "Als gelesen/ungelesen markieren",
"MenuManageAccounts": "Konten verwalten",
"MenuNewMail": "Neue Mail",
"MenuMergedAccountItemAccountsSuffix": " Konten",
"MenuRate": "Wino bewerten",
"MenuSettings": "Einstellungen",
"MergedAccountsAvailableAccountsTitle": "Verfügbare Konten",
"More": "Mehr",
"MoveMailDialog_InvalidFolderMessage": "{0} ist kein gültiger Ordner für diese Mail.",
"MoveMailDialog_Title": "Ordner wählen",
"NewAccountDialog_AccountName": "Konto-Name",
"NewAccountDialog_AccountNameDefaultValue": "Persönlich",
"NewAccountDialog_AccountNamePlaceholder": "z.B. Persönliche Mails",
"NewAccountDialog_Title": "Neues Konto hinzufügen",
"NoMailSelected": "keine Nachricht ausgewählt",
"NoMessageCrieteria": "Keine Nachrichten entsprechen Ihren Suchkriterien.",
"NoMessageEmptyFolder": "Dieser Ordner ist leer.",
"Notifications_MultipleNotificationsMessage": "Sie haben {0} neue Mails",
"Notifications_MultipleNotificationsTitle": "Neue Mails",
"Notifications_WinoUpdatedMessage": "Neue Version {0} herunterladen",
"Notifications_WinoUpdatedTitle": "Wino Mail wurde aktualisiert.",
"Other": "Andere",
"PaneLengthOption_Default": "Standard",
"PaneLengthOption_ExtraLarge": "Extra Groß",
"PaneLengthOption_Large": "Groß",
"PaneLengthOption_Medium": "Mittel",
"PaneLengthOption_Micro": "Mikro",
"PaneLengthOption_Small": "Klein",
"Photos": "Fotos",
"PreparingFoldersMessage": "Ordnervorbereitung",
"ProviderDetail_Gmail_Description": "Google-Konto",
"ProviderDetail_IMAP_Description": "Eigener IMAP/SMTP Server",
"ProviderDetail_IMAP_Title": "IMAP-Server",
"Results": "Ergebnisse",
"Right": "Rechts",
"SynchronizationFolderReport_Success": "aktuell",
"SynchronizationFolderReport_Failed": "Synchronisierung fehlgeschlagen",
"SearchBarPlaceholder": "Suche",
"SearchingIn": "suche in",
"SettingsAboutGithub_Description": "Gehen Sie zum Problem-Tracker GitHub-Repository.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Nachrichten an Gesendete Ordner anhängen",
"SettingsAccountManagementAppendMessage_Description": "Erstellen Sie eine Kopie der Nachricht im Gesendete Ordner, nachdem der Entwurf gesendet wurde. Aktivieren Sie dies, wenn Sie Ihre Mails nicht sehen, nachdem Sie in den Ordner Gesendete verschoben wurden.",
"SettingsEditLinkedInbox_Title": "Verlinkten Posteingang bearbeiten",
"SettingsEditLinkedInbox_Description": "Konten hinzufügen/entfernen, umbenennen oder die Verbindung zwischen Konten unterbrechen.",
"SettingsAboutVersion": "Version ",
"SettingsAboutWinoDescription": "Leichte Mail-Anwendung für Windows-Geräte.",
"SettingsAbout_Description": "Erfahren Sie mehr über Wino.",
"SettingsAbout_Title": "Über",
"SettingsAccentColor_Description": "Akzentfarbe der Anwendung ändern",
"SettingsAccentColor_Title": "Akzentfarbe",
"SettingsAccentColor_UseWindowsAccentColor": "Windows-Akzentfarbe benutzen",
"SettingsAccountName_Description": "Name des Kontos ändern.",
"SettingsAccountName_Title": "Konto-Name",
"SettingsApplicationTheme_Description": "Passen Sie Wino mit verschiedenen benutzerdefinierten Anwendungs-Themen Ihrem Geschmack an.",
"SettingsApplicationTheme_Title": "Anwendungs-Thema",
"SettingsAvailableThemes_Description": "Wählen Sie ein Thema aus der Sammlung von Wino oder verwenden Sie Ihre eigenen Themen.",
"SettingsAvailableThemes_Title": "Verfügbare Themen",
"SettingsCustomTheme_Description": "Erstellen Sie Ihr eigenes Thema mit individuellem Hintergrundbild und Akzentfarbe.",
"SettingsCustomTheme_Title": "Eigenes Thema",
"SettingsDeleteAccount_Description": "Alle E-Mails und Anmeldeinformationen dieses Kontos löschen.",
"SettingsDeleteAccount_Title": "Dieses Konto löschen",
"SettingsDeleteProtection_Description": "Sollte Wino jedes Mal nachfragen, wenn Sie eine Mail mit Umschalten + Entfernen permanent löschen möchten?",
"SettingsDeleteProtection_Title": "Schutz vor permanenter Löschung",
"SettingsDiagnostics_Description": "Für Entwickler",
"SettingsDiagnostics_Title": "Diagnostik",
"SettingsDiscord_Description": "Bekommen Sie reguläre Entwicklungs-Updates, treten Sie Zeitplan-Diskussionen bei und geben Sie Feedback.",
"SettingsDiscord_Title": "Discord Kanal",
"SettingsElementThemeSelectionDisabled": "Auswahl des Element-Themas ist deaktiviert, wenn das Anwendungs-Thema nicht als Standard festgelegt ist.",
"SettingsElementTheme_Description": "Wählen Sie ein Windows-Thema für Wino",
"SettingsElementTheme_Title": "Element-Thema",
"SettingsEnableHoverActions_Title": "Hover-Aktionen aktivieren",
"SettingsEnableIMAPLogs_Description": "Aktivieren Sie dies, um Probleme bei der IMAP-Konnektivität zu übermitteln, die Sie während der Einrichtung des IMAP-Servers hatten.",
"SettingsEnableIMAPLogs_Title": "IMAP-Protokoll-Logs aktivieren",
"SettingsEnableLogs_Description": "Ich benötige möglicherweise Logs über Abstürze, um Probleme zu diagnostizieren, die du auf GitHub gemeldet hast. Keiner der Logs wird Ihre Zugangsdaten oder sensiblen Informationen öffentlich zugänglich machen.",
"SettingsEnableLogs_Title": "Logs aktivieren",
"SettingsEnableSignature": "Signatur aktivieren",
"SettingsExpandOnStartup_Description": "Legen Sie fest, ob Wino die Ordner dieses Kontos beim Start erweitern soll.",
"SettingsExpandOnStartup_Title": "Menü beim Start erweitern",
"SettingsExternalContent_Description": "Stellen Sie die Darstellung externer Inhalte innerhalb von E-Mails ein.",
"SettingsExternalContent_Title": "Externe Inhalte",
"SettingsFocusedInbox_Description": "Legen Sie fest, ob der Posteingang in Fokussiert - Andere aufgeteilt werden soll.",
"SettingsFocusedInbox_Title": "Fokussierter Posteingang",
"SettingsFolderSync_Description": "Bestimmte Ordner für die Synchronisierung aktivieren oder deaktivieren.",
"SettingsFolderSync_Title": "Ordner-Synchronisierung",
"SettingsFolderOptions_Title": "Ordnerkonfiguration",
"SettingsFolderOptions_Description": "Ändern Sie einzelne Ordnereinstellungen, wie z. B. das Ein-/Ausblenden des \"Ungelesen\"-Symbols oder das (De-)Aktivieren der Synchronisierung.",
"SettingsHoverActionCenter": "Zentrierte Aktion",
"SettingsHoverActionLeft": "Linke Aktion",
"SettingsHoverActionRight": "Rechte Aktion",
"SettingsHoverActions_Description": "Wählen Sie 3 Aktionen aus, die angezeigt werden sollen, wenn Sie mit dem Cursor über Mails hovern.",
"SettingsHoverActions_Title": "Hover-Aktionen",
"SettingsLanguage_Description": "Anzeigesprache für Wino ändern.",
"SettingsLanguage_Title": "Anzeigesprache",
"CategoriesFolderNameOverride": "Kategorien",
"MoreFolderNameOverride": "Mehr",
"SettingsOptions_Title": "Einstellungen",
"SettingsLinkAccounts_Description": "Mehrere Konten zu einem zusammenführen. Sehen Sie E-Mails in einem kombinierten Posteingang.",
"SettingsLinkAccounts_Title": "Verknüpftes Konto erstellen",
"SettingsLinkedAccountsSave_Description": "Ändern Sie den aktuellen Link mit den neuen Konten.",
"SettingsLinkedAccountsSave_Title": "Änderungen speichern",
"SettingsLoadImages_Title": "Bilder automatisch laden",
"SettingsLoadStyles_Title": "Stile automatisch laden",
"SettingsMailSpacing_Description": "Den Abstand für die Auflistung von Mails anpassen.",
"SettingsMailSpacing_Title": "Mail-Abstand",
"SettingsFolderMenuStyle_Title": "Verschachtelte Ordner erstellen",
"SettingsFolderMenuStyle_Description": "Ändern Sie, ob Kontoordner in einem Konten-Menüpunkt verschachtelt werden sollen oder nicht. Schalten Sie dies aus, wenn Sie das alte Menüsystem in Windows Mail mögen.",
"SettingsManageAccountSettings_Description": "Benachrichtigungen, Signaturen, Synchronisierung und andere Einstellungen pro Konto.",
"SettingsManageAccountSettings_Title": "Kontoeinstellungen verwalten",
"SettingsManageLink_Description": "Elemente verschieben, um neuen Link hinzuzufügen oder bestehenden Link zu entfernen.",
"SettingsManageLink_Title": "Link verwalten",
"SettingsMarkAsRead_Description": "Ändern Sie, was mit dem ausgewählten Element passieren soll.",
"SettingsMarkAsRead_DontChange": "Element nicht automatisch als gelesen markieren",
"SettingsMarkAsRead_SecondsToWait": "Wartezeit in Sekunden: ",
"SettingsMarkAsRead_Timer": "Beim Betrachten im Lesefenster",
"SettingsMarkAsRead_Title": "Element als gelesen markieren",
"SettingsMarkAsRead_WhenSelected": "Wenn ausgewählt",
"SettingsMessageList_Description": "Ändern Sie die Organisation Ihrer Nachrichten in der Mailliste.",
"SettingsMessageList_Title": "Nachrichten-Liste",
"SettingsNoAccountSetupMessage": "Sie haben noch keine Konten eingerichtet.",
"SettingsNotifications_Description": "Benachrichtigungen für dieses Konto ein- oder ausschalten.",
"SettingsNotifications_Title": "Benachrichtigungen",
"SettingsPaneLength_Description": "Ändern Sie die Breite der Mail-Liste.",
"SettingsPaneLength_Title": "Länge des Maillisten-Fensters",
"SettingsPaypal_Description": "Zeigen Sie viel mehr Liebe ❤️ Alle Spenden werden wertgeschätzt.",
"SettingsPaypal_Title": "Über PayPal spenden",
"SettingsPersonalizationMailDisplayCompactMode": "Kompakter Modus",
"SettingsPersonalizationMailDisplayMediumMode": "Mittlerer Modus",
"SettingsPersonalizationMailDisplaySpaciousMode": "Geräumiger Modus",
"SettingsPersonalization_Description": "Ändern Sie das Aussehen von Wino nach Ihren Belieben.",
"SettingsPersonalization_Title": "Personalisierung",
"SettingsPrivacyPolicy_Description": "Datenschutzrichtlinie ansehen.",
"SettingsPrivacyPolicy_Title": "Datenschutzerklärung",
"SettingsReadingPane_Description": "Mail-Darstellungs-Optionen.",
"SettingsReadingPane_Title": "Lesefenster",
"SettingsReaderFont_Title": "Standard Lese-Schriftart",
"SettingsReaderFontFamily_Description": "Ändern Sie die Standardschriftart und Schriftgröße für das Lesen von Mails.",
"SettingsFontFamily_Title": "Schriftart",
"SettingsFontSize_Title": "Schriftgröße",
"SettingsFontPreview_Title": "Vorschau",
"SettingsComposerFont_Title": "Standard Verfasser-Schriftart",
"SettingsComposerFontFamily_Description": "Ändern Sie die Standardschriftart und Schriftgröße für das Verfassen von Mails.",
"SettingsRenameMergeAccount_Description": "Den Anzeigenamen der verknüpften Konten ändern.",
"SettingsRenameMergeAccount_Title": "Umbenennen",
"SettingsSemanticZoom_Description": "Dadurch können Sie auf die Kopfzeilen in der Nachrichtenliste klicken und zu einem bestimmten Datum springen",
"SettingsSemanticZoom_Title": "Semantischer Zoom für Datumsüberschriften",
"SettingsShowPreviewText_Description": "Vorschautext ausblenden/anzeigen.",
"SettingsShowPreviewText_Title": "Vorschautext anzeigen",
"SettingsShowSenderPictures_Description": "Absender-Profilbilder ausblenden/anzeigen.",
"SettingsShowSenderPictures_Title": "Absender-Profilbilder anzeigen",
"SettingsPrefer24HourClock_Title": "Uhr-Format in 24 Stunden anzeigen",
"SettingsPrefer24HourClock_Description": "Empfangszeiten für Mails werden im 24-Stunden-Format statt 12 (AM/PM) angezeigt",
"SettingsSignature_Description": "Kontosignatur bearbeiten oder entfernen",
"SettingsSignature_Title": "Signatur",
"SettingsStartupItem_Description": "Primäres Konto zum Laden des Posteingangs beim Starten.",
"SettingsStartupItem_Title": "Startelement",
"SettingsStore_Description": "Zeigen Sie etwas Liebe ❤️",
"SettingsStore_Title": "Im Store bewerten",
"SettingsThreads_Description": "Nachrichten in Unterhaltungsthreads organisieren.",
"SettingsThreads_Title": "Unterhaltungsthreading",
"SettingsUnlinkAccounts_Description": "Entfernen Sie den Link zwischen den Konten. Dies wird Ihre Konten nicht löschen.",
"SettingsUnlinkAccounts_Title": "Konten trennen",
"SortingOption_Date": "nach Datum",
"SortingOption_Name": "nach Name",
"StoreRatingDialog_MessageFirstLine": "Jedes Feedback ist willkommen und wird Wino besser machen. Möchten Sie Wino im Microsoft Store bewerten?",
"StoreRatingDialog_MessageSecondLine": "Möchten Sie Wino Mail im Microsoft Store bewerten?",
"StoreRatingDialog_Title": "Gefällt Ihnen Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archivierte Nachrichten werden hierher verschoben.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archivordner",
"SystemFolderConfigDialog_DeletedFolderDescription": "Gelöschte Nachrichten werden hierher verschoben.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Gelöscht-Ordner",
"SystemFolderConfigDialog_DraftFolderDescription": "Neue Nachrichten/Antworten werden hier erstellt.",
"SystemFolderConfigDialog_DraftFolderHeader": "Entwürfe-Ordner",
"SystemFolderConfigDialog_JunkFolderDescription": "Alle Spam-Mails werden hier sein.",
"SystemFolderConfigDialog_JunkFolderHeader": "Müll-/Spam-Ordner",
"SystemFolderConfigDialog_MessageFirstLine": "Dieser IMAP-Server unterstützt keine SPECIAL-USE-Erweiterung, deshalb konnte Wino die Systemordner nicht richtig einrichten.",
"SystemFolderConfigDialog_MessageSecondLine": "Bitte wählen Sie die passenden Ordner für bestimmte Funktionalitäten.",
"SystemFolderConfigDialog_SentFolderDescription": "Ordner, in dem gesendete Nachrichten gespeichert werden sollen.",
"SystemFolderConfigDialog_SentFolderHeader": "Gesendete-Ordner",
"SystemFolderConfigDialog_Title": "Systemordner konfigurieren",
"TestingImapConnectionMessage": "Serververbindung wird getestet...",
"Today": "Heute",
"UnknownAddress": "unbekannte Adresse",
"UnknownDateHeader": "Unbekanntes Datum",
"UnknownGroupAddress": "unbekannte Mail-Gruppenadresse",
"UnknownSender": "Unbekannter Absender",
"Unsubscribe": "Abbestellen",
"ViewContactDetails": "Details anzeigen",
"WinoUpgradeDescription": "Wino bietet 3 Accounts zum kostenlosen Start an. Wenn Sie mehr als 3 Accounts benötigen, upgraden Sie bitte.",
"WinoUpgradeMessage": "Auf unbegrenzte Konten upgraden",
"WinoUpgradeRemainingAccountsMessage": "{0} von {1} kostenlosen Konten verwendet.",
"Yesterday": "Gestern"
}

View File

@@ -0,0 +1,482 @@
{
"AccountCreationDialog_Completed": "all done",
"AccountCreationDialog_Initializing": "initializing",
"AccountCreationDialog_PreparingFolders": "We are getting folder information at the moment.",
"AccountCreationDialog_SigninIn": "Account information is being saved.",
"AccountEditDialog_Message": "Account Name",
"AccountEditDialog_Title": "Edit Account",
"AccountPickerDialog_Title": "Pick an account",
"AddHyperlink": "Add",
"AutoDiscoveryProgressMessage": "Searching for mail settings...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Advanced Configuration",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Your credentials will only be stored locally on your computer.",
"BasicIMAPSetupDialog_Description": "Some accounts require additional steps to sign in",
"BasicIMAPSetupDialog_DisplayName": "Display Name",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"BasicIMAPSetupDialog_LearnMore": "Learn more",
"BasicIMAPSetupDialog_MailAddress": "E-Mail Address",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "johndoe@fabrikam.com",
"BasicIMAPSetupDialog_Password": "Password",
"BasicIMAPSetupDialog_Title": "IMAP Account",
"Buttons_AddAccount": "Add Account",
"Buttons_ApplyTheme": "Apply Theme",
"Buttons_Browse": "Browse",
"Buttons_Cancel": "Cancel",
"Buttons_Close": "Close",
"Buttons_Create": "Create",
"Buttons_CreateAccount": "Create Account",
"Buttons_Delete": "Delete",
"Buttons_Discard": "Discard",
"Buttons_EnableImageRendering": "Enable",
"Buttons_No": "No",
"Buttons_Open": "Open",
"Buttons_Purchase": "Purchase",
"Buttons_RateWino": "Rate Wino",
"Buttons_Save": "Save",
"Buttons_SaveConfiguration": "Save Configuration",
"Buttons_Share": "Share",
"Buttons_SignIn": "Sign In",
"Buttons_Yes": "Yes",
"Center": "Center",
"ComingSoon": "Coming soon...",
"ComposerFrom": "From: ",
"ComposerSubject": "Subject: ",
"ComposerTo": "To: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "click enter to input addresses",
"CustomThemeBuilder_AccentColorDescription": "Set custom accent color if you wish. Not selecting a color will use your Windows accent color.",
"CustomThemeBuilder_AccentColorTitle": "Accent color",
"CustomThemeBuilder_PickColor": "Pick",
"CustomThemeBuilder_ThemeNameDescription": "Unique name for your custom theme.",
"CustomThemeBuilder_ThemeNameTitle": "Theme name",
"CustomThemeBuilder_Title": "Custom Theme Builder",
"CustomThemeBuilder_WallpaperDescription": "Set a custom wallpaper for Wino",
"CustomThemeBuilder_WallpaperTitle": "Set custom wallpaper",
"DialogMessage_AccountLimitMessage": "You have reached the account creation limit.\nWould you like to purchase 'Unlimited Account' add-on to continue?",
"DialogMessage_AccountLimitTitle": "Account Limit Reached",
"DialogMessage_CleanupFolderMessage": "Do you want to permanently delete all the mails in this folder?",
"DialogMessage_CleanupFolderTitle": "Cleanup Folder",
"DialogMessage_ComposerMissingRecipientMessage": "Message has no recipient.",
"DialogMessage_ComposerValidationFailedTitle": "Validation Failed",
"DialogMessage_CreateLinkedAccountMessage": "Give this new link a name. Accounts will be merged under this name.",
"DialogMessage_CreateLinkedAccountTitle": "Account Link Name",
"DialogMessage_DeleteAccountConfirmationMessage": "Delete {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "All data associated with this account will be deleted from disk permanently.",
"DialogMessage_DiscardDraftConfirmationMessage": "This draft will be discarded. Do you want to continue?",
"DialogMessage_DiscardDraftConfirmationTitle": "Discard Draft",
"DialogMessage_HardDeleteConfirmationMessage": "Permanent Delete",
"DialogMessage_HardDeleteConfirmationTitle": "Message(s) will be permanently deleted. Do you want to continue?",
"DialogMessage_NoAccountsForCreateMailMessage": "You don't have any accounts to create message from.",
"DialogMessage_NoAccountsForCreateMailTitle": "Account Missing",
"DialogMessage_RenameLinkedAccountsMessage": "Enter new name for linked account",
"DialogMessage_RenameLinkedAccountsTitle": "Rename Linked Account",
"DialogMessage_UnlinkAccountsConfirmationMessage": "This operation will not delete your accounts but only break the link for shared folder connections. Do you want to continue?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Unlink Accounts",
"DialogMessage_EmptySubjectConfirmation": "Missin Subject",
"DialogMessage_EmptySubjectConfirmationMessage": "Message has no subject. Do you want to continue?",
"Dialog_DontAskAgain": "Don't ask again",
"DiscordChannelDisclaimerMessage": "Wino doesn't have it's own Discord server, but special 'wino-mail' channel is hosted at 'Developer Sanctuary' server.\nTo get the updates about Wino please join Developer Sanctuary server and follow 'wino-mail' channel under 'Community Projects'\n\nYou will be directed to server URL since Discord doesn't support channel invites.",
"DiscordChannelDisclaimerTitle": "Important Discord Information",
"Draft": "Draft",
"EditorToolbarOption_Draw": "Draw",
"EditorToolbarOption_Format": "Format",
"EditorToolbarOption_Insert": "Insert",
"EditorToolbarOption_None": "None",
"EditorToolbarOption_Options": "Options",
"ElementTheme_Dark": "Dark mode",
"ElementTheme_Default": "Use system setting",
"ElementTheme_Light": "Light mode",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "IMAP Client Pool failed.",
"Exception_AuthenticationCanceled": "Authentication canceled",
"Exception_CustomThemeExists": "This theme already exists.",
"Exception_CustomThemeMissingName": "You must provide a name.",
"Exception_CustomThemeMissingWallpaper": "You must provide a custom background image.",
"Exception_FailedToSynchronizeFolders": "Failed to synchronize folders",
"Exception_GoogleAuthCallbackNull": "Callback uri is null on activation.",
"Exception_GoogleAuthCorruptedCode": "Corrupted authorization response.",
"Exception_GoogleAuthError": "OAuth authorization error: {0}",
"Exception_GoogleAuthInvalidResponse": "Received request with invalid state ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Authorization code exchange failed.",
"Exception_InvalidSystemFolderConfiguration": "System folder configuration is not valid. Check configuration and try again.",
"Exception_NullAssignedAccount": "Assigned account is null",
"Exception_NullAssignedFolder": "Assigned folder is null",
"Exception_SynchronizerFailureHTTP": "Response handling failed with error HTTP code {0}",
"Exception_TokenGenerationFailed": "Token generation failed",
"Exception_TokenInfoRetrivalFailed": "Failed to get token information.",
"Exception_UnknowErrorDuringAuthentication": "Unknown error occurred during authentication",
"Exception_UnsupportedAction": "Action {0} is not implemented in request processor",
"Exception_UnsupportedProvider": "This provider is not supported.",
"Exception_UnsupportedSynchronizerOperation": "This operation is not supported for {0}",
"Exception_UserCancelSystemFolderSetupDialog": "User canceled system folder config dialog.",
"Exception_InboxNotAvailable": "Couldn't setup account folders.",
"Files": "Files",
"FilteringOption_All": "All",
"FilteringOption_Flagged": "Flagged",
"FilteringOption_Unread": "Unread",
"Focused": "Focused",
"FolderOperation_CreateSubFolder": "Create sub folder",
"FolderOperation_Delete": "Delete",
"FolderOperation_DontSync": "Don't sync this folder",
"FolderOperation_Empty": "Empty this folder",
"FolderOperation_MarkAllAsRead": "Mark all as read",
"FolderOperation_Move": "Move",
"DragMoveToFolderCaption": "Move to {0}",
"FolderOperation_None": "None",
"FolderOperation_Pin": "Pin",
"FolderOperation_Rename": "Rename",
"FolderOperation_Unpin": "Unpin",
"HoverActionOption_Archive": "Archive",
"HoverActionOption_Delete": "Delete",
"HoverActionOption_MoveJunk": "Move to Junk",
"HoverActionOption_ToggleFlag": "Flag / Unflag",
"HoverActionOption_ToggleRead": "Read / Unread",
"MergedAccountCommonFolderInbox": "Inbox",
"MergedAccountCommonFolderSent": "Sent",
"MergedAccountCommonFolderDraft": "Draft",
"MergedAccountCommonFolderJunk": "Junk",
"MergedAccountCommonFolderTrash": "Deleted",
"MergedAccountCommonFolderArchive": "Archive",
"IMAPSetupDialog_AccountType": "Account type",
"IMAPSetupDialog_DisplayName": "Display Name",
"IMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"IMAPSetupDialog_IncomingMailServer": "Incoming mail server",
"IMAPSetupDialog_IncomingMailServerPort": "Port",
"IMAPSetupDialog_MailAddress": "Email address",
"IMAPSetupDialog_MailAddressPlaceholder": "someone@example.com",
"IMAPSetupDialog_OutgoingMailServer": "Outgoing (SMTP) mail server",
"IMAPSetupDialog_OutgoingMailServerPassword": "Outgoing server password",
"IMAPSetupDialog_OutgoingMailServerPort": "Port",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Outgoing server requires authentication",
"IMAPSetupDialog_OutgoingMailServerUsername": "Outgoing server user name",
"IMAPSetupDialog_Password": "Password",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Require SSL for incoming email",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Require SSL for outgoing email",
"IMAPSetupDialog_Title": "Advanced IMAP Configuration",
"IMAPSetupDialog_UseSameConfig": "Use the same username and password for sending email",
"IMAPSetupDialog_Username": "Username",
"IMAPSetupDialog_UsernamePlaceholder": "johndoe, johndoe@fabrikam.com, domain/johndoe",
"ImageRenderingDisabled": "Image rendering is disabled for this message.",
"InfoBarAction_Enable": "Enable",
"InfoBarMessage_SynchronizationDisabledFolder": "This folder is disabled for synchronization.",
"InfoBarTitle_SynchronizationDisabledFolder": "Disabled Folder",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} is created",
"Info_AccountCreatedTitle": "Account Creation",
"Info_AccountCreationFailedTitle": "Account Creation Failed",
"Info_AccountDeletedMessage": "{0} is successfuly deleted.",
"Info_AccountDeletedTitle": "Account Deleted",
"Info_AccountIssueFixFailedTitle": "Failed",
"Info_AccountIssueFixSuccessMessage": "Fixed all account issues.",
"Info_AccountIssueFixSuccessTitle": "Success",
"Info_AttachmentOpenFailedMessage": "Can't open this attachment.",
"Info_AttachmentOpenFailedTitle": "Failed",
"Info_AttachmentSaveFailedMessage": "Can't save this attachment.",
"Info_AttachmentSaveFailedTitle": "Failed",
"Info_AttachmentSaveSuccessMessage": "Attachment is saved.",
"Info_AttachmentSaveSuccessTitle": "Attachment Saved",
"Info_BackgroundExecutionDeniedMessage": "Background execution for the app is denied. This may affect background synchronization and live notifications.",
"Info_BackgroundExecutionDeniedTitle": "Denied Background Execution",
"Info_BackgroundExecutionUnknownErrorMessage": "Unknown exception occurred when registering background synchronizer.",
"Info_BackgroundExecutionUnknownErrorTitle": "Background Execution Failure",
"Info_ComposerMissingMIMEMessage": "Couldn't locate the MIME file. Synchronizing may help.",
"Info_ComposerMissingMIMETitle": "Failed",
"Info_ContactExistsMessage": "This contact is already in the recipient list.",
"Info_ContactExistsTitle": "Contact Exists",
"Info_DraftFolderMissingMessage": "Draft folder is missing for this account. Please check your account settings.",
"Info_DraftFolderMissingTitle": "Missing Draft Folder",
"Info_FileLaunchFailedTitle": "Failed to launch file",
"Info_InvalidAddressMessage": "'{0}' is not a valid e-mail address.",
"Info_InvalidAddressTitle": "Invalid Address",
"Info_InvalidMoveTargetMessage": "You can't move selected mails to this folder.",
"Info_InvalidMoveTargetTitle": "Invalid Move Target",
"Info_LogsNotFoundMessage": "There are no logs to share.",
"Info_LogsNotFoundTitle": "Logs Not Found",
"Info_LogsSavedMessage": "{0} is saved to selected folder.",
"Info_LogsSavedTitle": "Saved",
"Info_MailRenderingFailedMessage": "This mail is corrupted or can't be opened.\n{0}",
"Info_MailRenderingFailedTitle": "Render Failed",
"Info_MessageCorruptedMessage": "This message is corrupted.",
"Info_MessageCorruptedTitle": "Error",
"Info_MissingFolderMessage": "{0} doesn't exist for this account.",
"Info_MissingFolderTitle": "Missing Folder",
"Info_PDFSaveSuccessTitle": "Success",
"Info_PDFSaveFailedTitle": "Failed to save PDF file",
"Info_PDFSaveSuccessMessage": "PDF file is saved to {0}",
"Info_PurchaseExistsMessage": "Looks like this product has already been purchased before.",
"Info_PurchaseExistsTitle": "Existing Product",
"Info_PurchaseThankYouMessage": "Thank You",
"Info_PurchaseThankYouTitle": "Purchase successful",
"Info_RequestCreationFailedTitle": "Failed to Create Requests",
"Info_ReviewNetworkErrorMessage": "There was a network issue with your review.",
"Info_ReviewNetworkErrorTitle": "Network Issue",
"Info_ReviewNewMessage": "All feedbacks are appreciated. Thank you for the review!",
"Info_ReviewSuccessTitle": "Thank you",
"Info_ReviewUnknownErrorMessage": "There was an unknown issue with your review. ({0})",
"Info_ReviewUnknownErrorTitle": "Unknown Error",
"Info_ReviewUpdatedMessage": "Thank you for the updated review.",
"Info_SignatureDisabledMessage": "Disabled signature for this account",
"Info_SignatureDisabledTitle": "Success",
"Info_SignatureSavedMessage": "New signature is saved",
"Info_SignatureSavedTitle": "Success",
"Info_SyncCanceledMessage": "Canceled",
"Info_SyncCanceledTitle": "Synchronization",
"Info_SyncFailedTitle": "Synchronization Failed",
"Info_UnsupportedFunctionalityDescription": "This functionality is not implemented yet.",
"Info_UnsupportedFunctionalityTitle": "Unsupported",
"Info_UnsubscribeLinkInvalidTitle": "Invalid Unsubscribe Uri",
"Info_UnsubscribeLinkInvalidMessage": "This unsubscribe link is invalid. Failed to unsubscribe from the list.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Authentication method",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Connection security",
"ImapAuthenticationMethod_Auto": "Auto",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "No authentication",
"ImapAuthenticationMethod_Plain": "Normal password",
"ImapAuthenticationMethod_EncryptedPassword": "Encrypted password",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "None",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Auto",
"Justify": "Justify",
"Left": "Left",
"Link": "Link",
"LinkedAccountsCreatePolicyMessage": "you must have at least 2 accounts to create link\nlink will be removed on save",
"LinkedAccountsTitle": "Linked Accounts",
"MailOperation_AlwaysMoveFocused": "Always Move to Focused",
"MailOperation_AlwaysMoveOther": "Always Move to Other",
"MailOperation_Archive": "Archive",
"MailOperation_ClearFlag": "Clear flag",
"MailOperation_DarkEditor": "Dark",
"MailOperation_Delete": "Delete",
"MailOperation_ExportPDF": "Export to PDF",
"MailOperation_Find": "Find",
"MailOperation_Forward": "Forward",
"MailOperation_Ignore": "Ignore",
"MailOperation_LightEditor": "Light",
"MailOperation_MarkAsJunk": "Mark as junk",
"MailOperation_MarkAsRead": "Mark as read",
"MailOperation_MarkAsUnread": "Mark as unread",
"MailOperation_MarkNotJunk": "Mark as Not Junk",
"MailOperation_Move": "Move",
"MailOperation_MoveFocused": "Move to Focused",
"MailOperation_MoveJunk": "Move to Junk",
"MailOperation_MoveOther": "Move to Other",
"MailOperation_Navigate": "Navigate",
"MailOperation_Print": "Print",
"MailOperation_Reply": "Reply",
"MailOperation_ReplyAll": "Reply all",
"MailOperation_SaveAs": "Save As",
"MailOperation_SetFlag": "Set flag",
"MailOperation_Unarchive": "Unarchive",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} item(s) selected",
"MarkFlagUnflag": "Mark as flagged/unflagged",
"MarkReadUnread": "Mark as read/unread",
"MenuManageAccounts": "Manage Accounts",
"MenuNewMail": "New Mail",
"MenuMergedAccountItemAccountsSuffix": " accounts",
"MenuRate": "Rate Wino",
"MenuSettings": "Settings",
"MergedAccountsAvailableAccountsTitle": "Available Accounts",
"More": "More",
"MoveMailDialog_InvalidFolderMessage": "{0} is not a valid folder for this mail.",
"MoveMailDialog_Title": "Pick a folder",
"NewAccountDialog_AccountName": "Account Name",
"NewAccountDialog_AccountNameDefaultValue": "Personal",
"NewAccountDialog_AccountNamePlaceholder": "eg. Personal Mail",
"NewAccountDialog_Title": "Add New Account",
"NoMailSelected": "no message selected",
"NoMessageCrieteria": "no messages match your search criteria.",
"NoMessageEmptyFolder": "this folder is empty.",
"Notifications_MultipleNotificationsMessage": "You have {0} new mails",
"Notifications_MultipleNotificationsTitle": "New Mails",
"Notifications_WinoUpdatedMessage": "Checkout new version {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail has been updated.",
"Other": "Other",
"PaneLengthOption_Default": "Default",
"PaneLengthOption_ExtraLarge": "Extra Large",
"PaneLengthOption_Large": "Large",
"PaneLengthOption_Medium": "Medium",
"PaneLengthOption_Micro": "Micro",
"PaneLengthOption_Small": "Small",
"Photos": "Photos",
"PreparingFoldersMessage": "Preparing folders",
"ProviderDetail_Gmail_Description": "Google Account",
"ProviderDetail_IMAP_Description": "Custom IMAP/SMTP server",
"ProviderDetail_IMAP_Title": "IMAP Server",
"Results": "Results",
"Right": "Right",
"SynchronizationFolderReport_Success": "up to date",
"SynchronizationFolderReport_Failed": "synchronization is failed",
"SearchBarPlaceholder": "search",
"SearchingIn": "searching in",
"SettingsAboutGithub_Description": "Go to issue tracker GitHub repository.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Append messages to Sent folder",
"SettingsAccountManagementAppendMessage_Description": "Create a copy of the message in Sent folder after the draft is sent. Enable this if you don't see your mails after you sent them in Sent folder.",
"SettingsEditLinkedInbox_Title": "Edit Linked Inbox",
"SettingsEditLinkedInbox_Description": "Add / remove accounts, rename or break the link between accounts.",
"SettingsAboutVersion": "Version ",
"SettingsAboutWinoDescription": "Lightweight mail client for Windows device families.",
"SettingsAbout_Description": "Learn more about Wino.",
"SettingsAbout_Title": "About",
"SettingsAccentColor_Description": "Change application's accent color",
"SettingsAccentColor_Title": "Accent Color",
"SettingsAccentColor_UseWindowsAccentColor": "Use my Windows accent color",
"SettingsAccountName_Description": "Change the name of the account.",
"SettingsAccountName_Title": "Account Name",
"SettingsApplicationTheme_Description": "Personalize Wino with different custom application themes for your like.",
"SettingsApplicationTheme_Title": "Application Theme",
"SettingsAvailableThemes_Description": "Select a theme from Wino's own collection for your taste or apply your own themes.",
"SettingsAvailableThemes_Title": "Available Themes",
"SettingsAutoSelectNextItem_Title": "Auto select next item",
"SettingsAutoSelectNextItem_Description": "Select the next item after you delete or move a mail.",
"SettingsCustomTheme_Description": "Create your own custom theme with custom wallpaper and accent color.",
"SettingsCustomTheme_Title": "Custom Theme",
"SettingsConfigureSpecialFolders_Title": "Configure System Folders",
"SettingsConfigureSpecialFolders_Description": "Set folders with special functions. Folders such as Archive, Inbox, and Drafts are essential for Wino to function properly.",
"SettingConfigureSpecialFolders_Button": "Configure",
"Error_FailedToSetupSystemFolders_Title": "Failed to setup system folders",
"SettingsDeleteAccount_Description": "Delete all e-mails and credentials associated with this account.",
"SettingsDeleteAccount_Title": "Delete this account",
"SettingsDeleteProtection_Description": "Should Wino ask you for comfirmation every time you try to permanently delete a mail using Shift + Del keys?",
"SettingsDeleteProtection_Title": "Permanent Delete Protection",
"SettingsDiagnostics_Description": "For developers",
"SettingsDiagnostics_Title": "Diagnostics",
"SettingsDiscord_Description": "Get regular development updates, join roadmap discussions and provide feedback.",
"SettingsDiscord_Title": "Discord Channel",
"SettingsElementThemeSelectionDisabled": "Element theme selection is disabled when application theme is selected other than Default.",
"SettingsElementTheme_Description": "Select a Windows theme for Wino",
"SettingsElementTheme_Title": "Element Theme",
"SettingsEnableHoverActions_Title": "Enable hover actions",
"SettingsEnableIMAPLogs_Description": "Enable this to provide details about IMAP connectivity issuses you had during IMAP server setup.",
"SettingsEnableIMAPLogs_Title": "Enable IMAP Protocol Logs",
"SettingsEnableLogs_Description": "I might need logs for crashes to diagnose issues you have opened in GitHub. None of the logs will expose your credentials or sensetive information to public.",
"SettingsEnableLogs_Title": "Enable Logs",
"SettingsEnableSignature": "Enable Signature",
"SettingsExpandOnStartup_Description": "Set whether Wino should expand this account's folders on startup.",
"SettingsExpandOnStartup_Title": "Expand Menu on Startup",
"SettingsExternalContent_Description": "Manage external content settings when rendering mails.",
"SettingsExternalContent_Title": "External Content",
"SettingsFocusedInbox_Description": "Set whether Inbox should be split into two as Focused - Other.",
"SettingsFocusedInbox_Title": "Focused Inbox",
"SettingsFolderSync_Description": "Enable or disable specific folders for synchronization.",
"SettingsFolderSync_Title": "Folder Synchronization",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Center Action",
"SettingsHoverActionLeft": "Left Action",
"SettingsHoverActionRight": "Right Action",
"SettingsHoverActions_Description": "Select 3 actions to show up when you hover over the mails with cursor.",
"SettingsHoverActions_Title": "Hover Actions",
"SettingsLanguage_Description": "Change display language for Wino.",
"SettingsLanguage_Title": "Display Language",
"CategoriesFolderNameOverride": "Categories",
"MoreFolderNameOverride": "More",
"SettingsOptions_Title": "Settings",
"SettingsLinkAccounts_Description": "Merge multiple accounts into one. See mails from one Inbox together.",
"SettingsLinkAccounts_Title": "Create Linked Accounts",
"SettingsLinkedAccountsSave_Description": "Modify the current link with the new accounts.",
"SettingsLinkedAccountsSave_Title": "Save Changes",
"SettingsLoadImages_Title": "Load images automatically",
"SettingsLoadStyles_Title": "Load styles automatically",
"SettingsMailSpacing_Description": "Adjust the spacing for listing mails.",
"SettingsMailSpacing_Title": "Mail Spacing",
"SettingsFolderMenuStyle_Title": "Create Nested Folders",
"SettingsFolderMenuStyle_Description": "Change whether account folders should be nested inside an account menu item or not. Toggle this off if you like the old menu system in Windows Mail",
"SettingsManageAccountSettings_Description": "Notifications, signatures, synchronization and other settings per account.",
"SettingsManageAccountSettings_Title": "Manage Account Settings",
"SettingsManageLink_Description": "Move items to add new link or remove existing link.",
"SettingsManageLink_Title": "Manage Link",
"SettingsMarkAsRead_Description": "Change what should happen to the selected item.",
"SettingsMarkAsRead_DontChange": "Don't automatically mark item as read",
"SettingsMarkAsRead_SecondsToWait": "Seconds to wait: ",
"SettingsMarkAsRead_Timer": "When viewed in the reading pane",
"SettingsMarkAsRead_Title": "Mark item as read",
"SettingsMarkAsRead_WhenSelected": "When selected",
"SettingsMessageList_Description": "Change how your messages should be organized in mail list.",
"SettingsMessageList_Title": "Message List",
"SettingsNoAccountSetupMessage": "You didn't setup any accounts yet.",
"SettingsNotifications_Description": "Turn on or off notifications for this account.",
"SettingsNotifications_Title": "Notifications",
"SettingsPaneLength_Description": "Change the width of the mail list.",
"SettingsPaneLength_Title": "Mail List Pane Length",
"SettingsPaypal_Description": "Show much more love ❤️ All donations are appreciated.",
"SettingsPaypal_Title": "Donate via PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Compact Mode",
"SettingsPersonalizationMailDisplayMediumMode": "Medium Mode",
"SettingsPersonalizationMailDisplaySpaciousMode": "Spacious Mode",
"SettingsPersonalization_Description": "Change appearance of Wino as you like.",
"SettingsPersonalization_Title": "Personalization",
"SettingsPrivacyPolicy_Description": "Review privacy policy.",
"SettingsPrivacyPolicy_Title": "Privacy Policy",
"SettingsReadingPane_Description": "Mail rendering options.",
"SettingsReadingPane_Title": "Reading Pane",
"SettingsReaderFont_Title": "Default Reader Font",
"SettingsReaderFontFamily_Description": "Change the default font family and font size for reading mails.",
"SettingsFontFamily_Title": "Font Family",
"SettingsFontSize_Title": "Font Size",
"SettingsFontPreview_Title": "Preview",
"SettingsComposerFont_Title": "Default Composer Font",
"SettingsComposerFontFamily_Description": "Change the default font family and font size for composing mails.",
"SettingsRenameMergeAccount_Description": "Change the display name of the linked accounts.",
"SettingsRenameMergeAccount_Title": "Rename",
"SettingsSemanticZoom_Description": "This will allow you to click on the headers in messages list and go to specific date",
"SettingsSemanticZoom_Title": "Semantic Zoom for Date Headers",
"SettingsShowPreviewText_Description": "Hide/show thepreview text.",
"SettingsShowPreviewText_Title": "Show Preview Text",
"SettingsShowSenderPictures_Description": "Hide/show the thumbnail sender pictures.",
"SettingsShowSenderPictures_Title": "Show Sender Avatars",
"SettingsPrefer24HourClock_Title": "Display Clock Format in 24 Hours",
"SettingsPrefer24HourClock_Description": "Mail recieve times will be displayed in 24 hour format instead of 12 (AM/PM)",
"SettingsSignature_Description": "Edit or remove account signature",
"SettingsSignature_Title": "Signature",
"SettingsStartupItem_Description": "Primary account item to load Inbox at startup.",
"SettingsStartupItem_Title": "Startup Item",
"SettingsStore_Description": "Show some love ❤️",
"SettingsStore_Title": "Rate in Store",
"SettingsThreads_Description": "Organize messages into conversation threads.",
"SettingsThreads_Title": "Conversation Threading",
"SettingsUnlinkAccounts_Description": "Remove the link between accounts. This will not delete your accounts.",
"SettingsUnlinkAccounts_Title": "Unlink Accounts",
"SortingOption_Date": "by date",
"SortingOption_Name": "by name",
"StoreRatingDialog_MessageFirstLine": "All feedbacks are appreciated and they will make much Wino better in the future. Would you like to rate Wino in Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Would you like to rate Wino Mail in Microsoft Store?",
"StoreRatingDialog_Title": "Enjoying Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Deleted messages will be moved to here.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Deleted Folder",
"SystemFolderConfigDialog_DraftFolderDescription": "New mails/replies will be crafted in here.",
"SystemFolderConfigDialog_DraftFolderHeader": "Draft Folder",
"SystemFolderConfigDialog_JunkFolderDescription": "All spam/junk mails will be here.",
"SystemFolderConfigDialog_JunkFolderHeader": "Junk/Spam Folder",
"SystemFolderConfigDialog_MessageFirstLine": "This IMAP server doesn't support SPECIAL-USE extension hence Wino couldn't setup the system folders properly.",
"SystemFolderConfigDialog_MessageSecondLine": "Please select the appropriate folders for specific functionalities.",
"SystemFolderConfigDialog_SentFolderDescription": "Folder that sent messages will be stored.",
"SystemFolderConfigDialog_SentFolderHeader": "Sent Folder",
"SystemFolderConfigDialog_Title": "Configure System Folders",
"SystemFolderConfigDialogValidation_InboxSelected": "You can't assign Inbox folder to any other system folder.",
"SystemFolderConfigDialogValidation_DuplicateSystemFolders": "Some of the system folders are used more than once in the configuration.",
"SystemFolderConfigSetupSuccess_Title": "System Folders Setup",
"SystemFolderConfigSetupSuccess_Message": "System folders are successfully configured.",
"TestingImapConnectionMessage": "Testing server connection...",
"Today": "Today",
"UnknownAddress": "unknown address",
"UnknownDateHeader": "Unknown Date",
"UnknownGroupAddress": "unknown Mail Group Address",
"UnknownSender": "Unknown Sender",
"Unsubscribe": "Unsubscribe",
"ViewContactDetails": "View Details",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Upgrade to Unlimited Accounts",
"WinoUpgradeRemainingAccountsMessage": "{0} out of {1} free accounts used.",
"Yesterday": "Yesterday"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "todo listo",
"AccountCreationDialog_Initializing": "inicializando",
"AccountCreationDialog_PreparingFolders": "Estamos obteniendo información de la carpeta en este momento.",
"AccountCreationDialog_SigninIn": "La información de la cuenta se está guardando.",
"AccountEditDialog_Message": "Nombre de la Cuenta",
"AccountEditDialog_Title": "Editar cuenta",
"AccountPickerDialog_Title": "Elija una cuenta",
"AddHyperlink": "Añadir",
"AutoDiscoveryProgressMessage": "Buscando ajustes de correo...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Configuración avanzada",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Sus credenciales sólo se almacenarán localmente en su ordenador.",
"BasicIMAPSetupDialog_Description": "Algunas cuentas necesitan pasos adicionales para iniciar sesión",
"BasicIMAPSetupDialog_DisplayName": "Nombre a mostrar",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "por ejemplo, Fulano Mengano",
"BasicIMAPSetupDialog_LearnMore": "Aprender más",
"BasicIMAPSetupDialog_MailAddress": "Correo Electrónico",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "johndoe@fabrikam.com",
"BasicIMAPSetupDialog_Password": "Contraseña",
"BasicIMAPSetupDialog_Title": "Cuenta IMAP",
"Buttons_AddAccount": "Añadir Cuenta",
"Buttons_ApplyTheme": "Aplicar Tema",
"Buttons_Browse": "Buscar",
"Buttons_Cancel": "Cancelar",
"Buttons_Close": "Cerrar",
"Buttons_Create": "Crear",
"Buttons_CreateAccount": "Crear Cuenta",
"Buttons_Delete": "Eliminar",
"Buttons_Discard": "Descartar",
"Buttons_EnableImageRendering": "Activar",
"Buttons_No": "No",
"Buttons_Open": "Abrir",
"Buttons_Purchase": "Comprar",
"Buttons_RateWino": "Califica a Wino",
"Buttons_Save": "Guardar",
"Buttons_SaveConfiguration": "Guardar Configuración",
"Buttons_Share": "Compartir",
"Buttons_SignIn": "Iniciar Sesión",
"Buttons_Yes": "Sí",
"Center": "Centrar",
"ComingSoon": "Próximamente...",
"ComposerFrom": "De: ",
"ComposerSubject": "Asunto: ",
"ComposerTo": "Para: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "presiona enter para ingresar direcciones",
"CustomThemeBuilder_AccentColorDescription": "Establece un color de acento si lo deseas. Si no seleccionas uno se usará tu color de acento de Windows.",
"CustomThemeBuilder_AccentColorTitle": "Color de acento",
"CustomThemeBuilder_PickColor": "Elegir",
"CustomThemeBuilder_ThemeNameDescription": "Nombre único para su tema personalizado.",
"CustomThemeBuilder_ThemeNameTitle": "Nombre del tema",
"CustomThemeBuilder_Title": "Creador de Temas Personalizados",
"CustomThemeBuilder_WallpaperDescription": "Establecer una imagen de fondo personalizada para Wino",
"CustomThemeBuilder_WallpaperTitle": "Establecer imagen de fondo personalizada",
"DialogMessage_AccountLimitMessage": "Has alcanzado el límite para crear cuentas.\n¿Te gustaría comprar el add-on 'Cuentas Ilimitadas' para continuar?",
"DialogMessage_AccountLimitTitle": "Límite de Cuentas Alcanzado",
"DialogMessage_CleanupFolderMessage": "¿Quieres borrar permanentemente todos los correos en esta carpeta?",
"DialogMessage_CleanupFolderTitle": "Carpeta de Limpieza",
"DialogMessage_ComposerMissingRecipientMessage": "El mensaje no tiene destinatario.",
"DialogMessage_ComposerValidationFailedTitle": "Validación Fallida",
"DialogMessage_CreateLinkedAccountMessage": "Dar un nombre a este nuevo enlace. Las cuentas se combinarán con este nombre.",
"DialogMessage_CreateLinkedAccountTitle": "Nombre del enlace de cuenta",
"DialogMessage_DeleteAccountConfirmationMessage": "¿Eliminar {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "Todos los datos asociados a esta cuenta se eliminarán del disco permanentemente.",
"DialogMessage_DiscardDraftConfirmationMessage": "Este borrador se descartará. ¿Desea continuar?",
"DialogMessage_DiscardDraftConfirmationTitle": "Descartar borrador",
"DialogMessage_HardDeleteConfirmationMessage": "Eliminar Permanentemente",
"DialogMessage_HardDeleteConfirmationTitle": "Mensaje(s) se eliminarán permanentemente. ¿Desea continuar?",
"DialogMessage_NoAccountsForCreateMailMessage": "No tienes ninguna cuenta desde la que crear mensaje.",
"DialogMessage_NoAccountsForCreateMailTitle": "Falta cuenta",
"DialogMessage_RenameLinkedAccountsMessage": "Introduzca un nuevo nombre para la cuenta vinculada",
"DialogMessage_RenameLinkedAccountsTitle": "Renombrar cuenta vinculada",
"DialogMessage_UnlinkAccountsConfirmationMessage": "Esta operación no eliminará sus cuentas pero sólo romperá el enlace para conexiones de carpetas compartidas. ¿Desea continuar?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Desvincular Cuentas",
"DialogMessage_EmptySubjectConfirmation": "Sin Asunto",
"DialogMessage_EmptySubjectConfirmationMessage": "El mensaje no tiene asunto. ¿Desea continuar?",
"Dialog_DontAskAgain": "No preguntar de nuevo",
"DiscordChannelDisclaimerMessage": "Wino no tiene un servidor de Discordia propio, pero el canal especial 'wino-mail' está hospedado en servidor 'Developer Sanctuary'.\nPara obtener actualizaciones acerca de Wino únase al Santuario servidor de Desarrolladores y siga el canal 'wino-mail' en 'Community Projects'\n\nSerás redirigido a la URL del servidor cuando la Discordia no soporta canales invitados.",
"DiscordChannelDisclaimerTitle": "Información de Discord importante",
"Draft": "Borrador",
"EditorToolbarOption_Draw": "Dibujar",
"EditorToolbarOption_Format": "Formato",
"EditorToolbarOption_Insert": "Insertar",
"EditorToolbarOption_None": "Ninguno",
"EditorToolbarOption_Options": "Opciones",
"ElementTheme_Dark": "Modo oscuro",
"ElementTheme_Default": "Usar configuración del sistema",
"ElementTheme_Light": "Modo claro",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "Cola Cliente IMAP falló.",
"Exception_AuthenticationCanceled": "Autenticación cancelada",
"Exception_CustomThemeExists": "Este tema ya existe.",
"Exception_CustomThemeMissingName": "Debe proporcionar un nombre.",
"Exception_CustomThemeMissingWallpaper": "Debe proporcionar una imagen de fondo personalizada.",
"Exception_FailedToSynchronizeFolders": "Error al sincronizar carpetas",
"Exception_GoogleAuthCallbackNull": "Callback uri nulo al activarse.",
"Exception_GoogleAuthCorruptedCode": "Respuesta de autorización corrupta.",
"Exception_GoogleAuthError": "Error de autorización de OAuth: {0}",
"Exception_GoogleAuthInvalidResponse": "Solicitud recibida con estado no válido ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "El intercambio del código de autorización ha fallado.",
"Exception_InvalidSystemFolderConfiguration": "La configuración de la carpeta del sistema no es válida. Verifica la configuración y vuelve a intentar.",
"Exception_NullAssignedAccount": "La cuenta asignada es nula",
"Exception_NullAssignedFolder": "La carpeta asignada es nula",
"Exception_SynchronizerFailureHTTP": "Manejo de la respuesta ha fallado con código de error HTTP {0}",
"Exception_TokenGenerationFailed": "Falló la generación del token",
"Exception_TokenInfoRetrivalFailed": "Fallo al recuperar la información del token.",
"Exception_UnknowErrorDuringAuthentication": "Sucedió un error desconocido durante la autenticación",
"Exception_UnsupportedAction": "La acción {0} no está implementada en el procesador solicitado",
"Exception_UnsupportedProvider": "Este proveedor no está soportado.",
"Exception_UnsupportedSynchronizerOperation": "Esta operación no es compatible con {0}",
"Exception_UserCancelSystemFolderSetupDialog": "El usuario canceló la ventana de configuración de la carpeta del sistema.",
"Files": "Archivos",
"FilteringOption_All": "Todos",
"FilteringOption_Flagged": "Marcado",
"FilteringOption_Unread": "Sin leer",
"Focused": "Importante",
"FolderOperation_CreateSubFolder": "Crear sub carpeta",
"FolderOperation_Delete": "Eliminar",
"FolderOperation_DontSync": "No sincronizar esta carpeta",
"FolderOperation_Empty": "Vaciar esta carpeta",
"FolderOperation_MarkAllAsRead": "Marcar todo como leído",
"FolderOperation_Move": "Mover",
"DragMoveToFolderCaption": "Mover a {0}",
"FolderOperation_None": "Ninguno",
"FolderOperation_Pin": "Fijar",
"FolderOperation_Rename": "Renombrar",
"FolderOperation_Unpin": "Desfijar",
"HoverActionOption_Archive": "Archivar",
"HoverActionOption_Delete": "Eliminar",
"HoverActionOption_MoveJunk": "Mover a Correo no deseado",
"HoverActionOption_ToggleFlag": "Marcar / Desmarcar",
"HoverActionOption_ToggleRead": "Leídos / Sin leer",
"MergedAccountCommonFolderInbox": "Bandeja de Entrada",
"MergedAccountCommonFolderSent": "Enviados",
"MergedAccountCommonFolderDraft": "Borradores",
"MergedAccountCommonFolderJunk": "Correo no deseado",
"MergedAccountCommonFolderTrash": "Eliminados",
"MergedAccountCommonFolderArchive": "Archivo",
"IMAPSetupDialog_AccountType": "Tipo de cuenta",
"IMAPSetupDialog_DisplayName": "Nombre para mostrar",
"IMAPSetupDialog_DisplayNamePlaceholder": "por ejemplo. Fulano Mengano",
"IMAPSetupDialog_IncomingMailServer": "Servidor de correo entrante",
"IMAPSetupDialog_IncomingMailServerPort": "Puerto",
"IMAPSetupDialog_MailAddress": "Dirección de correo",
"IMAPSetupDialog_MailAddressPlaceholder": "alguien@ejemplo.com",
"IMAPSetupDialog_OutgoingMailServer": "Servidor de correo saliente (SMTP)",
"IMAPSetupDialog_OutgoingMailServerPassword": "Contraseña del servidor de salida",
"IMAPSetupDialog_OutgoingMailServerPort": "Puerto",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "El servidor de salida requiere autenticación",
"IMAPSetupDialog_OutgoingMailServerUsername": "Usuario del servidor de salida",
"IMAPSetupDialog_Password": "Contraseña",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Requerir SSL para los correos entrantes",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Requerir SSL para los correos salientes",
"IMAPSetupDialog_Title": "Configuración IMAP Avanzada",
"IMAPSetupDialog_UseSameConfig": "Usar el mismo correo y contraseña para enviar correos",
"IMAPSetupDialog_Username": "Nombre de usuario",
"IMAPSetupDialog_UsernamePlaceholder": "fulanomengano, fulanomengano@fabrikam.com, dominio/fulanomengano",
"ImageRenderingDisabled": "El procesamiento de imágenes está desactivado para este mensaje.",
"InfoBarAction_Enable": "Activar",
"InfoBarMessage_SynchronizationDisabledFolder": "Esta carpeta está desactivada para la sincronización.",
"InfoBarTitle_SynchronizationDisabledFolder": "Carpeta desactivada",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} se ha creado",
"Info_AccountCreatedTitle": "Creación de una cuenta",
"Info_AccountCreationFailedTitle": "Ocurrió un error al crear la cuenta",
"Info_AccountDeletedMessage": "{0} eliminado correctamente.",
"Info_AccountDeletedTitle": "Cuenta eliminada",
"Info_AccountIssueFixFailedTitle": "Fallido",
"Info_AccountIssueFixSuccessMessage": "Se han corregido todos los problemas de la cuenta.",
"Info_AccountIssueFixSuccessTitle": "Correcto",
"Info_AttachmentOpenFailedMessage": "No se puede abrir este adjunto.",
"Info_AttachmentOpenFailedTitle": "Fallido",
"Info_AttachmentSaveFailedMessage": "No se puede guardar este adjunto.",
"Info_AttachmentSaveFailedTitle": "Fallido",
"Info_AttachmentSaveSuccessMessage": "El adjunto ha sido guardado.",
"Info_AttachmentSaveSuccessTitle": "Adjunto guardado",
"Info_BackgroundExecutionDeniedMessage": "Se ha denegado la ejecución en segundo plano para la aplicación. Esto puede afectar a la sincronización en segundo plano y a las notificaciones en directo.",
"Info_BackgroundExecutionDeniedTitle": "Ejecución de fondo denegada",
"Info_BackgroundExecutionUnknownErrorMessage": "Se produjo una excepción desconocida al registrar el sincronizador en segundo plano.",
"Info_BackgroundExecutionUnknownErrorTitle": "Error de ejecución en segundo plano",
"Info_ComposerMissingMIMEMessage": "No se pudo localizar el archivo MIME. La sincronización puede ayudar.",
"Info_ComposerMissingMIMETitle": "Fallido",
"Info_ContactExistsMessage": "Este contacto ya está en la lista de destinatarios.",
"Info_ContactExistsTitle": "Contacto existente",
"Info_DraftFolderMissingMessage": "No existe la carpeta de borradores en esta cuenta. Por favor, comprueba los ajustes de la cuenta.",
"Info_DraftFolderMissingTitle": "Falta la carpeta borrador",
"Info_FileLaunchFailedTitle": "Error al iniciar archivo",
"Info_InvalidAddressMessage": "La dirección: {0} no es un e-mail válido.",
"Info_InvalidAddressTitle": "Dirección no válida",
"Info_InvalidMoveTargetMessage": "No puede mover los correos seleccionados a esta carpeta.",
"Info_InvalidMoveTargetTitle": "Objetivo mover no válido",
"Info_LogsNotFoundMessage": "No hay registros que compartir.",
"Info_LogsNotFoundTitle": "Registros No Encontrados",
"Info_LogsSavedMessage": "{0} se ha guardado en la carpeta seleccionada.",
"Info_LogsSavedTitle": "Guardado",
"Info_MailRenderingFailedMessage": "Este correo está dañado o no puede abrirse.\n{0}",
"Info_MailRenderingFailedTitle": "Error al renderizar",
"Info_MessageCorruptedMessage": "Este mensaje está dañado.",
"Info_MessageCorruptedTitle": "Error",
"Info_MissingFolderMessage": "{0} no existe para esta cuenta.",
"Info_MissingFolderTitle": "Falta carpeta",
"Info_PurchaseExistsMessage": "Parece que este producto ya ha sido comprado antes.",
"Info_PurchaseExistsTitle": "Producto existente",
"Info_PurchaseThankYouMessage": "Gracias",
"Info_PurchaseThankYouTitle": "Compra correcta",
"Info_RequestCreationFailedTitle": "Hubo una falla al Crear Solicitudes",
"Info_ReviewNetworkErrorMessage": "Hubo un error desconocido con tu opinión.",
"Info_ReviewNetworkErrorTitle": "Problema de red",
"Info_ReviewNewMessage": "Todas las opiniones se agradecen. ¡Gracias por dejar la tuya!",
"Info_ReviewSuccessTitle": "Gracias",
"Info_ReviewUnknownErrorMessage": "Hubo un error desconocido con tu opinión. ({0})",
"Info_ReviewUnknownErrorTitle": "Error Desconocido",
"Info_ReviewUpdatedMessage": "Gracias por tus comentarios actualizados.",
"Info_SignatureDisabledMessage": "Firma desactivada para esta cuenta",
"Info_SignatureDisabledTitle": "Éxito",
"Info_SignatureSavedMessage": "Se guardó la nueva firma",
"Info_SignatureSavedTitle": "Éxito",
"Info_SyncCanceledMessage": "Cancelado",
"Info_SyncCanceledTitle": "Sincronización",
"Info_SyncFailedTitle": "Falló la Sincronización",
"Info_UnsupportedFunctionalityDescription": "Esta funcionalidad aún no está implementada.",
"Info_UnsupportedFunctionalityTitle": "No soportado",
"Info_UnsubscribeLinkInvalidTitle": "Url de baja no válida",
"Info_UnsubscribeLinkInvalidMessage": "Este enlace de baja suscripción no es válido. Error al darse de baja de la lista.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Método de autenticación",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Seguridad de la conexión",
"ImapAuthenticationMethod_Auto": "Auto",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "Sin autenticación",
"ImapAuthenticationMethod_Plain": "Contraseña normal",
"ImapAuthenticationMethod_EncryptedPassword": "Contraseña encriptada",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "Ninguno",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Auto",
"Justify": "Justificar",
"Left": "Izquierda",
"Link": "Enlace",
"LinkedAccountsCreatePolicyMessage": "debes tener al menos 2 cuentas para crear el enlace\nenlace se eliminará al guardar",
"LinkedAccountsTitle": "Cuentas Vinculadas",
"MailOperation_AlwaysMoveFocused": "Siempre Mover a Importantes",
"MailOperation_AlwaysMoveOther": "Siempre Mover a Otros",
"MailOperation_Archive": "Archivar",
"MailOperation_ClearFlag": "Quitar marca",
"MailOperation_DarkEditor": "Oscuro",
"MailOperation_Delete": "Eliminar",
"MailOperation_ExportPDF": "Exportar a PDF",
"MailOperation_Find": "Buscar",
"MailOperation_Forward": "Reenviar",
"MailOperation_Ignore": "Ignorar",
"MailOperation_LightEditor": "Claro",
"MailOperation_MarkAsJunk": "Marcar como Correo no deseado",
"MailOperation_MarkAsRead": "Marcar como leído",
"MailOperation_MarkAsUnread": "Marcar como no leído",
"MailOperation_MarkNotJunk": "Marcar como Correo deseado",
"MailOperation_Move": "Mover",
"MailOperation_MoveFocused": "Mover a Importantes",
"MailOperation_MoveJunk": "Mover a Correo no deseado",
"MailOperation_MoveOther": "Mover a Otros",
"MailOperation_Navigate": "Navegar",
"MailOperation_Print": "Imprimir",
"MailOperation_Reply": "Responder",
"MailOperation_ReplyAll": "Responder a todos",
"MailOperation_SaveAs": "Guardar Como",
"MailOperation_SetFlag": "Establecer marca",
"MailOperation_Unarchive": "Desarchivar",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} artículo(s) seleccionado(s)",
"MarkFlagUnflag": "Marcar como marcado/desmarcado",
"MarkReadUnread": "Marcar como leído/no leído",
"MenuManageAccounts": "Administrar Cuentas",
"MenuNewMail": "Nuevo Correo",
"MenuMergedAccountItemAccountsSuffix": " cuentas",
"MenuRate": "Valorar Wino",
"MenuSettings": "Ajustes",
"MergedAccountsAvailableAccountsTitle": "Cuentas Disponibles",
"More": "Más",
"MoveMailDialog_InvalidFolderMessage": "La carpeta {0} no es válida para este correo.",
"MoveMailDialog_Title": "Elija una carpeta",
"NewAccountDialog_AccountName": "Nombre de la Cuenta",
"NewAccountDialog_AccountNameDefaultValue": "Personal",
"NewAccountDialog_AccountNamePlaceholder": "p.ej. Correo Personal",
"NewAccountDialog_Title": "Agregar nueva cuenta",
"NoMailSelected": "ningún mensaje seleccionado",
"NoMessageCrieteria": "ningún mensaje coincide con sus criterios de búsqueda.",
"NoMessageEmptyFolder": "esta carpeta está vacía.",
"Notifications_MultipleNotificationsMessage": "Tienes {0} correos nuevos",
"Notifications_MultipleNotificationsTitle": "Nuevos correos",
"Notifications_WinoUpdatedMessage": "Comprobar nueva versión {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail ha sido actualizado.",
"Other": "Otro",
"PaneLengthOption_Default": "Por defecto",
"PaneLengthOption_ExtraLarge": "Extra grande",
"PaneLengthOption_Large": "Grande",
"PaneLengthOption_Medium": "Mediano",
"PaneLengthOption_Micro": "Mini",
"PaneLengthOption_Small": "Pequeño",
"Photos": "Fotos",
"PreparingFoldersMessage": "Preparando carpetas",
"ProviderDetail_Gmail_Description": "Cuenta de Google",
"ProviderDetail_IMAP_Description": "Servidor IMAP/SMTP personalizado",
"ProviderDetail_IMAP_Title": "Servidor IMAP",
"Results": "Resultados",
"Right": "Derecha",
"SynchronizationFolderReport_Success": "actualizado",
"SynchronizationFolderReport_Failed": "sincronización fallida",
"SearchBarPlaceholder": "buscar",
"SearchingIn": "buscando en",
"SettingsAboutGithub_Description": "Ir al rastreador de problemas en el repositorio de GitHub.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Añadir mensajes a la carpeta Enviada",
"SettingsAccountManagementAppendMessage_Description": "Crear una copia del mensaje en la carpeta Enviados luego de que el borrador se envíe. Activa esto si no ves tus correos en la carpeta Enviados después que los enviaste.",
"SettingsEditLinkedInbox_Title": "Editar bandeja de entrada vinculada",
"SettingsEditLinkedInbox_Description": "Añadir / quitar cuentas, renombrar o quitar vínculos entre cuentas.",
"SettingsAboutVersion": "Versión ",
"SettingsAboutWinoDescription": "Cliente de correo ligero para la familia de dispositivos Windows.",
"SettingsAbout_Description": "Conoce más sobre Wino.",
"SettingsAbout_Title": "Acerca de",
"SettingsAccentColor_Description": "Cambiar el color de acento de la aplicación",
"SettingsAccentColor_Title": "Color de Acento",
"SettingsAccentColor_UseWindowsAccentColor": "Usar mi color de acento de Windows",
"SettingsAccountName_Description": "Cambiar el nombre de la cuenta.",
"SettingsAccountName_Title": "Nombre de la Cuenta",
"SettingsApplicationTheme_Description": "Personaliza Wino con distintos temas personalizados a tu gusto.",
"SettingsApplicationTheme_Title": "Tema de la Aplicación",
"SettingsAvailableThemes_Description": "Escoge un tema que te agrade desde la colección de Wino o aplica tus propios temas.",
"SettingsAvailableThemes_Title": "Temas Disponibles",
"SettingsCustomTheme_Description": "Crea tu propio tema personalizado con una imagen de fondo y colores de acento personalizados.",
"SettingsCustomTheme_Title": "Tema Personalizado",
"SettingsDeleteAccount_Description": "Eliminar todos los correos y credenciales asociadas a esta cuenta.",
"SettingsDeleteAccount_Title": "Eliminar esta cuenta",
"SettingsDeleteProtection_Description": "¿Debería Wino pedirte confirmación cada vez que intentas eliminar un correo usando las teclas Shift + Supr?",
"SettingsDeleteProtection_Title": "Protección de Eliminación Permanente",
"SettingsDiagnostics_Description": "Para desarrolladores",
"SettingsDiagnostics_Title": "Diagnósticos",
"SettingsDiscord_Description": "Recibe actualizaciones regulares sobre el desarrollo, únete a las discusiones sobre los avances y proporciona comentarios.",
"SettingsDiscord_Title": "Canal de Discord",
"SettingsElementThemeSelectionDisabled": "La selección de elementos del tema se desactiva cuando el tema de la aplicación se selecciona de forma predeterminada.",
"SettingsElementTheme_Description": "Escoge un tema de Windows para Wino",
"SettingsElementTheme_Title": "Tema de elemento",
"SettingsEnableHoverActions_Title": "Activar acciones al mantener",
"SettingsEnableIMAPLogs_Description": "Habilite esto para proporcionar detalles sobre los errores de conectividad IMAP que tuvo durante la configuración del servidor IMAP.",
"SettingsEnableIMAPLogs_Title": "Habilitar registros de protocolo IMAP",
"SettingsEnableLogs_Description": "Podría necesitar registros para problemas diagnósticos que has abierto en GitHub. Ninguno de los registros expondrá sus credenciales o información sensible a la opinión pública.",
"SettingsEnableLogs_Title": "Activar registros",
"SettingsEnableSignature": "Habilitar firma",
"SettingsExpandOnStartup_Description": "Establezca si Wino debería expandir las carpetas de esta cuenta al inicio.",
"SettingsExpandOnStartup_Title": "Expandir Menú al Inicio",
"SettingsExternalContent_Description": "Administrar la configuración de contenido externo al renderizar los correos.",
"SettingsExternalContent_Title": "Contenido externo",
"SettingsFocusedInbox_Description": "Establezca si la Bandeja de Entrada debe dividirse en dos como Enfocada - Otro.",
"SettingsFocusedInbox_Title": "Bandeja de entrada concentrada",
"SettingsFolderSync_Description": "Activar o desactivar carpetas específicas para la sincronización.",
"SettingsFolderSync_Title": "Sincronización de carpetas",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Centro de Acción",
"SettingsHoverActionLeft": "Acción Izquierda",
"SettingsHoverActionRight": "Acción Derecha",
"SettingsHoverActions_Description": "Seleccione 3 acciones a mostrar cuando pase el cursor sobre los correos.",
"SettingsHoverActions_Title": "Acciones de Cursor",
"SettingsLanguage_Description": "Cambiar el idioma de visualización para Wino.",
"SettingsLanguage_Title": "Idioma de pantalla",
"CategoriesFolderNameOverride": "Categorías",
"MoreFolderNameOverride": "Más",
"SettingsOptions_Title": "Ajustes",
"SettingsLinkAccounts_Description": "Fusionar múltiples cuentas en una. Ver correos en una bandeja de entrada común.",
"SettingsLinkAccounts_Title": "Crear Cuentas Vinculadas",
"SettingsLinkedAccountsSave_Description": "Modificar el enlace actual con las nuevas cuentas.",
"SettingsLinkedAccountsSave_Title": "Guardar Cambios",
"SettingsLoadImages_Title": "Cargar imágenes automáticamente",
"SettingsLoadStyles_Title": "Cargar estilos automáticamente",
"SettingsMailSpacing_Description": "Ajustar el espacio para listar los correos.",
"SettingsMailSpacing_Title": "Espacio de Correo",
"SettingsFolderMenuStyle_Title": "Crear Carpetas Anidadas",
"SettingsFolderMenuStyle_Description": "Cambia si las carpetas de la cuenta deben anidarse dentro de un elemento de menú de la cuenta o no. Desactiva esto si te gusta el antiguo sistema de menú de Windows Mail",
"SettingsManageAccountSettings_Description": "Notificaciones, firmas, sincronización y otros ajustes por cuenta.",
"SettingsManageAccountSettings_Title": "Administrar ajustes de cuenta",
"SettingsManageLink_Description": "Mover elementos para añadir un nuevo enlace o eliminar el enlace existente.",
"SettingsManageLink_Title": "Administrar enlaces",
"SettingsMarkAsRead_Description": "Cambiar lo que debería pasar con el elemento seleccionado.",
"SettingsMarkAsRead_DontChange": "No marcar automáticamente el elemento como leído",
"SettingsMarkAsRead_SecondsToWait": "Segundos de espera: ",
"SettingsMarkAsRead_Timer": "Cuando se visualiza en el panel de lectura",
"SettingsMarkAsRead_Title": "Marcar artículo como leído",
"SettingsMarkAsRead_WhenSelected": "Al seleccionar",
"SettingsMessageList_Description": "Cambie cómo deben organizarse sus mensajes en la lista de correo.",
"SettingsMessageList_Title": "Lista de mensajes",
"SettingsNoAccountSetupMessage": "Aún no has configurado ninguna cuenta.",
"SettingsNotifications_Description": "Activar o desactivar notificaciones para esta cuenta.",
"SettingsNotifications_Title": "Notificaciones",
"SettingsPaneLength_Description": "Cambiar el ancho de la lista de correo.",
"SettingsPaneLength_Title": "Longitud del panel de la lista de correo",
"SettingsPaypal_Description": "Muestre mucho más amor ❤️ Todas las donaciones se agradecen.",
"SettingsPaypal_Title": "Dona vía PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Modo Compacto",
"SettingsPersonalizationMailDisplayMediumMode": "Modo Mediano",
"SettingsPersonalizationMailDisplaySpaciousMode": "Modo Espacioso",
"SettingsPersonalization_Description": "Cambia la apariencia de Wino a tu gusto.",
"SettingsPersonalization_Title": "Personalización",
"SettingsPrivacyPolicy_Description": "Revisar la Política de Privacidad.",
"SettingsPrivacyPolicy_Title": "Políticas de privacidad",
"SettingsReadingPane_Description": "Opciones de renderizado de correo.",
"SettingsReadingPane_Title": "Panel de lectura",
"SettingsReaderFont_Title": "Fuente por defecto del Lector",
"SettingsReaderFontFamily_Description": "Cambie el tamaño por defecto de la familia de fuentes y del tipo de letra para escribir correos.",
"SettingsFontFamily_Title": "Familia tipográfica",
"SettingsFontSize_Title": "Tamaño de la fuente",
"SettingsFontPreview_Title": "Vista previa",
"SettingsComposerFont_Title": "Fuente por defecto para Escribir",
"SettingsComposerFontFamily_Description": "Cambie el tamaño por defecto de la familia de fuentes y del tipo de letra para escribir correos.",
"SettingsRenameMergeAccount_Description": "Cambiar el nombre mostrado de las cuentas vinculadas.",
"SettingsRenameMergeAccount_Title": "Renombrar",
"SettingsSemanticZoom_Description": "Esto le permitirá hacer clic en los encabezados de la lista de mensajes e ir a una fecha específica",
"SettingsSemanticZoom_Title": "Zoom semántico para los encabezados de fechas",
"SettingsShowPreviewText_Description": "Ocultar/mostrar texto de la vista previa.",
"SettingsShowPreviewText_Title": "Mostrar texto de vista previa",
"SettingsShowSenderPictures_Description": "Ocultar/mostrar imágenes del remitente en miniatura.",
"SettingsShowSenderPictures_Title": "Mostrar Avatares de Remitente",
"SettingsPrefer24HourClock_Title": "Mostrar formato de reloj en 24 horas",
"SettingsPrefer24HourClock_Description": "Las horas de recepción de correos se mostrarán en formato de 24 horas en lugar de 12 (AM/PM)",
"SettingsSignature_Description": "Editar o eliminar firma de cuenta",
"SettingsSignature_Title": "Firma",
"SettingsStartupItem_Description": "Elemento principal de la cuenta para cargar la Bandeja de entrada al inicio.",
"SettingsStartupItem_Title": "Elemento de Inicio",
"SettingsStore_Description": "Mostrar un poco de amor ❤️",
"SettingsStore_Title": "Valorar en la tienda",
"SettingsThreads_Description": "Organizar mensajes en hilos de conversación.",
"SettingsThreads_Title": "Hilos de conversación",
"SettingsUnlinkAccounts_Description": "Eliminar el enlace entre cuentas. Esto no eliminará sus cuentas.",
"SettingsUnlinkAccounts_Title": "Desvincular Cuentas",
"SortingOption_Date": "por fecha",
"SortingOption_Name": "por nombre",
"StoreRatingDialog_MessageFirstLine": "Todos los comentarios son apreciados y harán mucho mejor Wino en el futuro. ¿Te gustaría calificar Wino en Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "¿Quieres calificar Wino Mail en Microsoft Store?",
"StoreRatingDialog_Title": "¿Te gusta Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Los mensajes borrados se moverán a aquí.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Carpeta eliminados",
"SystemFolderConfigDialog_DraftFolderDescription": "Aquí se elaborarán nuevos correos/respuestas.",
"SystemFolderConfigDialog_DraftFolderHeader": "Carpeta de borrador",
"SystemFolderConfigDialog_JunkFolderDescription": "Todos los correos basura o spam estarán aquí.",
"SystemFolderConfigDialog_JunkFolderHeader": "Carpeta Basura/Spam",
"SystemFolderConfigDialog_MessageFirstLine": "Este servidor IMAP no soporta la extensión SPECIAL-USE, por lo que Wino no pudo configurar las carpetas del sistema correctamente.",
"SystemFolderConfigDialog_MessageSecondLine": "Por favor, seleccione las carpetas apropiadas para funciones específicas.",
"SystemFolderConfigDialog_SentFolderDescription": "Carpeta que los mensajes enviados serán almacenados.",
"SystemFolderConfigDialog_SentFolderHeader": "Carpeta Enviados",
"SystemFolderConfigDialog_Title": "Configurar Carpetas del Sistema",
"TestingImapConnectionMessage": "Probando conexión con el servidor...",
"Today": "Hoy",
"UnknownAddress": "dirección desconocida",
"UnknownDateHeader": "Fecha desconocida",
"UnknownGroupAddress": "dirección de grupo de correo desconocida",
"UnknownSender": "Remitente desconocido",
"Unsubscribe": "Darse de baja",
"ViewContactDetails": "Ver Detalles",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Actualizar a Cuentas Ilimitadas",
"WinoUpgradeRemainingAccountsMessage": "{0} de {1} cuentas gratuitas usadas.",
"Yesterday": "Ayer"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "tout est prêt",
"AccountCreationDialog_Initializing": "initialisation",
"AccountCreationDialog_PreparingFolders": "Réception des informations du dossier.",
"AccountCreationDialog_SigninIn": "Enregistrement des informations du compte.",
"AccountEditDialog_Message": "Nom du compte",
"AccountEditDialog_Title": "Modifier le compte",
"AccountPickerDialog_Title": "Choisir un compte",
"AddHyperlink": "Ajouter",
"AutoDiscoveryProgressMessage": "Recherche des paramètres de messagerie...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Paramètres avancés",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Vos identifiants seront uniquement stockés sur votre ordinateur.",
"BasicIMAPSetupDialog_Description": "Certains comptes requièrent des étapes supplémentaires pour se connecter",
"BasicIMAPSetupDialog_DisplayName": "Nom d'affichage",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "ex. Jean Dupont",
"BasicIMAPSetupDialog_LearnMore": "En savoir plus",
"BasicIMAPSetupDialog_MailAddress": "Adresse électronique",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "jeandupont@exemple.fr",
"BasicIMAPSetupDialog_Password": "Mot de passe",
"BasicIMAPSetupDialog_Title": "Compte IMAP",
"Buttons_AddAccount": "Ajouter un compte",
"Buttons_ApplyTheme": "Appliquer le thème",
"Buttons_Browse": "Parcourir",
"Buttons_Cancel": "Annuler",
"Buttons_Close": "Fermer",
"Buttons_Create": "Créer",
"Buttons_CreateAccount": "Créer un compte",
"Buttons_Delete": "Supprimer",
"Buttons_Discard": "Ignorer",
"Buttons_EnableImageRendering": "Activer",
"Buttons_No": "Non",
"Buttons_Open": "Ouvrir",
"Buttons_Purchase": "Acheter",
"Buttons_RateWino": "Évaluer Wino",
"Buttons_Save": "Enregistrer",
"Buttons_SaveConfiguration": "Enregistrer la configuration",
"Buttons_Share": "Partager",
"Buttons_SignIn": "Connexion",
"Buttons_Yes": "Oui",
"Center": "Centrer",
"ComingSoon": "Bientôt disponible...",
"ComposerFrom": "De : ",
"ComposerSubject": "Objet : ",
"ComposerTo": "À : ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "click enter to input addresses",
"CustomThemeBuilder_AccentColorDescription": "Définir une couleur d'accentuation personnalisée si vous le souhaitez. Ne pas sélectionner une couleur utilisera votre couleur d'accentuation Windows.",
"CustomThemeBuilder_AccentColorTitle": "Couleur d'accentuation",
"CustomThemeBuilder_PickColor": "Choisir",
"CustomThemeBuilder_ThemeNameDescription": "Nom unique pour votre thème personnalisé.",
"CustomThemeBuilder_ThemeNameTitle": "Nom du thème",
"CustomThemeBuilder_Title": "Générateur de Thèmes personnalisés",
"CustomThemeBuilder_WallpaperDescription": "Définir un fond d'écran personnalisé pour Wino",
"CustomThemeBuilder_WallpaperTitle": "Définir un fond d'écran personnalisé",
"DialogMessage_AccountLimitMessage": "Vous avez atteint la limite de création de compte.\nVoulez-vous acheter le module 'Compte illimité' pour continuer ?",
"DialogMessage_AccountLimitTitle": "Limite de compte atteinte",
"DialogMessage_CleanupFolderMessage": "Voulez-vous supprimer définitivement tous les messages de ce dossier ?",
"DialogMessage_CleanupFolderTitle": "Nettoyer le dossier",
"DialogMessage_ComposerMissingRecipientMessage": "Le message n'a pas de destinataire.",
"DialogMessage_ComposerValidationFailedTitle": "Validation échouée",
"DialogMessage_CreateLinkedAccountMessage": "Give this new link a name. Accounts will be merged under this name.",
"DialogMessage_CreateLinkedAccountTitle": "Account Link Name",
"DialogMessage_DeleteAccountConfirmationMessage": "Supprimer {0} ?",
"DialogMessage_DeleteAccountConfirmationTitle": "Toutes les données associées à ce compte seront définitivement supprimées du disque.",
"DialogMessage_DiscardDraftConfirmationMessage": "Ce brouillon sera supprimé. Voulez-vous continuer ?",
"DialogMessage_DiscardDraftConfirmationTitle": "Supprimer le brouillon",
"DialogMessage_HardDeleteConfirmationMessage": "Supprimer définitivement",
"DialogMessage_HardDeleteConfirmationTitle": "Le ou les messages seront supprimés définitivement. Voulez-vous continuer ?",
"DialogMessage_NoAccountsForCreateMailMessage": "Vous n'avez aucun compte pour créer un message.",
"DialogMessage_NoAccountsForCreateMailTitle": "Compte manquant",
"DialogMessage_RenameLinkedAccountsMessage": "Entrez un nouveau nom pour le compte lié",
"DialogMessage_RenameLinkedAccountsTitle": "Rename Linked Account",
"DialogMessage_UnlinkAccountsConfirmationMessage": "Cette opération ne supprimera pas vos comptes mais ne supprimera que le lien pour les connexions de dossiers partagés. Voulez-vous continuer?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Dissocier les comptes",
"DialogMessage_EmptySubjectConfirmation": "Sujet manquant",
"DialogMessage_EmptySubjectConfirmationMessage": "Le message n'a pas d'objet. Voulez-vous continuer ?",
"Dialog_DontAskAgain": "Ne plus demander",
"DiscordChannelDisclaimerMessage": "Wino n'a pas son propre serveur Discord, mais un canal spécial « wino-mail » est hébergé sur le serveur « Developer Sanctuary ».\nPour obtenir les mises à jour sur Wino, veuillez rejoindre le serveur Developer Sanctuary et suivre le canal « wino-mail » sous « Projets communautaires ».\n\nVous serez dirigé vers l'URL du serveur car Discord ne prend pas en charge les invitations à des chaînes.",
"DiscordChannelDisclaimerTitle": "Informations importantes sur Discord",
"Draft": "Brouillon",
"EditorToolbarOption_Draw": "Dessiner",
"EditorToolbarOption_Format": "Format",
"EditorToolbarOption_Insert": "Insérer",
"EditorToolbarOption_None": "Aucun",
"EditorToolbarOption_Options": "Options",
"ElementTheme_Dark": "Mode sombre",
"ElementTheme_Default": "Utiliser les paramètres du système",
"ElementTheme_Light": "Mode clair",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "Échec du groupement de clients IMAP.",
"Exception_AuthenticationCanceled": "Authentification annulée",
"Exception_CustomThemeExists": "Ce thème existe déjà.",
"Exception_CustomThemeMissingName": "Vous devez indiquer un nom.",
"Exception_CustomThemeMissingWallpaper": "Vous devez fournir une image d'arrière-plan personnalisée.",
"Exception_FailedToSynchronizeFolders": "Échec de la synchronisation des dossiers",
"Exception_GoogleAuthCallbackNull": "Callback uri is null on activation.",
"Exception_GoogleAuthCorruptedCode": "Réponse dautorisation corrompue.",
"Exception_GoogleAuthError": "Erreur d'autorisation OAuth : {0}",
"Exception_GoogleAuthInvalidResponse": "Received request with invalid state ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Authorization code exchange failed.",
"Exception_InvalidSystemFolderConfiguration": "La configuration du dossier système nest pas valide. Vérifiez la configuration et réessayez.",
"Exception_NullAssignedAccount": "Assigned account is null",
"Exception_NullAssignedFolder": "Assigned folder is null",
"Exception_SynchronizerFailureHTTP": "Response handling failed with error HTTP code {0}",
"Exception_TokenGenerationFailed": "Échec de la génération du jeton",
"Exception_TokenInfoRetrivalFailed": "Impossible de récupérer les informations de l'utilisateur.",
"Exception_UnknowErrorDuringAuthentication": "Unknown error occurred during authentication",
"Exception_UnsupportedAction": "Action {0} is not implemented in request processor",
"Exception_UnsupportedProvider": "Ce fournisseur n'est pas pris en charge.",
"Exception_UnsupportedSynchronizerOperation": "Cette opération n'est pas supportée pour {0}",
"Exception_UserCancelSystemFolderSetupDialog": "L'utilisateur a annulé la boîte de dialogue de configuration du dossier système.",
"Files": "Fichiers",
"FilteringOption_All": "Tout",
"FilteringOption_Flagged": "Marqué",
"FilteringOption_Unread": "Non lus",
"Focused": "Focused",
"FolderOperation_CreateSubFolder": "Créer un sous-dossier",
"FolderOperation_Delete": "Supprimer",
"FolderOperation_DontSync": "Ne pas synchroniser ce dossier",
"FolderOperation_Empty": "Vider ce dossier",
"FolderOperation_MarkAllAsRead": "Marquer tout comme lu",
"FolderOperation_Move": "Déplacer",
"DragMoveToFolderCaption": "Déplacer vers {0}",
"FolderOperation_None": "Aucun",
"FolderOperation_Pin": "Épingler",
"FolderOperation_Rename": "Renommer",
"FolderOperation_Unpin": "Désépingler",
"HoverActionOption_Archive": "Archiver",
"HoverActionOption_Delete": "Supprimer",
"HoverActionOption_MoveJunk": "Déplacer vers courriers indésirables",
"HoverActionOption_ToggleFlag": "Marquer / Démarquer",
"HoverActionOption_ToggleRead": "Lu / Non lu",
"MergedAccountCommonFolderInbox": "Boîte de réception",
"MergedAccountCommonFolderSent": "Envoyé",
"MergedAccountCommonFolderDraft": "Brouillon",
"MergedAccountCommonFolderJunk": "Indésirables",
"MergedAccountCommonFolderTrash": "Supprimé",
"MergedAccountCommonFolderArchive": "Archives",
"IMAPSetupDialog_AccountType": "Type de compte",
"IMAPSetupDialog_DisplayName": "Nom d'affichage",
"IMAPSetupDialog_DisplayNamePlaceholder": "ex. Jean Dupont",
"IMAPSetupDialog_IncomingMailServer": "Serveur de courrier entrant",
"IMAPSetupDialog_IncomingMailServerPort": "Port",
"IMAPSetupDialog_MailAddress": "Adresse e-mail",
"IMAPSetupDialog_MailAddressPlaceholder": "personne@example.com",
"IMAPSetupDialog_OutgoingMailServer": "Serveur de courrier sortant (SMTP)",
"IMAPSetupDialog_OutgoingMailServerPassword": "Mot de passe du serveur sortant",
"IMAPSetupDialog_OutgoingMailServerPort": "Port",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Le serveur sortant nécessite une authentification",
"IMAPSetupDialog_OutgoingMailServerUsername": "Nom d'utilisateur du serveur sortant",
"IMAPSetupDialog_Password": "Mot de passe",
"IMAPSetupDialog_RequireSSLForIncomingMail": "SSL requis pour les courriers entrants",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "SSL requis pour les courriers sortants",
"IMAPSetupDialog_Title": "Configuration IMAP avancée",
"IMAPSetupDialog_UseSameConfig": "Utilisez le même nom d'utilisateur et mot de passe pour envoyer un e-mail",
"IMAPSetupDialog_Username": "Nom dutilisateur",
"IMAPSetupDialog_UsernamePlaceholder": "johndoe, johndoe@fabrikam.com, domaine/johndoe",
"ImageRenderingDisabled": "L'affichage d'image est désactivé pour ce message.",
"InfoBarAction_Enable": "Activer",
"InfoBarMessage_SynchronizationDisabledFolder": "Ce dossier est désactivé pour la synchronisation.",
"InfoBarTitle_SynchronizationDisabledFolder": "Dossier désactivé",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} est créé",
"Info_AccountCreatedTitle": "Création de compte",
"Info_AccountCreationFailedTitle": "Échec de la création du compte",
"Info_AccountDeletedMessage": "{0} a été supprimé avec succès.",
"Info_AccountDeletedTitle": "Compte supprimé",
"Info_AccountIssueFixFailedTitle": "Échec",
"Info_AccountIssueFixSuccessMessage": "Correction de tous les problèmes de compte.",
"Info_AccountIssueFixSuccessTitle": "Réussi",
"Info_AttachmentOpenFailedMessage": "Impossible d'ouvrir la pièce-jointe.",
"Info_AttachmentOpenFailedTitle": "Échec",
"Info_AttachmentSaveFailedMessage": "Impossible d'enregistrer cette pièce-jointe.",
"Info_AttachmentSaveFailedTitle": "Échec",
"Info_AttachmentSaveSuccessMessage": "La pièce jointe est enregistrée.",
"Info_AttachmentSaveSuccessTitle": "Pièce jointe enregistrée",
"Info_BackgroundExecutionDeniedMessage": "L'exécution en arrière-plan de l'application est refusée. Cela peut affecter la synchronisation en arrière-plan et les notifications en direct.",
"Info_BackgroundExecutionDeniedTitle": "Exécution en arrière-plan refusée",
"Info_BackgroundExecutionUnknownErrorMessage": "Unknown exception occurred when registering background synchronizer.",
"Info_BackgroundExecutionUnknownErrorTitle": "Échec de l'exécution en arrière-plan",
"Info_ComposerMissingMIMEMessage": "Impossible de trouver le fichier MIME. La synchronisation peut aider.",
"Info_ComposerMissingMIMETitle": "Failed",
"Info_ContactExistsMessage": "Ce contact est déjà dans la liste des destinataires.",
"Info_ContactExistsTitle": "Contact Exists",
"Info_DraftFolderMissingMessage": "Le dossier Brouillon est manquant pour ce compte. Veuillez vérifier vos paramètres de compte.",
"Info_DraftFolderMissingTitle": "Dossier brouillon manquant",
"Info_FileLaunchFailedTitle": "Échec du lancement du fichier",
"Info_InvalidAddressMessage": "{0} n'est pas une adresse e-mail valide.",
"Info_InvalidAddressTitle": "Addresse invalide",
"Info_InvalidMoveTargetMessage": "Vous ne pouvez pas déplacer les messages sélectionnés dans ce dossier.",
"Info_InvalidMoveTargetTitle": "Cible non valide",
"Info_LogsNotFoundMessage": "Il n'y a pas de journaux à partager.",
"Info_LogsNotFoundTitle": "Journaux introuvables",
"Info_LogsSavedMessage": "{0} est sauvegardé dans le dossier sélectionné.",
"Info_LogsSavedTitle": "Enregistré",
"Info_MailRenderingFailedMessage": "Ce courrier est corrompu ou ne peut pas être ouvert.\n{0}",
"Info_MailRenderingFailedTitle": "Le rendu a échoué",
"Info_MessageCorruptedMessage": "Ce message est corrompu.",
"Info_MessageCorruptedTitle": "Erreur",
"Info_MissingFolderMessage": "{0} doesn't exist for this account.",
"Info_MissingFolderTitle": "Dossier manquant",
"Info_PurchaseExistsMessage": "Il semble que ce produit ait déjà été acheté auparavant.",
"Info_PurchaseExistsTitle": "Produit existant",
"Info_PurchaseThankYouMessage": "Merci",
"Info_PurchaseThankYouTitle": "Achat réussi",
"Info_RequestCreationFailedTitle": "Échec de la création de demandes",
"Info_ReviewNetworkErrorMessage": "Il y a eu un problème de réseau avec votre avis.",
"Info_ReviewNetworkErrorTitle": "Problème de réseau",
"Info_ReviewNewMessage": "Tous les commentaires sont appréciés. Merci pour votre avis !",
"Info_ReviewSuccessTitle": "Merci",
"Info_ReviewUnknownErrorMessage": "Il y a eu un problème inconnu avec votre avis. ({0})",
"Info_ReviewUnknownErrorTitle": "Erreur inconnue",
"Info_ReviewUpdatedMessage": "Merci pour la mise à jour de votre avis.",
"Info_SignatureDisabledMessage": "La signature pour ce compte est désactivée",
"Info_SignatureDisabledTitle": "Réussi",
"Info_SignatureSavedMessage": "La nouvelle signature est enregistrée",
"Info_SignatureSavedTitle": "Réussi",
"Info_SyncCanceledMessage": "Annulé",
"Info_SyncCanceledTitle": "Synchronisation",
"Info_SyncFailedTitle": "Synchronisation échouée",
"Info_UnsupportedFunctionalityDescription": "Cette fonctionnalité nest pas encore implémentée.",
"Info_UnsupportedFunctionalityTitle": "Non supporté",
"Info_UnsubscribeLinkInvalidTitle": "Url de désinscription non valide",
"Info_UnsubscribeLinkInvalidMessage": "This unsubscribe link is invalid. Failed to unsubscribe from the list.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Méthode dauthentification",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Sécurité de la connexion",
"ImapAuthenticationMethod_Auto": "Automatique",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "Pas d'authentification",
"ImapAuthenticationMethod_Plain": "Mot de passe normal",
"ImapAuthenticationMethod_EncryptedPassword": "Mot de passe chiffré",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "Aucun",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Automatique",
"Justify": "Justifier",
"Left": "Gauche",
"Link": "Lien",
"LinkedAccountsCreatePolicyMessage": "you must have at least 2 accounts to create link\nlink will be removed on save",
"LinkedAccountsTitle": "Comptes liés",
"MailOperation_AlwaysMoveFocused": "Always Move to Focused",
"MailOperation_AlwaysMoveOther": "Always Move to Other",
"MailOperation_Archive": "Archiver",
"MailOperation_ClearFlag": "Enlever la balise",
"MailOperation_DarkEditor": "Sombre",
"MailOperation_Delete": "Supprimer",
"MailOperation_ExportPDF": "Exporter en PDF",
"MailOperation_Find": "Rechercher",
"MailOperation_Forward": "Transférer",
"MailOperation_Ignore": "Ignorer",
"MailOperation_LightEditor": "Clair",
"MailOperation_MarkAsJunk": "Marquer comme indésirable",
"MailOperation_MarkAsRead": "Marquer comme lu",
"MailOperation_MarkAsUnread": "Marquer comme non lu",
"MailOperation_MarkNotJunk": "Marquer comme non indésirable",
"MailOperation_Move": "Déplacer",
"MailOperation_MoveFocused": "Move to Focused",
"MailOperation_MoveJunk": "Déplacer vers indésirables",
"MailOperation_MoveOther": "Déplacer vers autres",
"MailOperation_Navigate": "Naviguer",
"MailOperation_Print": "Imprimer",
"MailOperation_Reply": "Répondre",
"MailOperation_ReplyAll": "Répondre à tous",
"MailOperation_SaveAs": "Enregistrer sous",
"MailOperation_SetFlag": "Définir drapeau",
"MailOperation_Unarchive": "Désarchiver",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} item(s) selected",
"MarkFlagUnflag": "Marquer ou Démarquer ce message",
"MarkReadUnread": "Marquer comme lu/non lu",
"MenuManageAccounts": "Gérer les comptes",
"MenuNewMail": "Nouveau message",
"MenuMergedAccountItemAccountsSuffix": " Comptes",
"MenuRate": "Évaluer Wino",
"MenuSettings": "Paramètres",
"MergedAccountsAvailableAccountsTitle": "Comptes disponibles",
"More": "Plus",
"MoveMailDialog_InvalidFolderMessage": "{0} is not a valid folder for this mail.",
"MoveMailDialog_Title": "Choisissez un dossier",
"NewAccountDialog_AccountName": "Nom du compte",
"NewAccountDialog_AccountNameDefaultValue": "Personnel",
"NewAccountDialog_AccountNamePlaceholder": "Ex. courrier personnel",
"NewAccountDialog_Title": "Ajouter un nouveau compte",
"NoMailSelected": "aucun message sélectionné",
"NoMessageCrieteria": "aucuns messages ne correspond à vos critères de recherche.",
"NoMessageEmptyFolder": "ce dossier est vide.",
"Notifications_MultipleNotificationsMessage": "Vous avez {0} nouveaux messages",
"Notifications_MultipleNotificationsTitle": "Nouveaux courriers",
"Notifications_WinoUpdatedMessage": "Vérifier la nouvelle version {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail a été mis à jour.",
"Other": "Autre",
"PaneLengthOption_Default": "Défaut",
"PaneLengthOption_ExtraLarge": "Très grand",
"PaneLengthOption_Large": "Grand",
"PaneLengthOption_Medium": "Moyen",
"PaneLengthOption_Micro": "Très petit",
"PaneLengthOption_Small": "Petit",
"Photos": "Images",
"PreparingFoldersMessage": "Préparation des dossiers",
"ProviderDetail_Gmail_Description": "Compte Google",
"ProviderDetail_IMAP_Description": "Serveur IMAP/SMTP personnalisé",
"ProviderDetail_IMAP_Title": "Serveur IMAP",
"Results": "Résultats",
"Right": "Droite",
"SynchronizationFolderReport_Success": "À jour",
"SynchronizationFolderReport_Failed": "la synchronisation a échouée",
"SearchBarPlaceholder": "Rechercher",
"SearchingIn": "searching in",
"SettingsAboutGithub_Description": "Allez au dépôt GitHub du gestionnaire de tickets.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Append messages to Sent folder",
"SettingsAccountManagementAppendMessage_Description": "Créer une copie du message dans le dossier Envoyé après l'envoi du brouillon. Activez cette option si vous ne voyez pas vos e-mails après les avoir envoyés dans le dossier Envoyés.",
"SettingsEditLinkedInbox_Title": "Edit Linked Inbox",
"SettingsEditLinkedInbox_Description": "Add / remove accounts, rename or break the link between accounts.",
"SettingsAboutVersion": "Version ",
"SettingsAboutWinoDescription": "Client de messagerie léger pour les périphériques Windows.",
"SettingsAbout_Description": "En savoir plus sur Wino.",
"SettingsAbout_Title": "À propos",
"SettingsAccentColor_Description": "Changer la couleur d'accentuation de l'application",
"SettingsAccentColor_Title": "Couleur d'accentuation",
"SettingsAccentColor_UseWindowsAccentColor": "Utiliser ma couleur d'accentuation Windows",
"SettingsAccountName_Description": "Changer le nom du compte.",
"SettingsAccountName_Title": "Nom du compte",
"SettingsApplicationTheme_Description": "Personnalisez Wino avec différents thèmes d'application personnalisés pour vous.",
"SettingsApplicationTheme_Title": "Thème de l'application",
"SettingsAvailableThemes_Description": "Select a theme from Wino's own collection for your taste or apply your own themes.",
"SettingsAvailableThemes_Title": "Thèmes disponibles",
"SettingsCustomTheme_Description": "Créez votre propre thème personnalisé avec un fond d'écran personnalisé et une couleur d'accentuation.",
"SettingsCustomTheme_Title": "Thème personnalisé",
"SettingsDeleteAccount_Description": "Supprimer tous les e-mails et identifiants associés à ce compte.",
"SettingsDeleteAccount_Title": "Supprimer ce compte",
"SettingsDeleteProtection_Description": "Wino devrait-il vous demander une comfirmation chaque fois que vous essayez de supprimer définitivement un mail en utilisant les touches Maj + Supprimer?",
"SettingsDeleteProtection_Title": "Protection contre la suppression permanente",
"SettingsDiagnostics_Description": "Pour les développeurs",
"SettingsDiagnostics_Title": "Diagnostics",
"SettingsDiscord_Description": "Get regular development updates, join roadmap discussions and provide feedback.",
"SettingsDiscord_Title": "Canal Discord",
"SettingsElementThemeSelectionDisabled": "Element theme selection is disabled when application theme is selected other than Default.",
"SettingsElementTheme_Description": "Select a Windows theme for Wino",
"SettingsElementTheme_Title": "Thème de l'élément",
"SettingsEnableHoverActions_Title": "Activer les actions de survol",
"SettingsEnableIMAPLogs_Description": "Enable this to provide details about IMAP connectivity issuses you had during IMAP server setup.",
"SettingsEnableIMAPLogs_Title": "Activer les journaux de protocole IMAP",
"SettingsEnableLogs_Description": "Je pourrais avoir besoin de Logs pour que les tickets ouverts sur GitHub puissent être diagnostiqués. Aucun de ces journaux n'exposera vos identifiants ou vos informations sensées.",
"SettingsEnableLogs_Title": "Activer les journaux",
"SettingsEnableSignature": "Activer la signature",
"SettingsExpandOnStartup_Description": "Définissez si Wino doit étendre les dossiers de ce compte au démarrage.",
"SettingsExpandOnStartup_Title": "Développer le menu au démarrage",
"SettingsExternalContent_Description": "Gérer les paramètres de contenu externe lors du rendu des messages.",
"SettingsExternalContent_Title": "Contenu externe",
"SettingsFocusedInbox_Description": "Définit si la boîte de réception doit être divisée en deux en Prioritaire - Autre.",
"SettingsFocusedInbox_Title": "Boîte de réception Prioritaire",
"SettingsFolderSync_Description": "Enable or disable specific folders for synchronization.",
"SettingsFolderSync_Title": "Folder Synchronization",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Center Action",
"SettingsHoverActionLeft": "Action de gauche",
"SettingsHoverActionRight": "Action de droite",
"SettingsHoverActions_Description": "Select 3 actions to show up when you hover over the mails with cursor.",
"SettingsHoverActions_Title": "Actions de survol",
"SettingsLanguage_Description": "Changer la langue d'affichage de Wino.",
"SettingsLanguage_Title": "Langue d'affichage",
"CategoriesFolderNameOverride": "Catégories",
"MoreFolderNameOverride": "Plus",
"SettingsOptions_Title": "Paramètres",
"SettingsLinkAccounts_Description": "Merge multiple accounts into one. See mails from one Inbox together.",
"SettingsLinkAccounts_Title": "Create Linked Accounts",
"SettingsLinkedAccountsSave_Description": "Modify the current link with the new accounts.",
"SettingsLinkedAccountsSave_Title": "Enregistrer les modifications",
"SettingsLoadImages_Title": "Load images automatically",
"SettingsLoadStyles_Title": "Load styles automatically",
"SettingsMailSpacing_Description": "Adjust the spacing for listing mails.",
"SettingsMailSpacing_Title": "Espacement du courrier",
"SettingsFolderMenuStyle_Title": "Create Nested Folders",
"SettingsFolderMenuStyle_Description": "Change whether account folders should be nested inside an account menu item or not. Toggle this off if you like the old menu system in Windows Mail",
"SettingsManageAccountSettings_Description": "Notifications, signatures, synchronisation et autres paramètres par compte.",
"SettingsManageAccountSettings_Title": "Manage Account Settings",
"SettingsManageLink_Description": "Move items to add new link or remove existing link.",
"SettingsManageLink_Title": "Manage Link",
"SettingsMarkAsRead_Description": "Change what should happen to the selected item.",
"SettingsMarkAsRead_DontChange": "Don't automatically mark item as read",
"SettingsMarkAsRead_SecondsToWait": "Secondes à attendre : ",
"SettingsMarkAsRead_Timer": "When viewed in the reading pane",
"SettingsMarkAsRead_Title": "Marquer l'élément comme lu",
"SettingsMarkAsRead_WhenSelected": "Lorsque sélectionné",
"SettingsMessageList_Description": "Modifiez la façon dont vos messages doivent être organisés dans la liste de courriels.",
"SettingsMessageList_Title": "Liste des messages",
"SettingsNoAccountSetupMessage": "Vous n'avez pas encore configuré de comptes.",
"SettingsNotifications_Description": "Activer ou désactiver les notifications pour ce compte.",
"SettingsNotifications_Title": "Notifications",
"SettingsPaneLength_Description": "Modifie la largeur de la liste de courriels.",
"SettingsPaneLength_Title": "Longueur du panneau de la liste d'emails",
"SettingsPaypal_Description": "Montrez-nous plus d'amour ❤️ Tous les dons sont appréciés.",
"SettingsPaypal_Title": "Faire un don via PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Mode compact",
"SettingsPersonalizationMailDisplayMediumMode": "Mode moyen",
"SettingsPersonalizationMailDisplaySpaciousMode": "Mode spacieux",
"SettingsPersonalization_Description": "Changez lapparence de Wino comme vous le souhaitez.",
"SettingsPersonalization_Title": "Personnalisation",
"SettingsPrivacyPolicy_Description": "Examinez la politique de confidentialité.",
"SettingsPrivacyPolicy_Title": "Politique de confidentialité",
"SettingsReadingPane_Description": "Options de rendu du courriel.",
"SettingsReadingPane_Title": "Panneau de lecture",
"SettingsReaderFont_Title": "Police par défaut du lecteur",
"SettingsReaderFontFamily_Description": "Modifier la police par défaut et la taille de police pour la lecture des messages.",
"SettingsFontFamily_Title": "Famille de polices",
"SettingsFontSize_Title": "Taille de la police",
"SettingsFontPreview_Title": "Aperçu",
"SettingsComposerFont_Title": "Police par défaut du compositeur",
"SettingsComposerFontFamily_Description": "Modifier la police et la taille par défaut lors de la composition des mails.",
"SettingsRenameMergeAccount_Description": "Changer le nom d'affichage des comptes liés.",
"SettingsRenameMergeAccount_Title": "Renommer",
"SettingsSemanticZoom_Description": "This will allow you to click on the headers in messages list and go to specific date",
"SettingsSemanticZoom_Title": "Semantic Zoom for Date Headers",
"SettingsShowPreviewText_Description": "Hide/show thepreview text.",
"SettingsShowPreviewText_Title": "Show Preview Text",
"SettingsShowSenderPictures_Description": "Masquer/afficher les vignettes des images de l'expéditeur.",
"SettingsShowSenderPictures_Title": "Afficher l'avatar de l'expéditeur",
"SettingsPrefer24HourClock_Title": "Display Clock Format in 24 Hours",
"SettingsPrefer24HourClock_Description": "Les heures de réception du courrier seront affichées au format 24 heures au lieu de 12 (AM/PM)",
"SettingsSignature_Description": "Éditer ou supprimer la signature du compte",
"SettingsSignature_Title": "Signature",
"SettingsStartupItem_Description": "Primary account item to load Inbox at startup.",
"SettingsStartupItem_Title": "Startup Item",
"SettingsStore_Description": "Montrer nous un peu d'amour ❤️",
"SettingsStore_Title": "Évaluez l'application sur le store",
"SettingsThreads_Description": "Organiser les messages en fils de conversation.",
"SettingsThreads_Title": "Affichage en mode conversation",
"SettingsUnlinkAccounts_Description": "Remove the link between accounts. This will not delete your accounts.",
"SettingsUnlinkAccounts_Title": "Dissocier les comptes",
"SortingOption_Date": "Par date",
"SortingOption_Name": "Par nom",
"StoreRatingDialog_MessageFirstLine": "All feedbacks are appreciated and they will make much Wino better in the future. Would you like to rate Wino in Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Would you like to rate Wino Mail in Microsoft Store?",
"StoreRatingDialog_Title": "Vous aimez Wino ?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Deleted messages will be moved to here.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Dossier supprimé",
"SystemFolderConfigDialog_DraftFolderDescription": "Les nouveaux courriels/réponses seront créés ici.",
"SystemFolderConfigDialog_DraftFolderHeader": "Dossier de brouillon",
"SystemFolderConfigDialog_JunkFolderDescription": "Tous les courriers indésirables et spam/spam seront ici.",
"SystemFolderConfigDialog_JunkFolderHeader": "Dossier indésirable/spam",
"SystemFolderConfigDialog_MessageFirstLine": "This IMAP server doesn't support SPECIAL-USE extension hence Wino couldn't setup the system folders properly.",
"SystemFolderConfigDialog_MessageSecondLine": "Please select the appropriate folders for specific functionalities.",
"SystemFolderConfigDialog_SentFolderDescription": "Le dossier contenant les messages envoyés sera stocké.",
"SystemFolderConfigDialog_SentFolderHeader": "Dossier envoyé",
"SystemFolderConfigDialog_Title": "Configurer les dossiers système",
"TestingImapConnectionMessage": "Test de la connexion au serveur...",
"Today": "Aujourd'hui",
"UnknownAddress": "Adresse inconnue",
"UnknownDateHeader": "Date inconnue",
"UnknownGroupAddress": "Adresse du groupe de messagerie inconnue",
"UnknownSender": "Expéditeur inconnu",
"Unsubscribe": "Se désabonner",
"ViewContactDetails": "Voir les détails",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Mettre à niveau vers des comptes illimités",
"WinoUpgradeRemainingAccountsMessage": "{0} comptes gratuits utilisés sur {1}.",
"Yesterday": "Hier"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "tutto fatto",
"AccountCreationDialog_Initializing": "inizializzazione",
"AccountCreationDialog_PreparingFolders": "Stiamo ricevendo informazioni sulle cartelle al momento.",
"AccountCreationDialog_SigninIn": "Le informazioni dell'account sono in fase di salvataggio.",
"AccountEditDialog_Message": "Nome account",
"AccountEditDialog_Title": "Modifica account",
"AccountPickerDialog_Title": "Scegli un account",
"AddHyperlink": "Aggiungi",
"AutoDiscoveryProgressMessage": "Ricerca delle impostazioni di posta...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Configurazione avanzata",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Le tue credenziali verranno memorizzate solo localmente sul tuo computer.",
"BasicIMAPSetupDialog_Description": "Alcuni account richiedono passaggi aggiuntivi per accedere",
"BasicIMAPSetupDialog_DisplayName": "Mostra nome",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "ad esempio Mario Rossi",
"BasicIMAPSetupDialog_LearnMore": "Per saperne di più",
"BasicIMAPSetupDialog_MailAddress": "Indirizzo E-Mail",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "johndoe@fabrikam.com",
"BasicIMAPSetupDialog_Password": "Password",
"BasicIMAPSetupDialog_Title": "Account IMAP",
"Buttons_AddAccount": "Aggiungi account",
"Buttons_ApplyTheme": "Applica tema",
"Buttons_Browse": "Sfoglia",
"Buttons_Cancel": "Annulla",
"Buttons_Close": "Chiudi",
"Buttons_Create": "Crea",
"Buttons_CreateAccount": "Crea account",
"Buttons_Delete": "Elimina",
"Buttons_Discard": "Scarta",
"Buttons_EnableImageRendering": "Attiva",
"Buttons_No": "No",
"Buttons_Open": "Apri",
"Buttons_Purchase": "Acquista",
"Buttons_RateWino": "Valuta Wino",
"Buttons_Save": "Salva",
"Buttons_SaveConfiguration": "Salva configurazione",
"Buttons_Share": "Condividi",
"Buttons_SignIn": "Accedi",
"Buttons_Yes": "Sì",
"Center": "Centra",
"ComingSoon": "Prossimamente...",
"ComposerFrom": "Da: ",
"ComposerSubject": "Oggetto: ",
"ComposerTo": "A: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "clicca Invio per inserire gli indirizzi",
"CustomThemeBuilder_AccentColorDescription": "Imposta un colore principale personalizzato, se vuoi. Non selezionare un colore userà il colore principale di Windows.",
"CustomThemeBuilder_AccentColorTitle": "Colore principale",
"CustomThemeBuilder_PickColor": "Scegli",
"CustomThemeBuilder_ThemeNameDescription": "Nome unico del tuo tema personalizzato.",
"CustomThemeBuilder_ThemeNameTitle": "Nome del tema",
"CustomThemeBuilder_Title": "Creatore di Temi personalizzati",
"CustomThemeBuilder_WallpaperDescription": "Imposta uno sfondo personalizzato per Wino",
"CustomThemeBuilder_WallpaperTitle": "Imposta uno sfondo personalizzato",
"DialogMessage_AccountLimitMessage": "Hai raggiunto il limite di creazione degli account.\nVuoi acquistare il componente aggiuntivo 'Account Illimitati' per continuare?",
"DialogMessage_AccountLimitTitle": "Raggiunto il limite degli account",
"DialogMessage_CleanupFolderMessage": "Vuoi eliminare definitivamente tutte le email in questa cartella?",
"DialogMessage_CleanupFolderTitle": "Svuota cartella",
"DialogMessage_ComposerMissingRecipientMessage": "Il messaggio non ha alcun destinatario.",
"DialogMessage_ComposerValidationFailedTitle": "Convalida non riuscita",
"DialogMessage_CreateLinkedAccountMessage": "Dai un nome a questo nuovo collegamento. Gli account saranno uniti sotto questo nome.",
"DialogMessage_CreateLinkedAccountTitle": "Nome dell'account collegato",
"DialogMessage_DeleteAccountConfirmationMessage": "Eliminare {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "Tutti i dati associati a questo account verranno eliminati dal disco in modo permanente.",
"DialogMessage_DiscardDraftConfirmationMessage": "Questa bozza verrà scartata. Vuoi continuare?",
"DialogMessage_DiscardDraftConfirmationTitle": "Scarta bozza",
"DialogMessage_HardDeleteConfirmationMessage": "Elimina definitivamente",
"DialogMessage_HardDeleteConfirmationTitle": "I messaggi verranno eliminati definitivamente. Vuoi continuare?",
"DialogMessage_NoAccountsForCreateMailMessage": "Non hai alcun account da cui creare un messaggio.",
"DialogMessage_NoAccountsForCreateMailTitle": "Account mancante",
"DialogMessage_RenameLinkedAccountsMessage": "Inserisci un nuovo nome per l'account collegato",
"DialogMessage_RenameLinkedAccountsTitle": "Rinomina l'account collegato",
"DialogMessage_UnlinkAccountsConfirmationMessage": "Questa operazione non eliminerà i tuoi account, ma interromperà solo il collegamento verso le connessioni alla cartella condivisa. Vuoi continuare?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Scollega account",
"DialogMessage_EmptySubjectConfirmation": "Oggetto mancante",
"DialogMessage_EmptySubjectConfirmationMessage": "Il messaggio non ha oggetto. Vuoi continuare?",
"Dialog_DontAskAgain": "Non chiedermelo più",
"DiscordChannelDisclaimerMessage": "Wino non ha il proprio server Discord, ma il canale speciale 'wino-mail' è ospitato presso il server 'Developer Sanctuary'.\nPer ottenere gli aggiornamenti di Wino per favore unisciti al server Developer Sanctuary e segui il canale 'wino-mail' sotto 'Community Projects'.\n\nSarai reindirizzato all'URL del server poiché Discord non supporta gli inviti del canale.",
"DiscordChannelDisclaimerTitle": "Informazioni importanti su Discord",
"Draft": "Bozza",
"EditorToolbarOption_Draw": "Disegna",
"EditorToolbarOption_Format": "Formato",
"EditorToolbarOption_Insert": "Inserisci",
"EditorToolbarOption_None": "Vuoto",
"EditorToolbarOption_Options": "Opzioni",
"ElementTheme_Dark": "Tema scuro",
"ElementTheme_Default": "Usa le impostazioni di sistema",
"ElementTheme_Light": "Tema chiaro",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "IMAP Client Pool fallito.",
"Exception_AuthenticationCanceled": "Autenticazione annullata",
"Exception_CustomThemeExists": "Questo tema esiste già.",
"Exception_CustomThemeMissingName": "È necessario fornire un nome.",
"Exception_CustomThemeMissingWallpaper": "È necessario fornire un'immagine di sfondo personalizzata.",
"Exception_FailedToSynchronizeFolders": "Sincronizzazione delle cartelle non riuscita",
"Exception_GoogleAuthCallbackNull": "Il Callback uri è nullo all'attivazione.",
"Exception_GoogleAuthCorruptedCode": "Risposta all'autorizzazione corrotta.",
"Exception_GoogleAuthError": "Errore di autorizzazione OAuth: {0}",
"Exception_GoogleAuthInvalidResponse": "Ricevuta richiesta con stato non valido ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Scambio del codice di autorizzazione non riuscito.",
"Exception_InvalidSystemFolderConfiguration": "La configurazione della cartella di sistema non è valida. Controlla la configurazione e riprova.",
"Exception_NullAssignedAccount": "L'account assegnato è nullo",
"Exception_NullAssignedFolder": "La cartella assegnata è nulla",
"Exception_SynchronizerFailureHTTP": "Gestione della risposta non riuscita con errore codice HTTP {0}",
"Exception_TokenGenerationFailed": "La generazione del token non è riuscita",
"Exception_TokenInfoRetrivalFailed": "Impossibile ottenere informazioni sul token.",
"Exception_UnknowErrorDuringAuthentication": "Errore sconosciuto durante l'autenticazione",
"Exception_UnsupportedAction": "Action {0} is not implemented in request processor",
"Exception_UnsupportedProvider": "Questo provider non è supportato.",
"Exception_UnsupportedSynchronizerOperation": "Questa operazione non è supportata per {0}",
"Exception_UserCancelSystemFolderSetupDialog": "Finestra di configurazione della cartella di sistema annullata dall'utente.",
"Files": "File",
"FilteringOption_All": "Tutti",
"FilteringOption_Flagged": "Speciali",
"FilteringOption_Unread": "Non letti",
"Focused": "Focused",
"FolderOperation_CreateSubFolder": "Crea sottocartella",
"FolderOperation_Delete": "Elimina",
"FolderOperation_DontSync": "Non sincronizzare questa cartella",
"FolderOperation_Empty": "Svuota questa cartella",
"FolderOperation_MarkAllAsRead": "Segna tutti come letti",
"FolderOperation_Move": "Sposta",
"DragMoveToFolderCaption": "Sposta in {0}",
"FolderOperation_None": "Nessuno",
"FolderOperation_Pin": "Fissa",
"FolderOperation_Rename": "Rinomina",
"FolderOperation_Unpin": "Sgancia",
"HoverActionOption_Archive": "Archivia",
"HoverActionOption_Delete": "Elimina",
"HoverActionOption_MoveJunk": "Sposta in Indesiderata",
"HoverActionOption_ToggleFlag": "Flag / Unflag",
"HoverActionOption_ToggleRead": "Read / Unread",
"MergedAccountCommonFolderInbox": "Inbox",
"MergedAccountCommonFolderSent": "Sent",
"MergedAccountCommonFolderDraft": "Draft",
"MergedAccountCommonFolderJunk": "Junk",
"MergedAccountCommonFolderTrash": "Deleted",
"MergedAccountCommonFolderArchive": "Archive",
"IMAPSetupDialog_AccountType": "Account type",
"IMAPSetupDialog_DisplayName": "Display Name",
"IMAPSetupDialog_DisplayNamePlaceholder": "es. Mario Rossi",
"IMAPSetupDialog_IncomingMailServer": "Incoming mail server",
"IMAPSetupDialog_IncomingMailServerPort": "Porta",
"IMAPSetupDialog_MailAddress": "Email address",
"IMAPSetupDialog_MailAddressPlaceholder": "someone@example.com",
"IMAPSetupDialog_OutgoingMailServer": "Server di posta in uscita (SMTP)",
"IMAPSetupDialog_OutgoingMailServerPassword": "Password server di posta in uscita",
"IMAPSetupDialog_OutgoingMailServerPort": "Porta",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Il server di posta in uscita richiede l'autenticazione",
"IMAPSetupDialog_OutgoingMailServerUsername": "Nome utente server di posta in uscita",
"IMAPSetupDialog_Password": "Password",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Require SSL for incoming email",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Require SSL for outgoing email",
"IMAPSetupDialog_Title": "Advanced IMAP Configuration",
"IMAPSetupDialog_UseSameConfig": "Use the same username and password for sending email",
"IMAPSetupDialog_Username": "Username",
"IMAPSetupDialog_UsernamePlaceholder": "johndoe, johndoe@fabrikam.com, domain/johndoe",
"ImageRenderingDisabled": "Image rendering is disabled for this message.",
"InfoBarAction_Enable": "Enable",
"InfoBarMessage_SynchronizationDisabledFolder": "This folder is disabled for synchronization.",
"InfoBarTitle_SynchronizationDisabledFolder": "Disabled Folder",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} is created",
"Info_AccountCreatedTitle": "Account Creation",
"Info_AccountCreationFailedTitle": "Account Creation Failed",
"Info_AccountDeletedMessage": "{0} is successfuly deleted.",
"Info_AccountDeletedTitle": "Account Deleted",
"Info_AccountIssueFixFailedTitle": "Failed",
"Info_AccountIssueFixSuccessMessage": "Fixed all account issues.",
"Info_AccountIssueFixSuccessTitle": "Success",
"Info_AttachmentOpenFailedMessage": "Can't open this attachment.",
"Info_AttachmentOpenFailedTitle": "Failed",
"Info_AttachmentSaveFailedMessage": "Can't save this attachment.",
"Info_AttachmentSaveFailedTitle": "Failed",
"Info_AttachmentSaveSuccessMessage": "Attachment is saved.",
"Info_AttachmentSaveSuccessTitle": "Attachment Saved",
"Info_BackgroundExecutionDeniedMessage": "Background execution for the app is denied. This may affect background synchronization and live notifications.",
"Info_BackgroundExecutionDeniedTitle": "Denied Background Execution",
"Info_BackgroundExecutionUnknownErrorMessage": "Unknown exception occurred when registering background synchronizer.",
"Info_BackgroundExecutionUnknownErrorTitle": "Background Execution Failure",
"Info_ComposerMissingMIMEMessage": "Couldn't locate the MIME file. Synchronizing may help.",
"Info_ComposerMissingMIMETitle": "Failed",
"Info_ContactExistsMessage": "This contact is already in the recipient list.",
"Info_ContactExistsTitle": "Contact Exists",
"Info_DraftFolderMissingMessage": "Draft folder is missing for this account. Please check your account settings.",
"Info_DraftFolderMissingTitle": "Missing Draft Folder",
"Info_FileLaunchFailedTitle": "Failed to launch file",
"Info_InvalidAddressMessage": "'{0}' is not a valid e-mail address.",
"Info_InvalidAddressTitle": "Invalid Address",
"Info_InvalidMoveTargetMessage": "You can't move selected mails to this folder.",
"Info_InvalidMoveTargetTitle": "Invalid Move Target",
"Info_LogsNotFoundMessage": "There are no logs to share.",
"Info_LogsNotFoundTitle": "Logs Not Found",
"Info_LogsSavedMessage": "{0} is saved to selected folder.",
"Info_LogsSavedTitle": "Saved",
"Info_MailRenderingFailedMessage": "This mail is corrupted or can't be opened.\n{0}",
"Info_MailRenderingFailedTitle": "Render Failed",
"Info_MessageCorruptedMessage": "This message is corrupted.",
"Info_MessageCorruptedTitle": "Error",
"Info_MissingFolderMessage": "{0} doesn't exist for this account.",
"Info_MissingFolderTitle": "Missing Folder",
"Info_PurchaseExistsMessage": "Looks like this product has already been purchased before.",
"Info_PurchaseExistsTitle": "Existing Product",
"Info_PurchaseThankYouMessage": "Thank You",
"Info_PurchaseThankYouTitle": "Purchase successful",
"Info_RequestCreationFailedTitle": "Failed to Create Requests",
"Info_ReviewNetworkErrorMessage": "There was a network issue with your review.",
"Info_ReviewNetworkErrorTitle": "Problema di rete",
"Info_ReviewNewMessage": "Tutti i commenti sono apprezzati. Grazie per la recensione!",
"Info_ReviewSuccessTitle": "Grazie",
"Info_ReviewUnknownErrorMessage": "Si è verificato un problema sconosciuto con la tua recensione ({0})",
"Info_ReviewUnknownErrorTitle": "Errore sconosciuto",
"Info_ReviewUpdatedMessage": "Thank you for the updated review.",
"Info_SignatureDisabledMessage": "Disabled signature for this account",
"Info_SignatureDisabledTitle": "Success",
"Info_SignatureSavedMessage": "New signature is saved",
"Info_SignatureSavedTitle": "Success",
"Info_SyncCanceledMessage": "Canceled",
"Info_SyncCanceledTitle": "Synchronization",
"Info_SyncFailedTitle": "Sincronizzazione non riuscita",
"Info_UnsupportedFunctionalityDescription": "This functionality is not implemented yet.",
"Info_UnsupportedFunctionalityTitle": "Non supportato",
"Info_UnsubscribeLinkInvalidTitle": "Uri Di Cancellazione Non Valido",
"Info_UnsubscribeLinkInvalidMessage": "This unsubscribe link is invalid. Failed to unsubscribe from the list.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Authentication method",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Sicurezza della connessione",
"ImapAuthenticationMethod_Auto": "Automatico",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "Nessuna autenticazione",
"ImapAuthenticationMethod_Plain": "Normal password",
"ImapAuthenticationMethod_EncryptedPassword": "Encrypted password",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "None",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Auto",
"Justify": "Justify",
"Left": "Left",
"Link": "Link",
"LinkedAccountsCreatePolicyMessage": "you must have at least 2 accounts to create link\nlink will be removed on save",
"LinkedAccountsTitle": "Linked Accounts",
"MailOperation_AlwaysMoveFocused": "Always Move to Focused",
"MailOperation_AlwaysMoveOther": "Always Move to Other",
"MailOperation_Archive": "Archive",
"MailOperation_ClearFlag": "Clear flag",
"MailOperation_DarkEditor": "Dark",
"MailOperation_Delete": "Delete",
"MailOperation_ExportPDF": "Export to PDF",
"MailOperation_Find": "Find",
"MailOperation_Forward": "Forward",
"MailOperation_Ignore": "Ignore",
"MailOperation_LightEditor": "Light",
"MailOperation_MarkAsJunk": "Mark as junk",
"MailOperation_MarkAsRead": "Mark as read",
"MailOperation_MarkAsUnread": "Mark as unread",
"MailOperation_MarkNotJunk": "Mark as Not Junk",
"MailOperation_Move": "Move",
"MailOperation_MoveFocused": "Move to Focused",
"MailOperation_MoveJunk": "Move to Junk",
"MailOperation_MoveOther": "Move to Other",
"MailOperation_Navigate": "Navigate",
"MailOperation_Print": "Print",
"MailOperation_Reply": "Reply",
"MailOperation_ReplyAll": "Reply all",
"MailOperation_SaveAs": "Save As",
"MailOperation_SetFlag": "Set flag",
"MailOperation_Unarchive": "Unarchive",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} item(s) selected",
"MarkFlagUnflag": "Mark as flagged/unflagged",
"MarkReadUnread": "Mark as read/unread",
"MenuManageAccounts": "Manage Accounts",
"MenuNewMail": "New Mail",
"MenuMergedAccountItemAccountsSuffix": " accounts",
"MenuRate": "Rate Wino",
"MenuSettings": "Settings",
"MergedAccountsAvailableAccountsTitle": "Available Accounts",
"More": "More",
"MoveMailDialog_InvalidFolderMessage": "{0} is not a valid folder for this mail.",
"MoveMailDialog_Title": "Pick a folder",
"NewAccountDialog_AccountName": "Account Name",
"NewAccountDialog_AccountNameDefaultValue": "Personal",
"NewAccountDialog_AccountNamePlaceholder": "eg. Personal Mail",
"NewAccountDialog_Title": "Add New Account",
"NoMailSelected": "no message selected",
"NoMessageCrieteria": "no messages match your search criteria.",
"NoMessageEmptyFolder": "this folder is empty.",
"Notifications_MultipleNotificationsMessage": "You have {0} new mails",
"Notifications_MultipleNotificationsTitle": "New Mails",
"Notifications_WinoUpdatedMessage": "Checkout new version {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail has been updated.",
"Other": "Other",
"PaneLengthOption_Default": "Default",
"PaneLengthOption_ExtraLarge": "Extra Large",
"PaneLengthOption_Large": "Large",
"PaneLengthOption_Medium": "Medium",
"PaneLengthOption_Micro": "Micro",
"PaneLengthOption_Small": "Small",
"Photos": "Photos",
"PreparingFoldersMessage": "Preparing folders",
"ProviderDetail_Gmail_Description": "Google Account",
"ProviderDetail_IMAP_Description": "Custom IMAP/SMTP server",
"ProviderDetail_IMAP_Title": "IMAP Server",
"Results": "Results",
"Right": "Right",
"SynchronizationFolderReport_Success": "up to date",
"SynchronizationFolderReport_Failed": "synchronization is failed",
"SearchBarPlaceholder": "search",
"SearchingIn": "searching in",
"SettingsAboutGithub_Description": "Go to issue tracker GitHub repository.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Append messages to Sent folder",
"SettingsAccountManagementAppendMessage_Description": "Create a copy of the message in Sent folder after the draft is sent. Enable this if you don't see your mails after you sent them in Sent folder.",
"SettingsEditLinkedInbox_Title": "Edit Linked Inbox",
"SettingsEditLinkedInbox_Description": "Add / remove accounts, rename or break the link between accounts.",
"SettingsAboutVersion": "Version ",
"SettingsAboutWinoDescription": "Lightweight mail client for Windows device families.",
"SettingsAbout_Description": "Learn more about Wino.",
"SettingsAbout_Title": "About",
"SettingsAccentColor_Description": "Change application's accent color",
"SettingsAccentColor_Title": "Accent Color",
"SettingsAccentColor_UseWindowsAccentColor": "Use my Windows accent color",
"SettingsAccountName_Description": "Change the name of the account.",
"SettingsAccountName_Title": "Account Name",
"SettingsApplicationTheme_Description": "Personalize Wino with different custom application themes for your like.",
"SettingsApplicationTheme_Title": "Application Theme",
"SettingsAvailableThemes_Description": "Select a theme from Wino's own collection for your taste or apply your own themes.",
"SettingsAvailableThemes_Title": "Available Themes",
"SettingsCustomTheme_Description": "Create your own custom theme with custom wallpaper and accent color.",
"SettingsCustomTheme_Title": "Custom Theme",
"SettingsDeleteAccount_Description": "Delete all e-mails and credentials associated with this account.",
"SettingsDeleteAccount_Title": "Delete this account",
"SettingsDeleteProtection_Description": "Should Wino ask you for comfirmation every time you try to permanently delete a mail using Shift + Del keys?",
"SettingsDeleteProtection_Title": "Permanent Delete Protection",
"SettingsDiagnostics_Description": "For developers",
"SettingsDiagnostics_Title": "Diagnostics",
"SettingsDiscord_Description": "Get regular development updates, join roadmap discussions and provide feedback.",
"SettingsDiscord_Title": "Discord Channel",
"SettingsElementThemeSelectionDisabled": "Element theme selection is disabled when application theme is selected other than Default.",
"SettingsElementTheme_Description": "Select a Windows theme for Wino",
"SettingsElementTheme_Title": "Element Theme",
"SettingsEnableHoverActions_Title": "Enable hover actions",
"SettingsEnableIMAPLogs_Description": "Enable this to provide details about IMAP connectivity issuses you had during IMAP server setup.",
"SettingsEnableIMAPLogs_Title": "Enable IMAP Protocol Logs",
"SettingsEnableLogs_Description": "I might need logs for crashes to diagnose issues you have opened in GitHub. None of the logs will expose your credentials or sensetive information to public.",
"SettingsEnableLogs_Title": "Enable Logs",
"SettingsEnableSignature": "Enable Signature",
"SettingsExpandOnStartup_Description": "Set whether Wino should expand this account's folders on startup.",
"SettingsExpandOnStartup_Title": "Expand Menu on Startup",
"SettingsExternalContent_Description": "Manage external content settings when rendering mails.",
"SettingsExternalContent_Title": "External Content",
"SettingsFocusedInbox_Description": "Set whether Inbox should be split into two as Focused - Other.",
"SettingsFocusedInbox_Title": "Focused Inbox",
"SettingsFolderSync_Description": "Enable or disable specific folders for synchronization.",
"SettingsFolderSync_Title": "Folder Synchronization",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Center Action",
"SettingsHoverActionLeft": "Left Action",
"SettingsHoverActionRight": "Right Action",
"SettingsHoverActions_Description": "Select 3 actions to show up when you hover over the mails with cursor.",
"SettingsHoverActions_Title": "Hover Actions",
"SettingsLanguage_Description": "Change display language for Wino.",
"SettingsLanguage_Title": "Display Language",
"CategoriesFolderNameOverride": "Categories",
"MoreFolderNameOverride": "More",
"SettingsOptions_Title": "Settings",
"SettingsLinkAccounts_Description": "Merge multiple accounts into one. See mails from one Inbox together.",
"SettingsLinkAccounts_Title": "Create Linked Accounts",
"SettingsLinkedAccountsSave_Description": "Modify the current link with the new accounts.",
"SettingsLinkedAccountsSave_Title": "Save Changes",
"SettingsLoadImages_Title": "Load images automatically",
"SettingsLoadStyles_Title": "Load styles automatically",
"SettingsMailSpacing_Description": "Adjust the spacing for listing mails.",
"SettingsMailSpacing_Title": "Mail Spacing",
"SettingsFolderMenuStyle_Title": "Create Nested Folders",
"SettingsFolderMenuStyle_Description": "Change whether account folders should be nested inside an account menu item or not. Toggle this off if you like the old menu system in Windows Mail",
"SettingsManageAccountSettings_Description": "Notifications, signatures, synchronization and other settings per account.",
"SettingsManageAccountSettings_Title": "Manage Account Settings",
"SettingsManageLink_Description": "Move items to add new link or remove existing link.",
"SettingsManageLink_Title": "Manage Link",
"SettingsMarkAsRead_Description": "Change what should happen to the selected item.",
"SettingsMarkAsRead_DontChange": "Don't automatically mark item as read",
"SettingsMarkAsRead_SecondsToWait": "Seconds to wait: ",
"SettingsMarkAsRead_Timer": "When viewed in the reading pane",
"SettingsMarkAsRead_Title": "Mark item as read",
"SettingsMarkAsRead_WhenSelected": "When selected",
"SettingsMessageList_Description": "Change how your messages should be organized in mail list.",
"SettingsMessageList_Title": "Message List",
"SettingsNoAccountSetupMessage": "You didn't setup any accounts yet.",
"SettingsNotifications_Description": "Turn on or off notifications for this account.",
"SettingsNotifications_Title": "Notifications",
"SettingsPaneLength_Description": "Change the width of the mail list.",
"SettingsPaneLength_Title": "Mail List Pane Length",
"SettingsPaypal_Description": "Show much more love ❤️ All donations are appreciated.",
"SettingsPaypal_Title": "Donate via PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Compact Mode",
"SettingsPersonalizationMailDisplayMediumMode": "Medium Mode",
"SettingsPersonalizationMailDisplaySpaciousMode": "Spacious Mode",
"SettingsPersonalization_Description": "Change appearance of Wino as you like.",
"SettingsPersonalization_Title": "Personalization",
"SettingsPrivacyPolicy_Description": "Review privacy policy.",
"SettingsPrivacyPolicy_Title": "Privacy Policy",
"SettingsReadingPane_Description": "Mail rendering options.",
"SettingsReadingPane_Title": "Reading Pane",
"SettingsReaderFont_Title": "Default Reader Font",
"SettingsReaderFontFamily_Description": "Change the default font family and font size for reading mails.",
"SettingsFontFamily_Title": "Font Family",
"SettingsFontSize_Title": "Font Size",
"SettingsFontPreview_Title": "Preview",
"SettingsComposerFont_Title": "Default Composer Font",
"SettingsComposerFontFamily_Description": "Change the default font family and font size for composing mails.",
"SettingsRenameMergeAccount_Description": "Change the display name of the linked accounts.",
"SettingsRenameMergeAccount_Title": "Rename",
"SettingsSemanticZoom_Description": "This will allow you to click on the headers in messages list and go to specific date",
"SettingsSemanticZoom_Title": "Semantic Zoom for Date Headers",
"SettingsShowPreviewText_Description": "Hide/show thepreview text.",
"SettingsShowPreviewText_Title": "Show Preview Text",
"SettingsShowSenderPictures_Description": "Hide/show the thumbnail sender pictures.",
"SettingsShowSenderPictures_Title": "Show Sender Avatars",
"SettingsPrefer24HourClock_Title": "Display Clock Format in 24 Hours",
"SettingsPrefer24HourClock_Description": "Mail recieve times will be displayed in 24 hour format instead of 12 (AM/PM)",
"SettingsSignature_Description": "Edit or remove account signature",
"SettingsSignature_Title": "Signature",
"SettingsStartupItem_Description": "Primary account item to load Inbox at startup.",
"SettingsStartupItem_Title": "Startup Item",
"SettingsStore_Description": "Show some love ❤️",
"SettingsStore_Title": "Rate in Store",
"SettingsThreads_Description": "Organize messages into conversation threads.",
"SettingsThreads_Title": "Conversation Threading",
"SettingsUnlinkAccounts_Description": "Remove the link between accounts. This will not delete your accounts.",
"SettingsUnlinkAccounts_Title": "Unlink Accounts",
"SortingOption_Date": "by date",
"SortingOption_Name": "by name",
"StoreRatingDialog_MessageFirstLine": "All feedbacks are appreciated and they will make much Wino better in the future. Would you like to rate Wino in Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Would you like to rate Wino Mail in Microsoft Store?",
"StoreRatingDialog_Title": "Enjoying Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Deleted messages will be moved to here.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Deleted Folder",
"SystemFolderConfigDialog_DraftFolderDescription": "New mails/replies will be crafted in here.",
"SystemFolderConfigDialog_DraftFolderHeader": "Draft Folder",
"SystemFolderConfigDialog_JunkFolderDescription": "All spam/junk mails will be here.",
"SystemFolderConfigDialog_JunkFolderHeader": "Junk/Spam Folder",
"SystemFolderConfigDialog_MessageFirstLine": "This IMAP server doesn't support SPECIAL-USE extension hence Wino couldn't setup the system folders properly.",
"SystemFolderConfigDialog_MessageSecondLine": "Please select the appropriate folders for specific functionalities.",
"SystemFolderConfigDialog_SentFolderDescription": "Folder that sent messages will be stored.",
"SystemFolderConfigDialog_SentFolderHeader": "Sent Folder",
"SystemFolderConfigDialog_Title": "Configure System Folders",
"TestingImapConnectionMessage": "Testing server connection...",
"Today": "Today",
"UnknownAddress": "unknown address",
"UnknownDateHeader": "Unknown Date",
"UnknownGroupAddress": "unknown Mail Group Address",
"UnknownSender": "Unknown Sender",
"Unsubscribe": "Unsubscribe",
"ViewContactDetails": "View Details",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Upgrade to Unlimited Accounts",
"WinoUpgradeRemainingAccountsMessage": "{0} out of {1} free accounts used.",
"Yesterday": "Yesterday"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "完了",
"AccountCreationDialog_Initializing": "初期化中",
"AccountCreationDialog_PreparingFolders": "現在フォルダ情報を取得中です。",
"AccountCreationDialog_SigninIn": "アカウント情報を保存しています。",
"AccountEditDialog_Message": "アカウント名",
"AccountEditDialog_Title": "アカウントの編集",
"AccountPickerDialog_Title": "アカウントを選択",
"AddHyperlink": "追加",
"AutoDiscoveryProgressMessage": "メール設定を検索中...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "詳細設定",
"BasicIMAPSetupDialog_CredentialLocalMessage": "認証情報はローカルにのみ保存されます。",
"BasicIMAPSetupDialog_Description": "一部のアカウントではサインインするために追加の手順が必要です。",
"BasicIMAPSetupDialog_DisplayName": "表示名",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "例: 田中太郎",
"BasicIMAPSetupDialog_LearnMore": "詳細はこちら",
"BasicIMAPSetupDialog_MailAddress": "メールアドレス",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "johndoe@fabrikam.com",
"BasicIMAPSetupDialog_Password": "パスワード",
"BasicIMAPSetupDialog_Title": "IMAPアカウント",
"Buttons_AddAccount": "アカウントを追加",
"Buttons_ApplyTheme": "テーマを適用",
"Buttons_Browse": "閲覧",
"Buttons_Cancel": "キャンセル",
"Buttons_Close": "閉じる",
"Buttons_Create": "作成",
"Buttons_CreateAccount": "アカウント作成",
"Buttons_Delete": "削除",
"Buttons_Discard": "破棄",
"Buttons_EnableImageRendering": "有効化",
"Buttons_No": "いいえ",
"Buttons_Open": "開く",
"Buttons_Purchase": "購入",
"Buttons_RateWino": "Winoを評価",
"Buttons_Save": "保存",
"Buttons_SaveConfiguration": "設定を保存",
"Buttons_Share": "シェアする",
"Buttons_SignIn": "サインイン",
"Buttons_Yes": "はい",
"Center": "中央",
"ComingSoon": "近日公開",
"ComposerFrom": "差出人: ",
"ComposerSubject": "件名: ",
"ComposerTo": "宛先: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "アドレスを入力するにはエンターをクリックしてください",
"CustomThemeBuilder_AccentColorDescription": "必要に応じてカスタムアクセントカラーを設定します。選択しない場合、Windowsアクセントカラーが使用されます。",
"CustomThemeBuilder_AccentColorTitle": "アクセントカラー",
"CustomThemeBuilder_PickColor": "選択",
"CustomThemeBuilder_ThemeNameDescription": "カスタムテーマの名前を設定する。",
"CustomThemeBuilder_ThemeNameTitle": "テーマ名",
"CustomThemeBuilder_Title": "カスタムテーマビルダー",
"CustomThemeBuilder_WallpaperDescription": "Winoのカスタム壁紙を設定",
"CustomThemeBuilder_WallpaperTitle": "カスタム壁紙を設定",
"DialogMessage_AccountLimitMessage": "アカウントの作成上限に達しました。\n「無制限アカウント」アドオンを購入して続行しますか",
"DialogMessage_AccountLimitTitle": "アカウントの上限に達しました",
"DialogMessage_CleanupFolderMessage": "このフォルダ内のすべてのメールを完全に削除しますか?",
"DialogMessage_CleanupFolderTitle": "フォルダのクリーンアップ",
"DialogMessage_ComposerMissingRecipientMessage": "メッセージに宛先がありません。",
"DialogMessage_ComposerValidationFailedTitle": "検証に失敗しました",
"DialogMessage_CreateLinkedAccountMessage": "この新しいリンクに名前を付けてください。アカウントはこの名前でマージされます。",
"DialogMessage_CreateLinkedAccountTitle": "アカウントリンク名",
"DialogMessage_DeleteAccountConfirmationMessage": "{0} を削除しますか?",
"DialogMessage_DeleteAccountConfirmationTitle": "このアカウントに関連付けられたすべてのデータは永久にディスクから削除されます。",
"DialogMessage_DiscardDraftConfirmationMessage": "この下書きは破棄されます。続行しますか?",
"DialogMessage_DiscardDraftConfirmationTitle": "下書きを破棄",
"DialogMessage_HardDeleteConfirmationMessage": "完全に削除",
"DialogMessage_HardDeleteConfirmationTitle": "Message(s) will be permanently deleted. Do you want to continue?",
"DialogMessage_NoAccountsForCreateMailMessage": "You don't have any accounts to create message from.",
"DialogMessage_NoAccountsForCreateMailTitle": "Account Missing",
"DialogMessage_RenameLinkedAccountsMessage": "Enter new name for linked account",
"DialogMessage_RenameLinkedAccountsTitle": "Rename Linked Account",
"DialogMessage_UnlinkAccountsConfirmationMessage": "This operation will not delete your accounts but only break the link for shared folder connections. Do you want to continue?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Unlink Accounts",
"DialogMessage_EmptySubjectConfirmation": "Missin Subject",
"DialogMessage_EmptySubjectConfirmationMessage": "Message has no subject. Do you want to continue?",
"Dialog_DontAskAgain": "Don't ask again",
"DiscordChannelDisclaimerMessage": "Wino doesn't have it's own Discord server, but special 'wino-mail' channel is hosted at 'Developer Sanctuary' server.\nTo get the updates about Wino please join Developer Sanctuary server and follow 'wino-mail' channel under 'Community Projects'\n\nYou will be directed to server URL since Discord doesn't support channel invites.",
"DiscordChannelDisclaimerTitle": "Important Discord Information",
"Draft": "Draft",
"EditorToolbarOption_Draw": "Draw",
"EditorToolbarOption_Format": "Format",
"EditorToolbarOption_Insert": "Insert",
"EditorToolbarOption_None": "None",
"EditorToolbarOption_Options": "Options",
"ElementTheme_Dark": "Dark mode",
"ElementTheme_Default": "Use system setting",
"ElementTheme_Light": "Light mode",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "IMAP Client Pool failed.",
"Exception_AuthenticationCanceled": "Authentication canceled",
"Exception_CustomThemeExists": "This theme already exists.",
"Exception_CustomThemeMissingName": "You must provide a name.",
"Exception_CustomThemeMissingWallpaper": "You must provide a custom background image.",
"Exception_FailedToSynchronizeFolders": "Failed to synchronize folders",
"Exception_GoogleAuthCallbackNull": "Callback uri is null on activation.",
"Exception_GoogleAuthCorruptedCode": "Corrupted authorization response.",
"Exception_GoogleAuthError": "OAuth authorization error: {0}",
"Exception_GoogleAuthInvalidResponse": "Received request with invalid state ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Authorization code exchange failed.",
"Exception_InvalidSystemFolderConfiguration": "System folder configuration is not valid. Check configuration and try again.",
"Exception_NullAssignedAccount": "割り当てられたアカウントがありません",
"Exception_NullAssignedFolder": "割り当てられたフォルダがありません",
"Exception_SynchronizerFailureHTTP": "Response handling failed with error HTTP code {0}",
"Exception_TokenGenerationFailed": "Token generation failed",
"Exception_TokenInfoRetrivalFailed": "Failed to get token information.",
"Exception_UnknowErrorDuringAuthentication": "Unknown error occurred during authentication",
"Exception_UnsupportedAction": "Action {0} is not implemented in request processor",
"Exception_UnsupportedProvider": "This provider is not supported.",
"Exception_UnsupportedSynchronizerOperation": "This operation is not supported for {0}",
"Exception_UserCancelSystemFolderSetupDialog": "User canceled system folder config dialog.",
"Files": "Files",
"FilteringOption_All": "All",
"FilteringOption_Flagged": "Flagged",
"FilteringOption_Unread": "Unread",
"Focused": "Focused",
"FolderOperation_CreateSubFolder": "Create sub folder",
"FolderOperation_Delete": "Delete",
"FolderOperation_DontSync": "Don't sync this folder",
"FolderOperation_Empty": "Empty this folder",
"FolderOperation_MarkAllAsRead": "Mark all as read",
"FolderOperation_Move": "Move",
"DragMoveToFolderCaption": "Move to {0}",
"FolderOperation_None": "None",
"FolderOperation_Pin": "Pin",
"FolderOperation_Rename": "Rename",
"FolderOperation_Unpin": "Unpin",
"HoverActionOption_Archive": "Archive",
"HoverActionOption_Delete": "Delete",
"HoverActionOption_MoveJunk": "Move to Junk",
"HoverActionOption_ToggleFlag": "Flag / Unflag",
"HoverActionOption_ToggleRead": "Read / Unread",
"MergedAccountCommonFolderInbox": "Inbox",
"MergedAccountCommonFolderSent": "Sent",
"MergedAccountCommonFolderDraft": "Draft",
"MergedAccountCommonFolderJunk": "Junk",
"MergedAccountCommonFolderTrash": "Deleted",
"MergedAccountCommonFolderArchive": "Archive",
"IMAPSetupDialog_AccountType": "Account type",
"IMAPSetupDialog_DisplayName": "Display Name",
"IMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"IMAPSetupDialog_IncomingMailServer": "Incoming mail server",
"IMAPSetupDialog_IncomingMailServerPort": "Port",
"IMAPSetupDialog_MailAddress": "Email address",
"IMAPSetupDialog_MailAddressPlaceholder": "someone@example.com",
"IMAPSetupDialog_OutgoingMailServer": "Outgoing (SMTP) mail server",
"IMAPSetupDialog_OutgoingMailServerPassword": "Outgoing server password",
"IMAPSetupDialog_OutgoingMailServerPort": "Port",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Outgoing server requires authentication",
"IMAPSetupDialog_OutgoingMailServerUsername": "Outgoing server user name",
"IMAPSetupDialog_Password": "Password",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Require SSL for incoming email",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Require SSL for outgoing email",
"IMAPSetupDialog_Title": "Advanced IMAP Configuration",
"IMAPSetupDialog_UseSameConfig": "Use the same username and password for sending email",
"IMAPSetupDialog_Username": "Username",
"IMAPSetupDialog_UsernamePlaceholder": "johndoe, johndoe@fabrikam.com, domain/johndoe",
"ImageRenderingDisabled": "Image rendering is disabled for this message.",
"InfoBarAction_Enable": "Enable",
"InfoBarMessage_SynchronizationDisabledFolder": "This folder is disabled for synchronization.",
"InfoBarTitle_SynchronizationDisabledFolder": "Disabled Folder",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} is created",
"Info_AccountCreatedTitle": "Account Creation",
"Info_AccountCreationFailedTitle": "Account Creation Failed",
"Info_AccountDeletedMessage": "{0} is successfuly deleted.",
"Info_AccountDeletedTitle": "Account Deleted",
"Info_AccountIssueFixFailedTitle": "Failed",
"Info_AccountIssueFixSuccessMessage": "Fixed all account issues.",
"Info_AccountIssueFixSuccessTitle": "Success",
"Info_AttachmentOpenFailedMessage": "Can't open this attachment.",
"Info_AttachmentOpenFailedTitle": "Failed",
"Info_AttachmentSaveFailedMessage": "Can't save this attachment.",
"Info_AttachmentSaveFailedTitle": "Failed",
"Info_AttachmentSaveSuccessMessage": "Attachment is saved.",
"Info_AttachmentSaveSuccessTitle": "Attachment Saved",
"Info_BackgroundExecutionDeniedMessage": "Background execution for the app is denied. This may affect background synchronization and live notifications.",
"Info_BackgroundExecutionDeniedTitle": "Denied Background Execution",
"Info_BackgroundExecutionUnknownErrorMessage": "Unknown exception occurred when registering background synchronizer.",
"Info_BackgroundExecutionUnknownErrorTitle": "Background Execution Failure",
"Info_ComposerMissingMIMEMessage": "Couldn't locate the MIME file. Synchronizing may help.",
"Info_ComposerMissingMIMETitle": "Failed",
"Info_ContactExistsMessage": "This contact is already in the recipient list.",
"Info_ContactExistsTitle": "Contact Exists",
"Info_DraftFolderMissingMessage": "Draft folder is missing for this account. Please check your account settings.",
"Info_DraftFolderMissingTitle": "Missing Draft Folder",
"Info_FileLaunchFailedTitle": "Failed to launch file",
"Info_InvalidAddressMessage": "'{0}' is not a valid e-mail address.",
"Info_InvalidAddressTitle": "Invalid Address",
"Info_InvalidMoveTargetMessage": "You can't move selected mails to this folder.",
"Info_InvalidMoveTargetTitle": "Invalid Move Target",
"Info_LogsNotFoundMessage": "There are no logs to share.",
"Info_LogsNotFoundTitle": "Logs Not Found",
"Info_LogsSavedMessage": "{0} is saved to selected folder.",
"Info_LogsSavedTitle": "Saved",
"Info_MailRenderingFailedMessage": "This mail is corrupted or can't be opened.\n{0}",
"Info_MailRenderingFailedTitle": "Render Failed",
"Info_MessageCorruptedMessage": "This message is corrupted.",
"Info_MessageCorruptedTitle": "Error",
"Info_MissingFolderMessage": "{0} doesn't exist for this account.",
"Info_MissingFolderTitle": "Missing Folder",
"Info_PurchaseExistsMessage": "Looks like this product has already been purchased before.",
"Info_PurchaseExistsTitle": "Existing Product",
"Info_PurchaseThankYouMessage": "Thank You",
"Info_PurchaseThankYouTitle": "Purchase successful",
"Info_RequestCreationFailedTitle": "Failed to Create Requests",
"Info_ReviewNetworkErrorMessage": "There was a network issue with your review.",
"Info_ReviewNetworkErrorTitle": "Network Issue",
"Info_ReviewNewMessage": "All feedbacks are appreciated. Thank you for the review!",
"Info_ReviewSuccessTitle": "Thank you",
"Info_ReviewUnknownErrorMessage": "There was an unknown issue with your review. ({0})",
"Info_ReviewUnknownErrorTitle": "Unknown Error",
"Info_ReviewUpdatedMessage": "Thank you for the updated review.",
"Info_SignatureDisabledMessage": "Disabled signature for this account",
"Info_SignatureDisabledTitle": "Success",
"Info_SignatureSavedMessage": "New signature is saved",
"Info_SignatureSavedTitle": "Success",
"Info_SyncCanceledMessage": "Canceled",
"Info_SyncCanceledTitle": "Synchronization",
"Info_SyncFailedTitle": "Synchronization Failed",
"Info_UnsupportedFunctionalityDescription": "This functionality is not implemented yet.",
"Info_UnsupportedFunctionalityTitle": "Unsupported",
"Info_UnsubscribeLinkInvalidTitle": "Invalid Unsubscribe Uri",
"Info_UnsubscribeLinkInvalidMessage": "This unsubscribe link is invalid. Failed to unsubscribe from the list.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Authentication method",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Connection security",
"ImapAuthenticationMethod_Auto": "Auto",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "No authentication",
"ImapAuthenticationMethod_Plain": "Normal password",
"ImapAuthenticationMethod_EncryptedPassword": "Encrypted password",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "None",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Auto",
"Justify": "Justify",
"Left": "Left",
"Link": "Link",
"LinkedAccountsCreatePolicyMessage": "you must have at least 2 accounts to create link\nlink will be removed on save",
"LinkedAccountsTitle": "Linked Accounts",
"MailOperation_AlwaysMoveFocused": "Always Move to Focused",
"MailOperation_AlwaysMoveOther": "Always Move to Other",
"MailOperation_Archive": "Archive",
"MailOperation_ClearFlag": "Clear flag",
"MailOperation_DarkEditor": "Dark",
"MailOperation_Delete": "Delete",
"MailOperation_ExportPDF": "Export to PDF",
"MailOperation_Find": "Find",
"MailOperation_Forward": "Forward",
"MailOperation_Ignore": "Ignore",
"MailOperation_LightEditor": "Light",
"MailOperation_MarkAsJunk": "Mark as junk",
"MailOperation_MarkAsRead": "Mark as read",
"MailOperation_MarkAsUnread": "Mark as unread",
"MailOperation_MarkNotJunk": "Mark as Not Junk",
"MailOperation_Move": "Move",
"MailOperation_MoveFocused": "Move to Focused",
"MailOperation_MoveJunk": "Move to Junk",
"MailOperation_MoveOther": "Move to Other",
"MailOperation_Navigate": "Navigate",
"MailOperation_Print": "Print",
"MailOperation_Reply": "Reply",
"MailOperation_ReplyAll": "Reply all",
"MailOperation_SaveAs": "Save As",
"MailOperation_SetFlag": "Set flag",
"MailOperation_Unarchive": "Unarchive",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} item(s) selected",
"MarkFlagUnflag": "Mark as flagged/unflagged",
"MarkReadUnread": "Mark as read/unread",
"MenuManageAccounts": "Manage Accounts",
"MenuNewMail": "New Mail",
"MenuMergedAccountItemAccountsSuffix": " accounts",
"MenuRate": "Rate Wino",
"MenuSettings": "Settings",
"MergedAccountsAvailableAccountsTitle": "Available Accounts",
"More": "More",
"MoveMailDialog_InvalidFolderMessage": "{0} is not a valid folder for this mail.",
"MoveMailDialog_Title": "Pick a folder",
"NewAccountDialog_AccountName": "Account Name",
"NewAccountDialog_AccountNameDefaultValue": "Personal",
"NewAccountDialog_AccountNamePlaceholder": "eg. Personal Mail",
"NewAccountDialog_Title": "Add New Account",
"NoMailSelected": "no message selected",
"NoMessageCrieteria": "no messages match your search criteria.",
"NoMessageEmptyFolder": "this folder is empty.",
"Notifications_MultipleNotificationsMessage": "You have {0} new mails",
"Notifications_MultipleNotificationsTitle": "New Mails",
"Notifications_WinoUpdatedMessage": "Checkout new version {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail has been updated.",
"Other": "Other",
"PaneLengthOption_Default": "Default",
"PaneLengthOption_ExtraLarge": "Extra Large",
"PaneLengthOption_Large": "Large",
"PaneLengthOption_Medium": "Medium",
"PaneLengthOption_Micro": "Micro",
"PaneLengthOption_Small": "Small",
"Photos": "Photos",
"PreparingFoldersMessage": "Preparing folders",
"ProviderDetail_Gmail_Description": "Google Account",
"ProviderDetail_IMAP_Description": "Custom IMAP/SMTP server",
"ProviderDetail_IMAP_Title": "IMAP Server",
"Results": "Results",
"Right": "Right",
"SynchronizationFolderReport_Success": "up to date",
"SynchronizationFolderReport_Failed": "synchronization is failed",
"SearchBarPlaceholder": "search",
"SearchingIn": "searching in",
"SettingsAboutGithub_Description": "Go to issue tracker GitHub repository.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Append messages to Sent folder",
"SettingsAccountManagementAppendMessage_Description": "Create a copy of the message in Sent folder after the draft is sent. Enable this if you don't see your mails after you sent them in Sent folder.",
"SettingsEditLinkedInbox_Title": "Edit Linked Inbox",
"SettingsEditLinkedInbox_Description": "Add / remove accounts, rename or break the link between accounts.",
"SettingsAboutVersion": "Version ",
"SettingsAboutWinoDescription": "Lightweight mail client for Windows device families.",
"SettingsAbout_Description": "Learn more about Wino.",
"SettingsAbout_Title": "About",
"SettingsAccentColor_Description": "Change application's accent color",
"SettingsAccentColor_Title": "Accent Color",
"SettingsAccentColor_UseWindowsAccentColor": "Use my Windows accent color",
"SettingsAccountName_Description": "Change the name of the account.",
"SettingsAccountName_Title": "Account Name",
"SettingsApplicationTheme_Description": "Personalize Wino with different custom application themes for your like.",
"SettingsApplicationTheme_Title": "Application Theme",
"SettingsAvailableThemes_Description": "Select a theme from Wino's own collection for your taste or apply your own themes.",
"SettingsAvailableThemes_Title": "Available Themes",
"SettingsCustomTheme_Description": "Create your own custom theme with custom wallpaper and accent color.",
"SettingsCustomTheme_Title": "Custom Theme",
"SettingsDeleteAccount_Description": "Delete all e-mails and credentials associated with this account.",
"SettingsDeleteAccount_Title": "Delete this account",
"SettingsDeleteProtection_Description": "Should Wino ask you for comfirmation every time you try to permanently delete a mail using Shift + Del keys?",
"SettingsDeleteProtection_Title": "Permanent Delete Protection",
"SettingsDiagnostics_Description": "For developers",
"SettingsDiagnostics_Title": "Diagnostics",
"SettingsDiscord_Description": "Get regular development updates, join roadmap discussions and provide feedback.",
"SettingsDiscord_Title": "Discord Channel",
"SettingsElementThemeSelectionDisabled": "Element theme selection is disabled when application theme is selected other than Default.",
"SettingsElementTheme_Description": "Select a Windows theme for Wino",
"SettingsElementTheme_Title": "Element Theme",
"SettingsEnableHoverActions_Title": "Enable hover actions",
"SettingsEnableIMAPLogs_Description": "Enable this to provide details about IMAP connectivity issuses you had during IMAP server setup.",
"SettingsEnableIMAPLogs_Title": "Enable IMAP Protocol Logs",
"SettingsEnableLogs_Description": "I might need logs for crashes to diagnose issues you have opened in GitHub. None of the logs will expose your credentials or sensetive information to public.",
"SettingsEnableLogs_Title": "Enable Logs",
"SettingsEnableSignature": "Enable Signature",
"SettingsExpandOnStartup_Description": "Set whether Wino should expand this account's folders on startup.",
"SettingsExpandOnStartup_Title": "Expand Menu on Startup",
"SettingsExternalContent_Description": "Manage external content settings when rendering mails.",
"SettingsExternalContent_Title": "External Content",
"SettingsFocusedInbox_Description": "Set whether Inbox should be split into two as Focused - Other.",
"SettingsFocusedInbox_Title": "Focused Inbox",
"SettingsFolderSync_Description": "Enable or disable specific folders for synchronization.",
"SettingsFolderSync_Title": "Folder Synchronization",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Center Action",
"SettingsHoverActionLeft": "Left Action",
"SettingsHoverActionRight": "Right Action",
"SettingsHoverActions_Description": "Select 3 actions to show up when you hover over the mails with cursor.",
"SettingsHoverActions_Title": "Hover Actions",
"SettingsLanguage_Description": "Change display language for Wino.",
"SettingsLanguage_Title": "Display Language",
"CategoriesFolderNameOverride": "Categories",
"MoreFolderNameOverride": "More",
"SettingsOptions_Title": "Settings",
"SettingsLinkAccounts_Description": "Merge multiple accounts into one. See mails from one Inbox together.",
"SettingsLinkAccounts_Title": "Create Linked Accounts",
"SettingsLinkedAccountsSave_Description": "Modify the current link with the new accounts.",
"SettingsLinkedAccountsSave_Title": "Save Changes",
"SettingsLoadImages_Title": "Load images automatically",
"SettingsLoadStyles_Title": "Load styles automatically",
"SettingsMailSpacing_Description": "Adjust the spacing for listing mails.",
"SettingsMailSpacing_Title": "Mail Spacing",
"SettingsFolderMenuStyle_Title": "Create Nested Folders",
"SettingsFolderMenuStyle_Description": "Change whether account folders should be nested inside an account menu item or not. Toggle this off if you like the old menu system in Windows Mail",
"SettingsManageAccountSettings_Description": "Notifications, signatures, synchronization and other settings per account.",
"SettingsManageAccountSettings_Title": "Manage Account Settings",
"SettingsManageLink_Description": "Move items to add new link or remove existing link.",
"SettingsManageLink_Title": "Manage Link",
"SettingsMarkAsRead_Description": "Change what should happen to the selected item.",
"SettingsMarkAsRead_DontChange": "Don't automatically mark item as read",
"SettingsMarkAsRead_SecondsToWait": "Seconds to wait: ",
"SettingsMarkAsRead_Timer": "When viewed in the reading pane",
"SettingsMarkAsRead_Title": "Mark item as read",
"SettingsMarkAsRead_WhenSelected": "When selected",
"SettingsMessageList_Description": "Change how your messages should be organized in mail list.",
"SettingsMessageList_Title": "Message List",
"SettingsNoAccountSetupMessage": "You didn't setup any accounts yet.",
"SettingsNotifications_Description": "Turn on or off notifications for this account.",
"SettingsNotifications_Title": "Notifications",
"SettingsPaneLength_Description": "Change the width of the mail list.",
"SettingsPaneLength_Title": "Mail List Pane Length",
"SettingsPaypal_Description": "Show much more love ❤️ All donations are appreciated.",
"SettingsPaypal_Title": "Donate via PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Compact Mode",
"SettingsPersonalizationMailDisplayMediumMode": "Medium Mode",
"SettingsPersonalizationMailDisplaySpaciousMode": "Spacious Mode",
"SettingsPersonalization_Description": "Change appearance of Wino as you like.",
"SettingsPersonalization_Title": "Personalization",
"SettingsPrivacyPolicy_Description": "Review privacy policy.",
"SettingsPrivacyPolicy_Title": "Privacy Policy",
"SettingsReadingPane_Description": "Mail rendering options.",
"SettingsReadingPane_Title": "Reading Pane",
"SettingsReaderFont_Title": "Default Reader Font",
"SettingsReaderFontFamily_Description": "Change the default font family and font size for reading mails.",
"SettingsFontFamily_Title": "Font Family",
"SettingsFontSize_Title": "Font Size",
"SettingsFontPreview_Title": "Preview",
"SettingsComposerFont_Title": "Default Composer Font",
"SettingsComposerFontFamily_Description": "Change the default font family and font size for composing mails.",
"SettingsRenameMergeAccount_Description": "Change the display name of the linked accounts.",
"SettingsRenameMergeAccount_Title": "Rename",
"SettingsSemanticZoom_Description": "This will allow you to click on the headers in messages list and go to specific date",
"SettingsSemanticZoom_Title": "Semantic Zoom for Date Headers",
"SettingsShowPreviewText_Description": "Hide/show thepreview text.",
"SettingsShowPreviewText_Title": "Show Preview Text",
"SettingsShowSenderPictures_Description": "Hide/show the thumbnail sender pictures.",
"SettingsShowSenderPictures_Title": "Show Sender Avatars",
"SettingsPrefer24HourClock_Title": "Display Clock Format in 24 Hours",
"SettingsPrefer24HourClock_Description": "Mail recieve times will be displayed in 24 hour format instead of 12 (AM/PM)",
"SettingsSignature_Description": "Edit or remove account signature",
"SettingsSignature_Title": "Signature",
"SettingsStartupItem_Description": "Primary account item to load Inbox at startup.",
"SettingsStartupItem_Title": "Startup Item",
"SettingsStore_Description": "Show some love ❤️",
"SettingsStore_Title": "Rate in Store",
"SettingsThreads_Description": "Organize messages into conversation threads.",
"SettingsThreads_Title": "Conversation Threading",
"SettingsUnlinkAccounts_Description": "Remove the link between accounts. This will not delete your accounts.",
"SettingsUnlinkAccounts_Title": "Unlink Accounts",
"SortingOption_Date": "by date",
"SortingOption_Name": "by name",
"StoreRatingDialog_MessageFirstLine": "All feedbacks are appreciated and they will make much Wino better in the future. Would you like to rate Wino in Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Would you like to rate Wino Mail in Microsoft Store?",
"StoreRatingDialog_Title": "Enjoying Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Deleted messages will be moved to here.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Deleted Folder",
"SystemFolderConfigDialog_DraftFolderDescription": "New mails/replies will be crafted in here.",
"SystemFolderConfigDialog_DraftFolderHeader": "Draft Folder",
"SystemFolderConfigDialog_JunkFolderDescription": "All spam/junk mails will be here.",
"SystemFolderConfigDialog_JunkFolderHeader": "Junk/Spam Folder",
"SystemFolderConfigDialog_MessageFirstLine": "This IMAP server doesn't support SPECIAL-USE extension hence Wino couldn't setup the system folders properly.",
"SystemFolderConfigDialog_MessageSecondLine": "Please select the appropriate folders for specific functionalities.",
"SystemFolderConfigDialog_SentFolderDescription": "Folder that sent messages will be stored.",
"SystemFolderConfigDialog_SentFolderHeader": "Sent Folder",
"SystemFolderConfigDialog_Title": "Configure System Folders",
"TestingImapConnectionMessage": "Testing server connection...",
"Today": "Today",
"UnknownAddress": "unknown address",
"UnknownDateHeader": "Unknown Date",
"UnknownGroupAddress": "unknown Mail Group Address",
"UnknownSender": "Unknown Sender",
"Unsubscribe": "Unsubscribe",
"ViewContactDetails": "View Details",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Upgrade to Unlimited Accounts",
"WinoUpgradeRemainingAccountsMessage": "{0} out of {1} free accounts used.",
"Yesterday": "Yesterday"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "klaar",
"AccountCreationDialog_Initializing": "bezig met initialiseren",
"AccountCreationDialog_PreparingFolders": "Bezig met ontvangen van mapgegevens.",
"AccountCreationDialog_SigninIn": "Accountinformatie wordt opgeslagen.",
"AccountEditDialog_Message": "Accountnaam",
"AccountEditDialog_Title": "Bewerk account",
"AccountPickerDialog_Title": "Kies een account",
"AddHyperlink": "Toevoegen",
"AutoDiscoveryProgressMessage": "Zoeken naar mailinstellingen...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Geavanceerde configuratie",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Uw inloggegevens worden alleen lokaal opgeslagen op uw computer.",
"BasicIMAPSetupDialog_Description": "Sommige accounts vereisen aanvullende stappen om in te loggen",
"BasicIMAPSetupDialog_DisplayName": "Weergavenaam",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "bijv. Jan Smit",
"BasicIMAPSetupDialog_LearnMore": "Lees meer",
"BasicIMAPSetupDialog_MailAddress": "E-mailadres",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "fritsbarend@voorbeeld.nl",
"BasicIMAPSetupDialog_Password": "Wachtwoord",
"BasicIMAPSetupDialog_Title": "IMAP account",
"Buttons_AddAccount": "Account toevoegen",
"Buttons_ApplyTheme": "Thema toepassen",
"Buttons_Browse": "Bladeren",
"Buttons_Cancel": "Annuleren",
"Buttons_Close": "Sluiten",
"Buttons_Create": "Aanmaken",
"Buttons_CreateAccount": "Account aanmaken",
"Buttons_Delete": "Verwijderen",
"Buttons_Discard": "Weggooien",
"Buttons_EnableImageRendering": "Inschakelen",
"Buttons_No": "Nee",
"Buttons_Open": "Open",
"Buttons_Purchase": "Aanschaffen",
"Buttons_RateWino": "Wino beoordelen",
"Buttons_Save": "Opslaan",
"Buttons_SaveConfiguration": "Configuratie opslaan",
"Buttons_Share": "Delen",
"Buttons_SignIn": "Aanmelden",
"Buttons_Yes": "Ja",
"Center": "Centreren",
"ComingSoon": "Binnenkort beschikbaar...",
"ComposerFrom": "Van: ",
"ComposerSubject": "Onderwerp: ",
"ComposerTo": "Aan: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "klik op enter om adressen in te voeren",
"CustomThemeBuilder_AccentColorDescription": "Stel aan aangepaste accentkleur in. Maak geen keuze om de Windows-accentkleur te gebruiken.",
"CustomThemeBuilder_AccentColorTitle": "Accentkleur",
"CustomThemeBuilder_PickColor": "Kies",
"CustomThemeBuilder_ThemeNameDescription": "Unieke naam voor uw aangepaste thema.",
"CustomThemeBuilder_ThemeNameTitle": "Themanaam",
"CustomThemeBuilder_Title": "Aangepaste Thema Bouwer",
"CustomThemeBuilder_WallpaperDescription": "Stel een eigen achtergrond in voor Wino",
"CustomThemeBuilder_WallpaperTitle": "Aangepaste achtergrond instellen",
"DialogMessage_AccountLimitMessage": "U hebt de limiet voor het aanmaken van accounts bereikt.\nWilt u de 'Onbeperkt aantal accounts' add-on kopen om door te gaan?",
"DialogMessage_AccountLimitTitle": "Limiet accounts bereikt",
"DialogMessage_CleanupFolderMessage": "Wilt u alle e-mails in deze map permanent verwijderen?",
"DialogMessage_CleanupFolderTitle": "Opschonen map",
"DialogMessage_ComposerMissingRecipientMessage": "Bericht heeft geen ontvanger.",
"DialogMessage_ComposerValidationFailedTitle": "Validatie mislukt",
"DialogMessage_CreateLinkedAccountMessage": "Geef deze koppeling een naam. Accounts worden samengevoegd onder deze naam.",
"DialogMessage_CreateLinkedAccountTitle": "Naam van koppeling",
"DialogMessage_DeleteAccountConfirmationMessage": "Verwijder {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "Alle gegevens die gekoppeld zijn aan dit account worden permanent verwijderd.",
"DialogMessage_DiscardDraftConfirmationMessage": "Dit concept zal worden verwijderd. Wilt u doorgaan?",
"DialogMessage_DiscardDraftConfirmationTitle": "Concept verwijderen",
"DialogMessage_HardDeleteConfirmationMessage": "Permanent verwijderen",
"DialogMessage_HardDeleteConfirmationTitle": "Bericht(en) zullen permanent verwijderd worden. Wilt u doorgaan?",
"DialogMessage_NoAccountsForCreateMailMessage": "U heeft geen accounts om een bericht van te maken.",
"DialogMessage_NoAccountsForCreateMailTitle": "Account ontbreekt",
"DialogMessage_RenameLinkedAccountsMessage": "Voer een nieuwe naam in voor gekoppeld account",
"DialogMessage_RenameLinkedAccountsTitle": "Gekoppeld account hernoemen",
"DialogMessage_UnlinkAccountsConfirmationMessage": "Deze handeling zal je accounts niet verwijderen, maar alleen de koppeling van gedeelde mappen verbreken. Wil je doorgaan?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Ontkoppel accounts",
"DialogMessage_EmptySubjectConfirmation": "Onderwerp ontbreekt",
"DialogMessage_EmptySubjectConfirmationMessage": "Het bericht heeft geen onderwerp. Wilt u doorgaan?",
"Dialog_DontAskAgain": "Niet opnieuw vragen",
"DiscordChannelDisclaimerMessage": "Wino heeft geen eigen Discord server, maar het speciale 'wino-mail' kanaal is gehost op de 'Developer Sanctuary' server.\nOm updates over Wino te krijgen, sluit je je aan bij de Developer Sanctuary server en volg je 'wino-mail' kanaal onder 'Community Projects'\n\nJe wordt doorgestuurd naar de server-URL omdat Discord geen kanaaluitnodigingen ondersteunt.",
"DiscordChannelDisclaimerTitle": "Belangrijke informatie over Discord",
"Draft": "Concept",
"EditorToolbarOption_Draw": "Tekenen",
"EditorToolbarOption_Format": "Opmaak",
"EditorToolbarOption_Insert": "Invoegen",
"EditorToolbarOption_None": "Geen",
"EditorToolbarOption_Options": "Instellingen",
"ElementTheme_Dark": "Donkere modus",
"ElementTheme_Default": "Systeeminstellingen gebruiken",
"ElementTheme_Light": "Lichte modus",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "IMAP Client Pool is mislukt.",
"Exception_AuthenticationCanceled": "Authenticatie geannuleerd",
"Exception_CustomThemeExists": "Dit thema bestaat al.",
"Exception_CustomThemeMissingName": "U moet een naam invullen.",
"Exception_CustomThemeMissingWallpaper": "U moet een aangepaste achtergrondafbeelding invoeren.",
"Exception_FailedToSynchronizeFolders": "Synchroniseren van mappen mislukt",
"Exception_GoogleAuthCallbackNull": "Callback uri is null bij het activeren.",
"Exception_GoogleAuthCorruptedCode": "Beschadigd autorisatieantwoord.",
"Exception_GoogleAuthError": "OAuth autorisatiefout: {0}",
"Exception_GoogleAuthInvalidResponse": "Verzoek ontvangen met ongeldige status ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Uitwisselen van autorisatiecode is mislukt.",
"Exception_InvalidSystemFolderConfiguration": "De systeemmapconfiguratie is niet geldig. Controleer de configuratie en probeer het opnieuw.",
"Exception_NullAssignedAccount": "Toegewezen account is ongeldig",
"Exception_NullAssignedFolder": "Toegewezen map is ongeldig",
"Exception_SynchronizerFailureHTTP": "Reactieverwerking mislukt met de HTTP-code {0}",
"Exception_TokenGenerationFailed": "Token genereren mislukt",
"Exception_TokenInfoRetrivalFailed": "Fout bij het ophalen van tokeninformatie.",
"Exception_UnknowErrorDuringAuthentication": "Onbekende fout opgetreden tijdens authenticatie",
"Exception_UnsupportedAction": "Actie {0} is niet geïmplementeerd in de aanvraagverwerker",
"Exception_UnsupportedProvider": "Deze aanbieder wordt niet ondersteund.",
"Exception_UnsupportedSynchronizerOperation": "Deze bewerking wordt niet ondersteund voor {0}",
"Exception_UserCancelSystemFolderSetupDialog": "Gebruiker heeft het dialoogvenster configureren systeemmappen geannuleerd.",
"Files": "Bestanden",
"FilteringOption_All": "Alle",
"FilteringOption_Flagged": "Gemarkeerd",
"FilteringOption_Unread": "Ongelezen",
"Focused": "Gefocust",
"FolderOperation_CreateSubFolder": "Maak submap",
"FolderOperation_Delete": "Verwijderen",
"FolderOperation_DontSync": "Deze map niet synchroniseren",
"FolderOperation_Empty": "Map legen",
"FolderOperation_MarkAllAsRead": "Alles als gelezen markeren",
"FolderOperation_Move": "Verplaatsen",
"DragMoveToFolderCaption": "Verplaatsen naar {0}",
"FolderOperation_None": "Geen",
"FolderOperation_Pin": "Vastzetten",
"FolderOperation_Rename": "Hernoemen",
"FolderOperation_Unpin": "Losmaken",
"HoverActionOption_Archive": "Archiveren",
"HoverActionOption_Delete": "Verwijderen",
"HoverActionOption_MoveJunk": "Verplaats naar Ongewenst",
"HoverActionOption_ToggleFlag": "Vlag aan / uit",
"HoverActionOption_ToggleRead": "Gelezen / Ongelezen",
"MergedAccountCommonFolderInbox": "Inbox",
"MergedAccountCommonFolderSent": "Verzonden",
"MergedAccountCommonFolderDraft": "Concept",
"MergedAccountCommonFolderJunk": "Ongewenst",
"MergedAccountCommonFolderTrash": "Verwijderd",
"MergedAccountCommonFolderArchive": "Archief",
"IMAPSetupDialog_AccountType": "Accounttype",
"IMAPSetupDialog_DisplayName": "Weergavenaam",
"IMAPSetupDialog_DisplayNamePlaceholder": "bijv. Jan Smit",
"IMAPSetupDialog_IncomingMailServer": "Inkomende (IMAP) e-mailserver",
"IMAPSetupDialog_IncomingMailServerPort": "Poort",
"IMAPSetupDialog_MailAddress": "E-mailadres",
"IMAPSetupDialog_MailAddressPlaceholder": "iemand@voorbeeld.nl",
"IMAPSetupDialog_OutgoingMailServer": "Uitgaande (SMTP) e-mailserver",
"IMAPSetupDialog_OutgoingMailServerPassword": "Uitgaande server-wachtwoord",
"IMAPSetupDialog_OutgoingMailServerPort": "Poort",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Uitgaande server vereist authenticatie",
"IMAPSetupDialog_OutgoingMailServerUsername": "Uitgaande server gebruikersnaam",
"IMAPSetupDialog_Password": "Wachtwoord",
"IMAPSetupDialog_RequireSSLForIncomingMail": "SSL verplichten voor inkomende e-mail",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "SSL verplichten voor uitgaande e-mail",
"IMAPSetupDialog_Title": "Geavanceerde IMAP-instellingen",
"IMAPSetupDialog_UseSameConfig": "Dezelfde gebruikersnaam en wachtwoord gebruiken voor het verzenden van e-mail",
"IMAPSetupDialog_Username": "Gebruikersnaam",
"IMAPSetupDialog_UsernamePlaceholder": "johndoe, johndoe@fabrikam.com, domein/johndoe",
"ImageRenderingDisabled": "Afbeeldingsweergave is voor dit bericht uitgeschakeld.",
"InfoBarAction_Enable": "Inschakelen",
"InfoBarMessage_SynchronizationDisabledFolder": "Synchronisatie is uitgeschakeld voor deze map.",
"InfoBarTitle_SynchronizationDisabledFolder": "Uitgeschakelde map",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} is aangemaakt",
"Info_AccountCreatedTitle": "Account aanmaken",
"Info_AccountCreationFailedTitle": "Aanmaken van account is mislukt",
"Info_AccountDeletedMessage": "{0} is succesvol verwijderd.",
"Info_AccountDeletedTitle": "Account verwijderd",
"Info_AccountIssueFixFailedTitle": "Mislukt",
"Info_AccountIssueFixSuccessMessage": "Alle accountproblemen zijn opgelost.",
"Info_AccountIssueFixSuccessTitle": "Succesvol",
"Info_AttachmentOpenFailedMessage": "Deze bijlage kan niet geopend worden.",
"Info_AttachmentOpenFailedTitle": "Mislukt",
"Info_AttachmentSaveFailedMessage": "Deze bijlage kan niet opgeslagen worden.",
"Info_AttachmentSaveFailedTitle": "Mislukt",
"Info_AttachmentSaveSuccessMessage": "Bijlage is opgeslagen.",
"Info_AttachmentSaveSuccessTitle": "Bijlage is opgeslagen",
"Info_BackgroundExecutionDeniedMessage": "Uitvoering in de achtergrond voor de app is geweigerd. Dit kan invloed hebben op synchronisatie op de achtergrond en live meldingen.",
"Info_BackgroundExecutionDeniedTitle": "Achtergronduitvoering geweigerd",
"Info_BackgroundExecutionUnknownErrorMessage": "Onbekende fout opgetreden bij het registreren van achtergrondsynchronisatie.",
"Info_BackgroundExecutionUnknownErrorTitle": "Fout bij uitvoeren in achtergrond",
"Info_ComposerMissingMIMEMessage": "Kan het MIME-bestand niet vinden. Synchroniseren kan helpen.",
"Info_ComposerMissingMIMETitle": "Mislukt",
"Info_ContactExistsMessage": "Dit contact staat al in het lijst met ontvangers.",
"Info_ContactExistsTitle": "Contact bestaat",
"Info_DraftFolderMissingMessage": "Conceptmap ontbreekt voor dit account. Controleer uw accountinstellingen.",
"Info_DraftFolderMissingTitle": "Conceptmap ontbreekt",
"Info_FileLaunchFailedTitle": "Kan bestand niet starten",
"Info_InvalidAddressMessage": "{0} is geen geldig e-mailadres.",
"Info_InvalidAddressTitle": "Ongeldig adres",
"Info_InvalidMoveTargetMessage": "Geselecteerde e-mails kunnen niet verplaatst worden naar deze map.",
"Info_InvalidMoveTargetTitle": "Invalid Move Target",
"Info_LogsNotFoundMessage": "Er zijn geen logs om te delen.",
"Info_LogsNotFoundTitle": "Logs niet gevonden",
"Info_LogsSavedMessage": "{0} is opgeslagen in de geselecteerde map.",
"Info_LogsSavedTitle": "Opgeslagen",
"Info_MailRenderingFailedMessage": "Deze e-mail is beschadigd of kan niet worden geopend.\n{0}",
"Info_MailRenderingFailedTitle": "Render Failed",
"Info_MessageCorruptedMessage": "This message is corrupted.",
"Info_MessageCorruptedTitle": "Error",
"Info_MissingFolderMessage": "{0} doesn't exist for this account.",
"Info_MissingFolderTitle": "Missing Folder",
"Info_PurchaseExistsMessage": "Het lijkt erop dat dit product al eerder is gekocht.",
"Info_PurchaseExistsTitle": "Bestaand product",
"Info_PurchaseThankYouMessage": "Hartelijk bedankt!",
"Info_PurchaseThankYouTitle": "Aankoop geslaagd",
"Info_RequestCreationFailedTitle": "Aanvraag aanmaken is mislukt",
"Info_ReviewNetworkErrorMessage": "Er was een netwerkprobleem met uw beoordeling.",
"Info_ReviewNetworkErrorTitle": "Netwerkprobleem",
"Info_ReviewNewMessage": "Alle feedback wordt gewaardeerd. Bedankt voor uw beoordeling!",
"Info_ReviewSuccessTitle": "Bedankt",
"Info_ReviewUnknownErrorMessage": "Er is een onbekend probleem met uw beoordeling. ({0})",
"Info_ReviewUnknownErrorTitle": "Onbekende fout",
"Info_ReviewUpdatedMessage": "Hartelijk dank voor de bijgewerkte beoordeling.",
"Info_SignatureDisabledMessage": "Handtekening voor dit account uitschakelen",
"Info_SignatureDisabledTitle": "Gelukt",
"Info_SignatureSavedMessage": "Nieuwe handtekening is opgeslagen",
"Info_SignatureSavedTitle": "Gelukt",
"Info_SyncCanceledMessage": "Geannuleerd",
"Info_SyncCanceledTitle": "Synchronisatie",
"Info_SyncFailedTitle": "Synchronisatie is mislukt",
"Info_UnsupportedFunctionalityDescription": "Deze functionaliteit is nog niet geïmplementeerd.",
"Info_UnsupportedFunctionalityTitle": "Niet ondersteund",
"Info_UnsubscribeLinkInvalidTitle": "Ongeldige uitschrijf-URI",
"Info_UnsubscribeLinkInvalidMessage": "Deze afmeldlink is ongeldig. Afmelden van de lijst is mislukt.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Authenticatiemethode",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Beveiliging van verbinding",
"ImapAuthenticationMethod_Auto": "Automatisch",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "Geen authenticatie",
"ImapAuthenticationMethod_Plain": "Normaal wachtwoord",
"ImapAuthenticationMethod_EncryptedPassword": "Versleuteld wachtwoord",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "Geen",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Automatisch",
"Justify": "Uitvullen",
"Left": "Links",
"Link": "Link",
"LinkedAccountsCreatePolicyMessage": "Je moet ten minste 2 accounts hebben om een koppeling te maken.\nDe koppeling zal verwijderd worden bij het opslaan.",
"LinkedAccountsTitle": "Gekoppelde accounts",
"MailOperation_AlwaysMoveFocused": "Altijd verplaatsen naar focus",
"MailOperation_AlwaysMoveOther": "Altijd verplaatsen naar andere",
"MailOperation_Archive": "Archiveren",
"MailOperation_ClearFlag": "Markering wissen",
"MailOperation_DarkEditor": "Donker",
"MailOperation_Delete": "Verwijderen",
"MailOperation_ExportPDF": "Exporteren naar PDF",
"MailOperation_Find": "Zoeken",
"MailOperation_Forward": "Doorsturen",
"MailOperation_Ignore": "Ignore",
"MailOperation_LightEditor": "Light",
"MailOperation_MarkAsJunk": "Mark as junk",
"MailOperation_MarkAsRead": "Mark as read",
"MailOperation_MarkAsUnread": "Mark as unread",
"MailOperation_MarkNotJunk": "Mark as Not Junk",
"MailOperation_Move": "Move",
"MailOperation_MoveFocused": "Move to Focused",
"MailOperation_MoveJunk": "Move to Junk",
"MailOperation_MoveOther": "Move to Other",
"MailOperation_Navigate": "Navigate",
"MailOperation_Print": "Print",
"MailOperation_Reply": "Reply",
"MailOperation_ReplyAll": "Reply all",
"MailOperation_SaveAs": "Save As",
"MailOperation_SetFlag": "Set flag",
"MailOperation_Unarchive": "Unarchive",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} item(s) selected",
"MarkFlagUnflag": "Mark as flagged/unflagged",
"MarkReadUnread": "Mark as read/unread",
"MenuManageAccounts": "Manage Accounts",
"MenuNewMail": "New Mail",
"MenuMergedAccountItemAccountsSuffix": " accounts",
"MenuRate": "Rate Wino",
"MenuSettings": "Settings",
"MergedAccountsAvailableAccountsTitle": "Available Accounts",
"More": "More",
"MoveMailDialog_InvalidFolderMessage": "{0} is not a valid folder for this mail.",
"MoveMailDialog_Title": "Pick a folder",
"NewAccountDialog_AccountName": "Account Name",
"NewAccountDialog_AccountNameDefaultValue": "Personal",
"NewAccountDialog_AccountNamePlaceholder": "eg. Personal Mail",
"NewAccountDialog_Title": "Add New Account",
"NoMailSelected": "no message selected",
"NoMessageCrieteria": "no messages match your search criteria.",
"NoMessageEmptyFolder": "this folder is empty.",
"Notifications_MultipleNotificationsMessage": "You have {0} new mails",
"Notifications_MultipleNotificationsTitle": "New Mails",
"Notifications_WinoUpdatedMessage": "Checkout new version {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail has been updated.",
"Other": "Other",
"PaneLengthOption_Default": "Default",
"PaneLengthOption_ExtraLarge": "Extra Large",
"PaneLengthOption_Large": "Groot",
"PaneLengthOption_Medium": "Gemiddeld",
"PaneLengthOption_Micro": "Micro",
"PaneLengthOption_Small": "Klein",
"Photos": "Fotos",
"PreparingFoldersMessage": "Mappen voorbereiden",
"ProviderDetail_Gmail_Description": "Google Account",
"ProviderDetail_IMAP_Description": "Aangepaste IMAP/SMTP server",
"ProviderDetail_IMAP_Title": "IMAP-server",
"Results": "Resultaten",
"Right": "Rechts",
"SynchronizationFolderReport_Success": "Up-to-date",
"SynchronizationFolderReport_Failed": "Synchronisatie is mislukt",
"SearchBarPlaceholder": "zoeken",
"SearchingIn": "Zoeken in",
"SettingsAboutGithub_Description": "Ga naar de Issue Tracker in de GitHub-repository.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Berichten toevoegen aan map Verzonden",
"SettingsAccountManagementAppendMessage_Description": "Maak een kopie van het bericht in de map Verzonden nadat het concept is verzonden. Schakel dit in als u uw e-mails niet ziet nadat u ze hebt verzonden in de map 'Verzonden'.",
"SettingsEditLinkedInbox_Title": "Gekoppelde inbox bewerken",
"SettingsEditLinkedInbox_Description": "Accounts toevoegen, verwijderen, hernoemen of koppeling bewerken.",
"SettingsAboutVersion": "Versie ",
"SettingsAboutWinoDescription": "Lichtgewicht e-mail client voor Windows-apparaten.",
"SettingsAbout_Description": "Meer informatie over Wino.",
"SettingsAbout_Title": "Over",
"SettingsAccentColor_Description": "Wijzig accentkleur van applicatie",
"SettingsAccentColor_Title": "Accentkleur",
"SettingsAccentColor_UseWindowsAccentColor": "Mijn Windows-accentkleur gebruiken",
"SettingsAccountName_Description": "Verander de naam van het account.",
"SettingsAccountName_Title": "Accountnaam",
"SettingsApplicationTheme_Description": "Personaliseer Wino met aangepaste thema's.",
"SettingsApplicationTheme_Title": "Applicatie thema",
"SettingsAvailableThemes_Description": "Selecteer een thema uit Winos collectie of pas uw eigen thema's toe.",
"SettingsAvailableThemes_Title": "Beschikbare thema's",
"SettingsCustomTheme_Description": "Maak uw eigen aangepaste thema met aangepaste achtergrond en accentkleur.",
"SettingsCustomTheme_Title": "Aangepast Thema",
"SettingsDeleteAccount_Description": "Verwijder alle e-mails en referenties die aan dit account zijn gekoppeld.",
"SettingsDeleteAccount_Title": "Verwijder dit account",
"SettingsDeleteProtection_Description": "Moet Wino u om bevestiging vragen elke keer dat u een e-mail met Shift + Del verwijderd?",
"SettingsDeleteProtection_Title": "Permanente verwijder-bescherming",
"SettingsDiagnostics_Description": "Voor ontwikkelaars",
"SettingsDiagnostics_Title": "Diagnose",
"SettingsDiscord_Description": "Krijg regelmatige ontwikkelingsupdates, neem deel aan roadmap discussies en geef feedback.",
"SettingsDiscord_Title": "Discord-kanaal",
"SettingsElementThemeSelectionDisabled": "Element themaselectie is uitgeschakeld wanneer een niet-standaard thema is geselecteerd.",
"SettingsElementTheme_Description": "Selecteer een Windows-thema voor Wino",
"SettingsElementTheme_Title": "Element thema",
"SettingsEnableHoverActions_Title": "Inschakelen van aanwijsacties",
"SettingsEnableIMAPLogs_Description": "Schakel dit in om gegevens over IMAP-connectiviteit te verstrekken die je had tijdens de IMAP-server installatie.",
"SettingsEnableIMAPLogs_Title": "IMAP Protocol Logs inschakelen",
"SettingsEnableLogs_Description": "Mogelijk heb ik de logs nodig om de door jou geopende problemen op GitHub te kunnen analyseren. Geen van de logs zal uw inloggegevens of gevoelige informatie bevatten.",
"SettingsEnableLogs_Title": "Logs inschakelen",
"SettingsEnableSignature": "Handtekening inschakelen",
"SettingsExpandOnStartup_Description": "Set whether Wino should expand this account's folders on startup.",
"SettingsExpandOnStartup_Title": "Expand Menu on Startup",
"SettingsExternalContent_Description": "Manage external content settings when rendering mails.",
"SettingsExternalContent_Title": "External Content",
"SettingsFocusedInbox_Description": "Set whether Inbox should be split into two as Focused - Other.",
"SettingsFocusedInbox_Title": "Focused Inbox",
"SettingsFolderSync_Description": "Enable or disable specific folders for synchronization.",
"SettingsFolderSync_Title": "Folder Synchronization",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Center Action",
"SettingsHoverActionLeft": "Left Action",
"SettingsHoverActionRight": "Right Action",
"SettingsHoverActions_Description": "Select 3 actions to show up when you hover over the mails with cursor.",
"SettingsHoverActions_Title": "Hover Actions",
"SettingsLanguage_Description": "Change display language for Wino.",
"SettingsLanguage_Title": "Display Language",
"CategoriesFolderNameOverride": "Categories",
"MoreFolderNameOverride": "More",
"SettingsOptions_Title": "Settings",
"SettingsLinkAccounts_Description": "Merge multiple accounts into one. See mails from one Inbox together.",
"SettingsLinkAccounts_Title": "Create Linked Accounts",
"SettingsLinkedAccountsSave_Description": "Modify the current link with the new accounts.",
"SettingsLinkedAccountsSave_Title": "Save Changes",
"SettingsLoadImages_Title": "Load images automatically",
"SettingsLoadStyles_Title": "Load styles automatically",
"SettingsMailSpacing_Description": "Adjust the spacing for listing mails.",
"SettingsMailSpacing_Title": "Mail Spacing",
"SettingsFolderMenuStyle_Title": "Create Nested Folders",
"SettingsFolderMenuStyle_Description": "Change whether account folders should be nested inside an account menu item or not. Toggle this off if you like the old menu system in Windows Mail",
"SettingsManageAccountSettings_Description": "Notifications, signatures, synchronization and other settings per account.",
"SettingsManageAccountSettings_Title": "Manage Account Settings",
"SettingsManageLink_Description": "Move items to add new link or remove existing link.",
"SettingsManageLink_Title": "Manage Link",
"SettingsMarkAsRead_Description": "Change what should happen to the selected item.",
"SettingsMarkAsRead_DontChange": "Don't automatically mark item as read",
"SettingsMarkAsRead_SecondsToWait": "Seconds to wait: ",
"SettingsMarkAsRead_Timer": "When viewed in the reading pane",
"SettingsMarkAsRead_Title": "Mark item as read",
"SettingsMarkAsRead_WhenSelected": "When selected",
"SettingsMessageList_Description": "Change how your messages should be organized in mail list.",
"SettingsMessageList_Title": "Message List",
"SettingsNoAccountSetupMessage": "You didn't setup any accounts yet.",
"SettingsNotifications_Description": "Turn on or off notifications for this account.",
"SettingsNotifications_Title": "Notifications",
"SettingsPaneLength_Description": "Change the width of the mail list.",
"SettingsPaneLength_Title": "Mail List Pane Length",
"SettingsPaypal_Description": "Show much more love ❤️ All donations are appreciated.",
"SettingsPaypal_Title": "Donate via PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Compact Mode",
"SettingsPersonalizationMailDisplayMediumMode": "Medium Mode",
"SettingsPersonalizationMailDisplaySpaciousMode": "Spacious Mode",
"SettingsPersonalization_Description": "Change appearance of Wino as you like.",
"SettingsPersonalization_Title": "Personalization",
"SettingsPrivacyPolicy_Description": "Review privacy policy.",
"SettingsPrivacyPolicy_Title": "Privacy Policy",
"SettingsReadingPane_Description": "Mail rendering options.",
"SettingsReadingPane_Title": "Reading Pane",
"SettingsReaderFont_Title": "Default Reader Font",
"SettingsReaderFontFamily_Description": "Change the default font family and font size for reading mails.",
"SettingsFontFamily_Title": "Font Family",
"SettingsFontSize_Title": "Font Size",
"SettingsFontPreview_Title": "Preview",
"SettingsComposerFont_Title": "Default Composer Font",
"SettingsComposerFontFamily_Description": "Change the default font family and font size for composing mails.",
"SettingsRenameMergeAccount_Description": "Change the display name of the linked accounts.",
"SettingsRenameMergeAccount_Title": "Rename",
"SettingsSemanticZoom_Description": "This will allow you to click on the headers in messages list and go to specific date",
"SettingsSemanticZoom_Title": "Semantic Zoom for Date Headers",
"SettingsShowPreviewText_Description": "Hide/show thepreview text.",
"SettingsShowPreviewText_Title": "Show Preview Text",
"SettingsShowSenderPictures_Description": "Hide/show the thumbnail sender pictures.",
"SettingsShowSenderPictures_Title": "Show Sender Avatars",
"SettingsPrefer24HourClock_Title": "Display Clock Format in 24 Hours",
"SettingsPrefer24HourClock_Description": "Mail recieve times will be displayed in 24 hour format instead of 12 (AM/PM)",
"SettingsSignature_Description": "Edit or remove account signature",
"SettingsSignature_Title": "Signature",
"SettingsStartupItem_Description": "Primary account item to load Inbox at startup.",
"SettingsStartupItem_Title": "Startup Item",
"SettingsStore_Description": "Show some love ❤️",
"SettingsStore_Title": "Rate in Store",
"SettingsThreads_Description": "Organize messages into conversation threads.",
"SettingsThreads_Title": "Conversation Threading",
"SettingsUnlinkAccounts_Description": "Remove the link between accounts. This will not delete your accounts.",
"SettingsUnlinkAccounts_Title": "Unlink Accounts",
"SortingOption_Date": "by date",
"SortingOption_Name": "by name",
"StoreRatingDialog_MessageFirstLine": "All feedbacks are appreciated and they will make much Wino better in the future. Would you like to rate Wino in Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Would you like to rate Wino Mail in Microsoft Store?",
"StoreRatingDialog_Title": "Enjoying Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Deleted messages will be moved to here.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Deleted Folder",
"SystemFolderConfigDialog_DraftFolderDescription": "New mails/replies will be crafted in here.",
"SystemFolderConfigDialog_DraftFolderHeader": "Draft Folder",
"SystemFolderConfigDialog_JunkFolderDescription": "All spam/junk mails will be here.",
"SystemFolderConfigDialog_JunkFolderHeader": "Junk/Spam Folder",
"SystemFolderConfigDialog_MessageFirstLine": "This IMAP server doesn't support SPECIAL-USE extension hence Wino couldn't setup the system folders properly.",
"SystemFolderConfigDialog_MessageSecondLine": "Please select the appropriate folders for specific functionalities.",
"SystemFolderConfigDialog_SentFolderDescription": "Folder that sent messages will be stored.",
"SystemFolderConfigDialog_SentFolderHeader": "Sent Folder",
"SystemFolderConfigDialog_Title": "Configure System Folders",
"TestingImapConnectionMessage": "Testing server connection...",
"Today": "Today",
"UnknownAddress": "unknown address",
"UnknownDateHeader": "Unknown Date",
"UnknownGroupAddress": "unknown Mail Group Address",
"UnknownSender": "Unknown Sender",
"Unsubscribe": "Unsubscribe",
"ViewContactDetails": "View Details",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Upgrade to Unlimited Accounts",
"WinoUpgradeRemainingAccountsMessage": "{0} out of {1} free accounts used.",
"Yesterday": "Yesterday"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "gotowe",
"AccountCreationDialog_Initializing": "inicjowanie",
"AccountCreationDialog_PreparingFolders": "Trwa pobieranie informacji o folderach.",
"AccountCreationDialog_SigninIn": "Zapisywanie danych konta.",
"AccountEditDialog_Message": "Nazwa konta",
"AccountEditDialog_Title": "Edytuj konto",
"AccountPickerDialog_Title": "Wybierz konto",
"AddHyperlink": "Dodaj",
"AutoDiscoveryProgressMessage": "Wyszukiwanie ustawień poczty...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Konfiguracja zaawansowana",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Twoje dane logowania będą przechowywane lokalnie tylko na Twoim komputerze.",
"BasicIMAPSetupDialog_Description": "Niektóre konta wymagają dodatkowych kroków do zalogowania",
"BasicIMAPSetupDialog_DisplayName": "Wyświetlana nazwa",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "np. Jan Kowalski",
"BasicIMAPSetupDialog_LearnMore": "Dowiedz się więcej",
"BasicIMAPSetupDialog_MailAddress": "Adres e-mail",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "jankowalski@jakasdomena.pl",
"BasicIMAPSetupDialog_Password": "Hasło",
"BasicIMAPSetupDialog_Title": "Konto IMAP",
"Buttons_AddAccount": "Dodaj konto",
"Buttons_ApplyTheme": "Zastosuj motyw",
"Buttons_Browse": "Przeglądaj",
"Buttons_Cancel": "Anuluj",
"Buttons_Close": "Zamknij",
"Buttons_Create": "Utwórz",
"Buttons_CreateAccount": "Utwórz konto",
"Buttons_Delete": "Usuń",
"Buttons_Discard": "Odrzuć",
"Buttons_EnableImageRendering": "Włącz",
"Buttons_No": "Nie",
"Buttons_Open": "Otwórz",
"Buttons_Purchase": "Kup",
"Buttons_RateWino": "Oceń Wino",
"Buttons_Save": "Zapisz",
"Buttons_SaveConfiguration": "Zapisz konfigurację",
"Buttons_Share": "Udostępnij",
"Buttons_SignIn": "Zaloguj się",
"Buttons_Yes": "Tak",
"Center": "Wyśrodkuj",
"ComingSoon": "Już wkrótce...",
"ComposerFrom": "Od: ",
"ComposerSubject": "Temat: ",
"ComposerTo": "Do: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "kliknij Enter, aby wprowadzić adresy",
"CustomThemeBuilder_AccentColorDescription": "Ustaw niestandardowy kolor akcentu, jeśli chcesz. Nie wybierając koloru, zostanie użyty kolor akcentu Windows.",
"CustomThemeBuilder_AccentColorTitle": "Kolor akcentów",
"CustomThemeBuilder_PickColor": "Wybierz",
"CustomThemeBuilder_ThemeNameDescription": "Unikalna nazwa dla Twojego motywu.",
"CustomThemeBuilder_ThemeNameTitle": "Nazwa motywu",
"CustomThemeBuilder_Title": "Kreator niestandardowych motywów",
"CustomThemeBuilder_WallpaperDescription": "Ustaw niestandardową tapetę dla Wino",
"CustomThemeBuilder_WallpaperTitle": "Ustaw niestandardową tapetę",
"DialogMessage_AccountLimitMessage": "Osiągnąłeś limit utworzonych kont.\nCzy chcesz kupić dodatek \"Nielimitowane konto\", aby kontynuować?",
"DialogMessage_AccountLimitTitle": "Osiągnięto limit konta",
"DialogMessage_CleanupFolderMessage": "Czy chcesz trwale usunąć wszystkie wiadomości z tego folderu?",
"DialogMessage_CleanupFolderTitle": "Opróżnianie folderu",
"DialogMessage_ComposerMissingRecipientMessage": "Wiadomość nie ma odbiorcy.",
"DialogMessage_ComposerValidationFailedTitle": "Walidacja nie powiodła się",
"DialogMessage_CreateLinkedAccountMessage": "Nadaj nowemu połączeniu nazwę. Konta zostaną scalone pod tą nazwą.",
"DialogMessage_CreateLinkedAccountTitle": "Nazwa połączonego konta",
"DialogMessage_DeleteAccountConfirmationMessage": "Usunąć {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "Wszystkie dane powiązane z tym kontem zostaną trwale usunięte z dysku.",
"DialogMessage_DiscardDraftConfirmationMessage": "Ta wersja robocza zostanie odrzucona. Czy chcesz kontynuować?",
"DialogMessage_DiscardDraftConfirmationTitle": "Porzuć wersje roboczą",
"DialogMessage_HardDeleteConfirmationMessage": "Usuń trwale",
"DialogMessage_HardDeleteConfirmationTitle": "Wiadomość(ci) zostaną trwale usunięte. Czy chcesz kontynuować?",
"DialogMessage_NoAccountsForCreateMailMessage": "Nie masz żadnych kont z których możesz utworzyć wiadomość.",
"DialogMessage_NoAccountsForCreateMailTitle": "Brak konta",
"DialogMessage_RenameLinkedAccountsMessage": "Wprowadź nową nazwę dla połączonego konta",
"DialogMessage_RenameLinkedAccountsTitle": "Zmień nazwę połączonego konta",
"DialogMessage_UnlinkAccountsConfirmationMessage": "Ta operacja nie usunie Twoich kont, tylko przerwie połączenie dla wspólnych folderów. Czy chcesz kontynuować?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Odłącz konto",
"DialogMessage_EmptySubjectConfirmation": "Brak tematu",
"DialogMessage_EmptySubjectConfirmationMessage": "Wiadomość nie ma tematu. Czy chcesz kontynuować?",
"Dialog_DontAskAgain": "Nie pytaj ponownie",
"DiscordChannelDisclaimerMessage": "Wino nie ma własnego serwera Discorda, ale specjalny kanał \"wino-mail\" który jest hostowany na serwerze \"Developer Sanctuary\".\nAby otrzymywać najświeższe informacje o Wino dołącz do serwera Developer Sanctuary i obserwuj kanał 'wino-mail' pod 'Community Projects'\n\nZostaniesz przekierowany na adres URL serwera, ponieważ Discord nie obsługuje kanałów zaproszeń.",
"DiscordChannelDisclaimerTitle": "Ważne informacje o kanale na Discordzie",
"Draft": "Wersja robocza",
"EditorToolbarOption_Draw": "Rysowanie",
"EditorToolbarOption_Format": "Formatowanie",
"EditorToolbarOption_Insert": "Wstawianie",
"EditorToolbarOption_None": "Żadne",
"EditorToolbarOption_Options": "Opcje",
"ElementTheme_Dark": "Tryb ciemny",
"ElementTheme_Default": "Użyj ustawień systemowych",
"ElementTheme_Light": "Tryb jasny",
"Emoji": "Emotikony",
"Exception_ImapClientPoolFailed": "Pula klienta IMAP nie powiodła się.",
"Exception_AuthenticationCanceled": "Anulowano uwierzytelnianie",
"Exception_CustomThemeExists": "Ten motyw już istnieje.",
"Exception_CustomThemeMissingName": "Musisz podać nazwę.",
"Exception_CustomThemeMissingWallpaper": "Musisz podać niestandardowy obraz tła.",
"Exception_FailedToSynchronizeFolders": "Nie udało się zsynchronizować folderów",
"Exception_GoogleAuthCallbackNull": "Adres uri wywołania zwrotnego jest pusty przy aktywacji.",
"Exception_GoogleAuthCorruptedCode": "Uszkodzona odpowiedź autoryzacji.",
"Exception_GoogleAuthError": "Błąd autoryzacji OAuth: {0}",
"Exception_GoogleAuthInvalidResponse": "Otrzymano żądanie z nieprawidłowym stanem ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Wymiana kodu autoryzacji nie powiodła się.",
"Exception_InvalidSystemFolderConfiguration": "Konfiguracja folderu systemowego jest nieprawidłowa. Sprawdź konfigurację i spróbuj ponownie.",
"Exception_NullAssignedAccount": "Przypisane konto jest puste",
"Exception_NullAssignedFolder": "Przypisany folder jest pusty",
"Exception_SynchronizerFailureHTTP": "Obsługa odpowiedzi nie powiodła się. Kod błędu HTTP: {0}",
"Exception_TokenGenerationFailed": "Generowanie tokenu nie powiodło się",
"Exception_TokenInfoRetrivalFailed": "Nie udało się uzyskać informacji o tokenie.",
"Exception_UnknowErrorDuringAuthentication": "Wystąpił nieznany błąd podczas uwierzytelniania",
"Exception_UnsupportedAction": "Akcja {0} nie jest zaimplementowana w procesorze żądania",
"Exception_UnsupportedProvider": "Ten dostawca nie jest obsługiwany.",
"Exception_UnsupportedSynchronizerOperation": "Ta operacja nie jest obsługiwana dla {0}",
"Exception_UserCancelSystemFolderSetupDialog": "Użytkownik anulował okno dialogowe konfiguracji folderów systemowych.",
"Files": "Pliki",
"FilteringOption_All": "Wszystkie",
"FilteringOption_Flagged": "Oflagowane",
"FilteringOption_Unread": "Nieprzeczytane",
"Focused": "Priorytetowe",
"FolderOperation_CreateSubFolder": "Utwórz podfolder",
"FolderOperation_Delete": "Usuń",
"FolderOperation_DontSync": "Nie synchronizuj tego folderu",
"FolderOperation_Empty": "Opróżnij ten folder",
"FolderOperation_MarkAllAsRead": "Oznacz wszystkie jako przeczytane",
"FolderOperation_Move": "Przenieś",
"DragMoveToFolderCaption": "Przenieś do {0}",
"FolderOperation_None": "Żadne",
"FolderOperation_Pin": "Przypnij",
"FolderOperation_Rename": "Zmień nazwę",
"FolderOperation_Unpin": "Odepnij",
"HoverActionOption_Archive": "Archiwizuj",
"HoverActionOption_Delete": "Usuń",
"HoverActionOption_MoveJunk": "Przenieś do wiadomości-śmieci",
"HoverActionOption_ToggleFlag": "Oflaguj / Usuń flagę",
"HoverActionOption_ToggleRead": "Przeczytane / Nieprzeczytane",
"MergedAccountCommonFolderInbox": "Skrzynka odbiorcza",
"MergedAccountCommonFolderSent": "Wysłane",
"MergedAccountCommonFolderDraft": "Wersje robocze",
"MergedAccountCommonFolderJunk": "Wiadomości-śmieci",
"MergedAccountCommonFolderTrash": "Usunięte",
"MergedAccountCommonFolderArchive": "Archiwum",
"IMAPSetupDialog_AccountType": "Typ konta",
"IMAPSetupDialog_DisplayName": "Wyświetlana nazwa",
"IMAPSetupDialog_DisplayNamePlaceholder": "np. Jan Kowalski",
"IMAPSetupDialog_IncomingMailServer": "Serwer poczty przychodzącej",
"IMAPSetupDialog_IncomingMailServerPort": "Port",
"IMAPSetupDialog_MailAddress": "Adres e-mail",
"IMAPSetupDialog_MailAddressPlaceholder": "ktoś@przykład.com",
"IMAPSetupDialog_OutgoingMailServer": "Serwer poczty wychodzącej (SMTP)",
"IMAPSetupDialog_OutgoingMailServerPassword": "Hasło serwera wychodzącego",
"IMAPSetupDialog_OutgoingMailServerPort": "Port",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Serwer wychodzący wymaga uwierzytelnienia",
"IMAPSetupDialog_OutgoingMailServerUsername": "Nazwa użytkownika serwera wychodzącego",
"IMAPSetupDialog_Password": "Hasło",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Wymagaj SSL dla poczty przychodzącej",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Wymagaj SSL dla poczty wychodzącej",
"IMAPSetupDialog_Title": "Zaawansowana konfiguracja IMAP",
"IMAPSetupDialog_UseSameConfig": "Użyj tej samej nazwy użytkownika i hasła dla poczty wychodzącej",
"IMAPSetupDialog_Username": "Nazwa użytkownika",
"IMAPSetupDialog_UsernamePlaceholder": "jankowalski, jankowalski@jakasdomena.com, domena/jankowalski",
"ImageRenderingDisabled": "Wyświetlanie obrazów jest wyłączone dla tej wiadomości.",
"InfoBarAction_Enable": "Włącz",
"InfoBarMessage_SynchronizationDisabledFolder": "Ten folder jest wyłączony z synchronizacji.",
"InfoBarTitle_SynchronizationDisabledFolder": "Katalog niesynchronizowany",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "Utworzono {0}",
"Info_AccountCreatedTitle": "Tworzenie konta",
"Info_AccountCreationFailedTitle": "Tworzenie konta nie powiodło się",
"Info_AccountDeletedMessage": "Usunięto {0}.",
"Info_AccountDeletedTitle": "Konto usunięte",
"Info_AccountIssueFixFailedTitle": "Nie powiodło się",
"Info_AccountIssueFixSuccessMessage": "Naprawiono wszystkie problemy z kontem.",
"Info_AccountIssueFixSuccessTitle": "Zakończono pomyślnie",
"Info_AttachmentOpenFailedMessage": "Nie można otworzyć tego załącznika.",
"Info_AttachmentOpenFailedTitle": "Nie powiodło się",
"Info_AttachmentSaveFailedMessage": "Nie można zapisać tego załącznika.",
"Info_AttachmentSaveFailedTitle": "Nie powiodło się",
"Info_AttachmentSaveSuccessMessage": "Załącznik został zapisany.",
"Info_AttachmentSaveSuccessTitle": "Zapisano załącznik",
"Info_BackgroundExecutionDeniedMessage": "Odmowa działania aplikacji w tle. Może to mieć wpływ na synchronizację w tle i powiadomienia na żywo.",
"Info_BackgroundExecutionDeniedTitle": "Odmowa działania w tle",
"Info_BackgroundExecutionUnknownErrorMessage": "Wystąpił nieznany błąd podczas rejestracji synchronizacji w tle.",
"Info_BackgroundExecutionUnknownErrorTitle": "Działanie w tle nie powiodło się",
"Info_ComposerMissingMIMEMessage": "Nie można zlokalizować pliku MIME. Synchronizacja może pomóc.",
"Info_ComposerMissingMIMETitle": "Nie powiodło się",
"Info_ContactExistsMessage": "Ten kontakt jest już na liście odbiorców.",
"Info_ContactExistsTitle": "Kontakt istnieje",
"Info_DraftFolderMissingMessage": "Brak folderu wersji roboczych dla tego konta. Proszę sprawdzić ustawienia konta.",
"Info_DraftFolderMissingTitle": "Brak folderu wersji roboczych",
"Info_FileLaunchFailedTitle": "Nie udało się uruchomić pliku",
"Info_InvalidAddressMessage": "{0} nie jest prawidłowym adresem e-mail.",
"Info_InvalidAddressTitle": "Błędny adres",
"Info_InvalidMoveTargetMessage": "Nie możesz przenieść zaznaczonych wiadomości do tego folderu.",
"Info_InvalidMoveTargetTitle": "Nieprawidłowy folder docelowy",
"Info_LogsNotFoundMessage": "Brak logów do udostępnienia.",
"Info_LogsNotFoundTitle": "Nie znaleziono logów",
"Info_LogsSavedMessage": "{0} został zapisany w wybranym folderze.",
"Info_LogsSavedTitle": "Zapisano",
"Info_MailRenderingFailedMessage": "Ta wiadomość jest uszkodzona lub nie może zostać otwarta.\n{0}",
"Info_MailRenderingFailedTitle": "Wyświetlenie nie powiodło się",
"Info_MessageCorruptedMessage": "Ta wiadomość jest uszkodzona.",
"Info_MessageCorruptedTitle": "Błąd",
"Info_MissingFolderMessage": "{0} nie istnieje dla tego konta.",
"Info_MissingFolderTitle": "Brakujący folder",
"Info_PurchaseExistsMessage": "Wygląda na to, że ten produkt został już zakupiony wcześniej.",
"Info_PurchaseExistsTitle": "Produkt już został wykupiony",
"Info_PurchaseThankYouMessage": "Dziękuję",
"Info_PurchaseThankYouTitle": "Zakup zakończony pomyślnie",
"Info_RequestCreationFailedTitle": "Nie udało się utworzyć żądań",
"Info_ReviewNetworkErrorMessage": "Wystąpił problem sieciowy z Twoją recenzją.",
"Info_ReviewNetworkErrorTitle": "Problem z siecią",
"Info_ReviewNewMessage": "Wszelkie informacje zwrotne mile widziane. Dziękuję za Twoją opinię!",
"Info_ReviewSuccessTitle": "Dziękuję",
"Info_ReviewUnknownErrorMessage": "Wystąpił nieznany błąd podczas wystawiania recenzji. ({0})",
"Info_ReviewUnknownErrorTitle": "Nieznany błąd",
"Info_ReviewUpdatedMessage": "Dziękuję za aktualizację recenzji.",
"Info_SignatureDisabledMessage": "Wyłączono podpis dla tego konta",
"Info_SignatureDisabledTitle": "Zakończono pomyślnie",
"Info_SignatureSavedMessage": "Nowy podpis został zapisany",
"Info_SignatureSavedTitle": "Zakończono pomyślnie",
"Info_SyncCanceledMessage": "Anulowano",
"Info_SyncCanceledTitle": "Synchronizacja",
"Info_SyncFailedTitle": "Synchronizacja nieudana",
"Info_UnsupportedFunctionalityDescription": "Ta funkcjonalność nie jest jeszcze zaimplementowana.",
"Info_UnsupportedFunctionalityTitle": "Nieobsługiwane",
"Info_UnsubscribeLinkInvalidTitle": "Nieprawidłowy link anulowania subskrypcji",
"Info_UnsubscribeLinkInvalidMessage": "Link anulowania subskrypcji jest nieprawidłowy. Nie udało się wypisać z listy subskrybentów.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Metoda autoryzacji",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Zabezpieczenia dot. połączenia",
"ImapAuthenticationMethod_Auto": "Automatyczne",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "Brak uwierzytelnienia",
"ImapAuthenticationMethod_Plain": "Normale hasło",
"ImapAuthenticationMethod_EncryptedPassword": "Zaszyfrowane hasło",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "Brak",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Automatyczne",
"Justify": "Wyjustuj",
"Left": "Wyrównaj do lewej",
"Link": "Odnośnik",
"LinkedAccountsCreatePolicyMessage": "musisz mieć co najmniej 2 konta, aby je połączyć\npołączenie zostanie usunięte przy zapisywaniu",
"LinkedAccountsTitle": "Połączone konta",
"MailOperation_AlwaysMoveFocused": "Zawsze Przenoś do \"Priorytetowe\"",
"MailOperation_AlwaysMoveOther": "Zawsze Przenoś do \"Inne\"",
"MailOperation_Archive": "Archiwizuj",
"MailOperation_ClearFlag": "Usuń flagę",
"MailOperation_DarkEditor": "Ciemny",
"MailOperation_Delete": "Usuń",
"MailOperation_ExportPDF": "Eksportuj do PDF",
"MailOperation_Find": "Znajdź",
"MailOperation_Forward": "Prześlij dalej",
"MailOperation_Ignore": "Ignoruj",
"MailOperation_LightEditor": "Jasny",
"MailOperation_MarkAsJunk": "Oznacz jako wiadomość-śmieć",
"MailOperation_MarkAsRead": "Oznacz jako przeczytane",
"MailOperation_MarkAsUnread": "Oznacz jako nieprzeczytane",
"MailOperation_MarkNotJunk": "Oznacz jako nieśmieciową wiadomość",
"MailOperation_Move": "Przenieś",
"MailOperation_MoveFocused": "Przenieś do: Priorytetowe",
"MailOperation_MoveJunk": "Przenieś do: Wiadomości-śmieci",
"MailOperation_MoveOther": "Przenieś do: Inne",
"MailOperation_Navigate": "Nawiguj",
"MailOperation_Print": "Drukuj",
"MailOperation_Reply": "Odpowiedz",
"MailOperation_ReplyAll": "Odpowiedz wszystkim",
"MailOperation_SaveAs": "Zapisz jako",
"MailOperation_SetFlag": "Ustaw flagę",
"MailOperation_Unarchive": "Odarchiwizuj",
"MailOperation_Zoom": "Powiększ",
"MailsSelected": "{0} zaznaczonych elementów",
"MarkFlagUnflag": "Oznacz jako oflagowane/nieoflagowane",
"MarkReadUnread": "Oznacz jako przeczytane/nieprzeczytane",
"MenuManageAccounts": "Zarządzaj kontami",
"MenuNewMail": "Nowa wiadomość",
"MenuMergedAccountItemAccountsSuffix": " kont",
"MenuRate": "Oceń Wino",
"MenuSettings": "Ustawienia",
"MergedAccountsAvailableAccountsTitle": "Dostępne konta",
"More": "Więcej",
"MoveMailDialog_InvalidFolderMessage": "{0} nie jest prawidłowym folderem dla tej wiadomości.",
"MoveMailDialog_Title": "Wybierz folder",
"NewAccountDialog_AccountName": "Nazwa konta",
"NewAccountDialog_AccountNameDefaultValue": "Osobiste",
"NewAccountDialog_AccountNamePlaceholder": "np. Osobista poczta",
"NewAccountDialog_Title": "Dodaj nowe konto",
"NoMailSelected": "nie wybrano żadnej wiadomości",
"NoMessageCrieteria": "żadne wiadomości nie spełniają kryteriów wyszukiwania.",
"NoMessageEmptyFolder": "ten folder jest pusty.",
"Notifications_MultipleNotificationsMessage": "Masz {0} nowych wiadomości",
"Notifications_MultipleNotificationsTitle": "Nowa poczta",
"Notifications_WinoUpdatedMessage": "Sprawdź nową wersję {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail został zaktualizowany.",
"Other": "Inne",
"PaneLengthOption_Default": "Domyślne",
"PaneLengthOption_ExtraLarge": "Bardzo duża",
"PaneLengthOption_Large": "Duża",
"PaneLengthOption_Medium": "Średnia",
"PaneLengthOption_Micro": "Mikro",
"PaneLengthOption_Small": "Mała",
"Photos": "Zdjęcia",
"PreparingFoldersMessage": "Przygotowywanie folderów",
"ProviderDetail_Gmail_Description": "Konto Google",
"ProviderDetail_IMAP_Description": "Serwer IMAP/SMTP",
"ProviderDetail_IMAP_Title": "Serwer IMAP",
"Results": "Wyniki",
"Right": "Wyrównaj do prawej",
"SynchronizationFolderReport_Success": "aktualne",
"SynchronizationFolderReport_Failed": "synchronizacja nieudana",
"SearchBarPlaceholder": "wyszukaj",
"SearchingIn": "szukanie w",
"SettingsAboutGithub_Description": "Przejdź do repozytorium trackera zgłoszeń GitHub.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Dołącz wiadomości do folderu Wysłane",
"SettingsAccountManagementAppendMessage_Description": "Utwórz kopię wiadomości w folderze Wysłane po wysłaniu wersji roboczej. Włącz to, jeśli nie widzisz swoich wiadomości po wysłaniu ich, w folderze Wysłane.",
"SettingsEditLinkedInbox_Title": "Edytuj połączoną skrzynkę odbiorczą",
"SettingsEditLinkedInbox_Description": "Dodaj / usuń konta, zmień nazwę lub zerwij powiązanie między kontami.",
"SettingsAboutVersion": "Wersja ",
"SettingsAboutWinoDescription": "Lekki klient poczty dla rodzin urządzeń Windows.",
"SettingsAbout_Description": "Dowiedz się więcej o Wino.",
"SettingsAbout_Title": "O aplikacji",
"SettingsAccentColor_Description": "Zmień kolor akcentu aplikacji",
"SettingsAccentColor_Title": "Kolor akcentu",
"SettingsAccentColor_UseWindowsAccentColor": "Użyj mojego koloru akcentu Windows",
"SettingsAccountName_Description": "Zmień nazwę konta.",
"SettingsAccountName_Title": "Nazwa konta",
"SettingsApplicationTheme_Description": "Spersonalizuj Wino z innymi niestandardowymi motywami aplikacji.",
"SettingsApplicationTheme_Title": "Motyw aplikacji",
"SettingsAvailableThemes_Description": "Wybierz motyw z kolekcji Wino wedle uznania lub zastosuj własne motywy.",
"SettingsAvailableThemes_Title": "Dostępne motywy",
"SettingsCustomTheme_Description": "Utwórz własny motyw z niestandardową tapetą i kolorem akcentu.",
"SettingsCustomTheme_Title": "Własny motyw",
"SettingsDeleteAccount_Description": "Usuń wszystkie e-maile i dane uwierzytelniające powiązane z tym kontem.",
"SettingsDeleteAccount_Title": "Usuń to konto",
"SettingsDeleteProtection_Description": "Czy Wino powinno poprosić Cię o potwierdzenie za każdym razem, gdy próbujesz trwale usunąć wiadomość za pomocą kombinacji Shift + Del?",
"SettingsDeleteProtection_Title": "Ochrona przed trwałym usunięciem",
"SettingsDiagnostics_Description": "Dla programistów",
"SettingsDiagnostics_Title": "Diagnostyka",
"SettingsDiscord_Description": "Otrzymuj regularne informacje dotyczące rozwoju aplikacji, dołącz do dyskusji o roadmapie i przedstawiaj opinie.",
"SettingsDiscord_Title": "Kanał Discord",
"SettingsElementThemeSelectionDisabled": "Wybór motywu elementu jest wyłączony, gdy wybrany motyw aplikacji jest inny niż Domyślny.",
"SettingsElementTheme_Description": "Wybierz motyw Windows dla Wino",
"SettingsElementTheme_Title": "Motyw elementu",
"SettingsEnableHoverActions_Title": "Włącz akcje po najechaniu kursorem",
"SettingsEnableIMAPLogs_Description": "Włącz tę opcję, aby dostarczyć szczegółów dotyczących problemów z połączeniem IMAP podczas konfiguracji serwera IMAP.",
"SettingsEnableIMAPLogs_Title": "Włącz logi protokołu IMAP",
"SettingsEnableLogs_Description": "Mogę potrzebować logów, kiedy aplikacja ulegnie awarii, by móc zdiagnozować problemy, które zgłosiłeś na GitHubie. Żaden z logów nie ujawni Twoich danych do logowania czy wrażliwych danych.",
"SettingsEnableLogs_Title": "Włącz logi",
"SettingsEnableSignature": "Włącz podpis",
"SettingsExpandOnStartup_Description": "Ustaw czy Wino powinno ukazywać listę folderów tego konta przy uruchomieniu.",
"SettingsExpandOnStartup_Title": "Rozwiń listę folderów przy uruchomieniu",
"SettingsExternalContent_Description": "Zarządzaj zewnętrznymi ustawieniami zawartości podczas wyświetlania wiadomości.",
"SettingsExternalContent_Title": "Zawartość zewnętrzna",
"SettingsFocusedInbox_Description": "Określ, czy skrzynka odbiorcza powinna być podzielona na dwie jako Priorytetowe - Inne.",
"SettingsFocusedInbox_Title": "Priorytetowa skrzynka odbiorcza",
"SettingsFolderSync_Description": "Włącz lub wyłącz synchronizacji określonych folderów.",
"SettingsFolderSync_Title": "Synchronizacja folderów",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Zmień ustawienia poszczególnych folderów, takie jak wyłączenie lub włączenie synchronizacji lub pokazywanie i ukrywanie ikony nieprzeczytanych wiadomości.",
"SettingsHoverActionCenter": "Akcja ze środka",
"SettingsHoverActionLeft": "Akcja z lewej",
"SettingsHoverActionRight": "Akcja z prawej",
"SettingsHoverActions_Description": "Wybierz 3 akcje, które pojawią się, kiedy najedziesz kursorem na wiadomość.",
"SettingsHoverActions_Title": "Akcje po najechaniu kursorem",
"SettingsLanguage_Description": "Zmień język wyświetlania Wino.",
"SettingsLanguage_Title": "Ustawienia języka",
"CategoriesFolderNameOverride": "Kategorie",
"MoreFolderNameOverride": "Więcej",
"SettingsOptions_Title": "Ustawienia",
"SettingsLinkAccounts_Description": "Scal wiele kont w jedno. Przeglądaj wiadomości z jednej skrzynki odbiorczej razem.",
"SettingsLinkAccounts_Title": "Stwórz połączone konta",
"SettingsLinkedAccountsSave_Description": "Modyfikuj bieżące połączenie z nowymi kontami.",
"SettingsLinkedAccountsSave_Title": "Zapisz zmiany",
"SettingsLoadImages_Title": "Automatycznie wczytuj obrazy",
"SettingsLoadStyles_Title": "Automatycznie wczytuj style",
"SettingsMailSpacing_Description": "Dostosuj odstępy dla wiadomości na liście.",
"SettingsMailSpacing_Title": "Odstępy między wiadomościami",
"SettingsFolderMenuStyle_Title": "Utwórz zagnieżdżone foldery",
"SettingsFolderMenuStyle_Description": "Zmień czy foldery konta powinny być zagnieżdżone wewnątrz pozycji menu konta. Wyłącz, jeśli podoba Ci się stary system menu w Windows Mail",
"SettingsManageAccountSettings_Description": "Powiadomienia, podpisy, synchronizacja i inne ustawienia dla każdego konta osobno.",
"SettingsManageAccountSettings_Title": "Zarządzaj ustawieniami konta",
"SettingsManageLink_Description": "Przenieś elementy, aby dodać nowe połączenie lub usunąć istniejące połączenie.",
"SettingsManageLink_Title": "Zarządzaj połączeniem kont",
"SettingsMarkAsRead_Description": "Zmień, co powinno się stać z zaznaczonym elementem.",
"SettingsMarkAsRead_DontChange": "Nie oznaczaj automatycznie elementu jako przeczytany",
"SettingsMarkAsRead_SecondsToWait": "Sekundy do odczekania: ",
"SettingsMarkAsRead_Timer": "Po wyświetleniu w panelu czytania",
"SettingsMarkAsRead_Title": "Oznacz jako przeczytane",
"SettingsMarkAsRead_WhenSelected": "Gdy zaznaczone",
"SettingsMessageList_Description": "Zmień sposób organizacji wiadomości na liście.",
"SettingsMessageList_Title": "Lista wiadomości",
"SettingsNoAccountSetupMessage": "Nie skonfigurowano jeszcze żadnych kont.",
"SettingsNotifications_Description": "Włącz lub wyłącz powiadomienia dla tego konta.",
"SettingsNotifications_Title": "Powiadomienia",
"SettingsPaneLength_Description": "Zmień szerokość listy wiadomości.",
"SettingsPaneLength_Title": "Długość panelu listy wiadomości",
"SettingsPaypal_Description": "Okaż dużo więcej miłości ❤️ Za wszystkie darowizny dziękuję.",
"SettingsPaypal_Title": "Wspomóż przez PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Tryb kompaktowy",
"SettingsPersonalizationMailDisplayMediumMode": "Tryb umiarkowany",
"SettingsPersonalizationMailDisplaySpaciousMode": "Tryb przestronny",
"SettingsPersonalization_Description": "Zmień wygląd Wino tak, jak chcesz.",
"SettingsPersonalization_Title": "Personalizacja",
"SettingsPrivacyPolicy_Description": "Zapoznaj się z Polityką prywatności.",
"SettingsPrivacyPolicy_Title": "Politykę prywatności",
"SettingsReadingPane_Description": "Opcje wyświetlania wiadomości.",
"SettingsReadingPane_Title": "Panel czytania wiadomości",
"SettingsReaderFont_Title": "Domyślna czcionka przy czytaniu wiadomości",
"SettingsReaderFontFamily_Description": "Zmień domyślny rozmiar czcionki i czcionki do odczytu wiadomości.",
"SettingsFontFamily_Title": "Czcionka",
"SettingsFontSize_Title": "Rozmiar czcionki",
"SettingsFontPreview_Title": "Podgląd",
"SettingsComposerFont_Title": "Domyślna czcionka przy pisaniu wiadomości",
"SettingsComposerFontFamily_Description": "Zmień domyślny rozmiar czcionki i czcionki dla pisanej wiadomości.",
"SettingsRenameMergeAccount_Description": "Zmień wyświetlaną nazwę połączonych kont.",
"SettingsRenameMergeAccount_Title": "Zmień nazwę",
"SettingsSemanticZoom_Description": "To pozwoli Ci kliknąć w nagłówki na liście wiadomości i przejść do określonej daty",
"SettingsSemanticZoom_Title": "Semantyczne powiększenie dla nagłówków dat",
"SettingsShowPreviewText_Description": "Ukryj/pokaż tekst podglądu.",
"SettingsShowPreviewText_Title": "Pokaż podgląd tekstu",
"SettingsShowSenderPictures_Description": "Ukryj/pokaż miniaturki zdjęć nadawcy.",
"SettingsShowSenderPictures_Title": "Pokaż awatary nadawcy",
"SettingsPrefer24HourClock_Title": "Wyświetl czas w formacie 24-godzinnym",
"SettingsPrefer24HourClock_Description": "Czas odbioru wiadomości będzie wyświetlany w formacie 24-godzinnym zamiast 12-godzinnym (AM/PM)",
"SettingsSignature_Description": "Edytuj lub usuń podpis konta",
"SettingsSignature_Title": "Podpis",
"SettingsStartupItem_Description": "Primary account item to load Inbox at startup.",
"SettingsStartupItem_Title": "Startup Item",
"SettingsStore_Description": "Okaż trochę miłości ❤️",
"SettingsStore_Title": "Oceń w sklepie",
"SettingsThreads_Description": "Organizuj wiadomości w wątki konwersacji.",
"SettingsThreads_Title": "Wątkowanie konwersacji",
"SettingsUnlinkAccounts_Description": "Usuń połączenie między kontami. Nie spowoduje to usunięcia Twoich kont.",
"SettingsUnlinkAccounts_Title": "Odłącz konto",
"SortingOption_Date": "według daty",
"SortingOption_Name": "według nazwy",
"StoreRatingDialog_MessageFirstLine": "Wszystkie opinie są mile widziane i znacznie poprawią Wino w przyszłości. Czy chcesz ocenić Wino w Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Czy chcesz ocenić Wino Mail w Microsoft Store?",
"StoreRatingDialog_Title": "Podoba Ci się Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Usunięte wiadomości zostaną przeniesione tutaj.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Usunięty folder",
"SystemFolderConfigDialog_DraftFolderDescription": "Nowe wiadomości/odpowiedzi zostaną tutaj stworzone.",
"SystemFolderConfigDialog_DraftFolderHeader": "Folder wersji roboczych",
"SystemFolderConfigDialog_JunkFolderDescription": "Wszelki spam/wiadomości-śmieci będą tutaj.",
"SystemFolderConfigDialog_JunkFolderHeader": "Folder wiadomości-śmieci/spamu",
"SystemFolderConfigDialog_MessageFirstLine": "Ten serwer IMAP nie obsługuje rozszerzenia SPECIAL-USE, dlatego Wino nie mogło prawidłowo skonfigurować folderów systemowych.",
"SystemFolderConfigDialog_MessageSecondLine": "Proszę wybrać odpowiednie foldery dla określonych funkcji.",
"SystemFolderConfigDialog_SentFolderDescription": "Folder, który wysłał wiadomości zostanie zapisany.",
"SystemFolderConfigDialog_SentFolderHeader": "Folder „Wysłane”",
"SystemFolderConfigDialog_Title": "Konfiguruj foldery systemowe",
"TestingImapConnectionMessage": "Testowanie połączenia z serwerem...",
"Today": "Dzisiaj",
"UnknownAddress": "nieznany adres",
"UnknownDateHeader": "Nieznana data",
"UnknownGroupAddress": "nieznana grupa adresów",
"UnknownSender": "Nieznany nadawca",
"Unsubscribe": "Anuluj subskrypcję",
"ViewContactDetails": "Wyświetl szczegóły",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Ulepsz do nielimitowanych kont",
"WinoUpgradeRemainingAccountsMessage": "Wykorzystano {0} z {1} darmowych kont.",
"Yesterday": "Wczoraj"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "все готово",
"AccountCreationDialog_Initializing": "инициализация",
"AccountCreationDialog_PreparingFolders": "На данный момент мы получаем информацию о папках.",
"AccountCreationDialog_SigninIn": "Данные учетной записи сохраняются.",
"AccountEditDialog_Message": "Имя пользователя",
"AccountEditDialog_Title": "Редактировать учетную запись",
"AccountPickerDialog_Title": "Выберите учетную запись",
"AddHyperlink": "Добавить",
"AutoDiscoveryProgressMessage": "Поиск настроек почты...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Расширенная конфигурация",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Ваши учетные данные будут храниться только локально на вашем компьютере.",
"BasicIMAPSetupDialog_Description": "Некоторые учетные записи требуют дополнительных шагов для входа",
"BasicIMAPSetupDialog_DisplayName": "Отображаемое имя",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "напр. Иван Иванов",
"BasicIMAPSetupDialog_LearnMore": "Подробнее",
"BasicIMAPSetupDialog_MailAddress": "Адрес электронной почты",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "ivanivanov@fabrikam.com",
"BasicIMAPSetupDialog_Password": "Пароль",
"BasicIMAPSetupDialog_Title": "Учетная запись IMAP",
"Buttons_AddAccount": "Добавить учетную запись",
"Buttons_ApplyTheme": "Применить тему",
"Buttons_Browse": "Обзор",
"Buttons_Cancel": "Отмена",
"Buttons_Close": "Закрыть",
"Buttons_Create": "Создать",
"Buttons_CreateAccount": "Создать учетную запись",
"Buttons_Delete": "Удалить",
"Buttons_Discard": "Отклонить",
"Buttons_EnableImageRendering": "Включить",
"Buttons_No": "Нет",
"Buttons_Open": "Открыть",
"Buttons_Purchase": "Купить",
"Buttons_RateWino": "Оцените Wino",
"Buttons_Save": "Сохранить",
"Buttons_SaveConfiguration": "Сохранить конфигурацию",
"Buttons_Share": "Поделиться",
"Buttons_SignIn": "Войти",
"Buttons_Yes": "Да",
"Center": "Центр",
"ComingSoon": "Скоро...",
"ComposerFrom": "От: ",
"ComposerSubject": "Тема: ",
"ComposerTo": "Кому: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "нажмите Enter для ввода адресов",
"CustomThemeBuilder_AccentColorDescription": "Установите пользовательский контрастный цвет, если хотите. Если цвет не выбран, будет использоваться контрастный цвет Windows.",
"CustomThemeBuilder_AccentColorTitle": "Контрастный цвет",
"CustomThemeBuilder_PickColor": "Выбрать",
"CustomThemeBuilder_ThemeNameDescription": "Уникальное имя для пользовательской темы.",
"CustomThemeBuilder_ThemeNameTitle": "Название темы",
"CustomThemeBuilder_Title": "Создатель пользовательских тем",
"CustomThemeBuilder_WallpaperDescription": "Установить пользовательские обои для Wino",
"CustomThemeBuilder_WallpaperTitle": "Установить пользовательские обои",
"DialogMessage_AccountLimitMessage": "Вы достигли предела создания учетной записи.\nХотите приобрести дополнение 'Неограниченная учетная запись', чтобы продолжить?",
"DialogMessage_AccountLimitTitle": "Достигнут лимит учетных записей",
"DialogMessage_CleanupFolderMessage": "Вы хотите навсегда удалить все письма в этой папке?",
"DialogMessage_CleanupFolderTitle": "Очистить папку",
"DialogMessage_ComposerMissingRecipientMessage": "Сообщение не имеет получателя.",
"DialogMessage_ComposerValidationFailedTitle": "Проверка не удалась",
"DialogMessage_CreateLinkedAccountMessage": "Дайте этой связке имя. Учетные записи будут объединены под этим именем.",
"DialogMessage_CreateLinkedAccountTitle": "Название связки учетных записей",
"DialogMessage_DeleteAccountConfirmationMessage": "Удалить {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "Все данные, связанные с этой учетной записью, будут окончательно удалены с диска.",
"DialogMessage_DiscardDraftConfirmationMessage": "Этот черновик будет удален. Вы хотите продолжить?",
"DialogMessage_DiscardDraftConfirmationTitle": "Удалить черновик",
"DialogMessage_HardDeleteConfirmationMessage": "Удалить безвозвратно",
"DialogMessage_HardDeleteConfirmationTitle": "Сообщение(я) будут удалены навсегда. Продолжить?",
"DialogMessage_NoAccountsForCreateMailMessage": "У вас нет учетных записей для создания сообщений.",
"DialogMessage_NoAccountsForCreateMailTitle": "Учетная запись отсутствует",
"DialogMessage_RenameLinkedAccountsMessage": "Введите новое имя для связанных учетных записей",
"DialogMessage_RenameLinkedAccountsTitle": "Переименовать имя связанных учетных записей",
"DialogMessage_UnlinkAccountsConfirmationMessage": "Эта операция не удалит ваши учетные записи, но только нарушает ссылку на соединение с общими папками. Вы хотите продолжить?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Отвязать учетные записи",
"DialogMessage_EmptySubjectConfirmation": "Не указана тема письма",
"DialogMessage_EmptySubjectConfirmationMessage": "Сообщение не имеет темы. Вы хотите продолжить?",
"Dialog_DontAskAgain": "Больше не спрашивать",
"DiscordChannelDisclaimerMessage": "У Wino нет собственного сервера Discord, но специальный канал 'wino-mail' размещен на сервере 'Developer Sanctuary'.\nЧтобы получать обновления о Wino, пожалуйста, присоединитесь к серверу Developer Sanctuary и следите за каналом 'wino-mail' в разделе 'Community Projects'.\n\nВы будете направлены на URL сервера, так как Discord не поддерживает приглашения на канал.",
"DiscordChannelDisclaimerTitle": "Важная информация о Discord",
"Draft": "Черновик",
"EditorToolbarOption_Draw": "Рисование",
"EditorToolbarOption_Format": "Форматирование",
"EditorToolbarOption_Insert": "Вставить",
"EditorToolbarOption_None": "Нет",
"EditorToolbarOption_Options": "Настройки",
"ElementTheme_Dark": "Темная тема",
"ElementTheme_Default": "Использовать системные настройки",
"ElementTheme_Light": "Светлая тема",
"Emoji": "Эмодзи",
"Exception_ImapClientPoolFailed": "Сбой пула клиентов IMAP.",
"Exception_AuthenticationCanceled": "Аутентификация отменена",
"Exception_CustomThemeExists": "Такая тема уже существует.",
"Exception_CustomThemeMissingName": "Необходимо указать название.",
"Exception_CustomThemeMissingWallpaper": "Необходимо предоставить пользовательское фоновое изображение.",
"Exception_FailedToSynchronizeFolders": "Не удалось синхронизировать папки",
"Exception_GoogleAuthCallbackNull": "Callback uri пустой при активации.",
"Exception_GoogleAuthCorruptedCode": "Поврежденный ответ авторизации.",
"Exception_GoogleAuthError": "Ошибка авторизации OAuth: {0}",
"Exception_GoogleAuthInvalidResponse": "Получен запрос с недопустимым состоянием ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Не удалось выполнить обмен кодом авторизации.",
"Exception_InvalidSystemFolderConfiguration": "Конфигурация системных папок неверна. Проверьте конфигурацию и повторите попытку.",
"Exception_NullAssignedAccount": "Назначенная учетная запись пустая",
"Exception_NullAssignedFolder": "Назначенная папка пустая",
"Exception_SynchronizerFailureHTTP": "Не удалось обработать ответ с ошибкой HTTP код {0}",
"Exception_TokenGenerationFailed": "Ошибка генерации токена",
"Exception_TokenInfoRetrivalFailed": "Не удалось получить информацию о токене.",
"Exception_UnknowErrorDuringAuthentication": "Во время аутентификации произошла неизвестная ошибка",
"Exception_UnsupportedAction": "Действие {0} не реализовано в процессоре запросов",
"Exception_UnsupportedProvider": "Этот провайдер не поддерживается.",
"Exception_UnsupportedSynchronizerOperation": "Эта операция не поддерживается для {0}",
"Exception_UserCancelSystemFolderSetupDialog": "Пользователь отменил диалог конфигурации системной папки.",
"Files": "Файлы",
"FilteringOption_All": "Все",
"FilteringOption_Flagged": "Помеченные",
"FilteringOption_Unread": "Непрочитанные",
"Focused": "Фокусировка",
"FolderOperation_CreateSubFolder": "Создать подпапку",
"FolderOperation_Delete": "Удалить",
"FolderOperation_DontSync": "Не синхронизировать эту папку",
"FolderOperation_Empty": "Очистить папку",
"FolderOperation_MarkAllAsRead": "Пометить все как прочитанные",
"FolderOperation_Move": "Переместить",
"DragMoveToFolderCaption": "Переместить в {0}",
"FolderOperation_None": "Нет",
"FolderOperation_Pin": "Закрепить",
"FolderOperation_Rename": "Переименовать",
"FolderOperation_Unpin": "Открепить",
"HoverActionOption_Archive": "Архивировать",
"HoverActionOption_Delete": "Удалить",
"HoverActionOption_MoveJunk": "Переместить в мусор",
"HoverActionOption_ToggleFlag": "Флаг / Убрать флаг",
"HoverActionOption_ToggleRead": "Прочитанное / Непрочитанное",
"MergedAccountCommonFolderInbox": "Входящие",
"MergedAccountCommonFolderSent": "Отправленные",
"MergedAccountCommonFolderDraft": "Черновики",
"MergedAccountCommonFolderJunk": "Мусор",
"MergedAccountCommonFolderTrash": "Удалено",
"MergedAccountCommonFolderArchive": "Архив",
"IMAPSetupDialog_AccountType": "Тип учетной записи",
"IMAPSetupDialog_DisplayName": "Отображаемое имя",
"IMAPSetupDialog_DisplayNamePlaceholder": "напр. Иван Иванов",
"IMAPSetupDialog_IncomingMailServer": "Сервер входящей почты",
"IMAPSetupDialog_IncomingMailServerPort": "Порт",
"IMAPSetupDialog_MailAddress": "Адрес электронной почты",
"IMAPSetupDialog_MailAddressPlaceholder": "кто-то@example.com",
"IMAPSetupDialog_OutgoingMailServer": "Сервер исходящей почты (SMTP)",
"IMAPSetupDialog_OutgoingMailServerPassword": "Пароль сервера исходящей почты",
"IMAPSetupDialog_OutgoingMailServerPort": "Порт",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Сервер исходящей почты требует аутентификации",
"IMAPSetupDialog_OutgoingMailServerUsername": "Имя пользователя исходящей сервера",
"IMAPSetupDialog_Password": "Пароль",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Требовать SSL для входящего сообщения",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Требовать SSL для исходящей почты",
"IMAPSetupDialog_Title": "Расширенная конфигурация IMAP",
"IMAPSetupDialog_UseSameConfig": "Используйте то же имя пользователя и пароль для отправки электронной почты",
"IMAPSetupDialog_Username": "Имя пользователя",
"IMAPSetupDialog_UsernamePlaceholder": "иваниванов, ivanivanov@fabrikam.com, домен/иваниванов",
"ImageRenderingDisabled": "Отображение изображений отключено для этого сообщения.",
"InfoBarAction_Enable": "Включено",
"InfoBarMessage_SynchronizationDisabledFolder": "Эта папка отключена для синхронизации.",
"InfoBarTitle_SynchronizationDisabledFolder": "Папка отключена",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} создано",
"Info_AccountCreatedTitle": "Создание учетной записи",
"Info_AccountCreationFailedTitle": "Не удалось создать учетную запись",
"Info_AccountDeletedMessage": "{0} успешно удалён.",
"Info_AccountDeletedTitle": "Учетная запись удалена",
"Info_AccountIssueFixFailedTitle": "Ошибка",
"Info_AccountIssueFixSuccessMessage": "Исправлены все проблемы с учетной записью.",
"Info_AccountIssueFixSuccessTitle": "Успешно",
"Info_AttachmentOpenFailedMessage": "Не удается открыть это вложение.",
"Info_AttachmentOpenFailedTitle": "Ошибка",
"Info_AttachmentSaveFailedMessage": "Не удается сохранить это вложение.",
"Info_AttachmentSaveFailedTitle": "Ошибка",
"Info_AttachmentSaveSuccessMessage": "Вложение сохранено.",
"Info_AttachmentSaveSuccessTitle": "Вложение сохранено",
"Info_BackgroundExecutionDeniedMessage": "Отказано в выполнении фонового режима. Это может повлиять на фоновую синхронизацию и прямые уведомления.",
"Info_BackgroundExecutionDeniedTitle": "Отказано в выполнении фонового режима",
"Info_BackgroundExecutionUnknownErrorMessage": "Произошла неизвестная ошибка при регистрации фоновой синхронизации.",
"Info_BackgroundExecutionUnknownErrorTitle": "Ошибка исполнения фона",
"Info_ComposerMissingMIMEMessage": "Не удалось найти MIME-файл. Синхронизация может помочь.",
"Info_ComposerMissingMIMETitle": "Ошибка",
"Info_ContactExistsMessage": "Этот контакт уже есть в списке получателей.",
"Info_ContactExistsTitle": "Контакт уже существует",
"Info_DraftFolderMissingMessage": "У этой учетной записи отсутствует папка \"Черновики\". Проверьте настройки учетной записи.",
"Info_DraftFolderMissingTitle": "Отсутствует папка \"Черновики\"",
"Info_FileLaunchFailedTitle": "Не удалось запустить файл",
"Info_InvalidAddressMessage": "'{0}' не является допустимым адресом электронной почты.",
"Info_InvalidAddressTitle": "Недопустимый адрес",
"Info_InvalidMoveTargetMessage": "Вы не можете переместить выбранные письма в эту папку.",
"Info_InvalidMoveTargetTitle": "Недопустимая цель перемещения",
"Info_LogsNotFoundMessage": "Нет журналов для отправки.",
"Info_LogsNotFoundTitle": "Журналы не найдены",
"Info_LogsSavedMessage": "{0} сохранено в выбранную папку.",
"Info_LogsSavedTitle": "Сохранено",
"Info_MailRenderingFailedMessage": "Это письмо повреждено или не может быть открыто.\n{0}",
"Info_MailRenderingFailedTitle": "Ошибка отображения",
"Info_MessageCorruptedMessage": "Это сообщение повреждено.",
"Info_MessageCorruptedTitle": "Ошибка",
"Info_MissingFolderMessage": "{0} не существует для этой учетной записи.",
"Info_MissingFolderTitle": "Отсутствует папка",
"Info_PurchaseExistsMessage": "Похоже, этот товар уже был куплен ранее.",
"Info_PurchaseExistsTitle": "Существующий товар",
"Info_PurchaseThankYouMessage": "Спасибо!",
"Info_PurchaseThankYouTitle": "Покупка прошла успешно",
"Info_RequestCreationFailedTitle": "Не удалось создать запросы",
"Info_ReviewNetworkErrorMessage": "При отправке вашего отзыва возникли проблемы с сетью.",
"Info_ReviewNetworkErrorTitle": "Проблема с сетью",
"Info_ReviewNewMessage": "Все замечания приветствуются. Спасибо за отзыв!",
"Info_ReviewSuccessTitle": "Спасибо!",
"Info_ReviewUnknownErrorMessage": "При отправке вашего отзыва возникла неизвестная проблема. ({0})",
"Info_ReviewUnknownErrorTitle": "Неизвестная ошибка",
"Info_ReviewUpdatedMessage": "Спасибо за обновленный отзыв.",
"Info_SignatureDisabledMessage": "Отключена подпись для этой учетной записи",
"Info_SignatureDisabledTitle": "Успешно",
"Info_SignatureSavedMessage": "Новая подпись сохранена",
"Info_SignatureSavedTitle": "Успешно",
"Info_SyncCanceledMessage": "Отменено",
"Info_SyncCanceledTitle": "Синхронизация",
"Info_SyncFailedTitle": "Ошибка синхронизации",
"Info_UnsupportedFunctionalityDescription": "Эта функция еще не реализована.",
"Info_UnsupportedFunctionalityTitle": "Не поддерживается",
"Info_UnsubscribeLinkInvalidTitle": "Неправильный адрес отписки",
"Info_UnsubscribeLinkInvalidMessage": "Ссылка недействительна. Не удалось отписаться от списка рассылки.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Метод авторизации",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Безопасность соединения",
"ImapAuthenticationMethod_Auto": "Автоматически",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "Без авторизации",
"ImapAuthenticationMethod_Plain": "Обычный пароль",
"ImapAuthenticationMethod_EncryptedPassword": "Зашифрованный пароль",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "Нет",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Автоматически",
"Justify": "Выравнять",
"Left": "Слева",
"Link": "Связать",
"LinkedAccountsCreatePolicyMessage": "Для создания связки у вас должно быть не менее 2 учетных записей\nсвязка будет удалена при сохранении",
"LinkedAccountsTitle": "Связанные учетные записи",
"MailOperation_AlwaysMoveFocused": "Всегда перемещать в Фокусировку",
"MailOperation_AlwaysMoveOther": "Всегда перемещать в Другие",
"MailOperation_Archive": "Архивировать",
"MailOperation_ClearFlag": "Убрать пометку",
"MailOperation_DarkEditor": "Темная тема",
"MailOperation_Delete": "Удалить",
"MailOperation_ExportPDF": "Экспорт в PDF",
"MailOperation_Find": "Найти",
"MailOperation_Forward": "Переслать",
"MailOperation_Ignore": "Игнорировать",
"MailOperation_LightEditor": "Светлая тема",
"MailOperation_MarkAsJunk": "Пометить как мусор",
"MailOperation_MarkAsRead": "Пометить как прочитанное",
"MailOperation_MarkAsUnread": "Пометить как непрочитанное",
"MailOperation_MarkNotJunk": "Пометить как не мусор",
"MailOperation_Move": "Переместить",
"MailOperation_MoveFocused": "Переместить в Фокусировку",
"MailOperation_MoveJunk": "Переместить в мусор",
"MailOperation_MoveOther": "Переместить в Другие",
"MailOperation_Navigate": "Перейти",
"MailOperation_Print": "Печать",
"MailOperation_Reply": "Ответить",
"MailOperation_ReplyAll": "Ответить всем",
"MailOperation_SaveAs": "Сохранить как",
"MailOperation_SetFlag": "Пометить",
"MailOperation_Unarchive": "Вернуть из архива",
"MailOperation_Zoom": "Масштаб",
"MailsSelected": "Выбрано бесед: {0}",
"MarkFlagUnflag": "Пометить как помеченное/неотмеченное",
"MarkReadUnread": "Пометить как прочитанное/непрочитанное",
"MenuManageAccounts": "Учетные записи",
"MenuNewMail": "Новое сообщение",
"MenuMergedAccountItemAccountsSuffix": " учетных записей",
"MenuRate": "Оценить Wino",
"MenuSettings": "Параметры",
"MergedAccountsAvailableAccountsTitle": "Доступные учетные записи",
"More": "Подробнее",
"MoveMailDialog_InvalidFolderMessage": "{0} не является допустимой папкой для этого письма.",
"MoveMailDialog_Title": "Выбрать папку",
"NewAccountDialog_AccountName": "Имя учетной записи",
"NewAccountDialog_AccountNameDefaultValue": "Личная",
"NewAccountDialog_AccountNamePlaceholder": "например \"Личная почта\"",
"NewAccountDialog_Title": "Добавить учетную запись",
"NoMailSelected": "не выбрано сообщение",
"NoMessageCrieteria": "нет сообщений, удовлетворяющих критериям поиска.",
"NoMessageEmptyFolder": "эта папка пуста.",
"Notifications_MultipleNotificationsMessage": "У вас {0} новых писем",
"Notifications_MultipleNotificationsTitle": "Новые письма",
"Notifications_WinoUpdatedMessage": "Ознакомьтесь с новой версией {0}",
"Notifications_WinoUpdatedTitle": "Почта Wino обновлена.",
"Other": "Другое",
"PaneLengthOption_Default": "По умолчанию",
"PaneLengthOption_ExtraLarge": "Очень большая",
"PaneLengthOption_Large": "Большая",
"PaneLengthOption_Medium": "Средняя",
"PaneLengthOption_Micro": "Очень маленькая",
"PaneLengthOption_Small": "Маленькая",
"Photos": "Фотографии",
"PreparingFoldersMessage": "Подготовка папок",
"ProviderDetail_Gmail_Description": "Учетная запись Google",
"ProviderDetail_IMAP_Description": "Пользовательский сервер IMAP/SMTP",
"ProviderDetail_IMAP_Title": "Сервер IMAP",
"Results": "Результаты",
"Right": "Справа",
"SynchronizationFolderReport_Success": "Обновлено",
"SynchronizationFolderReport_Failed": "Сбой синхронизации",
"SearchBarPlaceholder": "Поиск",
"SearchingIn": "Поиск в",
"SettingsAboutGithub_Description": "Перейти к трекеру задач репозитория GitHub.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Добавлять сообщения в папку \"Отправленные\"",
"SettingsAccountManagementAppendMessage_Description": "После отправки черновика создается копия сообщения в папке \"Отправленные\". Включите эту функцию, если вы не видите свои письма в папке \"Отправленные\" после их отправки.",
"SettingsEditLinkedInbox_Title": "Редактировать связанную папку \"Входящие\"",
"SettingsEditLinkedInbox_Description": "Добавляйте/удаляйте учетные записи, переименовывайте или разрывайте связь между ними.",
"SettingsAboutVersion": "Версия ",
"SettingsAboutWinoDescription": "Легкий почтовый клиент для семейства устройств Windows.",
"SettingsAbout_Description": "Узнать больше о Wino.",
"SettingsAbout_Title": "О программе",
"SettingsAccentColor_Description": "Измените цветовую схему приложения",
"SettingsAccentColor_Title": "Цветовая схема",
"SettingsAccentColor_UseWindowsAccentColor": "Использовать цветовую схему Windows",
"SettingsAccountName_Description": "Измените имя учетной записи.",
"SettingsAccountName_Title": "Имя учетной записи",
"SettingsApplicationTheme_Description": "Персонализируйте Wino с помощью различных пользовательских тем приложения по своему вкусу.",
"SettingsApplicationTheme_Title": "Тема приложения",
"SettingsAvailableThemes_Description": "Выберите тему из коллекции Wino на свой вкус или используйте свои собственные темы.",
"SettingsAvailableThemes_Title": "Доступные темы",
"SettingsCustomTheme_Description": "Создайте свою собственную тему с помощью собственных обоев и цветовой схемы.",
"SettingsCustomTheme_Title": "Пользовательская тема",
"SettingsDeleteAccount_Description": "Удалите все письма и учетные данные, связанные с этой учетной записью.",
"SettingsDeleteAccount_Title": "Удалить эту учетную запись",
"SettingsDeleteProtection_Description": "Должен ли Wino запрашивать у вас подтверждение каждый раз, когда вы пытаетесь окончательно удалить письмо с помощью клавиш Shift + Del?",
"SettingsDeleteProtection_Title": "Защита от окончательного удаления",
"SettingsDiagnostics_Description": "Для разработчиков",
"SettingsDiagnostics_Title": "Диагностика",
"SettingsDiscord_Description": "Получайте регулярные обновления о разработке, присоединяйтесь к обсуждениям дорожной карты и делитесь отзывами.",
"SettingsDiscord_Title": "Канал Discord",
"SettingsElementThemeSelectionDisabled": "Выбор режима темы не работает, если выбрана тема приложения, отличная от темы \"По умолчанию\".",
"SettingsElementTheme_Description": "Выберите тему Windows для Wino",
"SettingsElementTheme_Title": "Режим темы",
"SettingsEnableHoverActions_Title": "Включить действия при наведении",
"SettingsEnableIMAPLogs_Description": "Включите эту опцию, чтобы получить подробную информацию о проблемах подключения IMAP, возникших во время настройки сервера IMAP.",
"SettingsEnableIMAPLogs_Title": "Включить журнал протокола IMAP",
"SettingsEnableLogs_Description": "Мне могут понадобиться журналы сбоев для диагностики задач, которые вы открыли на GitHub. Ни один из журналов не раскрывает ваши учетные данные или конфиденциальную информацию.",
"SettingsEnableLogs_Title": "Включить журналы",
"SettingsEnableSignature": "Включить подпись",
"SettingsExpandOnStartup_Description": "Укажите, следует ли Wino разворачивать папки этой учетной записи при запуске.",
"SettingsExpandOnStartup_Title": "Разворачивать меню при загрузке",
"SettingsExternalContent_Description": "Управление настройками внешнего содержимого при отображении писем.",
"SettingsExternalContent_Title": "Внешнее содержимое",
"SettingsFocusedInbox_Description": "Укажите, следует ли разделять папку \"Входящие\" на две папки \"Фокусировка\" - \"Другие\".",
"SettingsFocusedInbox_Title": "Фокусировка",
"SettingsFolderSync_Description": "Включите или отключите синхронизацию определенных папок.",
"SettingsFolderSync_Title": "Синхронизация папок",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Кнопка по центру",
"SettingsHoverActionLeft": "Левая кнопка",
"SettingsHoverActionRight": "Правая кнопка",
"SettingsHoverActions_Description": "Выберите 3 действия, которые будут показаны при наведении курсора на письма.",
"SettingsHoverActions_Title": "Действия при наведении",
"SettingsLanguage_Description": "Изменить язык интерфейса Wino.",
"SettingsLanguage_Title": "Язык интерфейса",
"CategoriesFolderNameOverride": "Категории",
"MoreFolderNameOverride": "Ещё",
"SettingsOptions_Title": "Параметры",
"SettingsLinkAccounts_Description": "Объедините несколько учетных записей в одну. Просматривайте письма из одной папки \"Входящие\".",
"SettingsLinkAccounts_Title": "Создать связанные учетные записи",
"SettingsLinkedAccountsSave_Description": "Изменить текущую привязку на новые учетные записи.",
"SettingsLinkedAccountsSave_Title": "Сохранить изменения",
"SettingsLoadImages_Title": "Автозагрузка изображений",
"SettingsLoadStyles_Title": "Автозагрузка стилей",
"SettingsMailSpacing_Description": "Настройте интервал между письмами.",
"SettingsMailSpacing_Title": "Интервал между письмами",
"SettingsFolderMenuStyle_Title": "Создать вложенные папки",
"SettingsFolderMenuStyle_Description": "Выберите, должны ли папки учетных записей находится внутри пункта меню «Учетные записи». Выключите эту опцию, если вам нравится старая система меню в Почте Windows",
"SettingsManageAccountSettings_Description": "Уведомления, подписи, синхронизация и другие настройки для каждой учетной записи.",
"SettingsManageAccountSettings_Title": "Управление настройками учетной записи",
"SettingsManageLink_Description": "Перемещайте элементы, чтобы добавить новую или удалить существующую привязку.",
"SettingsManageLink_Title": "Управление привязкой",
"SettingsMarkAsRead_Description": "Выберите, что должно произойти с выбранным элементом.",
"SettingsMarkAsRead_DontChange": "Не помечать элементы как прочитанные автоматически",
"SettingsMarkAsRead_SecondsToWait": "Секунд осталось: ",
"SettingsMarkAsRead_Timer": "При просмотре в панели чтения",
"SettingsMarkAsRead_Title": "Пометить как прочитанное",
"SettingsMarkAsRead_WhenSelected": "При выборе",
"SettingsMessageList_Description": "Измените способ организации сообщений в почтовом списке.",
"SettingsMessageList_Title": "Список сообщений",
"SettingsNoAccountSetupMessage": "Вы еще не создали ни одной учетной записи.",
"SettingsNotifications_Description": "Включите или отключите уведомления для этой учетной записи.",
"SettingsNotifications_Title": "Уведомления",
"SettingsPaneLength_Description": "Измените ширину почтового списка.",
"SettingsPaneLength_Title": "Длина панели почтового списка",
"SettingsPaypal_Description": "Проявите больше любви ❤️ Все пожертвования высоко ценятся.",
"SettingsPaypal_Title": "Пожертвовать через PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Компактный режим",
"SettingsPersonalizationMailDisplayMediumMode": "Средний режим",
"SettingsPersonalizationMailDisplaySpaciousMode": "Просторный режим",
"SettingsPersonalization_Description": "Измените внешний вид Wino по своему вкусу.",
"SettingsPersonalization_Title": "Персонализация",
"SettingsPrivacyPolicy_Description": "Ознакомьтесь с политикой конфиденциальности.",
"SettingsPrivacyPolicy_Title": "Политика конфиденциальности",
"SettingsReadingPane_Description": "Параметры отображения почты.",
"SettingsReadingPane_Title": "Панель чтения",
"SettingsReaderFont_Title": "Шрифт по умолчанию",
"SettingsReaderFontFamily_Description": "Измените семейство и размер шрифта по умолчанию для чтения писем.",
"SettingsFontFamily_Title": "Семейство шрифтов",
"SettingsFontSize_Title": "Размер шрифта",
"SettingsFontPreview_Title": "Предпросмотр",
"SettingsComposerFont_Title": "Шрифт редактора по умолчанию",
"SettingsComposerFontFamily_Description": "Измените семейство и размер шрифта по умолчанию при написании писем.",
"SettingsRenameMergeAccount_Description": "Измените отображаемое имя связанных учетных записей.",
"SettingsRenameMergeAccount_Title": "Переименовать",
"SettingsSemanticZoom_Description": "Это позволит вам нажимать на заголовки в списке сообщений и переходить к определенной дате",
"SettingsSemanticZoom_Title": "Семантическое масштабирование заголовков даты",
"SettingsShowPreviewText_Description": "Скрыть/показать текст предпросмотра.",
"SettingsShowPreviewText_Title": "Показать текст предпросмотра",
"SettingsShowSenderPictures_Description": "Скрыть/показать миниатюру изображения отправителя.",
"SettingsShowSenderPictures_Title": "Показывать аватары отправителя",
"SettingsPrefer24HourClock_Title": "24-часовой формат отображения времени",
"SettingsPrefer24HourClock_Description": "Время получения почты будет отображаться в 24-часовом формате вместо 12 (AM/PM)",
"SettingsSignature_Description": "Редактировать или удалить подпись учетной записи",
"SettingsSignature_Title": "Подпись",
"SettingsStartupItem_Description": "Основной элемент учетной записи для загрузки папки \"Входящие\" при запуске.",
"SettingsStartupItem_Title": "Элемент при запуске",
"SettingsStore_Description": "Проявите любовь ❤️",
"SettingsStore_Title": "Оценить в магазине приложений",
"SettingsThreads_Description": "Организуйте сообщения в беседы.",
"SettingsThreads_Title": "Беседы",
"SettingsUnlinkAccounts_Description": "Удалить связь между учетными записями. Это не приведет к удалению учетных записей.",
"SettingsUnlinkAccounts_Title": "Отвязать учетные записи",
"SortingOption_Date": "по дате",
"SortingOption_Name": "по имени",
"StoreRatingDialog_MessageFirstLine": "Все отзывы приветствуются, и они помогут сделать Wino лучше в будущем. Вы хотите оценить Wino в Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Вы хотите оценить Почту Wino в Microsoft Store?",
"StoreRatingDialog_Title": "Вам нравится Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Удаленные сообщения будут перемещены сюда.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Папка \"Удаленные\"",
"SystemFolderConfigDialog_DraftFolderDescription": "Здесь будут создаваться новые письма/ответы.",
"SystemFolderConfigDialog_DraftFolderHeader": "Папка \"Черновики\"",
"SystemFolderConfigDialog_JunkFolderDescription": "Все спам/нежелательные письма будут здесь.",
"SystemFolderConfigDialog_JunkFolderHeader": "Папка \"Спам\"",
"SystemFolderConfigDialog_MessageFirstLine": "Этот IMAP-сервер не поддерживает расширение SPECIAL-USE, поэтому Wino не смог правильно настроить системные папки.",
"SystemFolderConfigDialog_MessageSecondLine": "Пожалуйста, выберите соответствующие папки для определенных функций.",
"SystemFolderConfigDialog_SentFolderDescription": "Папка, в которой будут храниться отправленные сообщения.",
"SystemFolderConfigDialog_SentFolderHeader": "Папка \"Отправленные\"",
"SystemFolderConfigDialog_Title": "Настройка системных папок",
"TestingImapConnectionMessage": "Проверка соединения с сервером...",
"Today": "Сегодня",
"UnknownAddress": "Неизвестный адрес",
"UnknownDateHeader": "Неизвестная дата",
"UnknownGroupAddress": "Неизвестный адрес почтовой группы",
"UnknownSender": "Неизвестный отправитель",
"Unsubscribe": "Отписаться",
"ViewContactDetails": "Показать подробности",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Улучшить до неограниченного количества учетных записей",
"WinoUpgradeRemainingAccountsMessage": "Использовано {0} из {1} бесплатных учетных записей.",
"Yesterday": "Вчера"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "all done",
"AccountCreationDialog_Initializing": "başlatılıyor",
"AccountCreationDialog_PreparingFolders": "Klasör bilgileri yükleniyor.",
"AccountCreationDialog_SigninIn": "Hesap bilgileri kaydediliyor.",
"AccountEditDialog_Message": "Account Name",
"AccountEditDialog_Title": "Hesabı Düzenle",
"AccountPickerDialog_Title": "Pick an account",
"AddHyperlink": "Add",
"AutoDiscoveryProgressMessage": "Searching for mail settings...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Advanced Configuration",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Your credentials will only be stored locally on your computer.",
"BasicIMAPSetupDialog_Description": "Some accounts require additional steps to sign in",
"BasicIMAPSetupDialog_DisplayName": "Display Name",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"BasicIMAPSetupDialog_LearnMore": "Learn more",
"BasicIMAPSetupDialog_MailAddress": "E-Mail Address",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "johndoe@fabrikam.com",
"BasicIMAPSetupDialog_Password": "Password",
"BasicIMAPSetupDialog_Title": "IMAP Account",
"Buttons_AddAccount": "Add Account",
"Buttons_ApplyTheme": "Apply Theme",
"Buttons_Browse": "Browse",
"Buttons_Cancel": "Cancel",
"Buttons_Close": "Close",
"Buttons_Create": "Create",
"Buttons_CreateAccount": "Create Account",
"Buttons_Delete": "Delete",
"Buttons_Discard": "Discard",
"Buttons_EnableImageRendering": "Enable",
"Buttons_No": "No",
"Buttons_Open": "Open",
"Buttons_Purchase": "Purchase",
"Buttons_RateWino": "Rate Wino",
"Buttons_Save": "Save",
"Buttons_SaveConfiguration": "Save Configuration",
"Buttons_Share": "Share",
"Buttons_SignIn": "Sign In",
"Buttons_Yes": "Yes",
"Center": "Center",
"ComingSoon": "Coming soon...",
"ComposerFrom": "From: ",
"ComposerSubject": "Subject: ",
"ComposerTo": "To: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "click enter to input addresses",
"CustomThemeBuilder_AccentColorDescription": "Set custom accent color if you wish. Not selecting a color will use your Windows accent color.",
"CustomThemeBuilder_AccentColorTitle": "Accent color",
"CustomThemeBuilder_PickColor": "Pick",
"CustomThemeBuilder_ThemeNameDescription": "Unique name for your custom theme.",
"CustomThemeBuilder_ThemeNameTitle": "Theme name",
"CustomThemeBuilder_Title": "Custom Theme Builder",
"CustomThemeBuilder_WallpaperDescription": "Set a custom wallpaper for Wino",
"CustomThemeBuilder_WallpaperTitle": "Set custom wallpaper",
"DialogMessage_AccountLimitMessage": "You have reached the account creation limit.\nWould you like to purchase 'Unlimited Account' add-on to continue?",
"DialogMessage_AccountLimitTitle": "Account Limit Reached",
"DialogMessage_CleanupFolderMessage": "Do you want to permanently delete all the mails in this folder?",
"DialogMessage_CleanupFolderTitle": "Cleanup Folder",
"DialogMessage_ComposerMissingRecipientMessage": "Message has no recipient.",
"DialogMessage_ComposerValidationFailedTitle": "Validation Failed",
"DialogMessage_CreateLinkedAccountMessage": "Give this new link a name. Accounts will be merged under this name.",
"DialogMessage_CreateLinkedAccountTitle": "Account Link Name",
"DialogMessage_DeleteAccountConfirmationMessage": "Delete {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "All data associated with this account will be deleted from disk permanently.",
"DialogMessage_DiscardDraftConfirmationMessage": "This draft will be discarded. Do you want to continue?",
"DialogMessage_DiscardDraftConfirmationTitle": "Discard Draft",
"DialogMessage_HardDeleteConfirmationMessage": "Permanent Delete",
"DialogMessage_HardDeleteConfirmationTitle": "Message(s) will be permanently deleted. Do you want to continue?",
"DialogMessage_NoAccountsForCreateMailMessage": "You don't have any accounts to create message from.",
"DialogMessage_NoAccountsForCreateMailTitle": "Account Missing",
"DialogMessage_RenameLinkedAccountsMessage": "Enter new name for linked account",
"DialogMessage_RenameLinkedAccountsTitle": "Rename Linked Account",
"DialogMessage_UnlinkAccountsConfirmationMessage": "This operation will not delete your accounts but only break the link for shared folder connections. Do you want to continue?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Unlink Accounts",
"DialogMessage_EmptySubjectConfirmation": "Missin Subject",
"DialogMessage_EmptySubjectConfirmationMessage": "Message has no subject. Do you want to continue?",
"Dialog_DontAskAgain": "Don't ask again",
"DiscordChannelDisclaimerMessage": "Wino doesn't have it's own Discord server, but special 'wino-mail' channel is hosted at 'Developer Sanctuary' server.\nTo get the updates about Wino please join Developer Sanctuary server and follow 'wino-mail' channel under 'Community Projects'\n\nYou will be directed to server URL since Discord doesn't support channel invites.",
"DiscordChannelDisclaimerTitle": "Important Discord Information",
"Draft": "Draft",
"EditorToolbarOption_Draw": "Draw",
"EditorToolbarOption_Format": "Format",
"EditorToolbarOption_Insert": "Insert",
"EditorToolbarOption_None": "None",
"EditorToolbarOption_Options": "Options",
"ElementTheme_Dark": "Dark mode",
"ElementTheme_Default": "Use system setting",
"ElementTheme_Light": "Light mode",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "IMAP Client Pool failed.",
"Exception_AuthenticationCanceled": "Authentication canceled",
"Exception_CustomThemeExists": "This theme already exists.",
"Exception_CustomThemeMissingName": "You must provide a name.",
"Exception_CustomThemeMissingWallpaper": "You must provide a custom background image.",
"Exception_FailedToSynchronizeFolders": "Failed to synchronize folders",
"Exception_GoogleAuthCallbackNull": "Callback uri is null on activation.",
"Exception_GoogleAuthCorruptedCode": "Corrupted authorization response.",
"Exception_GoogleAuthError": "OAuth authorization error: {0}",
"Exception_GoogleAuthInvalidResponse": "Received request with invalid state ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Authorization code exchange failed.",
"Exception_InvalidSystemFolderConfiguration": "System folder configuration is not valid. Check configuration and try again.",
"Exception_NullAssignedAccount": "Assigned account is null",
"Exception_NullAssignedFolder": "Assigned folder is null",
"Exception_SynchronizerFailureHTTP": "Response handling failed with error HTTP code {0}",
"Exception_TokenGenerationFailed": "Token generation failed",
"Exception_TokenInfoRetrivalFailed": "Failed to get token information.",
"Exception_UnknowErrorDuringAuthentication": "Unknown error occurred during authentication",
"Exception_UnsupportedAction": "Action {0} is not implemented in request processor",
"Exception_UnsupportedProvider": "This provider is not supported.",
"Exception_UnsupportedSynchronizerOperation": "This operation is not supported for {0}",
"Exception_UserCancelSystemFolderSetupDialog": "User canceled system folder config dialog.",
"Files": "Files",
"FilteringOption_All": "All",
"FilteringOption_Flagged": "Flagged",
"FilteringOption_Unread": "Unread",
"Focused": "Focused",
"FolderOperation_CreateSubFolder": "Create sub folder",
"FolderOperation_Delete": "Delete",
"FolderOperation_DontSync": "Don't sync this folder",
"FolderOperation_Empty": "Empty this folder",
"FolderOperation_MarkAllAsRead": "Mark all as read",
"FolderOperation_Move": "Move",
"DragMoveToFolderCaption": "Move to {0}",
"FolderOperation_None": "None",
"FolderOperation_Pin": "Pin",
"FolderOperation_Rename": "Rename",
"FolderOperation_Unpin": "Unpin",
"HoverActionOption_Archive": "Archive",
"HoverActionOption_Delete": "Delete",
"HoverActionOption_MoveJunk": "Move to Junk",
"HoverActionOption_ToggleFlag": "Flag / Unflag",
"HoverActionOption_ToggleRead": "Read / Unread",
"MergedAccountCommonFolderInbox": "Inbox",
"MergedAccountCommonFolderSent": "Sent",
"MergedAccountCommonFolderDraft": "Draft",
"MergedAccountCommonFolderJunk": "Junk",
"MergedAccountCommonFolderTrash": "Deleted",
"MergedAccountCommonFolderArchive": "Archive",
"IMAPSetupDialog_AccountType": "Account type",
"IMAPSetupDialog_DisplayName": "Display Name",
"IMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"IMAPSetupDialog_IncomingMailServer": "Incoming mail server",
"IMAPSetupDialog_IncomingMailServerPort": "Port",
"IMAPSetupDialog_MailAddress": "Email address",
"IMAPSetupDialog_MailAddressPlaceholder": "someone@example.com",
"IMAPSetupDialog_OutgoingMailServer": "Outgoing (SMTP) mail server",
"IMAPSetupDialog_OutgoingMailServerPassword": "Outgoing server password",
"IMAPSetupDialog_OutgoingMailServerPort": "Port",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Outgoing server requires authentication",
"IMAPSetupDialog_OutgoingMailServerUsername": "Outgoing server user name",
"IMAPSetupDialog_Password": "Password",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Require SSL for incoming email",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Require SSL for outgoing email",
"IMAPSetupDialog_Title": "Advanced IMAP Configuration",
"IMAPSetupDialog_UseSameConfig": "Use the same username and password for sending email",
"IMAPSetupDialog_Username": "Username",
"IMAPSetupDialog_UsernamePlaceholder": "johndoe, johndoe@fabrikam.com, domain/johndoe",
"ImageRenderingDisabled": "Image rendering is disabled for this message.",
"InfoBarAction_Enable": "Enable",
"InfoBarMessage_SynchronizationDisabledFolder": "This folder is disabled for synchronization.",
"InfoBarTitle_SynchronizationDisabledFolder": "Disabled Folder",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} is created",
"Info_AccountCreatedTitle": "Account Creation",
"Info_AccountCreationFailedTitle": "Account Creation Failed",
"Info_AccountDeletedMessage": "{0} is successfuly deleted.",
"Info_AccountDeletedTitle": "Account Deleted",
"Info_AccountIssueFixFailedTitle": "Failed",
"Info_AccountIssueFixSuccessMessage": "Fixed all account issues.",
"Info_AccountIssueFixSuccessTitle": "Success",
"Info_AttachmentOpenFailedMessage": "Can't open this attachment.",
"Info_AttachmentOpenFailedTitle": "Failed",
"Info_AttachmentSaveFailedMessage": "Can't save this attachment.",
"Info_AttachmentSaveFailedTitle": "Failed",
"Info_AttachmentSaveSuccessMessage": "Attachment is saved.",
"Info_AttachmentSaveSuccessTitle": "Attachment Saved",
"Info_BackgroundExecutionDeniedMessage": "Background execution for the app is denied. This may affect background synchronization and live notifications.",
"Info_BackgroundExecutionDeniedTitle": "Denied Background Execution",
"Info_BackgroundExecutionUnknownErrorMessage": "Unknown exception occurred when registering background synchronizer.",
"Info_BackgroundExecutionUnknownErrorTitle": "Background Execution Failure",
"Info_ComposerMissingMIMEMessage": "Couldn't locate the MIME file. Synchronizing may help.",
"Info_ComposerMissingMIMETitle": "Failed",
"Info_ContactExistsMessage": "This contact is already in the recipient list.",
"Info_ContactExistsTitle": "Contact Exists",
"Info_DraftFolderMissingMessage": "Draft folder is missing for this account. Please check your account settings.",
"Info_DraftFolderMissingTitle": "Missing Draft Folder",
"Info_FileLaunchFailedTitle": "Failed to launch file",
"Info_InvalidAddressMessage": "'{0}' is not a valid e-mail address.",
"Info_InvalidAddressTitle": "Invalid Address",
"Info_InvalidMoveTargetMessage": "You can't move selected mails to this folder.",
"Info_InvalidMoveTargetTitle": "Invalid Move Target",
"Info_LogsNotFoundMessage": "There are no logs to share.",
"Info_LogsNotFoundTitle": "Logs Not Found",
"Info_LogsSavedMessage": "{0} is saved to selected folder.",
"Info_LogsSavedTitle": "Saved",
"Info_MailRenderingFailedMessage": "This mail is corrupted or can't be opened.\n{0}",
"Info_MailRenderingFailedTitle": "Render Failed",
"Info_MessageCorruptedMessage": "This message is corrupted.",
"Info_MessageCorruptedTitle": "Error",
"Info_MissingFolderMessage": "{0} doesn't exist for this account.",
"Info_MissingFolderTitle": "Missing Folder",
"Info_PurchaseExistsMessage": "Looks like this product has already been purchased before.",
"Info_PurchaseExistsTitle": "Existing Product",
"Info_PurchaseThankYouMessage": "Thank You",
"Info_PurchaseThankYouTitle": "Purchase successful",
"Info_RequestCreationFailedTitle": "Failed to Create Requests",
"Info_ReviewNetworkErrorMessage": "There was a network issue with your review.",
"Info_ReviewNetworkErrorTitle": "Network Issue",
"Info_ReviewNewMessage": "All feedbacks are appreciated. Thank you for the review!",
"Info_ReviewSuccessTitle": "Thank you",
"Info_ReviewUnknownErrorMessage": "There was an unknown issue with your review. ({0})",
"Info_ReviewUnknownErrorTitle": "Unknown Error",
"Info_ReviewUpdatedMessage": "Thank you for the updated review.",
"Info_SignatureDisabledMessage": "Disabled signature for this account",
"Info_SignatureDisabledTitle": "Success",
"Info_SignatureSavedMessage": "New signature is saved",
"Info_SignatureSavedTitle": "Success",
"Info_SyncCanceledMessage": "Canceled",
"Info_SyncCanceledTitle": "Synchronization",
"Info_SyncFailedTitle": "Synchronization Failed",
"Info_UnsupportedFunctionalityDescription": "This functionality is not implemented yet.",
"Info_UnsupportedFunctionalityTitle": "Unsupported",
"Info_UnsubscribeLinkInvalidTitle": "Invalid Unsubscribe Uri",
"Info_UnsubscribeLinkInvalidMessage": "This unsubscribe link is invalid. Failed to unsubscribe from the list.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Authentication method",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Connection security",
"ImapAuthenticationMethod_Auto": "Auto",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "No authentication",
"ImapAuthenticationMethod_Plain": "Normal password",
"ImapAuthenticationMethod_EncryptedPassword": "Encrypted password",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "None",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Auto",
"Justify": "Justify",
"Left": "Left",
"Link": "Link",
"LinkedAccountsCreatePolicyMessage": "you must have at least 2 accounts to create link\nlink will be removed on save",
"LinkedAccountsTitle": "Linked Accounts",
"MailOperation_AlwaysMoveFocused": "Always Move to Focused",
"MailOperation_AlwaysMoveOther": "Always Move to Other",
"MailOperation_Archive": "Archive",
"MailOperation_ClearFlag": "Clear flag",
"MailOperation_DarkEditor": "Dark",
"MailOperation_Delete": "Delete",
"MailOperation_ExportPDF": "Export to PDF",
"MailOperation_Find": "Find",
"MailOperation_Forward": "Forward",
"MailOperation_Ignore": "Ignore",
"MailOperation_LightEditor": "Light",
"MailOperation_MarkAsJunk": "Mark as junk",
"MailOperation_MarkAsRead": "Mark as read",
"MailOperation_MarkAsUnread": "Mark as unread",
"MailOperation_MarkNotJunk": "Mark as Not Junk",
"MailOperation_Move": "Move",
"MailOperation_MoveFocused": "Move to Focused",
"MailOperation_MoveJunk": "Move to Junk",
"MailOperation_MoveOther": "Move to Other",
"MailOperation_Navigate": "Navigate",
"MailOperation_Print": "Print",
"MailOperation_Reply": "Reply",
"MailOperation_ReplyAll": "Reply all",
"MailOperation_SaveAs": "Save As",
"MailOperation_SetFlag": "Set flag",
"MailOperation_Unarchive": "Unarchive",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} item(s) selected",
"MarkFlagUnflag": "Mark as flagged/unflagged",
"MarkReadUnread": "Mark as read/unread",
"MenuManageAccounts": "Manage Accounts",
"MenuNewMail": "New Mail",
"MenuMergedAccountItemAccountsSuffix": " accounts",
"MenuRate": "Rate Wino",
"MenuSettings": "Settings",
"MergedAccountsAvailableAccountsTitle": "Available Accounts",
"More": "More",
"MoveMailDialog_InvalidFolderMessage": "{0} is not a valid folder for this mail.",
"MoveMailDialog_Title": "Pick a folder",
"NewAccountDialog_AccountName": "Account Name",
"NewAccountDialog_AccountNameDefaultValue": "Personal",
"NewAccountDialog_AccountNamePlaceholder": "eg. Personal Mail",
"NewAccountDialog_Title": "Add New Account",
"NoMailSelected": "no message selected",
"NoMessageCrieteria": "no messages match your search criteria.",
"NoMessageEmptyFolder": "this folder is empty.",
"Notifications_MultipleNotificationsMessage": "You have {0} new mails",
"Notifications_MultipleNotificationsTitle": "New Mails",
"Notifications_WinoUpdatedMessage": "Checkout new version {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail has been updated.",
"Other": "Other",
"PaneLengthOption_Default": "Default",
"PaneLengthOption_ExtraLarge": "Extra Large",
"PaneLengthOption_Large": "Large",
"PaneLengthOption_Medium": "Medium",
"PaneLengthOption_Micro": "Micro",
"PaneLengthOption_Small": "Small",
"Photos": "Photos",
"PreparingFoldersMessage": "Preparing folders",
"ProviderDetail_Gmail_Description": "Google Account",
"ProviderDetail_IMAP_Description": "Custom IMAP/SMTP server",
"ProviderDetail_IMAP_Title": "IMAP Server",
"Results": "Results",
"Right": "Right",
"SynchronizationFolderReport_Success": "up to date",
"SynchronizationFolderReport_Failed": "synchronization is failed",
"SearchBarPlaceholder": "search",
"SearchingIn": "searching in",
"SettingsAboutGithub_Description": "Go to issue tracker GitHub repository.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Append messages to Sent folder",
"SettingsAccountManagementAppendMessage_Description": "Create a copy of the message in Sent folder after the draft is sent. Enable this if you don't see your mails after you sent them in Sent folder.",
"SettingsEditLinkedInbox_Title": "Edit Linked Inbox",
"SettingsEditLinkedInbox_Description": "Add / remove accounts, rename or break the link between accounts.",
"SettingsAboutVersion": "Version ",
"SettingsAboutWinoDescription": "Lightweight mail client for Windows device families.",
"SettingsAbout_Description": "Learn more about Wino.",
"SettingsAbout_Title": "About",
"SettingsAccentColor_Description": "Change application's accent color",
"SettingsAccentColor_Title": "Accent Color",
"SettingsAccentColor_UseWindowsAccentColor": "Use my Windows accent color",
"SettingsAccountName_Description": "Change the name of the account.",
"SettingsAccountName_Title": "Account Name",
"SettingsApplicationTheme_Description": "Personalize Wino with different custom application themes for your like.",
"SettingsApplicationTheme_Title": "Application Theme",
"SettingsAvailableThemes_Description": "Select a theme from Wino's own collection for your taste or apply your own themes.",
"SettingsAvailableThemes_Title": "Available Themes",
"SettingsCustomTheme_Description": "Create your own custom theme with custom wallpaper and accent color.",
"SettingsCustomTheme_Title": "Custom Theme",
"SettingsDeleteAccount_Description": "Delete all e-mails and credentials associated with this account.",
"SettingsDeleteAccount_Title": "Delete this account",
"SettingsDeleteProtection_Description": "Should Wino ask you for comfirmation every time you try to permanently delete a mail using Shift + Del keys?",
"SettingsDeleteProtection_Title": "Permanent Delete Protection",
"SettingsDiagnostics_Description": "For developers",
"SettingsDiagnostics_Title": "Diagnostics",
"SettingsDiscord_Description": "Get regular development updates, join roadmap discussions and provide feedback.",
"SettingsDiscord_Title": "Discord Channel",
"SettingsElementThemeSelectionDisabled": "Element theme selection is disabled when application theme is selected other than Default.",
"SettingsElementTheme_Description": "Select a Windows theme for Wino",
"SettingsElementTheme_Title": "Element Theme",
"SettingsEnableHoverActions_Title": "Enable hover actions",
"SettingsEnableIMAPLogs_Description": "Enable this to provide details about IMAP connectivity issuses you had during IMAP server setup.",
"SettingsEnableIMAPLogs_Title": "Enable IMAP Protocol Logs",
"SettingsEnableLogs_Description": "I might need logs for crashes to diagnose issues you have opened in GitHub. None of the logs will expose your credentials or sensetive information to public.",
"SettingsEnableLogs_Title": "Enable Logs",
"SettingsEnableSignature": "Enable Signature",
"SettingsExpandOnStartup_Description": "Set whether Wino should expand this account's folders on startup.",
"SettingsExpandOnStartup_Title": "Expand Menu on Startup",
"SettingsExternalContent_Description": "Manage external content settings when rendering mails.",
"SettingsExternalContent_Title": "External Content",
"SettingsFocusedInbox_Description": "Set whether Inbox should be split into two as Focused - Other.",
"SettingsFocusedInbox_Title": "Focused Inbox",
"SettingsFolderSync_Description": "Enable or disable specific folders for synchronization.",
"SettingsFolderSync_Title": "Folder Synchronization",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Center Action",
"SettingsHoverActionLeft": "Left Action",
"SettingsHoverActionRight": "Right Action",
"SettingsHoverActions_Description": "Select 3 actions to show up when you hover over the mails with cursor.",
"SettingsHoverActions_Title": "Hover Actions",
"SettingsLanguage_Description": "Change display language for Wino.",
"SettingsLanguage_Title": "Display Language",
"CategoriesFolderNameOverride": "Categories",
"MoreFolderNameOverride": "More",
"SettingsOptions_Title": "Settings",
"SettingsLinkAccounts_Description": "Merge multiple accounts into one. See mails from one Inbox together.",
"SettingsLinkAccounts_Title": "Create Linked Accounts",
"SettingsLinkedAccountsSave_Description": "Modify the current link with the new accounts.",
"SettingsLinkedAccountsSave_Title": "Save Changes",
"SettingsLoadImages_Title": "Load images automatically",
"SettingsLoadStyles_Title": "Load styles automatically",
"SettingsMailSpacing_Description": "Adjust the spacing for listing mails.",
"SettingsMailSpacing_Title": "Mail Spacing",
"SettingsFolderMenuStyle_Title": "Create Nested Folders",
"SettingsFolderMenuStyle_Description": "Change whether account folders should be nested inside an account menu item or not. Toggle this off if you like the old menu system in Windows Mail",
"SettingsManageAccountSettings_Description": "Notifications, signatures, synchronization and other settings per account.",
"SettingsManageAccountSettings_Title": "Manage Account Settings",
"SettingsManageLink_Description": "Move items to add new link or remove existing link.",
"SettingsManageLink_Title": "Manage Link",
"SettingsMarkAsRead_Description": "Change what should happen to the selected item.",
"SettingsMarkAsRead_DontChange": "Don't automatically mark item as read",
"SettingsMarkAsRead_SecondsToWait": "Seconds to wait: ",
"SettingsMarkAsRead_Timer": "When viewed in the reading pane",
"SettingsMarkAsRead_Title": "Mark item as read",
"SettingsMarkAsRead_WhenSelected": "When selected",
"SettingsMessageList_Description": "Change how your messages should be organized in mail list.",
"SettingsMessageList_Title": "Message List",
"SettingsNoAccountSetupMessage": "You didn't setup any accounts yet.",
"SettingsNotifications_Description": "Turn on or off notifications for this account.",
"SettingsNotifications_Title": "Notifications",
"SettingsPaneLength_Description": "Change the width of the mail list.",
"SettingsPaneLength_Title": "Mail List Pane Length",
"SettingsPaypal_Description": "Show much more love ❤️ All donations are appreciated.",
"SettingsPaypal_Title": "Donate via PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Compact Mode",
"SettingsPersonalizationMailDisplayMediumMode": "Medium Mode",
"SettingsPersonalizationMailDisplaySpaciousMode": "Spacious Mode",
"SettingsPersonalization_Description": "Change appearance of Wino as you like.",
"SettingsPersonalization_Title": "Personalization",
"SettingsPrivacyPolicy_Description": "Review privacy policy.",
"SettingsPrivacyPolicy_Title": "Privacy Policy",
"SettingsReadingPane_Description": "Mail rendering options.",
"SettingsReadingPane_Title": "Reading Pane",
"SettingsReaderFont_Title": "Default Reader Font",
"SettingsReaderFontFamily_Description": "Change the default font family and font size for reading mails.",
"SettingsFontFamily_Title": "Font Family",
"SettingsFontSize_Title": "Font Size",
"SettingsFontPreview_Title": "Preview",
"SettingsComposerFont_Title": "Default Composer Font",
"SettingsComposerFontFamily_Description": "Change the default font family and font size for composing mails.",
"SettingsRenameMergeAccount_Description": "Change the display name of the linked accounts.",
"SettingsRenameMergeAccount_Title": "Rename",
"SettingsSemanticZoom_Description": "This will allow you to click on the headers in messages list and go to specific date",
"SettingsSemanticZoom_Title": "Semantic Zoom for Date Headers",
"SettingsShowPreviewText_Description": "Hide/show thepreview text.",
"SettingsShowPreviewText_Title": "Show Preview Text",
"SettingsShowSenderPictures_Description": "Hide/show the thumbnail sender pictures.",
"SettingsShowSenderPictures_Title": "Show Sender Avatars",
"SettingsPrefer24HourClock_Title": "Display Clock Format in 24 Hours",
"SettingsPrefer24HourClock_Description": "Mail recieve times will be displayed in 24 hour format instead of 12 (AM/PM)",
"SettingsSignature_Description": "Edit or remove account signature",
"SettingsSignature_Title": "Signature",
"SettingsStartupItem_Description": "Primary account item to load Inbox at startup.",
"SettingsStartupItem_Title": "Startup Item",
"SettingsStore_Description": "Show some love ❤️",
"SettingsStore_Title": "Rate in Store",
"SettingsThreads_Description": "Organize messages into conversation threads.",
"SettingsThreads_Title": "Conversation Threading",
"SettingsUnlinkAccounts_Description": "Remove the link between accounts. This will not delete your accounts.",
"SettingsUnlinkAccounts_Title": "Unlink Accounts",
"SortingOption_Date": "by date",
"SortingOption_Name": "by name",
"StoreRatingDialog_MessageFirstLine": "All feedbacks are appreciated and they will make much Wino better in the future. Would you like to rate Wino in Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Would you like to rate Wino Mail in Microsoft Store?",
"StoreRatingDialog_Title": "Enjoying Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Deleted messages will be moved to here.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Deleted Folder",
"SystemFolderConfigDialog_DraftFolderDescription": "New mails/replies will be crafted in here.",
"SystemFolderConfigDialog_DraftFolderHeader": "Draft Folder",
"SystemFolderConfigDialog_JunkFolderDescription": "All spam/junk mails will be here.",
"SystemFolderConfigDialog_JunkFolderHeader": "Junk/Spam Folder",
"SystemFolderConfigDialog_MessageFirstLine": "This IMAP server doesn't support SPECIAL-USE extension hence Wino couldn't setup the system folders properly.",
"SystemFolderConfigDialog_MessageSecondLine": "Please select the appropriate folders for specific functionalities.",
"SystemFolderConfigDialog_SentFolderDescription": "Folder that sent messages will be stored.",
"SystemFolderConfigDialog_SentFolderHeader": "Sent Folder",
"SystemFolderConfigDialog_Title": "Configure System Folders",
"TestingImapConnectionMessage": "Testing server connection...",
"Today": "Today",
"UnknownAddress": "unknown address",
"UnknownDateHeader": "Unknown Date",
"UnknownGroupAddress": "unknown Mail Group Address",
"UnknownSender": "Unknown Sender",
"Unsubscribe": "Unsubscribe",
"ViewContactDetails": "View Details",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Upgrade to Unlimited Accounts",
"WinoUpgradeRemainingAccountsMessage": "{0} out of {1} free accounts used.",
"Yesterday": "Yesterday"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "all done",
"AccountCreationDialog_Initializing": "initializing",
"AccountCreationDialog_PreparingFolders": "We are getting folder information at the moment.",
"AccountCreationDialog_SigninIn": "Account information is being saved.",
"AccountEditDialog_Message": "Account Name",
"AccountEditDialog_Title": "Edit Account",
"AccountPickerDialog_Title": "Pick an account",
"AddHyperlink": "Add",
"AutoDiscoveryProgressMessage": "Searching for mail settings...",
"BasicIMAPSetupDialog_AdvancedConfiguration": "Advanced Configuration",
"BasicIMAPSetupDialog_CredentialLocalMessage": "Your credentials will only be stored locally on your computer.",
"BasicIMAPSetupDialog_Description": "Some accounts require additional steps to sign in",
"BasicIMAPSetupDialog_DisplayName": "Display Name",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"BasicIMAPSetupDialog_LearnMore": "Learn more",
"BasicIMAPSetupDialog_MailAddress": "E-Mail Address",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "johndoe@fabrikam.com",
"BasicIMAPSetupDialog_Password": "Password",
"BasicIMAPSetupDialog_Title": "IMAP Account",
"Buttons_AddAccount": "Add Account",
"Buttons_ApplyTheme": "Apply Theme",
"Buttons_Browse": "Browse",
"Buttons_Cancel": "Cancel",
"Buttons_Close": "Close",
"Buttons_Create": "Create",
"Buttons_CreateAccount": "Create Account",
"Buttons_Delete": "Delete",
"Buttons_Discard": "Discard",
"Buttons_EnableImageRendering": "Enable",
"Buttons_No": "No",
"Buttons_Open": "Open",
"Buttons_Purchase": "Purchase",
"Buttons_RateWino": "Rate Wino",
"Buttons_Save": "Save",
"Buttons_SaveConfiguration": "Save Configuration",
"Buttons_Share": "Share",
"Buttons_SignIn": "Sign In",
"Buttons_Yes": "Yes",
"Center": "Center",
"ComingSoon": "Coming soon...",
"ComposerFrom": "From: ",
"ComposerSubject": "Subject: ",
"ComposerTo": "To: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "click enter to input addresses",
"CustomThemeBuilder_AccentColorDescription": "Set custom accent color if you wish. Not selecting a color will use your Windows accent color.",
"CustomThemeBuilder_AccentColorTitle": "Accent color",
"CustomThemeBuilder_PickColor": "Pick",
"CustomThemeBuilder_ThemeNameDescription": "Unique name for your custom theme.",
"CustomThemeBuilder_ThemeNameTitle": "Theme name",
"CustomThemeBuilder_Title": "Custom Theme Builder",
"CustomThemeBuilder_WallpaperDescription": "Set a custom wallpaper for Wino",
"CustomThemeBuilder_WallpaperTitle": "Set custom wallpaper",
"DialogMessage_AccountLimitMessage": "You have reached the account creation limit.\nWould you like to purchase 'Unlimited Account' add-on to continue?",
"DialogMessage_AccountLimitTitle": "Account Limit Reached",
"DialogMessage_CleanupFolderMessage": "Do you want to permanently delete all the mails in this folder?",
"DialogMessage_CleanupFolderTitle": "Cleanup Folder",
"DialogMessage_ComposerMissingRecipientMessage": "Message has no recipient.",
"DialogMessage_ComposerValidationFailedTitle": "Validation Failed",
"DialogMessage_CreateLinkedAccountMessage": "Give this new link a name. Accounts will be merged under this name.",
"DialogMessage_CreateLinkedAccountTitle": "Account Link Name",
"DialogMessage_DeleteAccountConfirmationMessage": "Delete {0}?",
"DialogMessage_DeleteAccountConfirmationTitle": "All data associated with this account will be deleted from disk permanently.",
"DialogMessage_DiscardDraftConfirmationMessage": "This draft will be discarded. Do you want to continue?",
"DialogMessage_DiscardDraftConfirmationTitle": "Discard Draft",
"DialogMessage_HardDeleteConfirmationMessage": "Permanent Delete",
"DialogMessage_HardDeleteConfirmationTitle": "Message(s) will be permanently deleted. Do you want to continue?",
"DialogMessage_NoAccountsForCreateMailMessage": "You don't have any accounts to create message from.",
"DialogMessage_NoAccountsForCreateMailTitle": "Account Missing",
"DialogMessage_RenameLinkedAccountsMessage": "Enter new name for linked account",
"DialogMessage_RenameLinkedAccountsTitle": "Rename Linked Account",
"DialogMessage_UnlinkAccountsConfirmationMessage": "This operation will not delete your accounts but only break the link for shared folder connections. Do you want to continue?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "Unlink Accounts",
"DialogMessage_EmptySubjectConfirmation": "Missin Subject",
"DialogMessage_EmptySubjectConfirmationMessage": "Message has no subject. Do you want to continue?",
"Dialog_DontAskAgain": "Don't ask again",
"DiscordChannelDisclaimerMessage": "Wino doesn't have it's own Discord server, but special 'wino-mail' channel is hosted at 'Developer Sanctuary' server.\nTo get the updates about Wino please join Developer Sanctuary server and follow 'wino-mail' channel under 'Community Projects'\n\nYou will be directed to server URL since Discord doesn't support channel invites.",
"DiscordChannelDisclaimerTitle": "Important Discord Information",
"Draft": "Draft",
"EditorToolbarOption_Draw": "Draw",
"EditorToolbarOption_Format": "Format",
"EditorToolbarOption_Insert": "Insert",
"EditorToolbarOption_None": "None",
"EditorToolbarOption_Options": "Options",
"ElementTheme_Dark": "Dark mode",
"ElementTheme_Default": "Use system setting",
"ElementTheme_Light": "Light mode",
"Emoji": "Emoji",
"Exception_ImapClientPoolFailed": "IMAP Client Pool failed.",
"Exception_AuthenticationCanceled": "Authentication canceled",
"Exception_CustomThemeExists": "This theme already exists.",
"Exception_CustomThemeMissingName": "You must provide a name.",
"Exception_CustomThemeMissingWallpaper": "You must provide a custom background image.",
"Exception_FailedToSynchronizeFolders": "Failed to synchronize folders",
"Exception_GoogleAuthCallbackNull": "Callback uri is null on activation.",
"Exception_GoogleAuthCorruptedCode": "Corrupted authorization response.",
"Exception_GoogleAuthError": "OAuth authorization error: {0}",
"Exception_GoogleAuthInvalidResponse": "Received request with invalid state ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "Authorization code exchange failed.",
"Exception_InvalidSystemFolderConfiguration": "System folder configuration is not valid. Check configuration and try again.",
"Exception_NullAssignedAccount": "Assigned account is null",
"Exception_NullAssignedFolder": "Assigned folder is null",
"Exception_SynchronizerFailureHTTP": "Response handling failed with error HTTP code {0}",
"Exception_TokenGenerationFailed": "Token generation failed",
"Exception_TokenInfoRetrivalFailed": "Failed to get token information.",
"Exception_UnknowErrorDuringAuthentication": "Unknown error occurred during authentication",
"Exception_UnsupportedAction": "Action {0} is not implemented in request processor",
"Exception_UnsupportedProvider": "This provider is not supported.",
"Exception_UnsupportedSynchronizerOperation": "This operation is not supported for {0}",
"Exception_UserCancelSystemFolderSetupDialog": "User canceled system folder config dialog.",
"Files": "Files",
"FilteringOption_All": "All",
"FilteringOption_Flagged": "Flagged",
"FilteringOption_Unread": "Unread",
"Focused": "Focused",
"FolderOperation_CreateSubFolder": "Create sub folder",
"FolderOperation_Delete": "Delete",
"FolderOperation_DontSync": "Don't sync this folder",
"FolderOperation_Empty": "Empty this folder",
"FolderOperation_MarkAllAsRead": "Mark all as read",
"FolderOperation_Move": "Move",
"DragMoveToFolderCaption": "Move to {0}",
"FolderOperation_None": "None",
"FolderOperation_Pin": "Pin",
"FolderOperation_Rename": "Rename",
"FolderOperation_Unpin": "Unpin",
"HoverActionOption_Archive": "Archive",
"HoverActionOption_Delete": "Delete",
"HoverActionOption_MoveJunk": "Move to Junk",
"HoverActionOption_ToggleFlag": "Flag / Unflag",
"HoverActionOption_ToggleRead": "Read / Unread",
"MergedAccountCommonFolderInbox": "Inbox",
"MergedAccountCommonFolderSent": "Sent",
"MergedAccountCommonFolderDraft": "Draft",
"MergedAccountCommonFolderJunk": "Junk",
"MergedAccountCommonFolderTrash": "Deleted",
"MergedAccountCommonFolderArchive": "Archive",
"IMAPSetupDialog_AccountType": "Account type",
"IMAPSetupDialog_DisplayName": "Display Name",
"IMAPSetupDialog_DisplayNamePlaceholder": "eg. John Doe",
"IMAPSetupDialog_IncomingMailServer": "Incoming mail server",
"IMAPSetupDialog_IncomingMailServerPort": "Port",
"IMAPSetupDialog_MailAddress": "Email address",
"IMAPSetupDialog_MailAddressPlaceholder": "someone@example.com",
"IMAPSetupDialog_OutgoingMailServer": "Outgoing (SMTP) mail server",
"IMAPSetupDialog_OutgoingMailServerPassword": "Outgoing server password",
"IMAPSetupDialog_OutgoingMailServerPort": "Port",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "Outgoing server requires authentication",
"IMAPSetupDialog_OutgoingMailServerUsername": "Outgoing server user name",
"IMAPSetupDialog_Password": "Password",
"IMAPSetupDialog_RequireSSLForIncomingMail": "Require SSL for incoming email",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "Require SSL for outgoing email",
"IMAPSetupDialog_Title": "Advanced IMAP Configuration",
"IMAPSetupDialog_UseSameConfig": "Use the same username and password for sending email",
"IMAPSetupDialog_Username": "Username",
"IMAPSetupDialog_UsernamePlaceholder": "johndoe, johndoe@fabrikam.com, domain/johndoe",
"ImageRenderingDisabled": "Image rendering is disabled for this message.",
"InfoBarAction_Enable": "Enable",
"InfoBarMessage_SynchronizationDisabledFolder": "This folder is disabled for synchronization.",
"InfoBarTitle_SynchronizationDisabledFolder": "Disabled Folder",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} is created",
"Info_AccountCreatedTitle": "Account Creation",
"Info_AccountCreationFailedTitle": "Account Creation Failed",
"Info_AccountDeletedMessage": "{0} is successfuly deleted.",
"Info_AccountDeletedTitle": "Account Deleted",
"Info_AccountIssueFixFailedTitle": "Failed",
"Info_AccountIssueFixSuccessMessage": "Fixed all account issues.",
"Info_AccountIssueFixSuccessTitle": "Success",
"Info_AttachmentOpenFailedMessage": "Can't open this attachment.",
"Info_AttachmentOpenFailedTitle": "Failed",
"Info_AttachmentSaveFailedMessage": "Can't save this attachment.",
"Info_AttachmentSaveFailedTitle": "Failed",
"Info_AttachmentSaveSuccessMessage": "Attachment is saved.",
"Info_AttachmentSaveSuccessTitle": "Attachment Saved",
"Info_BackgroundExecutionDeniedMessage": "Background execution for the app is denied. This may affect background synchronization and live notifications.",
"Info_BackgroundExecutionDeniedTitle": "Denied Background Execution",
"Info_BackgroundExecutionUnknownErrorMessage": "Unknown exception occurred when registering background synchronizer.",
"Info_BackgroundExecutionUnknownErrorTitle": "Background Execution Failure",
"Info_ComposerMissingMIMEMessage": "Couldn't locate the MIME file. Synchronizing may help.",
"Info_ComposerMissingMIMETitle": "Failed",
"Info_ContactExistsMessage": "This contact is already in the recipient list.",
"Info_ContactExistsTitle": "Contact Exists",
"Info_DraftFolderMissingMessage": "Draft folder is missing for this account. Please check your account settings.",
"Info_DraftFolderMissingTitle": "Missing Draft Folder",
"Info_FileLaunchFailedTitle": "Failed to launch file",
"Info_InvalidAddressMessage": "'{0}' is not a valid e-mail address.",
"Info_InvalidAddressTitle": "Invalid Address",
"Info_InvalidMoveTargetMessage": "You can't move selected mails to this folder.",
"Info_InvalidMoveTargetTitle": "Invalid Move Target",
"Info_LogsNotFoundMessage": "There are no logs to share.",
"Info_LogsNotFoundTitle": "Logs Not Found",
"Info_LogsSavedMessage": "{0} is saved to selected folder.",
"Info_LogsSavedTitle": "Saved",
"Info_MailRenderingFailedMessage": "This mail is corrupted or can't be opened.\n{0}",
"Info_MailRenderingFailedTitle": "Render Failed",
"Info_MessageCorruptedMessage": "This message is corrupted.",
"Info_MessageCorruptedTitle": "Error",
"Info_MissingFolderMessage": "{0} doesn't exist for this account.",
"Info_MissingFolderTitle": "Missing Folder",
"Info_PurchaseExistsMessage": "Looks like this product has already been purchased before.",
"Info_PurchaseExistsTitle": "Existing Product",
"Info_PurchaseThankYouMessage": "Thank You",
"Info_PurchaseThankYouTitle": "Purchase successful",
"Info_RequestCreationFailedTitle": "Failed to Create Requests",
"Info_ReviewNetworkErrorMessage": "There was a network issue with your review.",
"Info_ReviewNetworkErrorTitle": "Network Issue",
"Info_ReviewNewMessage": "All feedbacks are appreciated. Thank you for the review!",
"Info_ReviewSuccessTitle": "Thank you",
"Info_ReviewUnknownErrorMessage": "There was an unknown issue with your review. ({0})",
"Info_ReviewUnknownErrorTitle": "Unknown Error",
"Info_ReviewUpdatedMessage": "Thank you for the updated review.",
"Info_SignatureDisabledMessage": "Disabled signature for this account",
"Info_SignatureDisabledTitle": "Success",
"Info_SignatureSavedMessage": "New signature is saved",
"Info_SignatureSavedTitle": "Success",
"Info_SyncCanceledMessage": "Canceled",
"Info_SyncCanceledTitle": "Synchronization",
"Info_SyncFailedTitle": "Synchronization Failed",
"Info_UnsupportedFunctionalityDescription": "This functionality is not implemented yet.",
"Info_UnsupportedFunctionalityTitle": "Unsupported",
"Info_UnsubscribeLinkInvalidTitle": "Invalid Unsubscribe Uri",
"Info_UnsubscribeLinkInvalidMessage": "This unsubscribe link is invalid. Failed to unsubscribe from the list.",
"ImapAdvancedSetupDialog_AuthenticationMethod": "Authentication method",
"ImapAdvancedSetupDialog_ConnectionSecurity": "Connection security",
"ImapAuthenticationMethod_Auto": "Auto",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "No authentication",
"ImapAuthenticationMethod_Plain": "Normal password",
"ImapAuthenticationMethod_EncryptedPassword": "Encrypted password",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "None",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "Auto",
"Justify": "Justify",
"Left": "Left",
"Link": "Link",
"LinkedAccountsCreatePolicyMessage": "you must have at least 2 accounts to create link\nlink will be removed on save",
"LinkedAccountsTitle": "Linked Accounts",
"MailOperation_AlwaysMoveFocused": "Always Move to Focused",
"MailOperation_AlwaysMoveOther": "Always Move to Other",
"MailOperation_Archive": "Archive",
"MailOperation_ClearFlag": "Clear flag",
"MailOperation_DarkEditor": "Dark",
"MailOperation_Delete": "Delete",
"MailOperation_ExportPDF": "Export to PDF",
"MailOperation_Find": "Find",
"MailOperation_Forward": "Forward",
"MailOperation_Ignore": "Ignore",
"MailOperation_LightEditor": "Light",
"MailOperation_MarkAsJunk": "Mark as junk",
"MailOperation_MarkAsRead": "Mark as read",
"MailOperation_MarkAsUnread": "Mark as unread",
"MailOperation_MarkNotJunk": "Mark as Not Junk",
"MailOperation_Move": "Move",
"MailOperation_MoveFocused": "Move to Focused",
"MailOperation_MoveJunk": "Move to Junk",
"MailOperation_MoveOther": "Move to Other",
"MailOperation_Navigate": "Navigate",
"MailOperation_Print": "Print",
"MailOperation_Reply": "Reply",
"MailOperation_ReplyAll": "Reply all",
"MailOperation_SaveAs": "Save As",
"MailOperation_SetFlag": "Set flag",
"MailOperation_Unarchive": "Unarchive",
"MailOperation_Zoom": "Zoom",
"MailsSelected": "{0} item(s) selected",
"MarkFlagUnflag": "Mark as flagged/unflagged",
"MarkReadUnread": "Mark as read/unread",
"MenuManageAccounts": "Manage Accounts",
"MenuNewMail": "New Mail",
"MenuMergedAccountItemAccountsSuffix": " accounts",
"MenuRate": "Rate Wino",
"MenuSettings": "Settings",
"MergedAccountsAvailableAccountsTitle": "Available Accounts",
"More": "More",
"MoveMailDialog_InvalidFolderMessage": "{0} is not a valid folder for this mail.",
"MoveMailDialog_Title": "Pick a folder",
"NewAccountDialog_AccountName": "Account Name",
"NewAccountDialog_AccountNameDefaultValue": "Personal",
"NewAccountDialog_AccountNamePlaceholder": "eg. Personal Mail",
"NewAccountDialog_Title": "Add New Account",
"NoMailSelected": "no message selected",
"NoMessageCrieteria": "no messages match your search criteria.",
"NoMessageEmptyFolder": "this folder is empty.",
"Notifications_MultipleNotificationsMessage": "You have {0} new mails",
"Notifications_MultipleNotificationsTitle": "New Mails",
"Notifications_WinoUpdatedMessage": "Checkout new version {0}",
"Notifications_WinoUpdatedTitle": "Wino Mail has been updated.",
"Other": "Other",
"PaneLengthOption_Default": "Default",
"PaneLengthOption_ExtraLarge": "Extra Large",
"PaneLengthOption_Large": "Large",
"PaneLengthOption_Medium": "Medium",
"PaneLengthOption_Micro": "Micro",
"PaneLengthOption_Small": "Small",
"Photos": "Photos",
"PreparingFoldersMessage": "Preparing folders",
"ProviderDetail_Gmail_Description": "Google Account",
"ProviderDetail_IMAP_Description": "Custom IMAP/SMTP server",
"ProviderDetail_IMAP_Title": "IMAP Server",
"Results": "Results",
"Right": "Right",
"SynchronizationFolderReport_Success": "up to date",
"SynchronizationFolderReport_Failed": "synchronization is failed",
"SearchBarPlaceholder": "search",
"SearchingIn": "searching in",
"SettingsAboutGithub_Description": "Go to issue tracker GitHub repository.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Append messages to Sent folder",
"SettingsAccountManagementAppendMessage_Description": "Create a copy of the message in Sent folder after the draft is sent. Enable this if you don't see your mails after you sent them in Sent folder.",
"SettingsEditLinkedInbox_Title": "Edit Linked Inbox",
"SettingsEditLinkedInbox_Description": "Add / remove accounts, rename or break the link between accounts.",
"SettingsAboutVersion": "Version ",
"SettingsAboutWinoDescription": "Lightweight mail client for Windows device families.",
"SettingsAbout_Description": "Learn more about Wino.",
"SettingsAbout_Title": "About",
"SettingsAccentColor_Description": "Change application's accent color",
"SettingsAccentColor_Title": "Accent Color",
"SettingsAccentColor_UseWindowsAccentColor": "Use my Windows accent color",
"SettingsAccountName_Description": "Change the name of the account.",
"SettingsAccountName_Title": "Account Name",
"SettingsApplicationTheme_Description": "Personalize Wino with different custom application themes for your like.",
"SettingsApplicationTheme_Title": "Application Theme",
"SettingsAvailableThemes_Description": "Select a theme from Wino's own collection for your taste or apply your own themes.",
"SettingsAvailableThemes_Title": "Available Themes",
"SettingsCustomTheme_Description": "Create your own custom theme with custom wallpaper and accent color.",
"SettingsCustomTheme_Title": "Custom Theme",
"SettingsDeleteAccount_Description": "Delete all e-mails and credentials associated with this account.",
"SettingsDeleteAccount_Title": "Delete this account",
"SettingsDeleteProtection_Description": "Should Wino ask you for comfirmation every time you try to permanently delete a mail using Shift + Del keys?",
"SettingsDeleteProtection_Title": "Permanent Delete Protection",
"SettingsDiagnostics_Description": "For developers",
"SettingsDiagnostics_Title": "Diagnostics",
"SettingsDiscord_Description": "Get regular development updates, join roadmap discussions and provide feedback.",
"SettingsDiscord_Title": "Discord Channel",
"SettingsElementThemeSelectionDisabled": "Element theme selection is disabled when application theme is selected other than Default.",
"SettingsElementTheme_Description": "Select a Windows theme for Wino",
"SettingsElementTheme_Title": "Element Theme",
"SettingsEnableHoverActions_Title": "Enable hover actions",
"SettingsEnableIMAPLogs_Description": "Enable this to provide details about IMAP connectivity issuses you had during IMAP server setup.",
"SettingsEnableIMAPLogs_Title": "Enable IMAP Protocol Logs",
"SettingsEnableLogs_Description": "I might need logs for crashes to diagnose issues you have opened in GitHub. None of the logs will expose your credentials or sensetive information to public.",
"SettingsEnableLogs_Title": "Enable Logs",
"SettingsEnableSignature": "Enable Signature",
"SettingsExpandOnStartup_Description": "Set whether Wino should expand this account's folders on startup.",
"SettingsExpandOnStartup_Title": "Expand Menu on Startup",
"SettingsExternalContent_Description": "Manage external content settings when rendering mails.",
"SettingsExternalContent_Title": "External Content",
"SettingsFocusedInbox_Description": "Set whether Inbox should be split into two as Focused - Other.",
"SettingsFocusedInbox_Title": "Focused Inbox",
"SettingsFolderSync_Description": "Enable or disable specific folders for synchronization.",
"SettingsFolderSync_Title": "Folder Synchronization",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "Center Action",
"SettingsHoverActionLeft": "Left Action",
"SettingsHoverActionRight": "Right Action",
"SettingsHoverActions_Description": "Select 3 actions to show up when you hover over the mails with cursor.",
"SettingsHoverActions_Title": "Hover Actions",
"SettingsLanguage_Description": "Change display language for Wino.",
"SettingsLanguage_Title": "Display Language",
"CategoriesFolderNameOverride": "Categories",
"MoreFolderNameOverride": "More",
"SettingsOptions_Title": "Settings",
"SettingsLinkAccounts_Description": "Merge multiple accounts into one. See mails from one Inbox together.",
"SettingsLinkAccounts_Title": "Create Linked Accounts",
"SettingsLinkedAccountsSave_Description": "Modify the current link with the new accounts.",
"SettingsLinkedAccountsSave_Title": "Save Changes",
"SettingsLoadImages_Title": "Load images automatically",
"SettingsLoadStyles_Title": "Load styles automatically",
"SettingsMailSpacing_Description": "Adjust the spacing for listing mails.",
"SettingsMailSpacing_Title": "Mail Spacing",
"SettingsFolderMenuStyle_Title": "Create Nested Folders",
"SettingsFolderMenuStyle_Description": "Change whether account folders should be nested inside an account menu item or not. Toggle this off if you like the old menu system in Windows Mail",
"SettingsManageAccountSettings_Description": "Notifications, signatures, synchronization and other settings per account.",
"SettingsManageAccountSettings_Title": "Manage Account Settings",
"SettingsManageLink_Description": "Move items to add new link or remove existing link.",
"SettingsManageLink_Title": "Manage Link",
"SettingsMarkAsRead_Description": "Change what should happen to the selected item.",
"SettingsMarkAsRead_DontChange": "Don't automatically mark item as read",
"SettingsMarkAsRead_SecondsToWait": "Seconds to wait: ",
"SettingsMarkAsRead_Timer": "When viewed in the reading pane",
"SettingsMarkAsRead_Title": "Mark item as read",
"SettingsMarkAsRead_WhenSelected": "When selected",
"SettingsMessageList_Description": "Change how your messages should be organized in mail list.",
"SettingsMessageList_Title": "Message List",
"SettingsNoAccountSetupMessage": "You didn't setup any accounts yet.",
"SettingsNotifications_Description": "Turn on or off notifications for this account.",
"SettingsNotifications_Title": "Notifications",
"SettingsPaneLength_Description": "Change the width of the mail list.",
"SettingsPaneLength_Title": "Mail List Pane Length",
"SettingsPaypal_Description": "Show much more love ❤️ All donations are appreciated.",
"SettingsPaypal_Title": "Donate via PayPal",
"SettingsPersonalizationMailDisplayCompactMode": "Compact Mode",
"SettingsPersonalizationMailDisplayMediumMode": "Medium Mode",
"SettingsPersonalizationMailDisplaySpaciousMode": "Spacious Mode",
"SettingsPersonalization_Description": "Change appearance of Wino as you like.",
"SettingsPersonalization_Title": "Personalization",
"SettingsPrivacyPolicy_Description": "Review privacy policy.",
"SettingsPrivacyPolicy_Title": "Privacy Policy",
"SettingsReadingPane_Description": "Mail rendering options.",
"SettingsReadingPane_Title": "Reading Pane",
"SettingsReaderFont_Title": "Default Reader Font",
"SettingsReaderFontFamily_Description": "Change the default font family and font size for reading mails.",
"SettingsFontFamily_Title": "Font Family",
"SettingsFontSize_Title": "Font Size",
"SettingsFontPreview_Title": "Preview",
"SettingsComposerFont_Title": "Default Composer Font",
"SettingsComposerFontFamily_Description": "Change the default font family and font size for composing mails.",
"SettingsRenameMergeAccount_Description": "Change the display name of the linked accounts.",
"SettingsRenameMergeAccount_Title": "Rename",
"SettingsSemanticZoom_Description": "This will allow you to click on the headers in messages list and go to specific date",
"SettingsSemanticZoom_Title": "Semantic Zoom for Date Headers",
"SettingsShowPreviewText_Description": "Hide/show thepreview text.",
"SettingsShowPreviewText_Title": "Show Preview Text",
"SettingsShowSenderPictures_Description": "Hide/show the thumbnail sender pictures.",
"SettingsShowSenderPictures_Title": "Show Sender Avatars",
"SettingsPrefer24HourClock_Title": "Display Clock Format in 24 Hours",
"SettingsPrefer24HourClock_Description": "Mail recieve times will be displayed in 24 hour format instead of 12 (AM/PM)",
"SettingsSignature_Description": "Edit or remove account signature",
"SettingsSignature_Title": "Signature",
"SettingsStartupItem_Description": "Primary account item to load Inbox at startup.",
"SettingsStartupItem_Title": "Startup Item",
"SettingsStore_Description": "Show some love ❤️",
"SettingsStore_Title": "Rate in Store",
"SettingsThreads_Description": "Organize messages into conversation threads.",
"SettingsThreads_Title": "Conversation Threading",
"SettingsUnlinkAccounts_Description": "Remove the link between accounts. This will not delete your accounts.",
"SettingsUnlinkAccounts_Title": "Unlink Accounts",
"SortingOption_Date": "by date",
"SortingOption_Name": "by name",
"StoreRatingDialog_MessageFirstLine": "All feedbacks are appreciated and they will make much Wino better in the future. Would you like to rate Wino in Microsoft Store?",
"StoreRatingDialog_MessageSecondLine": "Would you like to rate Wino Mail in Microsoft Store?",
"StoreRatingDialog_Title": "Enjoying Wino?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "Deleted messages will be moved to here.",
"SystemFolderConfigDialog_DeletedFolderHeader": "Deleted Folder",
"SystemFolderConfigDialog_DraftFolderDescription": "New mails/replies will be crafted in here.",
"SystemFolderConfigDialog_DraftFolderHeader": "Draft Folder",
"SystemFolderConfigDialog_JunkFolderDescription": "All spam/junk mails will be here.",
"SystemFolderConfigDialog_JunkFolderHeader": "Junk/Spam Folder",
"SystemFolderConfigDialog_MessageFirstLine": "This IMAP server doesn't support SPECIAL-USE extension hence Wino couldn't setup the system folders properly.",
"SystemFolderConfigDialog_MessageSecondLine": "Please select the appropriate folders for specific functionalities.",
"SystemFolderConfigDialog_SentFolderDescription": "Folder that sent messages will be stored.",
"SystemFolderConfigDialog_SentFolderHeader": "Sent Folder",
"SystemFolderConfigDialog_Title": "Configure System Folders",
"TestingImapConnectionMessage": "Testing server connection...",
"Today": "Today",
"UnknownAddress": "unknown address",
"UnknownDateHeader": "Unknown Date",
"UnknownGroupAddress": "unknown Mail Group Address",
"UnknownSender": "Unknown Sender",
"Unsubscribe": "Unsubscribe",
"ViewContactDetails": "View Details",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "Upgrade to Unlimited Accounts",
"WinoUpgradeRemainingAccountsMessage": "{0} out of {1} free accounts used.",
"Yesterday": "Yesterday"
}

View File

@@ -0,0 +1,468 @@
{
"AccountCreationDialog_Completed": "已完成",
"AccountCreationDialog_Initializing": "正在初始化",
"AccountCreationDialog_PreparingFolders": "我们正在获取文件夹信息。",
"AccountCreationDialog_SigninIn": "正在保存账户信息。",
"AccountEditDialog_Message": "账户名称",
"AccountEditDialog_Title": "编辑账户",
"AccountPickerDialog_Title": "选择账户",
"AddHyperlink": "添加",
"AutoDiscoveryProgressMessage": "正在搜索邮件设置…",
"BasicIMAPSetupDialog_AdvancedConfiguration": "高级设置",
"BasicIMAPSetupDialog_CredentialLocalMessage": "您的凭据将仅存储在您的计算机上。",
"BasicIMAPSetupDialog_Description": "部分账户需要额外的登录步骤",
"BasicIMAPSetupDialog_DisplayName": "显示名称",
"BasicIMAPSetupDialog_DisplayNamePlaceholder": "例如 John Doe",
"BasicIMAPSetupDialog_LearnMore": "了解更多",
"BasicIMAPSetupDialog_MailAddress": "电子邮件地址",
"BasicIMAPSetupDialog_MailAddressPlaceholder": "johndoe@fabrikam.com",
"BasicIMAPSetupDialog_Password": "密码",
"BasicIMAPSetupDialog_Title": "IMAP 账户",
"Buttons_AddAccount": "添加账户",
"Buttons_ApplyTheme": "应用主题",
"Buttons_Browse": "浏览",
"Buttons_Cancel": "取消",
"Buttons_Close": "关闭",
"Buttons_Create": "创建",
"Buttons_CreateAccount": "添加账户",
"Buttons_Delete": "删除",
"Buttons_Discard": "放弃",
"Buttons_EnableImageRendering": "启用",
"Buttons_No": "否",
"Buttons_Open": "打开",
"Buttons_Purchase": "购买",
"Buttons_RateWino": "评价 Wino",
"Buttons_Save": "保存",
"Buttons_SaveConfiguration": "保存设置",
"Buttons_Share": "分享",
"Buttons_SignIn": "登录",
"Buttons_Yes": "是",
"Center": "中心",
"ComingSoon": "即将到来...",
"ComposerFrom": "来自: ",
"ComposerSubject": "主题: ",
"ComposerTo": "至: ",
"ClipboardTextCopied_Message": "{0} copied to clipboard.",
"ClipboardTextCopied_Title": "Copied",
"ClipboardTextCopyFailed_Message": "Failed to copy {0} to clipboard.",
"ComposerToPlaceholder": "点击输入地址",
"CustomThemeBuilder_AccentColorDescription": "设置自定义颜色。若未选择颜色,将使用 Windows 默认颜色。",
"CustomThemeBuilder_AccentColorTitle": "主题色",
"CustomThemeBuilder_PickColor": "选择",
"CustomThemeBuilder_ThemeNameDescription": "自定义主题的名称。",
"CustomThemeBuilder_ThemeNameTitle": "主题名称",
"CustomThemeBuilder_Title": "自定义主题生成器",
"CustomThemeBuilder_WallpaperDescription": "为Wino设置自定义壁纸",
"CustomThemeBuilder_WallpaperTitle": "设置自定义壁纸",
"DialogMessage_AccountLimitMessage": "您已达到免费用户可创建账户数量上限3个。\n是否购买支持作者以“解除可创建账户数量上限”",
"DialogMessage_AccountLimitTitle": "已达到账户限制",
"DialogMessage_CleanupFolderMessage": "您想永久删除此文件夹中的所有邮件吗?",
"DialogMessage_CleanupFolderTitle": "清空文件夹",
"DialogMessage_ComposerMissingRecipientMessage": "邮件没有收件人。",
"DialogMessage_ComposerValidationFailedTitle": "验证失败",
"DialogMessage_CreateLinkedAccountMessage": "给这个新链接命名。账户将在此名称下合并。",
"DialogMessage_CreateLinkedAccountTitle": "账户链接名称",
"DialogMessage_DeleteAccountConfirmationMessage": "删除 {0}",
"DialogMessage_DeleteAccountConfirmationTitle": "与此账户相关的所有数据将从磁盘上永久删除。",
"DialogMessage_DiscardDraftConfirmationMessage": "草稿将被删除。你想要继续吗?",
"DialogMessage_DiscardDraftConfirmationTitle": "舍弃草稿",
"DialogMessage_HardDeleteConfirmationMessage": "永久删除",
"DialogMessage_HardDeleteConfirmationTitle": "邮件将被永久删除。是否继续?",
"DialogMessage_NoAccountsForCreateMailMessage": "您没有任何账户可创建邮件。",
"DialogMessage_NoAccountsForCreateMailTitle": "没有邮件账户",
"DialogMessage_RenameLinkedAccountsMessage": "输入链接账户的新名称",
"DialogMessage_RenameLinkedAccountsTitle": "重命名已链接账户",
"DialogMessage_UnlinkAccountsConfirmationMessage": "此操作不会删除您的账户,只会断开共享文件夹的连接。是否继续?",
"DialogMessage_UnlinkAccountsConfirmationTitle": "取消链接账户",
"DialogMessage_EmptySubjectConfirmation": "缺少主题",
"DialogMessage_EmptySubjectConfirmationMessage": "邮件没有主题。您想要继续吗?",
"Dialog_DontAskAgain": "不再询问",
"DiscordChannelDisclaimerMessage": "Wino 没有自己的 Discord 服务器,但在 Developer Sanctuary 服务器上设有专门的 wino-mail 频道。如果要获取有关 Wino 的更新,请加入 Developer Sanctuary 服务器,并关注 Community Projects下的 wino-mail 频道。\n\n因为 Discord 不支持频道邀请,所以你需要通过网页加入频道。",
"DiscordChannelDisclaimerTitle": "重要的 Discord 信息",
"Draft": "草稿",
"EditorToolbarOption_Draw": "绘制",
"EditorToolbarOption_Format": "格式",
"EditorToolbarOption_Insert": "插入",
"EditorToolbarOption_None": "无",
"EditorToolbarOption_Options": "选项",
"ElementTheme_Dark": "深色模式",
"ElementTheme_Default": "使用系统设置",
"ElementTheme_Light": "浅色模式",
"Emoji": "表情",
"Exception_ImapClientPoolFailed": "IMAP 客户端池失败。",
"Exception_AuthenticationCanceled": "身份验证已取消",
"Exception_CustomThemeExists": "此主题已经存在。",
"Exception_CustomThemeMissingName": "您必须提供名称。",
"Exception_CustomThemeMissingWallpaper": "您必须提供自定义背景图像。",
"Exception_FailedToSynchronizeFolders": "同步文件夹失败",
"Exception_GoogleAuthCallbackNull": "Callback uri 在激活时无效。",
"Exception_GoogleAuthCorruptedCode": "授权响应不正确。",
"Exception_GoogleAuthError": "OAuth 授权错误: {0}",
"Exception_GoogleAuthInvalidResponse": "收到无效状态请求 ({0})",
"Exception_GoogleAuthorizationCodeExchangeFailed": "授权代码交换失败。",
"Exception_InvalidSystemFolderConfiguration": "系统文件夹配置无效。请检查配置,然后重试。",
"Exception_NullAssignedAccount": "分配的账户为空",
"Exception_NullAssignedFolder": "分配的文件夹为空",
"Exception_SynchronizerFailureHTTP": "处理响应失败HTTP 错误代码: {0}",
"Exception_TokenGenerationFailed": "令牌生成失败",
"Exception_TokenInfoRetrivalFailed": "获取令牌信息失败。",
"Exception_UnknowErrorDuringAuthentication": "身份验证时发生未知错误",
"Exception_UnsupportedAction": "请求处理器不支持 {0} 操作。",
"Exception_UnsupportedProvider": "不支持该提供商。",
"Exception_UnsupportedSynchronizerOperation": "{0} 不支持此操作",
"Exception_UserCancelSystemFolderSetupDialog": "用户取消了配置系统文件夹的对话框。",
"Files": "文件",
"FilteringOption_All": "全选",
"FilteringOption_Flagged": "已标记",
"FilteringOption_Unread": "未读",
"Focused": "重点",
"FolderOperation_CreateSubFolder": "创建子文件夹",
"FolderOperation_Delete": "删除",
"FolderOperation_DontSync": "不要同步此文件夹",
"FolderOperation_Empty": "清空此文件夹",
"FolderOperation_MarkAllAsRead": "全部标记为已读",
"FolderOperation_Move": "移动",
"DragMoveToFolderCaption": "移动到 {0}",
"FolderOperation_None": "无",
"FolderOperation_Pin": "置顶",
"FolderOperation_Rename": "重命名",
"FolderOperation_Unpin": "取消置顶",
"HoverActionOption_Archive": "归档",
"HoverActionOption_Delete": "删除",
"HoverActionOption_MoveJunk": "移至垃圾箱",
"HoverActionOption_ToggleFlag": "标记/取消标记",
"HoverActionOption_ToggleRead": "已读/未读",
"MergedAccountCommonFolderInbox": "收件箱",
"MergedAccountCommonFolderSent": "已发送",
"MergedAccountCommonFolderDraft": "草稿箱",
"MergedAccountCommonFolderJunk": "垃圾箱",
"MergedAccountCommonFolderTrash": "已删除",
"MergedAccountCommonFolderArchive": "归档",
"IMAPSetupDialog_AccountType": "账户名称",
"IMAPSetupDialog_DisplayName": "显示名称",
"IMAPSetupDialog_DisplayNamePlaceholder": "例如 John Doe",
"IMAPSetupDialog_IncomingMailServer": "收件邮件服务器",
"IMAPSetupDialog_IncomingMailServerPort": "端口",
"IMAPSetupDialog_MailAddress": "电子邮件地址",
"IMAPSetupDialog_MailAddressPlaceholder": "somone@example.com",
"IMAPSetupDialog_OutgoingMailServer": "发送 (SMTP) 邮件服务器",
"IMAPSetupDialog_OutgoingMailServerPassword": "发送服务器密码",
"IMAPSetupDialog_OutgoingMailServerPort": "端口",
"IMAPSetupDialog_OutgoingMailServerRequireAuthentication": "发送服务器需要身份验证",
"IMAPSetupDialog_OutgoingMailServerUsername": "发送服务器用户名",
"IMAPSetupDialog_Password": "密码",
"IMAPSetupDialog_RequireSSLForIncomingMail": "接收邮件需要 SSL",
"IMAPSetupDialog_RequireSSLForOutgoingMail": "接收邮件需要 SSL",
"IMAPSetupDialog_Title": "IMAP 高级选项",
"IMAPSetupDialog_UseSameConfig": "发送电子邮件时使用同一用户名和密码",
"IMAPSetupDialog_Username": "用户名",
"IMAPSetupDialog_UsernamePlaceholder": "示例johndoe, johndoe@fabrikam.com, domain/johndoe",
"ImageRenderingDisabled": "此邮件的图像渲染已禁用。",
"InfoBarAction_Enable": "启用",
"InfoBarMessage_SynchronizationDisabledFolder": "此文件夹已禁用同步。",
"InfoBarTitle_SynchronizationDisabledFolder": "已禁用文件夹",
"GeneralTitle_Error": "Error",
"GeneralTitle_Warning": "Warning",
"GeneralTitle_Info": "Information",
"Info_AccountCreatedMessage": "{0} 已创建",
"Info_AccountCreatedTitle": "创建账户",
"Info_AccountCreationFailedTitle": "账户创建失败",
"Info_AccountDeletedMessage": "{0} 已成功删除。",
"Info_AccountDeletedTitle": "账户已删除",
"Info_AccountIssueFixFailedTitle": "失败",
"Info_AccountIssueFixSuccessMessage": "已修复所有账户问题。",
"Info_AccountIssueFixSuccessTitle": "成功",
"Info_AttachmentOpenFailedMessage": "无法打开此附件。",
"Info_AttachmentOpenFailedTitle": "失败",
"Info_AttachmentSaveFailedMessage": "无法保存此附件。",
"Info_AttachmentSaveFailedTitle": "失败",
"Info_AttachmentSaveSuccessMessage": "附件已保存。",
"Info_AttachmentSaveSuccessTitle": "附件已保存",
"Info_BackgroundExecutionDeniedMessage": "应用的后台运行被禁止。这可能会影响后台同步和实时通知。",
"Info_BackgroundExecutionDeniedTitle": "后台执行被拒绝",
"Info_BackgroundExecutionUnknownErrorMessage": "注册后台同步器时发生未知异常。",
"Info_BackgroundExecutionUnknownErrorTitle": "后台执行失败",
"Info_ComposerMissingMIMEMessage": "无法找到 MIME 文件。同步可能有帮助。",
"Info_ComposerMissingMIMETitle": "失败",
"Info_ContactExistsMessage": "此联系人已经在收件人列表中。",
"Info_ContactExistsTitle": "联系人已存在",
"Info_DraftFolderMissingMessage": "此账户缺少草稿文件夹。请检查您的账户设置。",
"Info_DraftFolderMissingTitle": "缺少草稿文件夹",
"Info_FileLaunchFailedTitle": "无法启动文件",
"Info_InvalidAddressMessage": "{0} 不是有效的电子邮件地址。",
"Info_InvalidAddressTitle": "无效地址",
"Info_InvalidMoveTargetMessage": "您不能将选中的邮件移动到此文件夹。",
"Info_InvalidMoveTargetTitle": "无效的移动目标",
"Info_LogsNotFoundMessage": "没有可共享的日志。",
"Info_LogsNotFoundTitle": "未找到日志",
"Info_LogsSavedMessage": "{0} 已保存到所选文件夹。",
"Info_LogsSavedTitle": "已保存",
"Info_MailRenderingFailedMessage": "这封邮件已损坏或无法打开。\n{0}",
"Info_MailRenderingFailedTitle": "渲染失败",
"Info_MessageCorruptedMessage": "此邮件已损坏。",
"Info_MessageCorruptedTitle": "错误",
"Info_MissingFolderMessage": "此账户不存在 {0}。",
"Info_MissingFolderTitle": "缺少文件夹",
"Info_PurchaseExistsMessage": "看起来这个产品已经被购买了。",
"Info_PurchaseExistsTitle": "产品已购买",
"Info_PurchaseThankYouMessage": "感谢您",
"Info_PurchaseThankYouTitle": "购买成功",
"Info_RequestCreationFailedTitle": "请求创建失败",
"Info_ReviewNetworkErrorMessage": "您的评论有一个网络问题。",
"Info_ReviewNetworkErrorTitle": "网络问题",
"Info_ReviewNewMessage": "感谢所有反馈。谢谢您的评论!",
"Info_ReviewSuccessTitle": "谢谢",
"Info_ReviewUnknownErrorMessage": "您的评论有一个未知的问题。({0})",
"Info_ReviewUnknownErrorTitle": "未知错误",
"Info_ReviewUpdatedMessage": "感谢您的最新评论。",
"Info_SignatureDisabledMessage": "已禁用此账户的签名",
"Info_SignatureDisabledTitle": "成功",
"Info_SignatureSavedMessage": "已保存新签名",
"Info_SignatureSavedTitle": "成功",
"Info_SyncCanceledMessage": "已取消",
"Info_SyncCanceledTitle": "同步",
"Info_SyncFailedTitle": "同步失败",
"Info_UnsupportedFunctionalityDescription": "此功能尚未实现。",
"Info_UnsupportedFunctionalityTitle": "不支持",
"Info_UnsubscribeLinkInvalidTitle": "无效的取消订阅 Uri",
"Info_UnsubscribeLinkInvalidMessage": "此退订链接无效。取消订阅列表失败。",
"ImapAdvancedSetupDialog_AuthenticationMethod": "身份验证方法",
"ImapAdvancedSetupDialog_ConnectionSecurity": "连接安全性",
"ImapAuthenticationMethod_Auto": "自动",
"ImapAuthenticationMethod_CramMD5": "CRAM-MD5",
"ImapAuthenticationMethod_DigestMD5": "DIGEST-MD5",
"ImapAuthenticationMethod_None": "无身份验证",
"ImapAuthenticationMethod_Plain": "常规密码",
"ImapAuthenticationMethod_EncryptedPassword": "加密密码",
"ImapAuthenticationMethod_Ntlm": "NTLM",
"ImapConnectionSecurity_None": "无",
"ImapConnectionSecurity_SslTls": "SSL/TLS",
"ImapConnectionSecurity_StartTls": "STARTTLS",
"ImapConnectionSecurity_Auto": "自动",
"Justify": "对齐",
"Left": "左侧",
"Link": "链接",
"LinkedAccountsCreatePolicyMessage": "您必须拥有至少 2 个账户才能创建链接\n链接将在保存时删除",
"LinkedAccountsTitle": "已绑定的账户",
"MailOperation_AlwaysMoveFocused": "总是移动到重点。",
"MailOperation_AlwaysMoveOther": "总是移动到其他",
"MailOperation_Archive": "归档",
"MailOperation_ClearFlag": "清除标记",
"MailOperation_DarkEditor": "深色",
"MailOperation_Delete": "删除",
"MailOperation_ExportPDF": "导出为 PDF",
"MailOperation_Find": "搜索",
"MailOperation_Forward": "转发",
"MailOperation_Ignore": "忽略",
"MailOperation_LightEditor": "浅色",
"MailOperation_MarkAsJunk": "标记为垃圾邮件",
"MailOperation_MarkAsRead": "标记为已读",
"MailOperation_MarkAsUnread": "标记为未读",
"MailOperation_MarkNotJunk": "标记为非垃圾邮件",
"MailOperation_Move": "移动",
"MailOperation_MoveFocused": "移动到重点",
"MailOperation_MoveJunk": "移至垃圾箱",
"MailOperation_MoveOther": "移至其他",
"MailOperation_Navigate": "导航",
"MailOperation_Print": "打印",
"MailOperation_Reply": "回复",
"MailOperation_ReplyAll": "回复所有",
"MailOperation_SaveAs": "另存为",
"MailOperation_SetFlag": "设置标记",
"MailOperation_Unarchive": "取消归档",
"MailOperation_Zoom": "缩放",
"MailsSelected": "已选择 {0} 项",
"MarkFlagUnflag": "标记为已标记/未标记",
"MarkReadUnread": "标记为已读/未读",
"MenuManageAccounts": "管理账户",
"MenuNewMail": "新邮件",
"MenuMergedAccountItemAccountsSuffix": " 账户",
"MenuRate": "评价 Wino",
"MenuSettings": "设置",
"MergedAccountsAvailableAccountsTitle": "可用账户",
"More": "更多",
"MoveMailDialog_InvalidFolderMessage": "{0} 不是此邮件的有效文件夹。",
"MoveMailDialog_Title": "选择文件夹",
"NewAccountDialog_AccountName": "账户名称",
"NewAccountDialog_AccountNameDefaultValue": "个人信息",
"NewAccountDialog_AccountNamePlaceholder": "例如:个人邮件",
"NewAccountDialog_Title": "添加新账户",
"NoMailSelected": "未选择任何邮件",
"NoMessageCrieteria": "没有符合您搜索条件的邮件。",
"NoMessageEmptyFolder": "此文件夹为空。",
"Notifications_MultipleNotificationsMessage": "您有 {0} 条新邮件",
"Notifications_MultipleNotificationsTitle": "新邮件",
"Notifications_WinoUpdatedMessage": "检查新版本 {0}",
"Notifications_WinoUpdatedTitle": "Wino 邮件已更新。",
"Other": "其他",
"PaneLengthOption_Default": "默认",
"PaneLengthOption_ExtraLarge": "超大",
"PaneLengthOption_Large": "大",
"PaneLengthOption_Medium": "中",
"PaneLengthOption_Micro": "极小",
"PaneLengthOption_Small": "小",
"Photos": "图片",
"PreparingFoldersMessage": "正在准备文件夹",
"ProviderDetail_Gmail_Description": "Google 账号",
"ProviderDetail_IMAP_Description": "自定义 IMAP/SMTP 服务器",
"ProviderDetail_IMAP_Title": "IMAP 服务器",
"Results": "结果",
"Right": "右侧",
"SynchronizationFolderReport_Success": "已是最新",
"SynchronizationFolderReport_Failed": "同步失败",
"SearchBarPlaceholder": "搜索",
"SearchingIn": "搜索于",
"SettingsAboutGithub_Description": "转到 GitHub 仓库的问题追踪器",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "添加邮件到已发送文件夹",
"SettingsAccountManagementAppendMessage_Description": "在草稿发送后在发送文件夹中创建邮件的副本。 如果您在发送文件夹中没有看到您的邮件,请启用此功能。",
"SettingsEditLinkedInbox_Title": "编辑已链接收件箱",
"SettingsEditLinkedInbox_Description": "添加/删除账户,重命名或断开账户之间的链接。",
"SettingsAboutVersion": "版本 ",
"SettingsAboutWinoDescription": "Windows 系列设备的轻量邮件客户端。",
"SettingsAbout_Description": "了解更多关于 Wino 的信息。",
"SettingsAbout_Title": "关于",
"SettingsAccentColor_Description": "更改应用的主题颜色",
"SettingsAccentColor_Title": "主题颜色",
"SettingsAccentColor_UseWindowsAccentColor": "使用 Windows 主题色",
"SettingsAccountName_Description": "更改账户名称。",
"SettingsAccountName_Title": "账户名称",
"SettingsApplicationTheme_Description": "根据你的喜好,用不同的自定义应用主题来个性化 Wino。",
"SettingsApplicationTheme_Title": "应用主题",
"SettingsAvailableThemes_Description": "从 Wino 的自带收藏中选择一个符合您口味的主题,或应用您自己的主题。",
"SettingsAvailableThemes_Title": "可用的主题",
"SettingsCustomTheme_Description": "用自定义壁纸和主题色创建您自己的自定义主题。",
"SettingsCustomTheme_Title": "自定义主题",
"SettingsDeleteAccount_Description": "删除与此账户关联的所有电子邮件和凭据。",
"SettingsDeleteAccount_Title": "删除此账户",
"SettingsDeleteProtection_Description": "每次您尝试使用 Shift + Del 键永久删除邮件时Wino 应该向您二次确认吗?",
"SettingsDeleteProtection_Title": "永久性删除保护",
"SettingsDiagnostics_Description": "开发者选项",
"SettingsDiagnostics_Title": "诊断信息",
"SettingsDiscord_Description": "获取定期开发更新,加入路线图讨论并提供反馈。",
"SettingsDiscord_Title": "Discord 频道",
"SettingsElementThemeSelectionDisabled": "当选择的应用主题不是默认主题时,元素主题选择将被禁用。",
"SettingsElementTheme_Description": "为 Wino 选择一个 Windows 主题",
"SettingsElementTheme_Title": "元素主题",
"SettingsEnableHoverActions_Title": "启用悬停动作",
"SettingsEnableIMAPLogs_Description": "启用此选项可提供在设置 IMAP 服务器过程中遇到的 IMAP 连接问题的详细信息。",
"SettingsEnableIMAPLogs_Title": "启用 IMAP 协议日志",
"SettingsEnableLogs_Description": "我可能需要日志来分析您在 GitHub 中打开的问题。 所有日志都不会公开您的凭据或敏感信息。",
"SettingsEnableLogs_Title": "启用日志",
"SettingsEnableSignature": "启用签名",
"SettingsExpandOnStartup_Description": "设置 Wino 是否应该在启动时展开此账户的文件夹。",
"SettingsExpandOnStartup_Title": "启动时展开菜单",
"SettingsExternalContent_Description": "在渲染邮件时管理外部内容设置。",
"SettingsExternalContent_Title": "外部内容",
"SettingsFocusedInbox_Description": "设置是否应将收件箱分为两部分 - 重点和其他。",
"SettingsFocusedInbox_Title": "重点收件箱",
"SettingsFolderSync_Description": "启用或禁用特定文件夹同步。",
"SettingsFolderSync_Title": "文件夹同步",
"SettingsFolderOptions_Title": "Folder Configuration",
"SettingsFolderOptions_Description": "Change individual folder settings like enable/disable sync or show/hide unread badge.",
"SettingsHoverActionCenter": "中心动作",
"SettingsHoverActionLeft": "左侧动作",
"SettingsHoverActionRight": "右侧动作",
"SettingsHoverActions_Description": "选择 3 个动作,当你用鼠标悬停在邮件上时显示。",
"SettingsHoverActions_Title": "悬停动作",
"SettingsLanguage_Description": "更改 Wino 的显示语言。",
"SettingsLanguage_Title": "显示语言",
"CategoriesFolderNameOverride": "分类",
"MoreFolderNameOverride": "更多",
"SettingsOptions_Title": "设置",
"SettingsLinkAccounts_Description": "将多个账户合并为一个。在同一个收件箱内查看所有邮件。",
"SettingsLinkAccounts_Title": "创建链接账户",
"SettingsLinkedAccountsSave_Description": "修改当前与新账户的链接。",
"SettingsLinkedAccountsSave_Title": "保存更改",
"SettingsLoadImages_Title": "自动加载图片",
"SettingsLoadStyles_Title": "自动加载样式",
"SettingsMailSpacing_Description": "调整邮件列表的间距。",
"SettingsMailSpacing_Title": "邮件间距",
"SettingsFolderMenuStyle_Title": "创建内部文件夹",
"SettingsFolderMenuStyle_Description": "控制账户文件夹是否应嵌套在账户菜单中。 如果您喜欢Windows邮件中的旧菜单关闭此选项",
"SettingsManageAccountSettings_Description": "每个账户的通知、签名、同步等设置。",
"SettingsManageAccountSettings_Title": "管理账户设置",
"SettingsManageLink_Description": "移动项目以添加新链接或删除现有链接。",
"SettingsManageLink_Title": "管理账户链接",
"SettingsMarkAsRead_Description": "更改应对选定项目进行何种操作。",
"SettingsMarkAsRead_DontChange": "不自动标记项目为已读",
"SettingsMarkAsRead_SecondsToWait": "等待时间: ",
"SettingsMarkAsRead_Timer": "当在阅读面板中查看时",
"SettingsMarkAsRead_Title": "标记为已读",
"SettingsMarkAsRead_WhenSelected": "选中时",
"SettingsMessageList_Description": "更改邮件列表中的消息应如何组织。",
"SettingsMessageList_Title": "邮件列表",
"SettingsNoAccountSetupMessage": "您尚未设置任何账户。",
"SettingsNotifications_Description": "开启或关闭此账户的通知。",
"SettingsNotifications_Title": "通知",
"SettingsPaneLength_Description": "更改邮件列表的宽度。",
"SettingsPaneLength_Title": "邮件列表视图长度",
"SettingsPaypal_Description": "展示更多的爱吧 ❤️ 我们感激所有的捐赠。",
"SettingsPaypal_Title": "通过 PayPal 捐赠",
"SettingsPersonalizationMailDisplayCompactMode": "紧凑模式",
"SettingsPersonalizationMailDisplayMediumMode": "中等模式",
"SettingsPersonalizationMailDisplaySpaciousMode": "宽敞模式",
"SettingsPersonalization_Description": "按照您喜欢的方式更改 Wino 的外观。",
"SettingsPersonalization_Title": "个性化",
"SettingsPrivacyPolicy_Description": "查看隐私政策。",
"SettingsPrivacyPolicy_Title": "隐私政策",
"SettingsReadingPane_Description": "邮件渲染选项",
"SettingsReadingPane_Title": "阅读面板",
"SettingsReaderFont_Title": "默认阅读字体",
"SettingsReaderFontFamily_Description": "更改阅读邮件的默认字体和字体大小。",
"SettingsFontFamily_Title": "字体",
"SettingsFontSize_Title": "字体大小",
"SettingsFontPreview_Title": "预览",
"SettingsComposerFont_Title": "默认撰写字体",
"SettingsComposerFontFamily_Description": "更改撰写邮件时的默认字体和字体大小。",
"SettingsRenameMergeAccount_Description": "更改链接账户的显示名称。",
"SettingsRenameMergeAccount_Title": "重命名",
"SettingsSemanticZoom_Description": "这将允许您点击消息列表中的标题并转到指定日期",
"SettingsSemanticZoom_Title": "为日期标题启用语义缩放",
"SettingsShowPreviewText_Description": "隐藏/显示预览文本。",
"SettingsShowPreviewText_Title": "显示预览文本",
"SettingsShowSenderPictures_Description": "隐藏/显示缩略图发件人图片。",
"SettingsShowSenderPictures_Title": "显示发件人头像",
"SettingsPrefer24HourClock_Title": "使用 24 小时制时间格式",
"SettingsPrefer24HourClock_Description": "邮件接收时间将显示为 24 小时制,而不是 12 小时制(上午/下午)",
"SettingsSignature_Description": "编辑或删除账户签名",
"SettingsSignature_Title": "签名",
"SettingsStartupItem_Description": "启动时加载收件箱的主要账户项。",
"SettingsStartupItem_Title": "启动项",
"SettingsStore_Description": "展示更多的爱❤️",
"SettingsStore_Title": "在商店中评分",
"SettingsThreads_Description": "将邮件组织成对话主题。",
"SettingsThreads_Title": "邮件会话",
"SettingsUnlinkAccounts_Description": "删除账户之间的链接。这不会删除您的账户。",
"SettingsUnlinkAccounts_Title": "取消链接账户",
"SortingOption_Date": "按日期",
"SortingOption_Name": "按名称",
"StoreRatingDialog_MessageFirstLine": "所有反馈都值得赞赏,它们将来会使 Wino 变得更好。您想要在 Microsoft Store 给 Wino 打分吗?",
"StoreRatingDialog_MessageSecondLine": "您想在 Microsoft Store 中给 Wino Mail 打分吗?",
"StoreRatingDialog_Title": "喜欢 Wino 吗?",
"SystemFolderConfigDialog_ArchiveFolderDescription": "Archived messages will be moved to here.",
"SystemFolderConfigDialog_ArchiveFolderHeader": "Archive Folder",
"SystemFolderConfigDialog_DeletedFolderDescription": "已删除的邮件将被移至此处。",
"SystemFolderConfigDialog_DeletedFolderHeader": "已删除文件夹",
"SystemFolderConfigDialog_DraftFolderDescription": "将在这里撰写新邮件/回复。",
"SystemFolderConfigDialog_DraftFolderHeader": "草稿文件夹",
"SystemFolderConfigDialog_JunkFolderDescription": "所有垃圾邮件都在这里。",
"SystemFolderConfigDialog_JunkFolderHeader": "垃圾邮件文件夹",
"SystemFolderConfigDialog_MessageFirstLine": "此 IMAP 服务器不支持 SPECIAL-USE 扩展,因此 Wino 无法正确设置系统文件夹。",
"SystemFolderConfigDialog_MessageSecondLine": "请为特定功能选择相应的文件夹。",
"SystemFolderConfigDialog_SentFolderDescription": "发送的邮件将被存储在该文件夹中。",
"SystemFolderConfigDialog_SentFolderHeader": "已发送文件夹",
"SystemFolderConfigDialog_Title": "配置系统文件夹",
"TestingImapConnectionMessage": "正在测试服务器连接...",
"Today": "今天",
"UnknownAddress": "未知地址",
"UnknownDateHeader": "未知日期",
"UnknownGroupAddress": "未知邮件群组地址",
"UnknownSender": "未知发件人",
"Unsubscribe": "取消订阅",
"ViewContactDetails": "查看详情",
"WinoUpgradeDescription": "Wino offers 3 accounts to start with for free. If you need more than 3 accounts, please upgrade",
"WinoUpgradeMessage": "升级为无限账户数",
"WinoUpgradeRemainingAccountsMessage": "已使用 {0} 个免费账户,共 {1} 个。",
"Yesterday": "昨天"
}