Version Description
Download this release
Release Info
Developer | slaFFik |
Plugin | ![]() |
Version | 1.4.0 |
Comparing to | |
See all releases |
Code changes from version 1.3.3 to 1.4.0
- assets/css/smtp-admin.min.css +1 -1
- assets/images/email/icon-check.png +0 -0
- assets/images/email/signature.png +0 -0
- assets/images/email/wp-mail-smtp.png +0 -0
- assets/images/email/wpforms-pro.png +0 -0
- class-wpms-am-notification.php +71 -66
- languages/wp-mail-smtp.pot +1115 -1055
- readme.txt +23 -4
- src/AM_Notification.php +71 -66
- src/Admin/Area.php +4 -1
- src/Admin/Pages/Misc.php +46 -4
- src/Admin/Pages/Settings.php +73 -30
- src/Admin/Pages/Test.php +318 -35
- src/Core.php +130 -76
- src/MailCatcher.php +25 -1
- src/Migration.php +1 -1
- src/Options.php +89 -55
- src/Providers/Gmail/Mailer.php +30 -4
- src/Providers/Gmail/Options.php +1 -1
- src/Providers/Mail/Mailer.php +15 -0
- src/Providers/MailerAbstract.php +19 -13
- src/Providers/MailerInterface.php +9 -0
- src/Providers/Mailgun/Mailer.php +49 -1
- src/Providers/Mailgun/Options.php +48 -0
- src/Providers/OptionsAbstract.php +1 -1
- src/Providers/Pepipost/Mailer.php +17 -0
- src/Providers/SMTP/Mailer.php +17 -0
- src/Providers/Sendgrid/Mailer.php +16 -1
- uninstall.php +10 -7
- vendor/composer/ClassLoader.php +1 -1
- vendor/google/apiclient-services/src/Google/Service/Gmail.php +61 -0
- vendor/google/apiclient-services/src/Google/Service/Gmail/Delegate.php +39 -0
- vendor/google/apiclient-services/src/Google/Service/Gmail/ListDelegatesResponse.php +38 -0
- vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/UsersSettingsDelegates.php +119 -0
- vendor/google/auth/src/Credentials/GCECredentials.php +35 -21
- vendor/google/auth/src/Credentials/InsecureCredentials.php +68 -0
- vendor/google/auth/src/Credentials/UserRefreshCredentials.php +21 -0
- vendor/google/auth/src/CredentialsLoader.php +17 -4
- vendor/google/auth/src/OAuth2.php +23 -13
- vendor/monolog/monolog/src/Monolog/ErrorHandler.php +11 -2
- vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php +1 -0
- vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php +1 -1
- vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php +12 -6
- vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php +5 -3
- vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php +4 -2
- vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php +24 -7
- vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php +2 -2
- vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php +18 -8
- vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php +2 -0
- vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php +3 -3
- vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php +33 -23
- vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php +14 -2
- vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php +5 -5
- vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php +1 -1
- vendor/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php +4 -4
- vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php +4 -4
- vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php +2 -2
- vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php +1 -1
- vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php +30 -16
- vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php +1 -1
- vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php +0 -8
- vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php +14 -2
- vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php +2 -2
- vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php +9 -1
- vendor/monolog/monolog/src/Monolog/Handler/HipChatHandler.php +15 -0
- vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php +4 -4
- vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php +62 -0
- vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php +2 -2
- vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php +1 -1
- vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php +3 -1
- vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php +1 -1
- vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php +3 -3
- vendor/monolog/monolog/src/Monolog/Handler/RavenHandler.php +6 -6
- vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php +12 -0
- vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php +15 -3
- vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php +5 -5
- vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php +5 -0
- vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php +5 -0
- vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php +43 -4
- vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php +3 -3
- vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php +14 -2
- vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php +5 -5
- vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php +6 -6
- vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php +13 -3
- vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php +10 -0
- vendor/monolog/monolog/src/Monolog/Logger.php +165 -74
- vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php +1 -1
- vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php +1 -1
- vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php +3 -3
- vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php +1 -1
- vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php +1 -1
- vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php +25 -0
- vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php +4 -2
- vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php +1 -1
- vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php +15 -2
- vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php +1 -1
- vendor/monolog/monolog/src/Monolog/ResettableInterface.php +31 -0
- vendor/monolog/monolog/src/Monolog/SignalHandler.php +115 -0
- vendor/monolog/monolog/src/Monolog/Utils.php +25 -0
- vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php +5 -4
- vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php +0 -1
- wp_mail_smtp.php +32 -18
assets/css/smtp-admin.min.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
#wpcontent{padding-left:0 !important;position:relative}@media (max-width: 600px){#wpcontent{padding-top:46px}}@media (max-width: 600px){#wpbody{padding-top:0}}#wp-mail-smtp-header{background-color:#f1f3f7;border-top:3px solid #FF982D;padding:20px}#wp-mail-smtp-header img{display:block;margin:0;max-width:242px}@media (max-width: 782px){#wp-mail-smtp-header img{max-width:200px}}#wp-mail-smtp{margin:0}#wp-mail-smtp .wp-mail-smtp-page-title{background-color:#fff;font-size:14px;margin:0 0 20px 0;padding:0 20px}#wp-mail-smtp .wp-mail-smtp-page-title a{border-bottom:2px solid #fff;box-shadow:none;color:#666;display:inline-block;margin-right:30px;padding:20px 0 18px 0;text-decoration:none}#wp-mail-smtp .wp-mail-smtp-page-title a.active{border-bottom:2px solid #FF982D}#wp-mail-smtp .wp-mail-smtp-page-title a:hover{border-color:#999}#wp-mail-smtp .wp-mail-smtp-page{padding:0 20px}#wp-mail-smtp .wp-mail-smtp-page *,#wp-mail-smtp .wp-mail-smtp-page *::before,#wp-mail-smtp .wp-mail-smtp-page *::after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-clear:before{content:" ";display:table}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-clear:after{clear:both;content:" ";display:table}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row{border-bottom:1px solid #e4e4e4;padding:30px 0;font-size:14px;line-height:1.3}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row:first-of-type{padding-top:10px !important}@media (max-width: 781px){#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row{padding:20px 0}}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.inactive{display:none}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row .wp-mail-smtp-setting-mid-row-sep{margin:15px 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.section-heading{padding:20px 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.section-heading.no-desc h2,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.section-heading.no-desc h4{margin:0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.section-heading .wp-mail-smtp-setting-field{margin:0;max-width:1000px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox input[type=checkbox]{float:left;margin:1px 0 0 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox input[type=checkbox]+label{margin:0 0 0 8px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox .desc{margin:0 0 0 30px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox input[type=checkbox]+label+.desc{margin:8px 0 0 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-text .wp-mail-smtp-setting-label,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-password .wp-mail-smtp-setting-label,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-number .wp-mail-smtp-setting-label,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-email .wp-mail-smtp-setting-label{padding-top:8px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-select .wp-mail-smtp-setting-label{padding-top:8px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-radio .wp-mail-smtp-setting-field input[type=radio]{margin:-3px 10px 0 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-radio .wp-mail-smtp-setting-field label{margin-right:30px;display:inline-block}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field label{vertical-align:middle;display:inline-block}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field label:hover .wp-mail-smtp-setting-toggle-switch{background-color:#999}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field input[type=checkbox]{display:none}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field input[type=checkbox]:checked+.wp-mail-smtp-setting-toggle-switch{background-color:#83c11f}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field input[type=checkbox]:checked+.wp-mail-smtp-setting-toggle-switch:before{-webkit-transform:translateX(19px);-ms-transform:translateX(19px);transform:translateX(19px)}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field input[type=checkbox]:checked+.wp-mail-smtp-setting-toggle-switch+.wp-mail-smtp-setting-toggle-checked-label{display:inline-block}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field input[type=checkbox]:checked+.wp-mail-smtp-setting-toggle-switch+.wp-mail-smtp-setting-toggle-checked-label+.wp-mail-smtp-setting-toggle-unchecked-label{display:none}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field .wp-mail-smtp-setting-toggle-unchecked-label,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field .wp-mail-smtp-setting-toggle-checked-label{text-transform:uppercase;font-weight:700;font-size:13px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field .wp-mail-smtp-setting-toggle-checked-label{display:none}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field .wp-mail-smtp-setting-toggle-switch{position:relative;cursor:pointer;background-color:#ccc;border-radius:15px;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;vertical-align:middle;position:relative;display:inline-block;margin:0 5px 0 0;width:40px;height:20px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field .wp-mail-smtp-setting-toggle-switch:before{position:absolute;content:"";height:14px;width:14px;left:3px;top:3px;background-color:#fff;border-radius:50%;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer{padding-bottom:20px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer{display:inline-block;width:140px;margin-right:10px;margin-bottom:10px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer:last-child{margin-right:0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer .wp-mail-smtp-mailer-image{background:#fff;text-align:center;border:2px solid #E5E5E5;border-radius:4px;height:76px;position:relative;margin-bottom:10px;cursor:pointer;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer .wp-mail-smtp-mailer-image img{display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);opacity:0.6;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer.active .wp-mail-smtp-mailer-image{border-color:#FF982D}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer.active .wp-mail-smtp-mailer-image img{opacity:1}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer:hover .wp-mail-smtp-mailer-image{border-color:#ccc}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer:hover .wp-mail-smtp-mailer-image img{opacity:1}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row h2,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row h4{color:#444;font-size:20px;font-weight:700;margin:0 0 6px 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row h3{color:#444;font-size:24px;font-weight:600;margin:0 0 20px 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row p{margin:12px 0 0;font-size:14px;line-height:1.3}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row p:first-of-type{margin:8px 0 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row p.desc{font-style:italic;color:#666}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password]{background-color:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:none;color:#333;display:inline-block;vertical-align:middle;padding:7px 12px;margin:0 10px 0 0;width:400px;min-height:35px}@media (max-width: 959px){#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password]{width:300px}}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text][readonly],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email][readonly],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number][readonly],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password][readonly]{background-color:#f9f9f9}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text].small-text,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email].small-text,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number].small-text,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password].small-text{width:75px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text]:focus,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email]:focus,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number]:focus,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password]:focus{border-color:#bbb}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text]:disabled,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email]:disabled,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number]:disabled,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password]:disabled{opacity:0.6}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-label{display:block;float:left;width:200px;padding:0}@media (max-width: 781px){#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-label{float:none;width:100%;padding-bottom:15px}}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-label label{display:block;font-weight:600}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-field{display:block;margin:0 0 0 200px;max-width:800px}@media (max-width: 781px){#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-field{margin:0}}#wp-mail-smtp .wp-mail-smtp-page p.wp-mail-smtp-submit{margin:0;padding:25px 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-mailer-options .wp-mail-smtp-mailer-option .wp-mail-smtp-setting-row.section-heading{padding:20px 0 !important}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-mailer-options .wp-mail-smtp-mailer-option blockquote{background:#E5E5E5;border-radius:4px;color:#666;font-size:14px;margin:20px 0;padding:15px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn{border:0;border-radius:3px;cursor:pointer;display:inline-block;margin:0;text-decoration:none;text-align:center;vertical-align:middle;white-space:nowrap;text-shadow:none;box-shadow:none;outline:none}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn .dashicons{font-size:16px;width:16px;height:16px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-block{display:block}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-md{font-size:13px;font-weight:600;padding:8px 12px;min-height:35px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-lg{font-size:16px;font-weight:600;padding:16px 28px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-orange{background-color:#FF982D;border-color:#FF982D;color:#fff}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-orange:hover,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-orange:active,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-orange:focus{background-color:#f97f00;border-color:#f97f00}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-red{background-color:red;border-color:red;color:#fff}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-red:hover,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-red:active,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-red:focus{background-color:darkred;border-color:darkred}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-grey{background-color:#eee;border-color:#ccc;color:#666}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-grey:hover,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-grey:active,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-grey:focus{background-color:#d7d7d7;border-color:#ccc;color:#444}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-light-grey{background-color:#f5f5f5;border:1px solid #ccc;color:#666}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-light-grey:hover,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-light-grey:active,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-light-grey:focus{background-color:#eee;color:#444}#wp-mail-smtp .wp-mail-smtp-page p{margin:0}#wp-mail-smtp .wp-mail-smtp-page .notice-inline{background:#fff;border-left:4px solid #fff;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);margin:5px 0 15px;padding:1px 12px}#wp-mail-smtp .wp-mail-smtp-page .notice-inline.notice-success{border-left-color:#46b450}#wp-mail-smtp .wp-mail-smtp-page .notice-inline.notice-warning{border-left-color:#ffb900}#wp-mail-smtp .wp-mail-smtp-page .notice-inline.notice-error{border-left-color:#dc3232}#wp-mail-smtp .wp-mail-smtp-page .notice-inline.notice-info{border-left-color:#00a0d2}#wp-mail-smtp .wp-mail-smtp-page .notice p,#wp-mail-smtp .wp-mail-smtp-page .notice-inline p{margin:0.5em 0;padding:2px}#wp-mail-smtp .wp-mail-smtp-page pre{white-space:pre-line}#wp-mail-smtp .wp-mail-smtp-page.active{display:block}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug{background-color:#fff;padding:25px 20px 1px 25px}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug h2{color:#444;margin:1.4em 0 0.8em;font-size:16px;font-weight:700}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug p{font-size:14px;color:#555;margin-bottom:1.1em}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ul,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ol{font-size:14px;color:#555;margin:0 0 1.1em 1.8em}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ul li,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ol li{margin:0 0 8px 0;line-height:1.5}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ul li:last-of-type,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ol li:last-of-type{margin:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ul li ul,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ol li ul{list-style-type:disc}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug a{color:#FF982D}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug a:hover{color:#f97f00}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .dashicons-star-filled{color:#FF982D;width:16px;height:16px;font-size:16px;vertical-align:text-top}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log-toggle{text-decoration:none;color:#444}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log-toggle:hover{color:#FF982D}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log-toggle .dashicons{font-size:15px;height:15px;width:15px;padding-top:3px;border:0;outline:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log{border-left:3px solid #ffb900;padding:0 0 0 20px;margin:0 0 10px 0;font-size:12px;display:none}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log pre{margin:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log-note{display:none}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms{background-color:#fff;padding:25px 20px;border:1px solid #dadada;margin:10px 0 0 0;position:relative}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms .wp-mail-smtp-wpforms-dismiss{position:absolute;right:10px;top:10px}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms .wp-mail-smtp-wpforms-dismiss button{background:none;border:none;color:#a9a9a9;cursor:pointer;margin:0;padding:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms h2{color:#444;margin-top:0;font-size:16px;font-weight:700}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms p{font-size:14px;color:#555;margin-bottom:1.1em}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms p:last-of-type{margin:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms .benefits{margin:0 0 16px 0;overflow:auto;max-width:900px}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms ul{margin:0;padding:0;width:50%;float:left}@media (max-width: 600px){#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms ul{width:100%;float:none}}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms ul li{margin:0;padding:0 0 2px 16px;color:#555;font-size:14px;position:relative}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms ul li:before{content:'+';position:absolute;top:-1px;left:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms a{color:#FF982D}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms a:hover,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms a:active,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms a:focus{color:#f97f00}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms .stars{text-decoration:none}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms .stars .dashicons{width:16px;height:16px;font-size:16px;vertical-align:text-top}
|
2 |
|
3 |
/*# sourceMappingURL=smtp-admin.min.css.map */
|
1 |
+
#wpcontent{padding-left:0 !important;position:relative}@media (max-width: 600px){#wpcontent{padding-top:46px}}@media (max-width: 600px){#wpbody{padding-top:0}}#wp-mail-smtp-header{background-color:#f1f3f7;border-top:3px solid #FF982D;padding:20px}#wp-mail-smtp-header img{display:block;margin:0;max-width:242px}@media (max-width: 782px){#wp-mail-smtp-header img{max-width:200px}}#wp-mail-smtp{margin:0}#wp-mail-smtp .wp-mail-smtp-page-title{background-color:#fff;font-size:14px;margin:0 0 20px 0;padding:0 20px}#wp-mail-smtp .wp-mail-smtp-page-title a{border-bottom:2px solid #fff;box-shadow:none;color:#666;display:inline-block;margin-right:30px;padding:20px 0 18px 0;text-decoration:none}#wp-mail-smtp .wp-mail-smtp-page-title a.active{border-bottom:2px solid #FF982D}#wp-mail-smtp .wp-mail-smtp-page-title a:hover{border-color:#999}#wp-mail-smtp .wp-mail-smtp-page{padding:0 20px}#wp-mail-smtp .wp-mail-smtp-page *,#wp-mail-smtp .wp-mail-smtp-page *::before,#wp-mail-smtp .wp-mail-smtp-page *::after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-clear:before{content:" ";display:table}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-clear:after{clear:both;content:" ";display:table}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row{border-bottom:1px solid #e4e4e4;padding:30px 0;font-size:14px;line-height:1.3}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row:first-of-type{padding-top:10px !important}@media (max-width: 781px){#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row{padding:20px 0}}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.inactive{display:none}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row .wp-mail-smtp-setting-mid-row-sep{margin:15px 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.section-heading{padding:20px 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.section-heading.no-desc h2,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.section-heading.no-desc h4{margin:0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.section-heading .wp-mail-smtp-setting-field{margin:0;max-width:1000px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox input[type=checkbox]{float:left;margin:1px 0 0 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox input[type=checkbox]+label{margin:0 0 0 8px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox .desc{margin:0 0 0 30px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox input[type=checkbox]+label+.desc{margin:8px 0 0 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-text .wp-mail-smtp-setting-label,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-password .wp-mail-smtp-setting-label,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-number .wp-mail-smtp-setting-label,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-email .wp-mail-smtp-setting-label{padding-top:8px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-select .wp-mail-smtp-setting-label{padding-top:8px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-radio .wp-mail-smtp-setting-field input[type=radio]{margin:-3px 10px 0 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-radio .wp-mail-smtp-setting-field label{margin-right:30px;display:inline-block}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field label{vertical-align:middle;display:inline-block}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field label:hover .wp-mail-smtp-setting-toggle-switch{background-color:#999}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field input[type=checkbox]{display:none}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field input[type=checkbox]:checked+.wp-mail-smtp-setting-toggle-switch{background-color:#83c11f}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field input[type=checkbox]:checked+.wp-mail-smtp-setting-toggle-switch:before{-webkit-transform:translateX(19px);-ms-transform:translateX(19px);transform:translateX(19px)}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field input[type=checkbox]:checked+.wp-mail-smtp-setting-toggle-switch+.wp-mail-smtp-setting-toggle-checked-label{display:inline-block}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field input[type=checkbox]:checked+.wp-mail-smtp-setting-toggle-switch+.wp-mail-smtp-setting-toggle-checked-label+.wp-mail-smtp-setting-toggle-unchecked-label{display:none}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field .wp-mail-smtp-setting-toggle-unchecked-label,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field .wp-mail-smtp-setting-toggle-checked-label{text-transform:uppercase;font-weight:700;font-size:13px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field .wp-mail-smtp-setting-toggle-checked-label{display:none}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field .wp-mail-smtp-setting-toggle-switch{position:relative;cursor:pointer;background-color:#ccc;border-radius:15px;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;vertical-align:middle;position:relative;display:inline-block;margin:0 5px 0 0;width:40px;height:20px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-checkbox-toggle .wp-mail-smtp-setting-field .wp-mail-smtp-setting-toggle-switch:before{position:absolute;content:"";height:14px;width:14px;left:3px;top:3px;background-color:#fff;border-radius:50%;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer{padding-bottom:20px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer{display:inline-block;width:140px;margin-right:10px;margin-bottom:10px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer:last-child{margin-right:0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer .wp-mail-smtp-mailer-image{background:#fff;text-align:center;border:2px solid #E5E5E5;border-radius:4px;height:76px;position:relative;margin-bottom:10px;cursor:pointer;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer .wp-mail-smtp-mailer-image img{display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);opacity:0.6;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer.active .wp-mail-smtp-mailer-image{border-color:#FF982D}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer.active .wp-mail-smtp-mailer-image img{opacity:1}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer:hover .wp-mail-smtp-mailer-image{border-color:#ccc}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row.wp-mail-smtp-setting-row-mailer .wp-mail-smtp-mailer:hover .wp-mail-smtp-mailer-image img{opacity:1}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row h2,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row h4{color:#444;font-size:20px;font-weight:700;margin:0 0 6px 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row h3{color:#444;font-size:24px;font-weight:600;margin:0 0 20px 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row p{margin:12px 0 0;font-size:14px;line-height:1.3}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row p:first-of-type{margin:8px 0 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row p.desc{font-style:italic;color:#666}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password]{background-color:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:none;color:#333;display:inline-block;vertical-align:middle;padding:7px 12px;margin:0 10px 0 0;width:400px;min-height:35px}@media (max-width: 959px){#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password]{width:300px}}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text][readonly],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email][readonly],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number][readonly],#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password][readonly]{background-color:#f9f9f9}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text].small-text,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email].small-text,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number].small-text,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password].small-text{width:75px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text]:focus,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email]:focus,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number]:focus,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password]:focus{border-color:#bbb}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=text]:disabled,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=email]:disabled,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=number]:disabled,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-row input[type=password]:disabled{opacity:0.6}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-label{display:block;float:left;width:200px;padding:0}@media (max-width: 781px){#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-label{float:none;width:100%;padding-bottom:15px}}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-label label{display:block;font-weight:600}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-field{display:block;margin:0 0 0 200px;max-width:800px}@media (max-width: 781px){#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-setting-field{margin:0}}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-submit{margin:0;padding:25px 0}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-submit .help-text{margin-left:10px;vertical-align:middle}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-mailer-options .wp-mail-smtp-mailer-option .wp-mail-smtp-setting-row.section-heading{padding:20px 0 !important}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-mailer-options .wp-mail-smtp-mailer-option blockquote{background:#E5E5E5;border-radius:4px;color:#666;font-size:14px;margin:20px 0;padding:15px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn{border:0;border-radius:3px;cursor:pointer;display:inline-block;margin:0;text-decoration:none;text-align:center;vertical-align:middle;white-space:nowrap;text-shadow:none;box-shadow:none;outline:none}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn .dashicons{font-size:16px;width:16px;height:16px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn:disabled{opacity:0.5;cursor:not-allowed}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-block{display:block}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-md{font-size:13px;font-weight:600;padding:8px 12px;min-height:35px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-lg{font-size:16px;font-weight:600;padding:16px 28px}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-orange{background-color:#FF982D;border-color:#FF982D;color:#fff}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-orange:hover,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-orange:active,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-orange:focus{background-color:#f97f00;border-color:#f97f00}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-red{background-color:red;border-color:red;color:#fff}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-red:hover,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-red:active,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-red:focus{background-color:darkred;border-color:darkred}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-grey{background-color:#eee;border-color:#ccc;color:#666}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-grey:hover,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-grey:active,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-grey:focus{background-color:#d7d7d7;border-color:#ccc;color:#444}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-light-grey{background-color:#f5f5f5;border:1px solid #ccc;color:#666}#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-light-grey:hover,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-light-grey:active,#wp-mail-smtp .wp-mail-smtp-page .wp-mail-smtp-btn-light-grey:focus{background-color:#eee;color:#444}#wp-mail-smtp .wp-mail-smtp-page p{margin:0}#wp-mail-smtp .wp-mail-smtp-page .notice-inline{background:#fff;border-left:4px solid #fff;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);margin:5px 0 15px;padding:1px 12px}#wp-mail-smtp .wp-mail-smtp-page .notice-inline.notice-success{border-left-color:#46b450}#wp-mail-smtp .wp-mail-smtp-page .notice-inline.notice-warning{border-left-color:#ffb900}#wp-mail-smtp .wp-mail-smtp-page .notice-inline.notice-error{border-left-color:#dc3232}#wp-mail-smtp .wp-mail-smtp-page .notice-inline.notice-info{border-left-color:#00a0d2}#wp-mail-smtp .wp-mail-smtp-page .notice p,#wp-mail-smtp .wp-mail-smtp-page .notice-inline p{margin:0.5em 0;padding:2px}#wp-mail-smtp .wp-mail-smtp-page pre{white-space:pre-line}#wp-mail-smtp .wp-mail-smtp-page.active{display:block}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug{background-color:#fff;padding:25px 20px 1px 25px}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug h2{color:#444;margin:1.4em 0 0.8em;font-size:16px;font-weight:700}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug p{font-size:14px;color:#555;margin-bottom:1.1em}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ul,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ol{font-size:14px;color:#555;margin:0 0 1.1em 1.8em}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ul li,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ol li{margin:0 0 8px 0;line-height:1.5}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ul li:last-of-type,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ol li:last-of-type{margin:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ul li ul,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug ol li ul{list-style-type:disc}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug a{color:#FF982D}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug a:hover{color:#f97f00}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .dashicons-star-filled{color:#FF982D;width:16px;height:16px;font-size:16px;vertical-align:text-top}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log-toggle{text-decoration:none;color:#444}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log-toggle:hover{color:#FF982D}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log-toggle .dashicons{font-size:15px;height:15px;width:15px;padding-top:3px;border:0;outline:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log{border-left:3px solid #ffb900;padding:0 0 0 20px;margin:0 0 10px 0;font-size:12px;display:none}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log pre{margin:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-debug .error-log-note{display:none}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms{background-color:#fff;padding:25px 20px;border:1px solid #dadada;margin:10px 0 0 0;position:relative}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms .wp-mail-smtp-wpforms-dismiss{position:absolute;right:10px;top:10px}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms .wp-mail-smtp-wpforms-dismiss button{background:none;border:none;color:#a9a9a9;cursor:pointer;margin:0;padding:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms h2{color:#444;margin-top:0;font-size:16px;font-weight:700}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms p{font-size:14px;color:#555;margin-bottom:1.1em}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms p:last-of-type{margin:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms .benefits{margin:0 0 16px 0;overflow:auto;max-width:900px}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms ul{margin:0;padding:0;width:50%;float:left}@media (max-width: 600px){#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms ul{width:100%;float:none}}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms ul li{margin:0;padding:0 0 2px 16px;color:#555;font-size:14px;position:relative}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms ul li:before{content:'+';position:absolute;top:-1px;left:0}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms a{color:#FF982D}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms a:hover,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms a:active,#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms a:focus{color:#f97f00}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms .stars{text-decoration:none}#wp-mail-smtp .wp-mail-smtp-page #wp-mail-smtp-wpforms .stars .dashicons{width:16px;height:16px;font-size:16px;vertical-align:text-top}
|
2 |
|
3 |
/*# sourceMappingURL=smtp-admin.min.css.map */
|
assets/images/email/icon-check.png
ADDED
Binary file
|
assets/images/email/signature.png
ADDED
Binary file
|
assets/images/email/wp-mail-smtp.png
ADDED
Binary file
|
assets/images/email/wpforms-pro.png
ADDED
Binary file
|
class-wpms-am-notification.php
CHANGED
@@ -1,18 +1,19 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Awesome Motive Notifications
|
5 |
*
|
6 |
* This creates a custom post type (if it doesn't exist) and calls the API to
|
7 |
* retrieve notifications for this product.
|
8 |
*
|
9 |
* @package AwesomeMotive
|
10 |
-
* @author
|
11 |
* @license GPL-2.0+
|
12 |
-
* @copyright Copyright (c)
|
13 |
-
* @version 1.0.
|
14 |
*/
|
15 |
class WPMS_AM_Notification {
|
|
|
16 |
/**
|
17 |
* The api url we are calling.
|
18 |
*
|
@@ -75,9 +76,10 @@ class WPMS_AM_Notification {
|
|
75 |
*/
|
76 |
public function custom_post_type() {
|
77 |
register_post_type( 'amn_' . $this->plugin, array(
|
78 |
-
'label'
|
79 |
-
'can_export'
|
80 |
-
'supports'
|
|
|
81 |
) );
|
82 |
}
|
83 |
|
@@ -87,7 +89,7 @@ class WPMS_AM_Notification {
|
|
87 |
* @since 1.0.0
|
88 |
*/
|
89 |
public function get_remote_notifications() {
|
90 |
-
if ( !
|
91 |
return;
|
92 |
}
|
93 |
|
@@ -131,10 +133,12 @@ class WPMS_AM_Notification {
|
|
131 |
}
|
132 |
|
133 |
if ( empty( $notifications ) ) {
|
134 |
-
$new_notification_id = wp_insert_post(
|
135 |
-
|
136 |
-
|
137 |
-
|
|
|
|
|
138 |
|
139 |
update_post_meta( $new_notification_id, 'notification_id', absint( $data->id ) );
|
140 |
update_post_meta( $new_notification_id, 'type', sanitize_text_field( trim( $data->type ) ) );
|
@@ -167,7 +171,7 @@ class WPMS_AM_Notification {
|
|
167 |
*
|
168 |
* @return WP_Post[] WP_Post that match the query.
|
169 |
*/
|
170 |
-
public function get_plugin_notifications( $limit = -1, $args = array() ) {
|
171 |
return get_posts(
|
172 |
array(
|
173 |
'posts_per_page' => $limit,
|
@@ -182,11 +186,11 @@ class WPMS_AM_Notification {
|
|
182 |
* @since 1.0.0
|
183 |
*/
|
184 |
public function display_notifications() {
|
185 |
-
if ( !
|
186 |
return;
|
187 |
}
|
188 |
|
189 |
-
$plugin_notifications = $this->get_plugin_notifications( -1, array(
|
190 |
'post_status' => 'all',
|
191 |
'meta_key' => 'viewed',
|
192 |
'meta_value' => '0',
|
@@ -199,18 +203,18 @@ class WPMS_AM_Notification {
|
|
199 |
$dismissable = get_post_meta( $notification->ID, 'dismissable', true );
|
200 |
$type = get_post_meta( $notification->ID, 'type', true );
|
201 |
?>
|
202 |
-
<div class="am-notification am-notification-<?php echo $notification->ID
|
203 |
-
<?php echo $notification->post_content
|
204 |
</div>
|
205 |
<script type="text/javascript">
|
206 |
-
jQuery(document).ready(function
|
207 |
-
$(document).on
|
208 |
-
$.post(ajaxurl, {
|
209 |
action: 'am_notification_dismiss',
|
210 |
-
notification_id: '<?php echo $notification->ID
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
</script>
|
215 |
<?php
|
216 |
}
|
@@ -325,11 +329,11 @@ class WPMS_AM_Notification {
|
|
325 |
*/
|
326 |
public function get_plan_level() {
|
327 |
// Prepare variables.
|
328 |
-
$key
|
329 |
-
$level
|
330 |
-
|
331 |
switch ( $this->plugin ) {
|
332 |
-
case 'wpforms
|
333 |
$option = get_option( 'wpforms_license' );
|
334 |
$key = is_array( $option ) && isset( $option['key'] ) ? $option['key'] : '';
|
335 |
$level = is_array( $option ) && isset( $option['type'] ) ? $option['type'] : '';
|
@@ -339,37 +343,33 @@ class WPMS_AM_Notification {
|
|
339 |
$key = WPFORMS_LICENSE_KEY;
|
340 |
}
|
341 |
break;
|
342 |
-
case 'mi
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
case 'sol' :
|
353 |
-
$option = get_option( 'soliloquy' );
|
354 |
-
$key = is_array( $option ) && isset( $option['key'] ) ? $option['key'] : '';
|
355 |
-
$level = is_array( $option ) && isset( $option['type'] ) ? $option['type'] : '';
|
356 |
-
|
357 |
-
// Possibly check for a constant.
|
358 |
-
if ( empty( $key ) && defined( 'SOLILOQUY_LICENSE_KEY' ) ) {
|
359 |
-
$key = SOLILOQUY_LICENSE_KEY;
|
360 |
-
}
|
361 |
-
break;
|
362 |
-
case 'envira' :
|
363 |
-
$option = get_option( 'envira_gallery' );
|
364 |
-
$key = is_array( $option ) && isset( $option['key'] ) ? $option['key'] : '';
|
365 |
-
$level = is_array( $option ) && isset( $option['type'] ) ? $option['type'] : '';
|
366 |
|
367 |
-
|
368 |
-
|
369 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
}
|
371 |
break;
|
372 |
-
case 'om
|
373 |
$option = get_option( 'optin_monster_api' );
|
374 |
$key = is_array( $option ) && isset( $option['api']['apikey'] ) ? $option['api']['apikey'] : '';
|
375 |
|
@@ -390,22 +390,27 @@ class WPMS_AM_Notification {
|
|
390 |
$level = 'none';
|
391 |
}
|
392 |
|
|
|
|
|
|
|
|
|
|
|
393 |
// Normalize the level.
|
394 |
switch ( $level ) {
|
395 |
-
case 'bronze
|
396 |
-
case 'personal
|
397 |
$level = 'basic';
|
398 |
break;
|
399 |
-
case 'silver
|
400 |
-
case 'multi
|
401 |
$level = 'plus';
|
402 |
break;
|
403 |
-
case 'gold
|
404 |
-
case 'developer
|
405 |
$level = 'pro';
|
406 |
break;
|
407 |
-
case 'platinum
|
408 |
-
case 'master
|
409 |
$level = 'ultimate';
|
410 |
break;
|
411 |
}
|
@@ -420,7 +425,7 @@ class WPMS_AM_Notification {
|
|
420 |
* @since 1.0.0
|
421 |
*/
|
422 |
public function dismiss_notification() {
|
423 |
-
if ( !
|
424 |
die;
|
425 |
}
|
426 |
|
@@ -439,7 +444,7 @@ class WPMS_AM_Notification {
|
|
439 |
public function revoke_notifications( $ids ) {
|
440 |
// Loop through each of the IDs and find the post that has it as meta.
|
441 |
foreach ( (array) $ids as $id ) {
|
442 |
-
$notifications = $this->get_plugin_notifications( -1, array( 'post_status' => 'all', 'meta_key' => 'notification_id', 'meta_value' => $id ) );
|
443 |
if ( $notifications ) {
|
444 |
foreach ( $notifications as $notification ) {
|
445 |
update_post_meta( $notification->ID, 'viewed', 1 );
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Awesome Motive Notifications.
|
5 |
*
|
6 |
* This creates a custom post type (if it doesn't exist) and calls the API to
|
7 |
* retrieve notifications for this product.
|
8 |
*
|
9 |
* @package AwesomeMotive
|
10 |
+
* @author AwesomeMotive Team
|
11 |
* @license GPL-2.0+
|
12 |
+
* @copyright Copyright (c) 2018, Awesome Motive LLC
|
13 |
+
* @version 1.0.7
|
14 |
*/
|
15 |
class WPMS_AM_Notification {
|
16 |
+
|
17 |
/**
|
18 |
* The api url we are calling.
|
19 |
*
|
76 |
*/
|
77 |
public function custom_post_type() {
|
78 |
register_post_type( 'amn_' . $this->plugin, array(
|
79 |
+
'label' => $this->plugin . ' Announcements',
|
80 |
+
'can_export' => false,
|
81 |
+
'supports' => false,
|
82 |
+
'capability_type' => 'manage_options',
|
83 |
) );
|
84 |
}
|
85 |
|
89 |
* @since 1.0.0
|
90 |
*/
|
91 |
public function get_remote_notifications() {
|
92 |
+
if ( ! apply_filters( 'am_notifications_display', is_super_admin() ) ) {
|
93 |
return;
|
94 |
}
|
95 |
|
133 |
}
|
134 |
|
135 |
if ( empty( $notifications ) ) {
|
136 |
+
$new_notification_id = wp_insert_post(
|
137 |
+
array(
|
138 |
+
'post_content' => wp_kses_post( $data->content ),
|
139 |
+
'post_type' => 'amn_' . $this->plugin,
|
140 |
+
)
|
141 |
+
);
|
142 |
|
143 |
update_post_meta( $new_notification_id, 'notification_id', absint( $data->id ) );
|
144 |
update_post_meta( $new_notification_id, 'type', sanitize_text_field( trim( $data->type ) ) );
|
171 |
*
|
172 |
* @return WP_Post[] WP_Post that match the query.
|
173 |
*/
|
174 |
+
public function get_plugin_notifications( $limit = - 1, $args = array() ) {
|
175 |
return get_posts(
|
176 |
array(
|
177 |
'posts_per_page' => $limit,
|
186 |
* @since 1.0.0
|
187 |
*/
|
188 |
public function display_notifications() {
|
189 |
+
if ( ! apply_filters( 'am_notifications_display', is_super_admin() ) ) {
|
190 |
return;
|
191 |
}
|
192 |
|
193 |
+
$plugin_notifications = $this->get_plugin_notifications( - 1, array(
|
194 |
'post_status' => 'all',
|
195 |
'meta_key' => 'viewed',
|
196 |
'meta_value' => '0',
|
203 |
$dismissable = get_post_meta( $notification->ID, 'dismissable', true );
|
204 |
$type = get_post_meta( $notification->ID, 'type', true );
|
205 |
?>
|
206 |
+
<div class="am-notification am-notification-<?php echo absint( $notification->ID ); ?> notice notice-<?php echo esc_attr( $type ); ?><?php echo $dismissable ? ' is-dismissible' : ''; ?>">
|
207 |
+
<?php echo wp_kses_post( $notification->post_content ); ?>
|
208 |
</div>
|
209 |
<script type="text/javascript">
|
210 |
+
jQuery( document ).ready( function ( $ ) {
|
211 |
+
$( document ).on( 'click', '.am-notification-<?php echo absint( $notification->ID ); ?> button.notice-dismiss', function ( event ) {
|
212 |
+
$.post( ajaxurl, {
|
213 |
action: 'am_notification_dismiss',
|
214 |
+
notification_id: '<?php echo absint( $notification->ID ); ?>'
|
215 |
+
} );
|
216 |
+
} );
|
217 |
+
} );
|
218 |
</script>
|
219 |
<?php
|
220 |
}
|
329 |
*/
|
330 |
public function get_plan_level() {
|
331 |
// Prepare variables.
|
332 |
+
$key = '';
|
333 |
+
$level = '';
|
334 |
+
|
335 |
switch ( $this->plugin ) {
|
336 |
+
case 'wpforms':
|
337 |
$option = get_option( 'wpforms_license' );
|
338 |
$key = is_array( $option ) && isset( $option['key'] ) ? $option['key'] : '';
|
339 |
$level = is_array( $option ) && isset( $option['type'] ) ? $option['type'] : '';
|
343 |
$key = WPFORMS_LICENSE_KEY;
|
344 |
}
|
345 |
break;
|
346 |
+
case 'mi-lite':
|
347 |
+
case 'mi':
|
348 |
+
if ( version_compare( MONSTERINSIGHTS_VERSION, '6.9.0', '>=' ) ) {
|
349 |
+
if ( MonsterInsights()->license->get_site_license_type() ) {
|
350 |
+
$key = MonsterInsights()->license->get_site_license_key();
|
351 |
+
$type = MonsterInsights()->license->get_site_license_type();
|
352 |
+
} else if ( MonsterInsights()->license->get_network_license_type() ) {
|
353 |
+
$key = MonsterInsights()->license->get_network_license_key();
|
354 |
+
$type = MonsterInsights()->license->get_network_license_type();
|
355 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
356 |
|
357 |
+
// Check key fallbacks
|
358 |
+
if ( empty( $key ) ) {
|
359 |
+
$key = MonsterInsights()->license->get_license_key();
|
360 |
+
}
|
361 |
+
} else {
|
362 |
+
$option = get_option( 'monsterinsights_license' );
|
363 |
+
$key = is_array( $option ) && isset( $option['key'] ) ? $option['key'] : '';
|
364 |
+
$level = is_array( $option ) && isset( $option['type'] ) ? $option['type'] : '';
|
365 |
+
|
366 |
+
// Possibly check for a constant.
|
367 |
+
if ( empty( $key ) && defined( 'MONSTERINSIGHTS_LICENSE_KEY' ) && is_string( MONSTERINSIGHTS_LICENSE_KEY ) && strlen( MONSTERINSIGHTS_LICENSE_KEY ) > 10 ) {
|
368 |
+
$key = MONSTERINSIGHTS_LICENSE_KEY;
|
369 |
+
}
|
370 |
}
|
371 |
break;
|
372 |
+
case 'om':
|
373 |
$option = get_option( 'optin_monster_api' );
|
374 |
$key = is_array( $option ) && isset( $option['api']['apikey'] ) ? $option['api']['apikey'] : '';
|
375 |
|
390 |
$level = 'none';
|
391 |
}
|
392 |
|
393 |
+
// Possibly set the level to 'unknown' if a key is entered, but no level can be determined (such as manually entered key)
|
394 |
+
if ( ! empty( $key ) && empty( $level ) ) {
|
395 |
+
$level = 'unknown';
|
396 |
+
}
|
397 |
+
|
398 |
// Normalize the level.
|
399 |
switch ( $level ) {
|
400 |
+
case 'bronze':
|
401 |
+
case 'personal':
|
402 |
$level = 'basic';
|
403 |
break;
|
404 |
+
case 'silver':
|
405 |
+
case 'multi':
|
406 |
$level = 'plus';
|
407 |
break;
|
408 |
+
case 'gold':
|
409 |
+
case 'developer':
|
410 |
$level = 'pro';
|
411 |
break;
|
412 |
+
case 'platinum':
|
413 |
+
case 'master':
|
414 |
$level = 'ultimate';
|
415 |
break;
|
416 |
}
|
425 |
* @since 1.0.0
|
426 |
*/
|
427 |
public function dismiss_notification() {
|
428 |
+
if ( ! apply_filters( 'am_notifications_display', is_super_admin() ) ) {
|
429 |
die;
|
430 |
}
|
431 |
|
444 |
public function revoke_notifications( $ids ) {
|
445 |
// Loop through each of the IDs and find the post that has it as meta.
|
446 |
foreach ( (array) $ids as $id ) {
|
447 |
+
$notifications = $this->get_plugin_notifications( - 1, array( 'post_status' => 'all', 'meta_key' => 'notification_id', 'meta_value' => $id ) );
|
448 |
if ( $notifications ) {
|
449 |
foreach ( $notifications as $notification ) {
|
450 |
update_post_meta( $notification->ID, 'viewed', 1 );
|
languages/wp-mail-smtp.pot
CHANGED
@@ -1,1055 +1,1115 @@
|
|
1 |
-
# Copyright (C) 2018 WP Mail SMTP
|
2 |
-
# This file is distributed under the same license as the WP Mail SMTP package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: WP Mail SMTP\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Language-Team: WPForms <support@wpforms.com>\n"
|
10 |
-
"X-Poedit-Basepath: ..\n"
|
11 |
-
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
12 |
-
"X-Poedit-SearchPath-0: .\n"
|
13 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
|
17 |
-
#. translators: %s - error code, returned by Google API.
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
#:
|
248 |
-
msgid "Test
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
#. translators: %s -
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
#:
|
342 |
-
msgid "
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#:
|
346 |
-
msgid "
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#:
|
350 |
-
msgid "
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
#:
|
492 |
-
msgid "
|
493 |
-
msgstr ""
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
#:
|
538 |
-
msgid "
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
#:
|
564 |
-
msgid "
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
#:
|
594 |
-
msgid "
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
#. translators:
|
665 |
-
#:
|
666 |
-
msgid "
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
msgstr
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
#:
|
744 |
-
msgid
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#:
|
748 |
-
msgid "
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
#:
|
766 |
-
msgid
|
767 |
-
msgstr ""
|
768 |
-
|
769 |
-
#:
|
770 |
-
msgid "
|
771 |
-
msgstr ""
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
#:
|
790 |
-
msgid "
|
791 |
-
msgstr ""
|
792 |
-
|
793 |
-
#:
|
794 |
-
msgid "
|
795 |
-
msgstr ""
|
796 |
-
|
797 |
-
#:
|
798 |
-
msgid "
|
799 |
-
msgstr ""
|
800 |
-
|
801 |
-
#:
|
802 |
-
msgid "
|
803 |
-
msgstr ""
|
804 |
-
|
805 |
-
#:
|
806 |
-
msgid "
|
807 |
-
msgstr ""
|
808 |
-
|
809 |
-
#:
|
810 |
-
msgid "
|
811 |
-
msgstr ""
|
812 |
-
|
813 |
-
#:
|
814 |
-
msgid "
|
815 |
-
msgstr ""
|
816 |
-
|
817 |
-
#:
|
818 |
-
msgid "
|
819 |
-
msgstr ""
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
#:
|
874 |
-
msgid
|
875 |
-
msgstr ""
|
876 |
-
|
877 |
-
#:
|
878 |
-
msgid "
|
879 |
-
msgstr ""
|
880 |
-
|
881 |
-
#:
|
882 |
-
msgid "
|
883 |
-
msgstr ""
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
#:
|
898 |
-
msgid "
|
899 |
-
msgstr ""
|
900 |
-
|
901 |
-
#:
|
902 |
-
msgid "
|
903 |
-
msgstr ""
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
#:
|
922 |
-
msgid "
|
923 |
-
msgstr ""
|
924 |
-
|
925 |
-
#:
|
926 |
-
msgid "
|
927 |
-
msgstr ""
|
928 |
-
|
929 |
-
#:
|
930 |
-
msgid "
|
931 |
-
msgstr ""
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
#:
|
966 |
-
msgid "
|
967 |
-
msgstr ""
|
968 |
-
|
969 |
-
#:
|
970 |
-
msgid "
|
971 |
-
msgstr ""
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
#:
|
988 |
-
msgid "
|
989 |
-
msgstr ""
|
990 |
-
|
991 |
-
#:
|
992 |
-
msgid "
|
993 |
-
msgstr ""
|
994 |
-
|
995 |
-
#:
|
996 |
-
msgid "
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#:
|
1000 |
-
msgid "
|
1001 |
-
msgstr ""
|
1002 |
-
|
1003 |
-
#:
|
1004 |
-
msgid "
|
1005 |
-
msgstr ""
|
1006 |
-
|
1007 |
-
#:
|
1008 |
-
msgid "
|
1009 |
-
msgstr ""
|
1010 |
-
|
1011 |
-
#:
|
1012 |
-
msgid "
|
1013 |
-
msgstr ""
|
1014 |
-
|
1015 |
-
#:
|
1016 |
-
msgid "
|
1017 |
-
msgstr ""
|
1018 |
-
|
1019 |
-
#:
|
1020 |
-
msgid "If
|
1021 |
-
msgstr ""
|
1022 |
-
|
1023 |
-
#:
|
1024 |
-
msgid
|
1025 |
-
msgstr ""
|
1026 |
-
|
1027 |
-
#:
|
1028 |
-
msgid "
|
1029 |
-
msgstr ""
|
1030 |
-
|
1031 |
-
#:
|
1032 |
-
msgid "
|
1033 |
-
msgstr ""
|
1034 |
-
|
1035 |
-
#:
|
1036 |
-
msgid "
|
1037 |
-
msgstr ""
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2018 WP Mail SMTP
|
2 |
+
# This file is distributed under the same license as the WP Mail SMTP package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: WP Mail SMTP\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Language-Team: WPForms <support@wpforms.com>\n"
|
10 |
+
"X-Poedit-Basepath: ..\n"
|
11 |
+
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
12 |
+
"X-Poedit-SearchPath-0: .\n"
|
13 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
|
17 |
+
#. translators: %s - error code, returned by Google API.
|
18 |
+
#: src/Admin/Area.php:95
|
19 |
+
msgid "There was an error while processing the authentication request: %s. Please try again."
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/Admin/Area.php:102
|
23 |
+
msgid "There was an error while processing the authentication request. Please try again."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/Admin/Area.php:109
|
27 |
+
msgid "There was an error while processing the authentication request. Please make sure that you have Client ID and Client Secret both valid and saved."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: src/Admin/Area.php:118
|
31 |
+
msgid "You have successfully linked the current site with your Google API project. Now you can start sending emails through Google."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#. translators: %s - Mailer anchor link.
|
35 |
+
#: src/Admin/Area.php:150
|
36 |
+
msgid "Thanks for using WP Mail SMTP! To complete the plugin setup and start sending emails, <strong>please select and configure your <a href=\"%s\">Mailer</a></strong>."
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: src/Admin/Area.php:172
|
40 |
+
msgid "WP Mail SMTP Options"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: src/Admin/Area.php:173, wp_mail_smtp.php:666
|
44 |
+
msgid "WP Mail SMTP"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#. translators: %1$s - WP.org link; %2$s - same WP.org link.
|
48 |
+
#: src/Admin/Area.php:245
|
49 |
+
msgid "Please rate <strong>WP Mail SMTP</strong> <a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">★★★★★</a> on <a href=\"%2$s\" target=\"_blank\">WordPress.org</a> to help us spread the word. Thank you from the WP Mail SMTP team!"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: src/Admin/Area.php:423
|
53 |
+
msgid "WPForms related message was successfully dismissed"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: src/Admin/Area.php:457, src/Admin/Pages/Settings.php:26, wp_mail_smtp.php:772
|
57 |
+
msgid "Settings"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: src/Admin/Pages/Misc.php:24
|
61 |
+
msgid "Misc"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: src/Admin/Pages/Misc.php:48
|
65 |
+
msgid "General"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: src/Admin/Pages/Misc.php:56
|
69 |
+
msgid "Do Not Send"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: src/Admin/Pages/Misc.php:65
|
73 |
+
msgid "Check this if you would like to stop sending all emails."
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: src/Admin/Pages/Misc.php:71
|
77 |
+
msgid "Some plugins, like BuddyPress and Events Manager, are using own email delivery solutions. By default, this option does not block their emails, as those plugins do not use default <code>wp_mail()</code> function to send emails."
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: src/Admin/Pages/Misc.php:79
|
81 |
+
msgid "You will need to consult with their documentation to switch them to use default WordPress email delivery."
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: src/Admin/Pages/Misc.php:81
|
85 |
+
msgid "Test emails are allowed to be sent, regardless of this option."
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: src/Admin/Pages/Misc.php:90, wp_mail_smtp.php:409, wp_mail_smtp.php:414
|
89 |
+
msgid "Hide Announcements"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: src/Admin/Pages/Misc.php:99, wp_mail_smtp.php:419
|
93 |
+
msgid "Check this if you would like to hide plugin announcements and update details."
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: src/Admin/Pages/Misc.php:108
|
97 |
+
msgid "Uninstall WP Mail SMTP"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: src/Admin/Pages/Misc.php:116
|
101 |
+
msgid "Check this if you would like to remove ALL WP Mail SMTP data upon plugin deletion. All settings will be unrecoverable."
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: src/Admin/Pages/Misc.php:122, src/Admin/Pages/Settings.php:239
|
105 |
+
msgid "Save Settings"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: src/Admin/Pages/Misc.php:153, src/Admin/Pages/Settings.php:432
|
109 |
+
msgid "Settings were successfully saved."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: src/Admin/Pages/Settings.php:52
|
113 |
+
msgid "Mail"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: src/Admin/Pages/Settings.php:59, wp_mail_smtp.php:310
|
117 |
+
msgid "From Email"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: src/Admin/Pages/Settings.php:70, src/Admin/Pages/Settings.php:95
|
121 |
+
msgid "Gmail doesn't allow to override From Email. Emails will be sent using the email address you used to setup the connection."
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: src/Admin/Pages/Settings.php:74
|
125 |
+
msgid "The email address which emails are sent from."
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: src/Admin/Pages/Settings.php:75
|
129 |
+
msgid "If you using an email provider (Gmail, Yahoo, Outlook.com, etc) this should be your email address for that account."
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: src/Admin/Pages/Settings.php:78
|
133 |
+
msgid "Please note that other plugins can change this, to prevent this use the setting below."
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: src/Admin/Pages/Settings.php:90
|
137 |
+
msgid "Force From Email"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: src/Admin/Pages/Settings.php:99
|
141 |
+
msgid "If checked, the From Email setting above will be used for all emails, ignoring values set by other plugins."
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: src/Admin/Pages/Settings.php:109, wp_mail_smtp.php:329
|
145 |
+
msgid "From Name"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: src/Admin/Pages/Settings.php:120, src/Admin/Pages/Settings.php:141
|
149 |
+
msgid "Gmail doesn't allow to override From Name. Emails will not have From Name defined at all."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: src/Admin/Pages/Settings.php:124
|
153 |
+
msgid "The name which emails are sent from."
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: src/Admin/Pages/Settings.php:136
|
157 |
+
msgid "Force From Name"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: src/Admin/Pages/Settings.php:145
|
161 |
+
msgid "If checked, the From Name setting above will be used for all emails, ignoring values set by other plugins."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: src/Admin/Pages/Settings.php:154, wp_mail_smtp.php:344, wp_mail_smtp.php:349
|
165 |
+
msgid "Mailer"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: src/Admin/Pages/Settings.php:189, wp_mail_smtp.php:385, wp_mail_smtp.php:390
|
169 |
+
msgid "Return Path"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: src/Admin/Pages/Settings.php:198, wp_mail_smtp.php:395
|
173 |
+
msgid "Set the return-path to match the From Email"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: src/Admin/Pages/Settings.php:203
|
177 |
+
msgid "Gmail doesn't allow to override Return Path. Emails will be bounced to the same email addresee they were sent from."
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: src/Admin/Pages/Settings.php:207, wp_mail_smtp.php:399
|
181 |
+
msgid "Return Path indicates where non-delivery receipts - or bounce messages - are to be sent."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: src/Admin/Pages/Settings.php:208
|
185 |
+
msgid "If unchecked bounce messages may be lost."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: src/Admin/Pages/Settings.php:283
|
189 |
+
msgid "Get WPForms Pro and Support WP Mail SMTP"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: src/Admin/Pages/Settings.php:287, src/Admin/Pages/Test.php:1056
|
193 |
+
msgid "WP Mail SMTP is a free plugin, and the team behind WPForms maintains it to give back to the WordPress community."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#. translators: %s - WPForms.com URL.
|
197 |
+
#: src/Admin/Pages/Settings.php:295
|
198 |
+
msgid "Please consider supporting us by <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">purchasing a WPForms Pro license</a>. Aside from getting access to the best drag & drop WordPress form builder plugin, your purchase will help us continue to maintain and add new features to the WP Mail SMTP plugin while keeping this SMTP plugin free for the larger WordPress community."
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#. translators: %s - link to WP.org repo and 5 HTML encoded stars as a label.
|
202 |
+
#: src/Admin/Pages/Settings.php:313
|
203 |
+
msgid "We know that you will truly love WPForms. It has over 2000+ five star ratings (%s) and is active on over 1 million websites."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: src/Admin/Pages/Settings.php:319
|
207 |
+
msgid "Other Benefits:"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: src/Admin/Pages/Settings.php:323
|
211 |
+
msgid "Access to premium support for WP Mail SMTP"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: src/Admin/Pages/Settings.php:324
|
215 |
+
msgid "Get the best drag & drop form builder"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: src/Admin/Pages/Settings.php:325
|
219 |
+
msgid "All form features like file upload, pagination, etc"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: src/Admin/Pages/Settings.php:326
|
223 |
+
msgid "Create surveys & polls with the surveys addon"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: src/Admin/Pages/Settings.php:329
|
227 |
+
msgid "No future ads inside WP Mail SMTP admin"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: src/Admin/Pages/Settings.php:330
|
231 |
+
msgid "Pre-made form templates and smart conditional logic"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: src/Admin/Pages/Settings.php:331
|
235 |
+
msgid "500+ integrations with different marketing & payment services"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: src/Admin/Pages/Settings.php:332
|
239 |
+
msgid "Collect signatures, geo-location data, and more"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#. translators: %1$s - WPForms.com URL, %2$s - percents off.
|
243 |
+
#: src/Admin/Pages/Settings.php:341
|
244 |
+
msgid "<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">Get WPForms Pro and support WP Mail SMTP</a> - use coupon \"<strong>thankyou</strong>\" to save %2$s off your purchase."
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: src/Admin/Pages/Test.php:36
|
248 |
+
msgid "Email Test"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: src/Admin/Pages/Test.php:58, wp_mail_smtp.php:612
|
252 |
+
msgid "Send a Test Email"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: src/Admin/Pages/Test.php:65
|
256 |
+
msgid "Send To"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: src/Admin/Pages/Test.php:71
|
260 |
+
msgid "Change an email address a test email will be sent to."
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: src/Admin/Pages/Test.php:79
|
264 |
+
msgid "HTML"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: src/Admin/Pages/Test.php:85, src/Providers/OptionsAbstract.php:204, src/Providers/OptionsAbstract.php:226
|
268 |
+
msgid "On"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: src/Admin/Pages/Test.php:86, src/Providers/OptionsAbstract.php:205, src/Providers/OptionsAbstract.php:227
|
272 |
+
msgid "Off"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: src/Admin/Pages/Test.php:89
|
276 |
+
msgid "Send this email in HTML or in plain text format."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: src/Admin/Pages/Test.php:104
|
280 |
+
msgid "You cannot send an email. Mailer is not properly configured. Please check your settings."
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: src/Admin/Pages/Test.php:108
|
284 |
+
msgid "Send Email"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: src/Admin/Pages/Test.php:136
|
288 |
+
msgid "Test failed. Please use a valid email address and try to resend the test email."
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#. translators: %s - email address a test email will be sent to.
|
292 |
+
#: src/Admin/Pages/Test.php:158
|
293 |
+
msgid "Test email to %s"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: src/Admin/Pages/Test.php:173
|
297 |
+
msgid "Test plain text email was sent successfully!"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#. translators: %s - "HTML" in bold.
|
301 |
+
#: src/Admin/Pages/Test.php:177
|
302 |
+
msgid "Test %s email was sent successfully! Please check your inbox to make sure it is delivered."
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#. translators: %s - mailer name.
|
306 |
+
#: src/Admin/Pages/Test.php:365
|
307 |
+
msgid "This email was sent by %s mailer, and WP Mail SMTP plugin by WPForms generated it."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: src/Admin/Pages/Test.php:530
|
311 |
+
msgid "SSL certificate issue."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: src/Admin/Pages/Test.php:531
|
315 |
+
msgid "This means your web server cannot reliably make secure connections (make requests to HTTPS sites)."
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: src/Admin/Pages/Test.php:532, src/Admin/Pages/Test.php:583
|
319 |
+
msgid "Typically this error is returned when web server is not configured properly."
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: src/Admin/Pages/Test.php:535
|
323 |
+
msgid "Contact your web hosting provider and inform them your site has an issue with SSL certificates."
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: src/Admin/Pages/Test.php:536, src/Admin/Pages/Test.php:587
|
327 |
+
msgid "The exact error you can provide them is in the Error log, available at the bottom of this page."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: src/Admin/Pages/Test.php:537, src/Admin/Pages/Test.php:588
|
331 |
+
msgid "Ask them to resolve the issue then try again."
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: src/Admin/Pages/Test.php:548
|
335 |
+
msgid "Could not connect to host."
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#. translators: %s - SMTP host address.
|
339 |
+
#. translators: %s - SMTP host address.
|
340 |
+
#. translators: %s - SMTP host address.
|
341 |
+
#: src/Admin/Pages/Test.php:552, src/Admin/Pages/Test.php:579, src/Admin/Pages/Test.php:652
|
342 |
+
msgid "This means your web server was unable to connect to %s."
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: src/Admin/Pages/Test.php:555, src/Admin/Pages/Test.php:582, src/Admin/Pages/Test.php:655
|
346 |
+
msgid "This means your web server was unable to connect to the host server."
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: src/Admin/Pages/Test.php:556
|
350 |
+
msgid "Typically this error is returned your web server is blocking the connections or the SMTP host denying the request."
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#. translators: %s - SMTP host address.
|
354 |
+
#: src/Admin/Pages/Test.php:561
|
355 |
+
msgid "Contact your web hosting provider and ask them to verify your server can connect to %s. Additionally, ask them if a firewall or security policy may be preventing the connection."
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: src/Admin/Pages/Test.php:564
|
359 |
+
msgid "If using \"Other SMTP\" Mailer, triple check your SMTP settings including host address, email, and password."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: src/Admin/Pages/Test.php:565
|
363 |
+
msgid "If using \"Other SMTP\" Mailer, contact your SMTP host to confirm they are accepting outside connections with the settings you have configured (address, username, port, security, etc)."
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: src/Admin/Pages/Test.php:575
|
367 |
+
msgid "Could not connect to your host."
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: src/Admin/Pages/Test.php:586
|
371 |
+
msgid "Contact your web hosting provider and inform them you are having issues making outbound connections."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: src/Admin/Pages/Test.php:598
|
375 |
+
msgid "Could not authenticate your SMTP account."
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: src/Admin/Pages/Test.php:599
|
379 |
+
msgid "This means we were able to connect to your SMTP host, but were not able to proceed using the email/password in the settings."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: src/Admin/Pages/Test.php:600
|
383 |
+
msgid "Typically this error is returned when the email or password is not correct or is not what the SMTP host is expecting."
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: src/Admin/Pages/Test.php:603
|
387 |
+
msgid "Triple check your SMTP settings including host address, email, and password. If you have recently reset your password you will need to update the settings."
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: src/Admin/Pages/Test.php:604, src/Admin/Pages/Test.php:681
|
391 |
+
msgid "Contact your SMTP host to confirm you are using the correct username and password."
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: src/Admin/Pages/Test.php:605, src/Admin/Pages/Test.php:682
|
395 |
+
msgid "Verify with your SMTP host that your account has permissions to send emails using outside connections."
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: src/Admin/Pages/Test.php:615
|
399 |
+
msgid "Error due to unsolicited and/or bulk e-mail."
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: src/Admin/Pages/Test.php:616
|
403 |
+
msgid "This means the connection to your SMTP host was made successfully, but the host rejected the email."
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: src/Admin/Pages/Test.php:617
|
407 |
+
msgid "Typically this error is returned when your are sending too many e-mails or e-mails that have been identified as spam."
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: src/Admin/Pages/Test.php:620
|
411 |
+
msgid "Check the emails that are sending are sending individually. Example: email is not sending to 30 recipients. You can install any WordPress e-mail logging plugin to do that."
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: src/Admin/Pages/Test.php:621
|
415 |
+
msgid "Contact your SMTP host to ask about sending/rate limits."
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: src/Admin/Pages/Test.php:622
|
419 |
+
msgid "Verify with them your SMTP account is in good standing and your account has not been flagged."
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: src/Admin/Pages/Test.php:632
|
423 |
+
msgid "Unauthenticated senders are not allowed."
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: src/Admin/Pages/Test.php:633
|
427 |
+
msgid "This means the connection to your SMTP host was made successfully, but you should enable Authentication and provide correct Username and Password."
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: src/Admin/Pages/Test.php:636
|
431 |
+
msgid "Go to WP Mail SMTP plugin Settings page."
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: src/Admin/Pages/Test.php:637
|
435 |
+
msgid "Enable Authentication"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: src/Admin/Pages/Test.php:638
|
439 |
+
msgid "Enter correct SMTP Username (usually this is an email address) and Password in the appropriate fields."
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: src/Admin/Pages/Test.php:648
|
443 |
+
msgid "Could not connect to the SMTP host."
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: src/Admin/Pages/Test.php:656, src/Admin/Pages/Test.php:977
|
447 |
+
msgid "Typically this error is returned for one of the following reasons:"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: src/Admin/Pages/Test.php:657
|
451 |
+
msgid "SMTP settings are incorrect (wrong port, security setting, incorrect host)."
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: src/Admin/Pages/Test.php:658, src/Admin/Pages/Test.php:979
|
455 |
+
msgid "Your web server is blocking the connection."
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: src/Admin/Pages/Test.php:659
|
459 |
+
msgid "Your SMTP host is rejecting the connection."
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: src/Admin/Pages/Test.php:662
|
463 |
+
msgid "Triple check your SMTP settings including host address, email, and password, port, and security."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#. translators: %1$s - SMTP host address, %2$s - SMTP port, %3$s - SMTP encryption.
|
467 |
+
#: src/Admin/Pages/Test.php:666
|
468 |
+
msgid "Contact your web hosting provider and ask them to verify your server can connect to %1$s on port %2$s using %3$s encryption. Additionally, ask them if a firewall or security policy may be preventing the connection - many shared hosts block certain ports.<br><strong>Note: this is the most common cause of this issue.</strong>"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: src/Admin/Pages/Test.php:679
|
472 |
+
msgid "no"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: src/Admin/Pages/Test.php:692, src/Admin/Pages/Test.php:708
|
476 |
+
msgid "Mailgun failed."
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: src/Admin/Pages/Test.php:693
|
480 |
+
msgid "Typically this error is because there is an issue with your Mailgun settings, in many cases the API key."
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: src/Admin/Pages/Test.php:696
|
484 |
+
msgid "Verify your API key is correct."
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: src/Admin/Pages/Test.php:697
|
488 |
+
msgid "Go to your Mailgun account and view your API key."
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: src/Admin/Pages/Test.php:698
|
492 |
+
msgid "Note that the API key includes the \"key\" prefix, so make sure that it is in the WP Mail SMTP Mailgun API setting."
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: src/Admin/Pages/Test.php:709
|
496 |
+
msgid "Your Mailgun account does not have access to send emails."
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: src/Admin/Pages/Test.php:710
|
500 |
+
msgid "Typically this error is because you have not setup and/or complete domain name verification for your Mailgun account."
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#. translators: %s - Mailgun documentation URL.
|
504 |
+
#: src/Admin/Pages/Test.php:716
|
505 |
+
msgid "Go to our how-to guide for setting up <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">Mailgun with WP Mail SMTP</a>."
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: src/Admin/Pages/Test.php:727
|
509 |
+
msgid "Complete the steps in section \"2. Verify Your Domain\"."
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: src/Admin/Pages/Test.php:737, src/Admin/Pages/Test.php:788, src/Admin/Pages/Test.php:809, src/Admin/Pages/Test.php:836, src/Admin/Pages/Test.php:852, src/Admin/Pages/Test.php:907, src/Admin/Pages/Test.php:934
|
513 |
+
msgid "Google API Error."
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: src/Admin/Pages/Test.php:738
|
517 |
+
msgid "You have not properly configured Gmail mailer."
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: src/Admin/Pages/Test.php:739
|
521 |
+
msgid "Make sure that you have clicked the \"Allow plugin to send emails using your Google account\" button under Gmail settings."
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: src/Admin/Pages/Test.php:742
|
525 |
+
msgid "Go to plugin Settings page and click the \"Allow plugin to send emails using your Google account\" button."
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: src/Admin/Pages/Test.php:743
|
529 |
+
msgid "After the click you should be redirected to a Gmail authorization screen, where you will be asked a permission to send emails on your behalf."
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: src/Admin/Pages/Test.php:744
|
533 |
+
msgid "Please click \"Agree\", if you see that button. If not - you will need to enable less secure apps first:"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#. translators: %s - Google support article URL.
|
537 |
+
#: src/Admin/Pages/Test.php:750
|
538 |
+
msgid "if you are using regular Gmail account, please <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">read this article</a> to proceed."
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#. translators: %s - Google support article URL.
|
542 |
+
#: src/Admin/Pages/Test.php:766
|
543 |
+
msgid "if you are using G Suite, please <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">read this article</a> to proceed."
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: src/Admin/Pages/Test.php:789
|
547 |
+
msgid "Typically this error is because address the email was sent to is invalid or was empty."
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: src/Admin/Pages/Test.php:792
|
551 |
+
msgid "Check the \"Send To\" email address used and confirm it is a valid email and was not empty."
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#. translators: 1 - correct email address example. 2 - incorrect email address example.
|
555 |
+
#: src/Admin/Pages/Test.php:795
|
556 |
+
msgid "It should be something like this: %1$s. These are incorrect values: %2$s."
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: src/Admin/Pages/Test.php:799
|
560 |
+
msgid "Make sure that the generated email has a TO header, useful when you are responsible for email creation."
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: src/Admin/Pages/Test.php:810
|
564 |
+
msgid "Unfortunately, this error can be due to many different reasons."
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#. translators: %s - Blog article URL.
|
568 |
+
#: src/Admin/Pages/Test.php:816
|
569 |
+
msgid "Please <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">read this article</a> to learn more about what can cause this error and how it can be resolved."
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: src/Admin/Pages/Test.php:837
|
573 |
+
msgid "Authentication code that Google returned to you has already been used on your previous auth attempt."
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: src/Admin/Pages/Test.php:840
|
577 |
+
msgid "Make sure that you are not trying to manually clean up the plugin options to retry the \"Allow...\" step."
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: src/Admin/Pages/Test.php:841
|
581 |
+
msgid "Reinstall the plugin with clean plugin data turned on on Misc page. This will remove all the plugin options and you will be safe to retry."
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: src/Admin/Pages/Test.php:842
|
585 |
+
msgid "Make sure there is no aggressive caching on site admin area pages or try to clean cache between attempts."
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: src/Admin/Pages/Test.php:853
|
589 |
+
msgid "There are various reasons for that, please review the steps below."
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#. translators: %s - Google G Suite Admin area URL.
|
593 |
+
#: src/Admin/Pages/Test.php:859
|
594 |
+
msgid "Make sure that your G Suite trial period has not expired. You can check the status <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>."
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#. translators: %s - Google G Suite Admin area URL.
|
598 |
+
#: src/Admin/Pages/Test.php:873
|
599 |
+
msgid "Make sure that Gmail app in your G Suite is actually enabled. You can check that in Apps list in <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">G Suite Admin</a> area."
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#. translators: %s - Google Developers Console URL.
|
603 |
+
#: src/Admin/Pages/Test.php:887
|
604 |
+
msgid "Make sure that you have Gmail API enabled, and you can do that <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>."
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: src/Admin/Pages/Test.php:910, src/Admin/Pages/Test.php:938
|
608 |
+
msgid "Make sure that the used Client ID/Secret correspond to a proper project that has Gmail API enabled."
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#. translators: %s - WPForms.com tutorial URL.
|
612 |
+
#: src/Admin/Pages/Test.php:914
|
613 |
+
msgid "Please follow our <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">Gmail tutorial</a> to be sure that all the correct project and data is applied."
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: src/Admin/Pages/Test.php:935
|
617 |
+
msgid "You may have added a new API to a project"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: src/Admin/Pages/Test.php:939
|
621 |
+
msgid "Try to use a separate project for your emails, so the project has only 1 Gmail API in it enabled. You will need to remove the old project and create a new one from scratch."
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: src/Admin/Pages/Test.php:975
|
625 |
+
msgid "An issue was detected."
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: src/Admin/Pages/Test.php:976
|
629 |
+
msgid "This means your test email was unable to be sent."
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: src/Admin/Pages/Test.php:978
|
633 |
+
msgid "Plugin settings are incorrect (wrong SMTP settings, invalid Mailer configuration, etc)."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: src/Admin/Pages/Test.php:980
|
637 |
+
msgid "Your host is rejecting the connection."
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: src/Admin/Pages/Test.php:983
|
641 |
+
msgid "Triple check the plugin settings, consider reconfiguring to make sure everything is correct (eg bad copy and paste)."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: src/Admin/Pages/Test.php:985
|
645 |
+
msgid "Contact your web hosting provider and ask them to verify your server can make outside connections. Additionally, ask them if a firewall or security policy may be preventing the connection - many shared hosts block certain ports.<br><strong>Note: this is the most common cause of this issue.</strong>"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: src/Admin/Pages/Test.php:991
|
649 |
+
msgid "Try using a different mailer."
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: src/Admin/Pages/Test.php:1010
|
653 |
+
msgid "There was a problem while sending the test email."
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: src/Admin/Pages/Test.php:1020
|
657 |
+
msgid "Recommended next steps:"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: src/Admin/Pages/Test.php:1030
|
661 |
+
msgid "Need support?"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#. translators: %s - WPForms account area link.
|
665 |
+
#: src/Admin/Pages/Test.php:1039
|
666 |
+
msgid "As a WPForms Pro user you have access to WP Mail SMTP priority support. Please log in to your WPForms.com account and <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">submit a support ticket</a>."
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#. translators: %s - WPForms URL.
|
670 |
+
#: src/Admin/Pages/Test.php:1064
|
671 |
+
msgid "To access priority support from our team, please <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">purchase a WPForms license</a>. Along with getting priority support for WP Mail SMTP, you will also get access to the best drag & drop WordPress form builder plugin."
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#. translators: %s - Star icons.
|
675 |
+
#: src/Admin/Pages/Test.php:1083
|
676 |
+
msgid "WPForms is being used on over 1 million websites and has over 2000+ five star ratings (%s)."
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: src/Admin/Pages/Test.php:1096
|
680 |
+
msgid "You will truly love the WPForms plugin, but most importantly your support will help us continue to maintain and add new features to the WP Mail SMTP plugin while keeping it free for the larger WordPress community."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#. translators: %1$s - WP Mail SMTP support policy URL, %2$s - WP Mail SMTP support forum URL, %3$s - WPForms URL.
|
684 |
+
#: src/Admin/Pages/Test.php:1104
|
685 |
+
msgid "Alternatively, we also offer <a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">limited support</a> on the WordPress.org support forums. You can <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer\">create a support thread</a> there, but please understand that free support is not guaranteed and is limited to simple issues. If you have an urgent or complex issue, then please consider <a href=\"%3$s\" target=\"_blank\" rel=\"noopener noreferrer\">purchasing a WPForms license</a> to access our priority support ticket system."
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: src/Admin/Pages/Test.php:1125
|
689 |
+
msgid "Click here to view the full Error Log for debugging"
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: src/Admin/Pages/Test.php:1134
|
693 |
+
msgid "Please copy only the content of the error debug message above, identified with an orange left border, into the support forum topic if you experience any issues."
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: src/Core.php:262
|
697 |
+
msgid "Install Recommended Plugin"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: src/Core.php:263
|
701 |
+
msgid "Recommended"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#. translators: 1: plugin name(s).
|
705 |
+
#. translators: 1: plugin name(s).
|
706 |
+
#: src/Core.php:265, src/Core.php:271
|
707 |
+
msgid "Thanks for installing WP Mail SMTP. We also recommend using %1$s. It's the best drag & drop form builder, has over 1 million active installs, and over 2000+ 5 star ratings."
|
708 |
+
msgid_plural "Thanks for installing WP Mail SMTP. We also recommend using %1$s. It's the best drag & drop form builder, has over 1 million active installs, and over 2000+ 5 star ratings."
|
709 |
+
msgstr[0] ""
|
710 |
+
msgstr[1] ""
|
711 |
+
|
712 |
+
#: src/Core.php:276
|
713 |
+
msgid "Install WPForms Now"
|
714 |
+
msgid_plural "Begin installing plugins"
|
715 |
+
msgstr[0] ""
|
716 |
+
msgstr[1] ""
|
717 |
+
|
718 |
+
#: src/Core.php:277
|
719 |
+
msgid "Activate WPForms"
|
720 |
+
msgid_plural "Begin activating plugins"
|
721 |
+
msgstr[0] ""
|
722 |
+
msgstr[1] ""
|
723 |
+
|
724 |
+
#: src/Core.php:278
|
725 |
+
msgid "Return to Recommended Plugin Installer"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#. translators: 1: dashboard link.
|
729 |
+
#: src/Core.php:280
|
730 |
+
msgid "The recommended plugin was installed and activated successfully. %1$s"
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: src/Core.php:281
|
734 |
+
msgid "There is one recommended plugin to install, update or activate."
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
#. translators: %1$s - plugin name and its version, %2$s - plugin Misc settings page.
|
738 |
+
#: src/Core.php:306
|
739 |
+
msgid "<strong>EMAILING DISABLED:</strong> The %1$s is currently blocking all emails from being sent. To send emails, go to plugin <a href=\"%2$s\">Misc settings</a> and disable the \"Do Not Send\" option."
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#. translators: %s - plugin name and its version.
|
743 |
+
#: src/Core.php:336
|
744 |
+
msgid "<strong>EMAIL DELIVERY ERROR:</strong> the plugin %s logged this error during the last time it tried to send an email:"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: src/Core.php:367
|
748 |
+
msgid "Consider running an email test after fixing it."
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#. translators: %1$s - Plugin name causing conflict; %2$s - Plugin name causing conflict.
|
752 |
+
#: src/Core.php:522
|
753 |
+
msgid "Heads up! WP Mail SMTP has detected %1$s is activated. Please deactivate %2$s to prevent conflicts."
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: src/Providers/Gmail/Options.php:25
|
757 |
+
msgid "Gmail"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#. translators: %1$s - opening link tag; %2$s - closing link tag.
|
761 |
+
#: src/Providers/Gmail/Options.php:29
|
762 |
+
msgid "Send emails using your Gmail or G Suite (formerly Google Apps) account, all while keeping your login credentials safe. Other Google SMTP methods require enabling less secure apps in your account and entering your password. However, this integration uses the Google API to improve email delivery issues while keeping your site secure.<br><br>Read our %1$sGmail documentation%2$s to learn how to configure Gmail or G Suite."
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: src/Providers/Gmail/Options.php:64
|
766 |
+
msgid "Client ID"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: src/Providers/Gmail/Options.php:79
|
770 |
+
msgid "Client Secret"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: src/Providers/Gmail/Options.php:94
|
774 |
+
msgid "Authorized redirect URI"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: src/Providers/Gmail/Options.php:102
|
778 |
+
msgid "Copy URL to clipboard"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: src/Providers/Gmail/Options.php:107
|
782 |
+
msgid "This is the path on your site that you will be redirected to after you have authenticated with Google."
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: src/Providers/Gmail/Options.php:109
|
786 |
+
msgid "You need to copy this URL into \"Authorized redirect URIs\" field for you web application on Google APIs site for your project there."
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: src/Providers/Gmail/Options.php:118
|
790 |
+
msgid "Authorization"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: src/Providers/Gmail/Options.php:143
|
794 |
+
msgid "Are you sure you want to reset the current Gmail connection? You will need to immediately create a new one to be able to send emails."
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: src/Providers/Gmail/Options.php:151
|
798 |
+
msgid "Allow plugin to send emails using your Google account"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: src/Providers/Gmail/Options.php:154
|
802 |
+
msgid "Click the button above to confirm authorization."
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: src/Providers/Gmail/Options.php:160
|
806 |
+
msgid "Remove Connection"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: src/Providers/Gmail/Options.php:163
|
810 |
+
msgid "Removing the connection will give you an ability to redo the connection or link to another Google account."
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: src/Providers/Gmail/Options.php:171
|
814 |
+
msgid "To setup Gmail integration properly you should save Client ID and Client Secret."
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: src/Providers/Mailgun/Options.php:25
|
818 |
+
msgid "Mailgun"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#. translators: %1$s - opening link tag; %2$s - closing link tag; %3$s - opening link tag; %4$s - closing link tag.
|
822 |
+
#: src/Providers/Mailgun/Options.php:29
|
823 |
+
msgid "%1$sMailgun%2$s is one of the leading transactional email services trusted by over 10,000 website and application developers. They provide users 10,000 free emails per month.<br><br>Read our %3$sMailgun documentation%4$s to learn how to configure Mailgun and improve your email deliverability."
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#: src/Providers/Mailgun/Options.php:57
|
827 |
+
msgid "Private API Key"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#. translators: %s - API key link.
|
831 |
+
#: src/Providers/Mailgun/Options.php:69
|
832 |
+
msgid "Follow this link to get an API Key from Mailgun: %s."
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: src/Providers/Mailgun/Options.php:71
|
836 |
+
msgid "Get a Private API Key"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: src/Providers/Mailgun/Options.php:82
|
840 |
+
msgid "Domain Name"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#. translators: %s - Domain Name link.
|
844 |
+
#: src/Providers/Mailgun/Options.php:94
|
845 |
+
msgid "Follow this link to get a Domain Name from Mailgun: %s."
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: src/Providers/Mailgun/Options.php:96
|
849 |
+
msgid "Get a Domain Name"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: src/Providers/Mailgun/Options.php:107
|
853 |
+
msgid "Region"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: src/Providers/Mailgun/Options.php:117
|
857 |
+
msgid "US"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: src/Providers/Mailgun/Options.php:126
|
861 |
+
msgid "EU"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: src/Providers/Mailgun/Options.php:130
|
865 |
+
msgid "Define which endpoint you want to use for sending messages."
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: src/Providers/Mailgun/Options.php:131
|
869 |
+
msgid "If you are operating under EU laws, you may be required to use EU region."
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#. translators: %s - URL to Mailgun.com page.
|
873 |
+
#: src/Providers/Mailgun/Options.php:136
|
874 |
+
msgid "<a href=\"%s\" rel=\"\" target=\"_blank\">More information</a> on Mailgun.com."
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: src/Providers/Mail/Options.php:25
|
878 |
+
msgid "Default (none)"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: src/Providers/Mail/Options.php:37
|
882 |
+
msgid "You currently have the native WordPress option selected. Please select any other Mailer option above to continue the setup."
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: src/Providers/OptionsAbstract.php:126, wp_mail_smtp.php:439
|
886 |
+
msgid "SMTP Host"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: src/Providers/OptionsAbstract.php:140, wp_mail_smtp.php:454, wp_mail_smtp.php:458, wp_mail_smtp.php:573, wp_mail_smtp.php:579
|
890 |
+
msgid "Encryption"
|
891 |
+
msgstr ""
|
892 |
+
|
893 |
+
#: src/Providers/OptionsAbstract.php:150
|
894 |
+
msgid "None"
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: src/Providers/OptionsAbstract.php:159
|
898 |
+
msgid "SSL"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: src/Providers/OptionsAbstract.php:168
|
902 |
+
msgid "TLS"
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: src/Providers/OptionsAbstract.php:172
|
906 |
+
msgid "For most servers TLS is the recommended option. If your SMTP provider offers both SSL and TLS options, we recommend using TLS."
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: src/Providers/OptionsAbstract.php:180, wp_mail_smtp.php:447, wp_mail_smtp.php:565
|
910 |
+
msgid "SMTP Port"
|
911 |
+
msgstr ""
|
912 |
+
|
913 |
+
#: src/Providers/OptionsAbstract.php:194
|
914 |
+
msgid "Auto TLS"
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: src/Providers/OptionsAbstract.php:208
|
918 |
+
msgid "By default TLS encryption is automatically used if the server supports it, which is recommended. In some cases, due to server misconfigurations, this can cause issues and may need to be disabled."
|
919 |
+
msgstr ""
|
920 |
+
|
921 |
+
#: src/Providers/OptionsAbstract.php:216, wp_mail_smtp.php:481, wp_mail_smtp.php:485
|
922 |
+
msgid "Authentication"
|
923 |
+
msgstr ""
|
924 |
+
|
925 |
+
#: src/Providers/OptionsAbstract.php:235
|
926 |
+
msgid "SMTP Username"
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#: src/Providers/OptionsAbstract.php:249
|
930 |
+
msgid "SMTP Password"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#. translators: %s - wp-config.php.
|
934 |
+
#: src/Providers/OptionsAbstract.php:263
|
935 |
+
msgid "The password is stored in plain text. We highly recommend you setup your password in your WordPress configuration file for improved security; to do this add the lines below to your %s file."
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#. translators: %1$s - Provider name; %2$s - PHP version required by Provider; %3$s - current PHP version.
|
939 |
+
#: src/Providers/OptionsAbstract.php:300
|
940 |
+
msgid "%1$s requires PHP %2$s to work and does not support your current PHP version %3$s. Please contact your host and request a PHP upgrade to the latest one."
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: src/Providers/OptionsAbstract.php:307
|
944 |
+
msgid "Meanwhile you can switch to the \"Other SMTP\" Mailer option."
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: src/Providers/Pepipost/Options.php:25
|
948 |
+
msgid "Pepipost"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: src/Providers/Sendgrid/Options.php:25
|
952 |
+
msgid "SendGrid"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#. translators: %1$s - opening link tag; %2$s - closing link tag; %3$s - opening link tag; %4$s - closing link tag.
|
956 |
+
#: src/Providers/Sendgrid/Options.php:29
|
957 |
+
msgid "%1$sSendGrid%2$s is one of the leading transactional email services, sending over 35 billion emails every month. They provide users 100 free emails per month.<br><br>Read our %3$sSendGrid documentation%4$s to learn how to set up SendGrid and improve your email deliverability."
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: src/Providers/Sendgrid/Options.php:57
|
961 |
+
msgid "API Key"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#. translators: %s - API key link.
|
965 |
+
#: src/Providers/Sendgrid/Options.php:69
|
966 |
+
msgid "Follow this link to get an API Key from SendGrid: %s."
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: src/Providers/Sendgrid/Options.php:71
|
970 |
+
msgid "Create API Key"
|
971 |
+
msgstr ""
|
972 |
+
|
973 |
+
#. translators: %s - SendGrid access level.
|
974 |
+
#: src/Providers/Sendgrid/Options.php:79
|
975 |
+
msgid "To send emails you will need only a %s access level for this API key."
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: src/Providers/SMTP/Options.php:25
|
979 |
+
msgid "Other SMTP"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: src/Providers/SMTP/Options.php:29
|
983 |
+
msgid "Use the SMTP details provided by your hosting provider or email service.<br><br>To see recommended settings for the popular services as well as troubleshooting tips, check out our %1$sSMTP documentation%2$s."
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#. translators: %s - email address where test mail will be sent to.
|
987 |
+
#: wp_mail_smtp.php:265
|
988 |
+
msgid "Test mail to %s"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: wp_mail_smtp.php:266
|
992 |
+
msgid "This is a test email generated by the WP Mail SMTP WordPress plugin."
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: wp_mail_smtp.php:282
|
996 |
+
msgid "Test Message Sent"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: wp_mail_smtp.php:283
|
1000 |
+
msgid "The result was:"
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: wp_mail_smtp.php:286
|
1004 |
+
msgid "The full debugging output is shown below:"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: wp_mail_smtp.php:289
|
1008 |
+
msgid "The SMTP debugging output is shown below:"
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: wp_mail_smtp.php:256, wp_mail_smtp.php:630
|
1012 |
+
msgid "Send Test"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: wp_mail_smtp.php:301, wp_mail_smtp.php:666
|
1016 |
+
msgid "WP Mail SMTP Settings"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: wp_mail_smtp.php:317
|
1020 |
+
msgid "You can specify the email address that emails should be sent from. If you leave this blank, the default email will be used."
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: wp_mail_smtp.php:320
|
1024 |
+
msgid "<strong>Please Note:</strong> You appear to be using a version of WordPress prior to 2.3. Please ignore the From Name field and instead enter Name<email@domain.com> in this field."
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: wp_mail_smtp.php:335
|
1028 |
+
msgid "You can specify the name that emails should be sent from. If you leave this blank, the emails will be sent from WordPress."
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: wp_mail_smtp.php:354
|
1032 |
+
msgid "Send all WordPress emails via SMTP."
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: wp_mail_smtp.php:358
|
1036 |
+
msgid "Use the PHP mail() function to send emails."
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: wp_mail_smtp.php:364
|
1040 |
+
msgid "Use Pepipost SMTP to send emails."
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#. translators: %1$s - link start; %2$s - link end.
|
1044 |
+
#: wp_mail_smtp.php:370
|
1045 |
+
msgid "Looking for high inbox delivery? Try Pepipost with easy setup and free emails. Learn more %1$shere%2$s."
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: wp_mail_smtp.php:427, wp_mail_smtp.php:527, wp_mail_smtp.php:603
|
1049 |
+
msgid "Save Changes"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: wp_mail_smtp.php:432
|
1053 |
+
msgid "SMTP Options"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: wp_mail_smtp.php:434
|
1057 |
+
msgid "These options only apply if you have chosen to send mail by SMTP above."
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: wp_mail_smtp.php:463, wp_mail_smtp.php:585
|
1061 |
+
msgid "No encryption."
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: wp_mail_smtp.php:468, wp_mail_smtp.php:590
|
1065 |
+
msgid "Use SSL encryption."
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
+
#: wp_mail_smtp.php:473, wp_mail_smtp.php:595
|
1069 |
+
msgid "Use TLS encryption."
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: wp_mail_smtp.php:476
|
1073 |
+
msgid "TLS is not the same as STARTTLS. For most servers SSL is the recommended option."
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: wp_mail_smtp.php:490
|
1077 |
+
msgid "No: Do not use SMTP authentication."
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: wp_mail_smtp.php:495
|
1081 |
+
msgid "Yes: Use SMTP authentication."
|
1082 |
+
msgstr ""
|
1083 |
+
|
1084 |
+
#: wp_mail_smtp.php:499
|
1085 |
+
msgid "If this is set to no, the values below are ignored."
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: wp_mail_smtp.php:506, wp_mail_smtp.php:549
|
1089 |
+
msgid "Username"
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: wp_mail_smtp.php:514, wp_mail_smtp.php:557
|
1093 |
+
msgid "Password"
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: wp_mail_smtp.php:520
|
1097 |
+
msgid "This is in plain text because it must not be stored encrypted."
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: wp_mail_smtp.php:534
|
1101 |
+
msgid "Pepipost SMTP Options"
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#. translators: %s - Pepipost registration URL.
|
1105 |
+
#: wp_mail_smtp.php:540
|
1106 |
+
msgid "You need to signup on %s to get the SMTP username/password."
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: wp_mail_smtp.php:620
|
1110 |
+
msgid "To"
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: wp_mail_smtp.php:624
|
1114 |
+
msgid "Type an email address here and then click Send Test to generate a test email."
|
1115 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -2,17 +2,17 @@
|
|
2 |
Contributors: wpforms, jaredatch, smub, slaFFik
|
3 |
Tags: smtp, wp mail smtp, wordpress smtp, gmail smtp, sendgrid smtp, mailgun smtp, mail, mailer, phpmailer, wp_mail, email, mailgun, sengrid, gmail, wp smtp
|
4 |
Requires at least: 3.6
|
5 |
-
Tested up to:
|
6 |
-
Stable tag:
|
7 |
Requires PHP: 5.3
|
8 |
|
9 |
-
The most popular WordPress SMTP and PHP Mailer plugin. Trusted by over
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
= WordPress Mail SMTP Plugin =
|
14 |
|
15 |
-
Having problems with your WordPress site not sending emails? You're not alone. Over
|
16 |
|
17 |
WP Mail SMTP fixes your email deliverability by reconfiguring the wp_mail() PHP function to use a proper SMTP provider.
|
18 |
|
@@ -146,6 +146,25 @@ By all means please contact us to discuss features or options you'd like to see
|
|
146 |
|
147 |
== Changelog ==
|
148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
## [1.3.3] - 2018-07-05
|
150 |
* Fixed: Compatibility with other plugins, that are using Google Service or Google Client classes.
|
151 |
* Changed: Optimize code loading.
|
2 |
Contributors: wpforms, jaredatch, smub, slaFFik
|
3 |
Tags: smtp, wp mail smtp, wordpress smtp, gmail smtp, sendgrid smtp, mailgun smtp, mail, mailer, phpmailer, wp_mail, email, mailgun, sengrid, gmail, wp smtp
|
4 |
Requires at least: 3.6
|
5 |
+
Tested up to: 5.0
|
6 |
+
Stable tag: 1.4.0
|
7 |
Requires PHP: 5.3
|
8 |
|
9 |
+
The most popular WordPress SMTP and PHP Mailer plugin. Trusted by over 1 million sites.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
= WordPress Mail SMTP Plugin =
|
14 |
|
15 |
+
Having problems with your WordPress site not sending emails? You're not alone. Over 1 million websites use WP Mail SMTP to fix their email deliverability issues.
|
16 |
|
17 |
WP Mail SMTP fixes your email deliverability by reconfiguring the wp_mail() PHP function to use a proper SMTP provider.
|
18 |
|
146 |
|
147 |
== Changelog ==
|
148 |
|
149 |
+
## [1.4.0] - 2018-11-29
|
150 |
+
* Added: New option: Do Not Send - block emails from being sent.
|
151 |
+
* Added: New option: Send HTML or plain text emails when doing an Email Test.
|
152 |
+
* Added: New option: Mailgun region selection - US and EU (US is default to preserve compatibility).
|
153 |
+
* Fixed: Compatibility with WordPress 3.6+.
|
154 |
+
* Fixed: Compatibility with WordPress 5.0.
|
155 |
+
* Fixed: Constants usage is much more reliable now, works correctly on Multisite. Constants are global accross the whole network.
|
156 |
+
* Fixed: Preserve multipart emails when using Sendgrid/Mailgun mailers (were converted to HTML-only).
|
157 |
+
* Fixed: Security hardening.
|
158 |
+
* Changed: Prefill Email Test page From field with currently logged in user email.
|
159 |
+
* Changed: Update libraries: google/apiclient-services, google/auth, phpseclib/phpseclib and their dependecies.
|
160 |
+
* Changed: Display in debug output cURL version if Gmail mailing failed.
|
161 |
+
* Changed: Display in debug output OpenSSL version if it exists if Gmail/SMTP mailing failed.
|
162 |
+
* Changed: Display plugin version in dashboard error notice when emailing failed.
|
163 |
+
* Changed: Do not allow to send Test Email if mailer not configured properly.
|
164 |
+
* Changed: Notify in plugin admin area that Gmail doesn't allow to redefine From Name/Email etc.
|
165 |
+
* Changed: List all constants with descriptions in plugin main file: wp_mail_smtp.php.
|
166 |
+
* Changed: TGMPA: change descriptions from "Required" to "Recommended" (labels were incorrect).
|
167 |
+
|
168 |
## [1.3.3] - 2018-07-05
|
169 |
* Fixed: Compatibility with other plugins, that are using Google Service or Google Client classes.
|
170 |
* Changed: Optimize code loading.
|
src/AM_Notification.php
CHANGED