diff --git a/src/translation/en.json b/src/translation/en.json index d2d82154d..a885ee42b 100644 --- a/src/translation/en.json +++ b/src/translation/en.json @@ -237,7 +237,78 @@ } }, "emails": { - "title": "Email" + "title": "Email", + "domains": { + "title": "Domains", + "domain": "Domain", + "config": "Config", + "outbound": "Outbound only", + "disabled": "Disabled", + "stats": "{{ mailboxCount }} Mailbox(es) / Usage: {{ usage | prettyByteSize }}", + "testEmailTooltip": "Send Test Email" + }, + "settings": { + "title": "Settings", + "info": "These settings are global and apply to all domains.", + "location": "Mail server location", + "maxMailSize": "Maximum email size", + "spamFilter": "Spam filtering", + "spamFilterOverview": "{{ acl.blacklist.length }} address(es) blacklisted {{ customConfig ? '. Custom rules set.' : '.' }}", + "changeDomainProgress": "Changing Email domain:" + }, + "eventlog": { + "title": "Event Log", + "time": "Time", + "details": "Details", + "empty": "Event Log is empty.", + "type": { + "outgoing": "Outgoing", + "deferred": "Deferred", + "incoming": "Incoming", + "queued": "Queued", + "denied": "Denied", + "bounce": "Bounce", + "spamFilterTrained": "Spam filter trained", + "bounceInfo": "Sent bounce to {{ mailFrom | prettyEmailAddresses }} for mail sent to {{ rcptTo | prettyEmailAddresses }}. {{ details.message || details.reason }}", + "deferredInfo": "Failed to deliver mail to {{ rcptTo | prettyEmailAddresses }}. {{ details.message || details.reason }}. Will retry in {{ details.delay }}s.", + "inboundInfo": "Incoming mail from {{ mailFrom | prettyEmailAddresses }} to {{ rcptTo | prettyEmailAddresses }}. Spam: {{ details.spamStatus.indexOf('Yes,') === 0 ? 'Yes' : 'No' }}", + "outboundInfo": "Queued mail for delivery to {{ rcptTo | prettyEmailAddresses }} from {{ mailFrom | prettyEmailAddresses }}", + "receivedInfo": "Saved mail from {{ mailFrom | prettyEmailAddresses }} in mailbox {{ rcptTo | prettyEmailAddresses }}", + "deliveredInfo": "Delivered mail to {{ rcptTo | prettyEmailAddresses }} from {{ mailFrom | prettyEmailAddresses }}", + "deniedInfo": "Connection from {{ remote.ip }} denied. {{ details.message || details.reason }}", + "spamFilterTrainedInfo": "Spam filter trained using mailbox content" + }, + "showRawLogsAction": "Show Raw Logs", + "searchPlaceholder": "Search" + }, + "changeDomainDialog": { + "title": "Change Email Server Location", + "description": "Cloudron will make the necessary DNS changes across all the domains and restart the mail server. Desktop & Mobile email clients have to be re-configured to use this new location as the IMAP and SMTP server.", + "location": "Location", + "locationPlaceholder": "Leave empty to use bare domain", + "linodeInfo": "Linode DNS average propagation time is 30 minutes. Changing the location will take a while.", + "manualInfo": "Add an A record manually for {{ (!subdomain ? '' : '.') + domain.domain }} to this Cloudron's public IP" + }, + "changeMailSizeDialog": { + "title": "Change Maximum Email Size", + "description": "Changing the maximum email message size requires a restart of the mail server.", + "size": "Maximum size in megabytes:" + }, + "spamFilterDialog": { + "title": "Spam Filtering", + "blacklisteAddresses": "Blacklisted addresses", + "blacklisteAddressesInfo": "Matched addresses will end up in the user's Spam folder. '*' and '?' glob patterns are supported.", + "customRules": "Custom Spamassassin Rules", + "blacklisteAddressesPlaceholder": "Line separated email address patterns", + "customRulesPlaceholder": "Custom Spamassassin Rules" + }, + "testMailDialog": { + "title": "Send test email for {{ domain }}", + "description": "This will send a test email from no-reply@{{domain}} to the address below.", + "mailTo": "Email to", + "mailToPlaceholder": "Email address", + "sendAction": "Send" + } }, "network": { "title": "Network", diff --git a/src/views/email.html b/src/views/email.html index 5d4b1908c..caae6eb80 100644 --- a/src/views/email.html +++ b/src/views/email.html @@ -351,8 +351,8 @@
- - + +
@@ -404,8 +404,8 @@

Mailing Lists
- - + +
diff --git a/src/views/emails.html b/src/views/emails.html index 1e6f968b6..2a3c6def9 100644 --- a/src/views/emails.html +++ b/src/views/emails.html @@ -3,22 +3,20 @@