Version Description
- New: Help tab on the Settings screen
- New: Dismissable admin notice after on-boarding
Download this release
Release Info
Developer | Godaddy |
Plugin | GoDaddy Email Marketing |
Version | 1.2.0 |
Comparing to | |
See all releases |
Code changes from version 1.1.4 to 1.2.0
- css/admin.css +9 -0
- css/admin.min.css +1 -1
- godaddy-email-marketing.php +29 -5
- images/clippy.svg +1 -3
- images/spinner-2x.gif +0 -0
- images/spinner.gif +0 -0
- includes/settings.php +88 -1
- js/admin.min.js +1 -1
- js/gem.min.js +1 -1
- js/iframeResizer.ie8.polyfils.min.js +4 -0
- js/iframeResizer.min.js +9 -0
- languages/godaddy-email-marketing-da_DK.mo +0 -0
- languages/godaddy-email-marketing-de_DE.mo +0 -0
- languages/godaddy-email-marketing-el.mo +0 -0
- languages/godaddy-email-marketing-es_ES.mo +0 -0
- languages/godaddy-email-marketing-es_MX.mo +0 -0
- languages/godaddy-email-marketing-fi.mo +0 -0
- languages/godaddy-email-marketing-fr_FR.mo +0 -0
- languages/godaddy-email-marketing-hi_IN.mo +0 -0
- languages/godaddy-email-marketing-id_ID.mo +0 -0
- languages/godaddy-email-marketing-it_IT.mo +0 -0
- languages/godaddy-email-marketing-ja.mo +0 -0
- languages/godaddy-email-marketing-ko_KR.mo +0 -0
- languages/godaddy-email-marketing-mr.mo +0 -0
- languages/godaddy-email-marketing-ms_MY.mo +0 -0
- languages/godaddy-email-marketing-nb_NO.mo +0 -0
- languages/godaddy-email-marketing-nl_NL.mo +0 -0
- languages/godaddy-email-marketing-pl_PL.mo +0 -0
- languages/godaddy-email-marketing-pt_BR.mo +0 -0
- languages/godaddy-email-marketing-pt_PT.mo +0 -0
- languages/godaddy-email-marketing-ru_RU.mo +0 -0
- languages/godaddy-email-marketing-sv_SE.mo +0 -0
- languages/godaddy-email-marketing-th.mo +0 -0
- languages/godaddy-email-marketing-tl.mo +0 -0
- languages/godaddy-email-marketing-tr_TR.mo +0 -0
- languages/godaddy-email-marketing-uk.mo +0 -0
- languages/godaddy-email-marketing-vi.mo +0 -0
- languages/godaddy-email-marketing-zh_CN.mo +0 -0
- languages/godaddy-email-marketing-zh_HK.mo +0 -0
- languages/godaddy-email-marketing-zh_TW.mo +0 -0
- languages/godaddy-email-marketing.pot +415 -0
- license.txt +339 -0
- readme.txt +10 -3
css/admin.css
CHANGED
@@ -65,10 +65,19 @@ div.updated.gem-identity p:first-child {
|
|
65 |
vertical-align: top;
|
66 |
}
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
@media screen and (min-width: 783px) {
|
69 |
#settings .form-table th {
|
70 |
width: 30%;
|
71 |
}
|
|
|
|
|
|
|
72 |
}
|
73 |
|
74 |
#setting-errors {
|
65 |
vertical-align: top;
|
66 |
}
|
67 |
|
68 |
+
#help iframe {
|
69 |
+
width: 100%;
|
70 |
+
min-height: 800px;
|
71 |
+
margin-top: 20px;
|
72 |
+
}
|
73 |
+
|
74 |
@media screen and (min-width: 783px) {
|
75 |
#settings .form-table th {
|
76 |
width: 30%;
|
77 |
}
|
78 |
+
#help iframe {
|
79 |
+
margin-top: 10px;
|
80 |
+
}
|
81 |
}
|
82 |
|
83 |
#setting-errors {
|
css/admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.intro,.panel{width:100
|
1 |
+
.intro,.panel{width:100%}.col,.intro,.panel{float:left}.about-wrap{margin:10px 20px 0 2px}div.updated.updated.gem-identity{background-image:url(../images/gem.svg);background-repeat:no-repeat;background-position:15px 15px;background-size:80px;display:block!important;padding-left:110px!important}div.updated.gem-identity p:first-child{color:#23282D;font-size:1.1em;font-weight:700}.description .button{margin:5px}.description .button+.button{margin-left:0}.col.banner{outline:#ccc solid 1px}.col.banner img{margin-bottom:0}.panel{display:none}.intro h1{margin-right:0;font-size:1.53333em;margin:0 0 15px;padding:9px 15px 4px 0}.intro h1 sup{background:#fff;color:#666;font-size:12px;font-weight:700;padding:5px 10px;white-space:nowrap;vertical-align:top}#help iframe{width:100%;min-height:800px;margin-top:20px}@media screen and (min-width:783px){#settings .form-table th{width:30%}#help iframe{margin-top:10px}}#setting-errors{float:left;width:100%}.notice,div.error,div.updated{display:none!important}#setting-errors>.notice,#setting-errors>div.error,#setting-errors>div.updated{clear:both;display:block!important;margin-top:1.25em}code.gem-form-id{display:inline-block;margin-top:1px;padding:6px 10px 5px}input.copied,input.copied:focus{border-color:#46b450;box-shadow:0 0 2px rgba(70,180,80,.8)}input.copied::selection{background-color:#d5f4d8}input.copied::-moz-selection{background-color:#d5f4d8}.button.copy-to-clipboard{display:inline-block;height:30px;margin-top:1px}.mobile .button.copy-to-clipboard{display:none}@media screen and (max-width:782px){.button.copy-to-clipboard{height:38px;margin:1px 1px 10px;position:relative}}
|
godaddy-email-marketing.php
CHANGED
@@ -1,16 +1,20 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Plugin Name: GoDaddy Email Marketing
|
4 |
* Plugin URI: https://gem.godaddy.com/
|
5 |
* Description: Add the GoDaddy Email Marketing signup form to your WordPress site! Easy to set up, the plugin allows your site visitors to subscribe to your email lists.
|
6 |
-
* Version: 1.
|
7 |
* Author: GoDaddy
|
8 |
* Author URI: https://gem.godaddy.com/
|
9 |
* License: GPL-2.0
|
|
|
10 |
* Text Domain: godaddy-email-marketing
|
11 |
* Domain Path: /languages
|
12 |
*
|
13 |
-
*
|
|
|
|
|
|
|
14 |
*
|
15 |
* @package GEM
|
16 |
*/
|
@@ -104,7 +108,7 @@ class GEM_Official {
|
|
104 |
|
105 |
// Plugin's main directory.
|
106 |
defined( 'GEM_VERSION' )
|
107 |
-
or define( 'GEM_VERSION', '1.
|
108 |
|
109 |
// Set up the base name.
|
110 |
isset( self::$basename ) || self::$basename = plugin_basename( __FILE__ );
|
@@ -138,7 +142,7 @@ class GEM_Official {
|
|
138 |
* Load translations.
|
139 |
*/
|
140 |
public function i18n() {
|
141 |
-
load_plugin_textdomain( 'godaddy-email-marketing', false, dirname( self::$basename ) . '/languages' );
|
142 |
}
|
143 |
|
144 |
/**
|
@@ -234,6 +238,26 @@ class GEM_Official {
|
|
234 |
* Displays the admin notice.
|
235 |
*/
|
236 |
public function action_admin_notices() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
$screen = get_current_screen();
|
238 |
|
239 |
if ( 'plugins' !== $screen->id ) {
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Plugin Name: GoDaddy Email Marketing
|
4 |
* Plugin URI: https://gem.godaddy.com/
|
5 |
* Description: Add the GoDaddy Email Marketing signup form to your WordPress site! Easy to set up, the plugin allows your site visitors to subscribe to your email lists.
|
6 |
+
* Version: 1.2.0
|
7 |
* Author: GoDaddy
|
8 |
* Author URI: https://gem.godaddy.com/
|
9 |
* License: GPL-2.0
|
10 |
+
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
* Text Domain: godaddy-email-marketing
|
12 |
* Domain Path: /languages
|
13 |
*
|
14 |
+
* This plugin, like WordPress, is licensed under the GPL.
|
15 |
+
* Use it to make something cool, have fun, and share what you've learned with others.
|
16 |
+
*
|
17 |
+
* Copyright © 2017 GoDaddy Operating Company, LLC. All Rights Reserved.
|
18 |
*
|
19 |
* @package GEM
|
20 |
*/
|
108 |
|
109 |
// Plugin's main directory.
|
110 |
defined( 'GEM_VERSION' )
|
111 |
+
or define( 'GEM_VERSION', '1.2.0' );
|
112 |
|
113 |
// Set up the base name.
|
114 |
isset( self::$basename ) || self::$basename = plugin_basename( __FILE__ );
|
142 |
* Load translations.
|
143 |
*/
|
144 |
public function i18n() {
|
145 |
+
load_plugin_textdomain( 'godaddy-email-marketing', false, basename( dirname( self::$basename ) ) . '/languages' );
|
146 |
}
|
147 |
|
148 |
/**
|
238 |
* Displays the admin notice.
|
239 |
*/
|
240 |
public function action_admin_notices() {
|
241 |
+
|
242 |
+
if ( get_option( 'wpem_gem_notice' ) ) {
|
243 |
+
|
244 |
+
?>
|
245 |
+
<div class="gem-notice notice notice-success is-dismissible">
|
246 |
+
<p>
|
247 |
+
<?php
|
248 |
+
printf(
|
249 |
+
__( 'Your website has a superpower: Email marketing. %1$s.', 'godaddy-email-marketing' ),
|
250 |
+
'<a href="' . admin_url( 'options-general.php?page=gem-settings' ) . '">' . __( 'Learn More', 'godaddy-email-marketing' ) . '</a>'
|
251 |
+
);
|
252 |
+
?>
|
253 |
+
</p>
|
254 |
+
</div>
|
255 |
+
<?php
|
256 |
+
|
257 |
+
delete_option( 'wpem_gem_notice' );
|
258 |
+
|
259 |
+
}
|
260 |
+
|
261 |
$screen = get_current_screen();
|
262 |
|
263 |
if ( 'plugins' !== $screen->id ) {
|
images/clippy.svg
CHANGED
@@ -1,3 +1 @@
|
|
1 |
-
<svg height="1024" width="896" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<path d="M128 768h256v64H128v-64z m320-384H128v64h320v-64z m128 192V448L384 640l192 192V704h320V576H576z m-288-64H128v64h160v-64zM128 704h160v-64H128v64z m576 64h64v128c-1 18-7 33-19 45s-27 18-45 19H64c-35 0-64-29-64-64V192c0-35 29-64 64-64h192C256 57 313 0 384 0s128 57 128 128h192c35 0 64 29 64 64v320h-64V320H64v576h640V768zM128 256h512c0-35-29-64-64-64h-64c-35 0-64-29-64-64s-29-64-64-64-64 29-64 64-29 64-64 64h-64c-35 0-64 29-64 64z" />
|
3 |
-
</svg>
|
1 |
+
<svg height="1024" width="896" xmlns="http://www.w3.org/2000/svg"><path d="M128 768h256v64H128v-64zm320-384H128v64h320v-64zm128 192V448L384 640l192 192V704h320V576H576zm-288-64H128v64h160v-64zM128 704h160v-64H128v64zm576 64h64v128c-1 18-7 33-19 45s-27 18-45 19H64c-35 0-64-29-64-64V192c0-35 29-64 64-64h192C256 57 313 0 384 0s128 57 128 128h192c35 0 64 29 64 64v320h-64V320H64v576h640V768zM128 256h512c0-35-29-64-64-64h-64c-35 0-64-29-64-64s-29-64-64-64-64 29-64 64-29 64-64 64h-64c-35 0-64 29-64 64z"/></svg>
|
|
|
|
images/spinner-2x.gif
CHANGED
Binary file
|
images/spinner.gif
CHANGED
Binary file
|
includes/settings.php
CHANGED
@@ -95,6 +95,25 @@ class GEM_Settings {
|
|
95 |
wp_localize_script( 'gem-admin', 'GEMAdmin', array(
|
96 |
'copyFailed' => _x( 'Please press Ctrl/Cmd+C to copy.', 'failed copy response', 'godaddy-email-marketing' ),
|
97 |
) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
}
|
99 |
|
100 |
/**
|
@@ -288,7 +307,7 @@ class GEM_Settings {
|
|
288 |
__( '<strong>Widget:</strong> Go to Appearance → widgets and find the widget called “GoDaddy Email Marketing Form” and drag it into the widget area of your choice. You can then add a title and select a form!', 'godaddy-email-marketing' ),
|
289 |
__( '<strong>Shortcode:</strong> You can add a form to any post or page by adding the shortcode (ex. <code>[gem id=80326]</code>) in the page/post editor.', 'godaddy-email-marketing' ),
|
290 |
sprintf(
|
291 |
-
__( '<strong>Template Tag:</strong> You can add the following template tag into any WordPress file: <code>%s</code>. Ex. <code>%s</code>', 'godaddy-email-marketing' ),
|
292 |
'<?php gem_form( $form_id ); ?>',
|
293 |
'<?php gem_form( 91 ); ?>'
|
294 |
)
|
@@ -443,6 +462,7 @@ class GEM_Settings {
|
|
443 |
* @param int $columns The number of columns in each row.
|
444 |
*/
|
445 |
public function do_settings_sections( $page, $columns = 2 ) {
|
|
|
446 |
global $wp_settings_sections, $wp_settings_fields;
|
447 |
|
448 |
// @codeCoverageIgnoreStart
|
@@ -487,6 +507,56 @@ class GEM_Settings {
|
|
487 |
}
|
488 |
}
|
489 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
490 |
/**
|
491 |
* Displays the settings page.
|
492 |
*
|
@@ -539,12 +609,22 @@ class GEM_Settings {
|
|
539 |
<a href="#forms" class="nav-tab <?php echo esc_attr( 'forms' === $tab ? 'nav-tab-active' : '' ); ?>"><?php esc_html_e( 'Forms', 'godaddy-email-marketing' ); ?></a>
|
540 |
<?php endif; ?>
|
541 |
<a href="#settings" class="nav-tab <?php echo esc_attr( 'settings' === $tab || empty( $tab ) ? 'nav-tab-active' : '' ); ?>"><?php esc_html_e( 'Settings', 'godaddy-email-marketing' ); ?></a>
|
|
|
542 |
</h2>
|
543 |
|
544 |
<div id="setting-errors"></div>
|
545 |
|
546 |
<?php if ( ! empty( $forms->signups ) ) : ?>
|
547 |
<div id="forms" class="panel">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
<h3><?php esc_html_e( 'Available Signup Forms', 'godaddy-email-marketing' ); ?></h3>
|
549 |
<table class="wp-list-table widefat fixed striped">
|
550 |
<thead>
|
@@ -621,6 +701,13 @@ class GEM_Settings {
|
|
621 |
</p>
|
622 |
</div>
|
623 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
624 |
</div>
|
625 |
<?php
|
626 |
}
|
95 |
wp_localize_script( 'gem-admin', 'GEMAdmin', array(
|
96 |
'copyFailed' => _x( 'Please press Ctrl/Cmd+C to copy.', 'failed copy response', 'godaddy-email-marketing' ),
|
97 |
) );
|
98 |
+
|
99 |
+
wp_enqueue_script(
|
100 |
+
'gem-iframeresizer',
|
101 |
+
plugins_url( 'js/iframeResizer.min.js', GEM_PLUGIN_BASE ),
|
102 |
+
array(),
|
103 |
+
'3.5.1',
|
104 |
+
false
|
105 |
+
);
|
106 |
+
|
107 |
+
wp_enqueue_script(
|
108 |
+
'gem-iframeresizer-ie8',
|
109 |
+
plugins_url( 'js/js/iframeResizer.ie8.polyfils.min.js', GEM_PLUGIN_BASE ),
|
110 |
+
array(),
|
111 |
+
'3.5.1',
|
112 |
+
false
|
113 |
+
);
|
114 |
+
|
115 |
+
function_exists( 'wp_script_add_data' ) ? wp_script_add_data( 'gem-iframeresizer-ie8', 'conditional', 'lte IE 8' ) : $GLOBALS['wp_styles']->add_data( 'gem-iframeresizer-ie8', 'conditional', 'lte IE 8' );
|
116 |
+
|
117 |
}
|
118 |
|
119 |
/**
|
307 |
__( '<strong>Widget:</strong> Go to Appearance → widgets and find the widget called “GoDaddy Email Marketing Form” and drag it into the widget area of your choice. You can then add a title and select a form!', 'godaddy-email-marketing' ),
|
308 |
__( '<strong>Shortcode:</strong> You can add a form to any post or page by adding the shortcode (ex. <code>[gem id=80326]</code>) in the page/post editor.', 'godaddy-email-marketing' ),
|
309 |
sprintf(
|
310 |
+
__( '<strong>Template Tag:</strong> You can add the following template tag into any WordPress file: <code>%1$s</code>. Ex. <code>%2$s</code>', 'godaddy-email-marketing' ),
|
311 |
'<?php gem_form( $form_id ); ?>',
|
312 |
'<?php gem_form( 91 ); ?>'
|
313 |
)
|
462 |
* @param int $columns The number of columns in each row.
|
463 |
*/
|
464 |
public function do_settings_sections( $page, $columns = 2 ) {
|
465 |
+
|
466 |
global $wp_settings_sections, $wp_settings_fields;
|
467 |
|
468 |
// @codeCoverageIgnoreStart
|
507 |
}
|
508 |
}
|
509 |
|
510 |
+
/**
|
511 |
+
* Generate the help tab content
|
512 |
+
*
|
513 |
+
* @since 1.2.0
|
514 |
+
*
|
515 |
+
* @return mixed
|
516 |
+
*/
|
517 |
+
public function generate_help_tab_content() {
|
518 |
+
|
519 |
+
$language = get_locale();
|
520 |
+
$parts = explode( '_', $language );
|
521 |
+
$subdomain = ! empty( $parts[1] ) ? strtolower( $parts[1] ) : strtolower( $language );
|
522 |
+
|
523 |
+
// Overrides
|
524 |
+
switch ( $subdomain ) {
|
525 |
+
|
526 |
+
case '' :
|
527 |
+
|
528 |
+
$subdomain = 'www'; // Default
|
529 |
+
|
530 |
+
break;
|
531 |
+
|
532 |
+
case 'uk' :
|
533 |
+
|
534 |
+
$subdomain = 'ua'; // Ukrainian (Українська)
|
535 |
+
|
536 |
+
break;
|
537 |
+
|
538 |
+
case 'el' :
|
539 |
+
|
540 |
+
$subdomain = 'gr'; // Greek (Ελληνικά)
|
541 |
+
|
542 |
+
break;
|
543 |
+
|
544 |
+
}
|
545 |
+
|
546 |
+
?>
|
547 |
+
<iframe src="<?php echo esc_url( "https://{$subdomain}.godaddy.com/help/godaddy-email-marketing-1000013" ) ?>" frameborder="0" scrolling="no"></iframe>
|
548 |
+
|
549 |
+
<script type="text/javascript">
|
550 |
+
iFrameResize( {
|
551 |
+
bodyBackground: 'transparent',
|
552 |
+
checkOrigin: false,
|
553 |
+
heightCalculationMethod: 'taggedElement'
|
554 |
+
} );
|
555 |
+
</script>
|
556 |
+
<?php
|
557 |
+
|
558 |
+
}
|
559 |
+
|
560 |
/**
|
561 |
* Displays the settings page.
|
562 |
*
|
609 |
<a href="#forms" class="nav-tab <?php echo esc_attr( 'forms' === $tab ? 'nav-tab-active' : '' ); ?>"><?php esc_html_e( 'Forms', 'godaddy-email-marketing' ); ?></a>
|
610 |
<?php endif; ?>
|
611 |
<a href="#settings" class="nav-tab <?php echo esc_attr( 'settings' === $tab || empty( $tab ) ? 'nav-tab-active' : '' ); ?>"><?php esc_html_e( 'Settings', 'godaddy-email-marketing' ); ?></a>
|
612 |
+
<a href="#help" class="nav-tab <?php echo esc_attr( 'help' === $tab ? 'nav-tab-active' : '' ); ?>"><?php esc_html_e( 'Help', 'godaddy-email-marketing' ); ?></a>
|
613 |
</h2>
|
614 |
|
615 |
<div id="setting-errors"></div>
|
616 |
|
617 |
<?php if ( ! empty( $forms->signups ) ) : ?>
|
618 |
<div id="forms" class="panel">
|
619 |
+
<h3><?php esc_html_e( 'Reach Your Fans', 'godaddy-email-marketing' ); ?></h3>
|
620 |
+
<p><?php
|
621 |
+
printf(
|
622 |
+
esc_html__( 'Email marketing makes it easier than ever to turn casual visits into lasting relationship. You\'re already collecting subscribers, now you just need to start emailing them. It only takes a few moments to %1$screate an email marketing campaign%2$s.', 'godaddy-email-marketing' ),
|
623 |
+
'<a href="https://gem.godaddy.com" target="_blank">',
|
624 |
+
'</a>'
|
625 |
+
);
|
626 |
+
?>
|
627 |
+
</p>
|
628 |
<h3><?php esc_html_e( 'Available Signup Forms', 'godaddy-email-marketing' ); ?></h3>
|
629 |
<table class="wp-list-table widefat fixed striped">
|
630 |
<thead>
|
701 |
</p>
|
702 |
</div>
|
703 |
</form>
|
704 |
+
|
705 |
+
<div id="help" class="panel">
|
706 |
+
|
707 |
+
<?php $this->generate_help_tab_content(); ?>
|
708 |
+
|
709 |
+
<br style="clear:both" />
|
710 |
+
</div>
|
711 |
</div>
|
712 |
<?php
|
713 |
}
|
js/admin.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(a){"use strict";var b=window.GEMAdmin||{};b.init=function(){b.tabbedNav(),b.copyToClipboard()},b.tabbedNav=function(){var b=this,c=a(".about-wrap");a("div.panel",c).hide(),a(window).on("load",function(){var d=b.getParameterByName("tab"),e=window.location.hash.substr(1);a("div.updated, div.error, div.notice").not(".gem-identity").appendTo("#setting-errors"),d?a('.nav-tab-wrapper a[href="#'+d+'"]',c).click():e?a('.nav-tab-wrapper a[href="#'+e+'"]',c).click():a("div.panel:not(.hidden)",c).first().show()}),a(".nav-tab-wrapper a",c).on("click",function(){return a(".nav-tab-wrapper a",c).removeClass("nav-tab-active"),a("div.panel",c).hide(),a(this).addClass("nav-tab-active"),a("div"+a(this).attr("href"),c).show(),!1})},b.getParameterByName=function(a){var b,c;return a=a.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]"),b=new RegExp("[\\?&]"+a+"=([^&#]*)"),c=b.exec(location.search),null===c?"":decodeURIComponent(c[1].replace(/\+/g," "))},b.copyToClipboard=function(){a(".clipboard-value").on("click",function(){this.select()}),a(".copy-to-clipboard").on("click",function(c){var d=a(a(this).data("copytarget"));if(c.preventDefault(),d&&d.select){d.click();try{document.execCommand("copy"),d.addClass("copied"),setTimeout(function(){d.blur().removeClass("copied"),document.selection?document.selection.empty():window.getSelection&&window.getSelection().removeAllRanges()},1500)}catch(
|
1 |
+
!function(a){"use strict";var b=window.GEMAdmin||{};b.init=function(){b.tabbedNav(),b.copyToClipboard()},b.tabbedNav=function(){var b=this,c=a(".about-wrap");a("div.panel",c).hide(),a(window).on("load",function(){var d=b.getParameterByName("tab"),e=window.location.hash.substr(1);a("div.updated, div.error, div.notice").not(".gem-identity").appendTo("#setting-errors"),d?a('.nav-tab-wrapper a[href="#'+d+'"]',c).click():e?a('.nav-tab-wrapper a[href="#'+e+'"]',c).click():a("div.panel:not(.hidden)",c).first().show()}),a(".nav-tab-wrapper a",c).on("click",function(){return a(".nav-tab-wrapper a",c).removeClass("nav-tab-active"),a("div.panel",c).hide(),a(this).addClass("nav-tab-active"),a("div"+a(this).attr("href"),c).show(),!1})},b.getParameterByName=function(a){var b,c;return a=a.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]"),b=new RegExp("[\\?&]"+a+"=([^&#]*)"),c=b.exec(location.search),null===c?"":decodeURIComponent(c[1].replace(/\+/g," "))},b.copyToClipboard=function(){a(".clipboard-value").on("click",function(){this.select()}),a(".copy-to-clipboard").on("click",function(c){var d=a(a(this).data("copytarget"));if(c.preventDefault(),d&&d.select){d.click();try{document.execCommand("copy"),d.addClass("copied"),setTimeout(function(){d.blur().removeClass("copied"),document.selection?document.selection.empty():window.getSelection&&window.getSelection().removeAllRanges()},1500)}catch(a){alert(b.copyFailed)}}})},a(document).ready(b.init)}(jQuery);
|
js/gem.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(a){"use strict";var b=window.GEM||{};b.DEBUG_FLAG=!0,b.init=function(){a("form.gem-form").submit(function(c){var d,e,f,g,h,i=a(this),j=a(".gem-spinner",i),k=i.find(".gem-error, .gem-info"),l=[],m=[];c.preventDefault(),a(this).find("input[type=checkbox]").each(function(){var b=a(this),c=b.data("name");e!==c&&(e=c,f=a('input:checkbox[data-name="'+c+'"]:checked').map(function(){return this.value}).get().join(", "),a('input[name="'+c+'"]').val(f))}),a(this).find("[fingerprint=date]").each(function(){var b=a(this),c=b.data("name");g!==c&&(g=c,a('select[data-name="'+c+'"]').each(function(){var b=a(this).val();b&&m.push(b)}),3===m.length&&(h=m[0]+" "+m[1]+", "+m[2],a('input[name="'+c+'"]').val(h)))}),d=a(this).serialize(),i.find("input.gem-invalid").removeClass("gem-invalid"),a(this).find(".gem-required").each(function(){var c=a(this).val();"signup[email]"!==a(this).attr("name")||b.isEmail(c)?""===c&&a(this).is("input")?l.push(a(this)):a(this).is("label")&&"undefined"==typeof a('input:radio[name="'+a(this).data("name")+'"]:checked').val()&&l.push(a(this)):l.push(a(this))}),0===l.length?(j.css("display","inline-block"),a.post(i.attr("action")+".json",d,function(a){i.fadeOut("fast",function(){var c;a.success?(c=a.result.audience_member.suppressed,a.result.has_redirect&&(window.location.href=a.result.redirect),i.html(b.addMessage(c?["suppressed","success"]:["info","success"],c?b.thankyou_suppressed:b.thankyou)).fadeIn("fast")):i.html(b.addMessage("info",b.oops)).fadeIn("fast")})},"jsonp")):(0!==k.length&&k.remove(),a(l.reverse()).each(function(){var c="";a(this).addClass("gem-invalid"),"signup[email]"===a(this).attr("name")?c=""===a(this).val()?b.required.replace("%s",a(this).data("label")):b.email:a(this).data("label")&&(c=b.required.replace("%s",a(this).data("label"))),c&&i.prepend(b.addMessage("error",c))}))})},b.addMessage=function(b,c){var d=[];return a.isArray(b)?a.each(b,function(a,b){d.push("gem-"+b)}):d.push("gem-"+b.toString()),a("<p/>",{
|
1 |
+
!function(a){"use strict";var b=window.GEM||{};b.DEBUG_FLAG=!0,b.init=function(){a("form.gem-form").submit(function(c){var d,e,f,g,h,i=a(this),j=a(".gem-spinner",i),k=i.find(".gem-error, .gem-info"),l=[],m=[];c.preventDefault(),a(this).find("input[type=checkbox]").each(function(){var b=a(this),c=b.data("name");e!==c&&(e=c,f=a('input:checkbox[data-name="'+c+'"]:checked').map(function(){return this.value}).get().join(", "),a('input[name="'+c+'"]').val(f))}),a(this).find("[fingerprint=date]").each(function(){var b=a(this),c=b.data("name");g!==c&&(g=c,a('select[data-name="'+c+'"]').each(function(){var b=a(this).val();b&&m.push(b)}),3===m.length&&(h=m[0]+" "+m[1]+", "+m[2],a('input[name="'+c+'"]').val(h)))}),d=a(this).serialize(),i.find("input.gem-invalid").removeClass("gem-invalid"),a(this).find(".gem-required").each(function(){var c=a(this).val();"signup[email]"!==a(this).attr("name")||b.isEmail(c)?""===c&&a(this).is("input")?l.push(a(this)):a(this).is("label")&&"undefined"==typeof a('input:radio[name="'+a(this).data("name")+'"]:checked').val()&&l.push(a(this)):l.push(a(this))}),0===l.length?(j.css("display","inline-block"),a.post(i.attr("action")+".json",d,function(a){i.fadeOut("fast",function(){var c;a.success?(c=a.result.audience_member.suppressed,a.result.has_redirect&&(window.location.href=a.result.redirect),i.html(b.addMessage(c?["suppressed","success"]:["info","success"],c?b.thankyou_suppressed:b.thankyou)).fadeIn("fast")):i.html(b.addMessage("info",b.oops)).fadeIn("fast")})},"jsonp")):(0!==k.length&&k.remove(),a(l.reverse()).each(function(){var c="";a(this).addClass("gem-invalid"),"signup[email]"===a(this).attr("name")?c=""===a(this).val()?b.required.replace("%s",a(this).data("label")):b.email:a(this).data("label")&&(c=b.required.replace("%s",a(this).data("label"))),c&&i.prepend(b.addMessage("error",c))}))})},b.addMessage=function(b,c){var d=[];return a.isArray(b)?a.each(b,function(a,b){d.push("gem-"+b)}):d.push("gem-"+b.toString()),a("<p/>",{class:d.join(" ")}).text(c)},b.isEmail=function(a){var b=/^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;return b.test(a)},a(document).ready(b.init)}(jQuery);
|
js/iframeResizer.ie8.polyfils.min.js
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
// IE8 polyfils for iframeResizer.js
|
2 |
+
|
3 |
+
Array.prototype.forEach||(Array.prototype.forEach=function(a){"use strict";if(void 0===this||null===this||"function"!=typeof a)throw new TypeError;for(var b=Object(this),c=b.length>>>0,d=arguments.length>=2?arguments[1]:void 0,e=0;c>e;e++)e in b&&a.call(d,b[e],e,b)}),Function.prototype.bind||(Function.prototype.bind=function(a){if("function"!=typeof this)throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");var b=Array.prototype.slice.call(arguments,1),c=this,d=function(){},e=function(){return c.apply(this instanceof d?this:a,b.concat(Array.prototype.slice.call(arguments)))};return d.prototype=this.prototype,e.prototype=new d,e}),Array.prototype.forEach||(Array.prototype.forEach=function(a,b){if(null===this)throw new TypeError(" this is null or not defined");if("function"!=typeof a)throw new TypeError(a+" is not a function");for(var c=Object(this),d=c.length>>>0,e=0;d>e;e++)e in c&&a.call(b,c[e],e,c)}),function(a,b){function c(a){var c=b[a];b[a]=function(a){return e(c(a))}}function d(b,c,d){return(d=this).attachEvent("on"+b,function(b){b=b||a.event,b.preventDefault=b.preventDefault||function(){b.returnValue=!1},b.stopPropagation=b.stopPropagation||function(){b.cancelBubble=!0},c.call(d,b)})}function e(a,b){if(b=a.length)for(;b--;)a[b].addEventListener=d;else a.addEventListener=d;return a}a.addEventListener||(e([b,a]),"Element"in a?a.Element.prototype.addEventListener=d:(b.attachEvent("onreadystatechange",function(){e(b.all)}),c("getElementsByTagName"),c("getElementById"),c("createElement"),e(b.all)))}(window,document);
|
4 |
+
//# sourceMappingURL=ie8.polyfils.map
|
js/iframeResizer.min.js
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*! iFrame Resizer (iframeSizer.min.js ) - v3.5.1 - 2015-11-04
|
2 |
+
* Desc: Force cross domain iframes to size to content.
|
3 |
+
* Requires: iframeResizer.contentWindow.min.js to be loaded into the target frame.
|
4 |
+
* Copyright: (c) 2015 David J. Bradshaw - dave@bradshaw.net
|
5 |
+
* License: MIT
|
6 |
+
*/
|
7 |
+
|
8 |
+
!function(a){"use strict";function b(b,c,d){"addEventListener"in a?b.addEventListener(c,d,!1):"attachEvent"in a&&b.attachEvent("on"+c,d)}function c(b,c,d){"removeEventListener"in a?b.removeEventListener(c,d,!1):"detachEvent"in a&&b.detachEvent("on"+c,d)}function d(){var b,c=["moz","webkit","o","ms"];for(b=0;b<c.length&&!N;b+=1)N=a[c[b]+"RequestAnimationFrame"];N||h("setup","RequestAnimationFrame not supported")}function e(b){var c="Host page: "+b;return a.top!==a.self&&(c=a.parentIFrame&&a.parentIFrame.getId?a.parentIFrame.getId()+": "+b:"Nested host page: "+b),c}function f(a){return K+"["+e(a)+"]"}function g(a){return P[a]?P[a].log:G}function h(a,b){k("log",a,b,g(a))}function i(a,b){k("info",a,b,g(a))}function j(a,b){k("warn",a,b,!0)}function k(b,c,d,e){!0===e&&"object"==typeof a.console&&console[b](f(c),d)}function l(d){function e(){function a(){s(V),p(W)}g("Height"),g("Width"),t(a,V,"init")}function f(){var a=U.substr(L).split(":");return{iframe:P[a[0]].iframe,id:a[0],height:a[1],width:a[2],type:a[3]}}function g(a){var b=Number(P[W]["max"+a]),c=Number(P[W]["min"+a]),d=a.toLowerCase(),e=Number(V[d]);h(W,"Checking "+d+" is in range "+c+"-"+b),c>e&&(e=c,h(W,"Set "+d+" to min value")),e>b&&(e=b,h(W,"Set "+d+" to max value")),V[d]=""+e}function k(){function a(){function a(){var a=0,d=!1;for(h(W,"Checking connection is from allowed list of origins: "+c);a<c.length;a++)if(c[a]===b){d=!0;break}return d}function d(){var a=P[W].remoteHost;return h(W,"Checking connection is from: "+a),b===a}return c.constructor===Array?a():d()}var b=d.origin,c=P[W].checkOrigin;if(c&&""+b!="null"&&!a())throw new Error("Unexpected message received from: "+b+" for "+V.iframe.id+". Message was: "+d.data+". This error can be disabled by setting the checkOrigin: false option or by providing of array of trusted domains.");return!0}function l(){return K===(""+U).substr(0,L)&&U.substr(L).split(":")[0]in P}function w(){var a=V.type in{"true":1,"false":1,undefined:1};return a&&h(W,"Ignoring init message from meta parent page"),a}function y(a){return U.substr(U.indexOf(":")+J+a)}function z(a){h(W,"MessageCallback passed: {iframe: "+V.iframe.id+", message: "+a+"}"),N("messageCallback",{iframe:V.iframe,message:JSON.parse(a)}),h(W,"--")}function A(){var b=document.body.getBoundingClientRect(),c=V.iframe.getBoundingClientRect();return JSON.stringify({clientHeight:Math.max(document.documentElement.clientHeight,a.innerHeight||0),clientWidth:Math.max(document.documentElement.clientWidth,a.innerWidth||0),offsetTop:parseInt(c.top-b.top,10),offsetLeft:parseInt(c.left-b.left,10),scrollTop:a.pageYOffset,scrollLeft:a.pageXOffset})}function B(a,b){function c(){u("Send Page Info","pageInfo:"+A(),a,b)}x(c,32)}function C(){function d(b,c){function d(){P[g]?B(P[g].iframe,g):e()}["scroll","resize"].forEach(function(e){h(g,b+e+" listener for sendPageInfo"),c(a,e,d)})}function e(){d("Remove ",c)}function f(){d("Add ",b)}var g=W;f(),P[g].stopPageInfo=e}function D(){P[W]&&P[W].stopPageInfo&&(P[W].stopPageInfo(),delete P[W].stopPageInfo)}function E(){var a=!0;return null===V.iframe&&(j(W,"IFrame ("+V.id+") not found"),a=!1),a}function F(a){var b=a.getBoundingClientRect();return o(W),{x:Math.floor(Number(b.left)+Number(M.x)),y:Math.floor(Number(b.top)+Number(M.y))}}function G(b){function c(){M=g,H(),h(W,"--")}function d(){return{x:Number(V.width)+f.x,y:Number(V.height)+f.y}}function e(){a.parentIFrame?a.parentIFrame["scrollTo"+(b?"Offset":"")](g.x,g.y):j(W,"Unable to scroll to requested position, window.parentIFrame not found")}var f=b?F(V.iframe):{x:0,y:0},g=d();h(W,"Reposition requested from iFrame (offset x:"+f.x+" y:"+f.y+")"),a.top!==a.self?e():c()}function H(){!1!==N("scrollCallback",M)?p(W):q()}function I(b){function c(){var a=F(g);h(W,"Moving to in page link (#"+e+") at x: "+a.x+" y: "+a.y),M={x:a.x,y:a.y},H(),h(W,"--")}function d(){a.parentIFrame?a.parentIFrame.moveToAnchor(e):h(W,"In page link #"+e+" not found and window.parentIFrame not found")}var e=b.split("#")[1]||"",f=decodeURIComponent(e),g=document.getElementById(f)||document.getElementsByName(f)[0];g?c():a.top!==a.self?d():h(W,"In page link #"+e+" not found")}function N(a,b){return m(W,a,b)}function O(){switch(P[W].firstRun&&T(),V.type){case"close":n(V.iframe);break;case"message":z(y(6));break;case"scrollTo":G(!1);break;case"scrollToOffset":G(!0);break;case"pageInfo":B(P[W].iframe,W),C();break;case"pageInfoStop":D();break;case"inPageLink":I(y(9));break;case"reset":r(V);break;case"init":e(),N("initCallback",V.iframe),N("resizedCallback",V);break;default:e(),N("resizedCallback",V)}}function Q(a){var b=!0;return P[a]||(b=!1,j(V.type+" No settings for "+a+". Message was: "+U)),b}function S(){for(var a in P)u("iFrame requested init",v(a),document.getElementById(a),a)}function T(){P[W].firstRun=!1}var U=d.data,V={},W=null;"[iFrameResizerChild]Ready"===U?S():l()?(V=f(),W=R=V.id,!w()&&Q(W)&&(h(W,"Received: "+U),E()&&k()&&O())):i(W,"Ignored: "+U)}function m(a,b,c){var d=null,e=null;if(P[a]){if(d=P[a][b],"function"!=typeof d)throw new TypeError(b+" on iFrame["+a+"] is not a function");e=d(c)}return e}function n(a){var b=a.id;h(b,"Removing iFrame: "+b),a.parentNode.removeChild(a),m(b,"closedCallback",b),h(b,"--"),delete P[b]}function o(b){null===M&&(M={x:void 0!==a.pageXOffset?a.pageXOffset:document.documentElement.scrollLeft,y:void 0!==a.pageYOffset?a.pageYOffset:document.documentElement.scrollTop},h(b,"Get page position: "+M.x+","+M.y))}function p(b){null!==M&&(a.scrollTo(M.x,M.y),h(b,"Set page position: "+M.x+","+M.y),q())}function q(){M=null}function r(a){function b(){s(a),u("reset","reset",a.iframe,a.id)}h(a.id,"Size reset requested by "+("init"===a.type?"host page":"iFrame")),o(a.id),t(b,a,"reset")}function s(a){function b(b){a.iframe.style[b]=a[b]+"px",h(a.id,"IFrame ("+e+") "+b+" set to "+a[b]+"px")}function c(b){H||"0"!==a[b]||(H=!0,h(e,"Hidden iFrame detected, creating visibility listener"),y())}function d(a){b(a),c(a)}var e=a.iframe.id;P[e]&&(P[e].sizeHeight&&d("height"),P[e].sizeWidth&&d("width"))}function t(a,b,c){c!==b.type&&N?(h(b.id,"Requesting animation frame"),N(a)):a()}function u(a,b,c,d){function e(){var e=P[d].targetOrigin;h(d,"["+a+"] Sending msg to iframe["+d+"] ("+b+") targetOrigin: "+e),c.contentWindow.postMessage(K+b,e)}function f(){i(d,"["+a+"] IFrame("+d+") not found"),P[d]&&delete P[d]}function g(){c&&"contentWindow"in c&&null!==c.contentWindow?e():f()}d=d||c.id,P[d]&&g()}function v(a){return a+":"+P[a].bodyMarginV1+":"+P[a].sizeWidth+":"+P[a].log+":"+P[a].interval+":"+P[a].enablePublicMethods+":"+P[a].autoResize+":"+P[a].bodyMargin+":"+P[a].heightCalculationMethod+":"+P[a].bodyBackground+":"+P[a].bodyPadding+":"+P[a].tolerance+":"+P[a].inPageLinks+":"+P[a].resizeFrom+":"+P[a].widthCalculationMethod}function w(a,c){function d(){function b(b){1/0!==P[w][b]&&0!==P[w][b]&&(a.style[b]=P[w][b]+"px",h(w,"Set "+b+" = "+P[w][b]+"px"))}function c(a){if(P[w]["min"+a]>P[w]["max"+a])throw new Error("Value for min"+a+" can not be greater than max"+a)}c("Height"),c("Width"),b("maxHeight"),b("minHeight"),b("maxWidth"),b("minWidth")}function e(){var a=c&&c.id||S.id+F++;return null!==document.getElementById(a)&&(a+=F++),a}function f(b){return R=b,""===b&&(a.id=b=e(),G=(c||{}).log,R=b,h(b,"Added missing iframe ID: "+b+" ("+a.src+")")),b}function g(){h(w,"IFrame scrolling "+(P[w].scrolling?"enabled":"disabled")+" for "+w),a.style.overflow=!1===P[w].scrolling?"hidden":"auto",a.scrolling=!1===P[w].scrolling?"no":"yes"}function i(){("number"==typeof P[w].bodyMargin||"0"===P[w].bodyMargin)&&(P[w].bodyMarginV1=P[w].bodyMargin,P[w].bodyMargin=""+P[w].bodyMargin+"px")}function k(){var b=P[w].firstRun,c=P[w].heightCalculationMethod in O;!b&&c&&r({iframe:a,height:0,width:0,type:"init"})}function l(){Function.prototype.bind&&(P[w].iframe.iFrameResizer={close:n.bind(null,P[w].iframe),resize:u.bind(null,"Window resize","resize",P[w].iframe),moveToAnchor:function(a){u("Move to anchor","inPageLink:"+a,P[w].iframe,w)},sendMessage:function(a){a=JSON.stringify(a),u("Send Message","message:"+a,P[w].iframe,w)}})}function m(c){function d(){u("iFrame.onload",c,a),k()}b(a,"load",d),u("init",c,a)}function o(a){if("object"!=typeof a)throw new TypeError("Options is not an object")}function p(a){for(var b in S)S.hasOwnProperty(b)&&(P[w][b]=a.hasOwnProperty(b)?a[b]:S[b])}function q(a){return""===a||"file://"===a?"*":a}function s(b){b=b||{},P[w]={firstRun:!0,iframe:a,remoteHost:a.src.split("/").slice(0,3).join("/")},o(b),p(b),P[w].targetOrigin=!0===P[w].checkOrigin?q(P[w].remoteHost):"*"}function t(){return w in P&&"iFrameResizer"in a}var w=f(a.id);t()?j(w,"Ignored iFrame, already setup."):(s(c),g(),d(),i(),m(v(w)),l())}function x(a,b){null===Q&&(Q=setTimeout(function(){Q=null,a()},b))}function y(){function b(){function a(a){function b(b){return"0px"===P[a].iframe.style[b]}function c(a){return null!==a.offsetParent}c(P[a].iframe)&&(b("height")||b("width"))&&u("Visibility change","resize",P[a].iframe,a)}for(var b in P)a(b)}function c(a){h("window","Mutation observed: "+a[0].target+" "+a[0].type),x(b,16)}function d(){var a=document.querySelector("body"),b={attributes:!0,attributeOldValue:!1,characterData:!0,characterDataOldValue:!1,childList:!0,subtree:!0},d=new e(c);d.observe(a,b)}var e=a.MutationObserver||a.WebKitMutationObserver;e&&d()}function z(a){function b(){B("Window "+a,"resize")}h("window","Trigger event: "+a),x(b,16)}function A(){function a(){B("Tab Visable","resize")}"hidden"!==document.visibilityState&&(h("document","Trigger event: Visiblity change"),x(a,16))}function B(a,b){function c(a){return"parent"===P[a].resizeFrom&&P[a].autoResize&&!P[a].firstRun}for(var d in P)c(d)&&u(a,b,document.getElementById(d),d)}function C(){b(a,"message",l),b(a,"resize",function(){z("resize")}),b(document,"visibilitychange",A),b(document,"-webkit-visibilitychange",A),b(a,"focusin",function(){z("focus")}),b(a,"focus",function(){z("focus")})}function D(){function a(a,c){function d(){if(!c.tagName)throw new TypeError("Object is not a valid DOM element");if("IFRAME"!==c.tagName.toUpperCase())throw new TypeError("Expected <IFRAME> tag, found <"+c.tagName+">")}c&&(d(),w(c,a),b.push(c))}var b;return d(),C(),function(c,d){switch(b=[],typeof d){case"undefined":case"string":Array.prototype.forEach.call(document.querySelectorAll(d||"iframe"),a.bind(void 0,c));break;case"object":a(c,d);break;default:throw new TypeError("Unexpected data type ("+typeof d+")")}return b}}function E(a){a.fn.iFrameResize=function(a){return this.filter("iframe").each(function(b,c){w(c,a)}).end()}}var F=0,G=!1,H=!1,I="message",J=I.length,K="[iFrameSizer]",L=K.length,M=null,N=a.requestAnimationFrame,O={max:1,scroll:1,bodyScroll:1,documentElementScroll:1},P={},Q=null,R="Host Page",S={autoResize:!0,bodyBackground:null,bodyMargin:null,bodyMarginV1:8,bodyPadding:null,checkOrigin:!0,inPageLinks:!1,enablePublicMethods:!0,heightCalculationMethod:"bodyOffset",id:"iFrameResizer",interval:32,log:!1,maxHeight:1/0,maxWidth:1/0,minHeight:0,minWidth:0,resizeFrom:"parent",scrolling:!1,sizeHeight:!0,sizeWidth:!1,tolerance:0,widthCalculationMethod:"scroll",closedCallback:function(){},initCallback:function(){},messageCallback:function(){j("MessageCallback function not defined")},resizedCallback:function(){},scrollCallback:function(){return!0}};a.jQuery&&E(jQuery),"function"==typeof define&&define.amd?define([],D):"object"==typeof module&&"object"==typeof module.exports?module.exports=D():a.iFrameResize=a.iFrameResize||D()}(window||{});
|
9 |
+
//# sourceMappingURL=iframeResizer.map
|
languages/godaddy-email-marketing-da_DK.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-de_DE.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-el.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-es_ES.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-es_MX.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-fi.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-fr_FR.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-hi_IN.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-id_ID.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-it_IT.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-ja.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-ko_KR.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-mr.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-ms_MY.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-nb_NO.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-nl_NL.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-pl_PL.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-pt_BR.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-pt_PT.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-ru_RU.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sv_SE.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-th.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-tl.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-tr_TR.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-uk.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-vi.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-zh_CN.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-zh_HK.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-zh_TW.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing.pot
ADDED
@@ -0,0 +1,415 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (c) 2017 GoDaddy Operating Company, LLC. All Rights Reserved.
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: GoDaddy Email Marketing 1.2.0\n"
|
5 |
+
"Report-Msgid-Bugs-To: "
|
6 |
+
"https://github.com/godaddy/wp-godaddy-email-marketing/issues\n"
|
7 |
+
"POT-Creation-Date: 2017-02-10 23:03:03+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
"X-Poedit-KeywordsList: "
|
15 |
+
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
16 |
+
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
17 |
+
"X-Generator: grunt-wp-i18n1.0.0\n"
|
18 |
+
|
19 |
+
#. Plugin Name of the plugin/theme
|
20 |
+
msgid "GoDaddy Email Marketing"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: includes/class-shortcode.php:54
|
24 |
+
msgid "Signup Forms"
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: includes/class-shortcode.php:55
|
28 |
+
msgid "Choose one of the available forms."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: includes/render.php:71
|
32 |
+
msgid "Powered by GoDaddy"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: includes/render.php:326
|
36 |
+
msgid "Month"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: includes/render.php:327
|
40 |
+
msgid "January"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: includes/render.php:328
|
44 |
+
msgid "Febuary"
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: includes/render.php:329
|
48 |
+
msgid "March"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: includes/render.php:330
|
52 |
+
msgid "April"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: includes/render.php:331
|
56 |
+
msgid "May"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: includes/render.php:332
|
60 |
+
msgid "June"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: includes/render.php:333
|
64 |
+
msgid "July"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: includes/render.php:334
|
68 |
+
msgid "August"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: includes/render.php:335
|
72 |
+
msgid "September"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: includes/render.php:336
|
76 |
+
msgid "October"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: includes/render.php:337
|
80 |
+
msgid "November"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: includes/render.php:338
|
84 |
+
msgid "December"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: includes/render.php:343
|
88 |
+
msgid "Day"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: includes/render.php:351
|
92 |
+
msgid "Year"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: includes/settings.php:60 includes/settings.php:583
|
96 |
+
msgid "GoDaddy Email Marketing Signup Forms"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: includes/settings.php:241
|
100 |
+
msgid "All data has been removed."
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: includes/settings.php:245
|
104 |
+
msgid "All transients were removed."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: includes/settings.php:249
|
108 |
+
msgid "Forms list was successfully updated."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: includes/settings.php:253
|
112 |
+
msgid ""
|
113 |
+
"The credentials are incorrect! Please verify that you have entered them "
|
114 |
+
"correctly."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/settings.php:257
|
118 |
+
msgid ""
|
119 |
+
"Connection with GoDaddy Email Marketing has been established! You're all "
|
120 |
+
"set!"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: includes/settings.php:262
|
124 |
+
msgid "Settings have been updated."
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/settings.php:266
|
128 |
+
msgid "Please fill in the username and the API key first."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/settings.php:298
|
132 |
+
msgid "Overview"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: includes/settings.php:302
|
136 |
+
msgid "Instructions"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: includes/settings.php:304
|
140 |
+
msgid ""
|
141 |
+
"Once the plugin is activated, you will be able to select and insert any of "
|
142 |
+
"your GoDaddy Email Marketing webforms right into your site. Setup is easy. "
|
143 |
+
"Below, simply enter your account email address and API key (found in your "
|
144 |
+
"GoDaddy Email Marketing account [%s] area). Here are the 3 ways you can "
|
145 |
+
"display a webform on your site:"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: includes/settings.php:307
|
149 |
+
msgid ""
|
150 |
+
"<strong>Widget:</strong> Go to Appearance → widgets and find the "
|
151 |
+
"widget called “GoDaddy Email Marketing Form” and drag it into the widget "
|
152 |
+
"area of your choice. You can then add a title and select a form!"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: includes/settings.php:308
|
156 |
+
msgid ""
|
157 |
+
"<strong>Shortcode:</strong> You can add a form to any post or page by "
|
158 |
+
"adding the shortcode (ex. <code>[gem id=80326]</code>) in the page/post "
|
159 |
+
"editor."
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/settings.php:310
|
163 |
+
msgid ""
|
164 |
+
"<strong>Template Tag:</strong> You can add the following template tag into "
|
165 |
+
"any WordPress file: <code>%1$s</code>. Ex. <code>%2$s</code>"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: includes/settings.php:320
|
169 |
+
msgid "For more information:"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#. Author of the plugin/theme
|
173 |
+
msgid "GoDaddy"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: includes/settings.php:322
|
177 |
+
msgid "GoDaddy Help"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: includes/settings.php:323
|
181 |
+
msgid "Contact GoDaddy"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: includes/settings.php:348
|
185 |
+
msgid "Account Details"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: includes/settings.php:355
|
189 |
+
msgid "Username"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: includes/settings.php:369
|
193 |
+
msgid "API Key"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: includes/settings.php:383
|
197 |
+
msgid "Footer Link"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: includes/settings.php:390
|
201 |
+
msgid "Display \"Powered by GoDaddy\"?"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: includes/settings.php:397
|
205 |
+
msgid "Debugging"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: includes/settings.php:404
|
209 |
+
msgid "Debug Mode"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: includes/settings.php:411
|
213 |
+
msgid "Activated"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: includes/settings.php:419
|
217 |
+
msgid "Cache Reset"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: includes/settings.php:428
|
221 |
+
msgid "Erase Transients"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: includes/settings.php:429
|
225 |
+
msgid ""
|
226 |
+
"Purges only the cached data associated with this plugin, and should be "
|
227 |
+
"attempted before a hard reset."
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: includes/settings.php:435
|
231 |
+
msgid "Hard Reset"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: includes/settings.php:444
|
235 |
+
msgid "Erase All Data"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/settings.php:445
|
239 |
+
msgid "Purges all saved data associated with this plugin."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/settings.php:609
|
243 |
+
msgid "Forms"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: includes/settings.php:611
|
247 |
+
msgid "Settings"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/settings.php:612
|
251 |
+
msgid "Help"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: includes/settings.php:619
|
255 |
+
msgid "Reach Your Fans"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: includes/settings.php:622
|
259 |
+
msgid ""
|
260 |
+
"Email marketing makes it easier than ever to turn casual visits into "
|
261 |
+
"lasting relationship. You're already collecting subscribers, now you just "
|
262 |
+
"need to start emailing them. It only takes a few moments to %1$screate an "
|
263 |
+
"email marketing campaign%2$s."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: includes/settings.php:628
|
267 |
+
msgid "Available Signup Forms"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/settings.php:632 includes/settings.php:639
|
271 |
+
#: includes/settings.php:647
|
272 |
+
msgid "Form Name"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: includes/settings.php:633 includes/settings.php:640
|
276 |
+
#: includes/settings.php:661
|
277 |
+
msgid "Form ID"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: includes/settings.php:634 includes/settings.php:641
|
281 |
+
#: includes/settings.php:664
|
282 |
+
msgid "Shortcode"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: includes/settings.php:651
|
286 |
+
msgid "Opens in a new window"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: includes/settings.php:651
|
290 |
+
msgid "Edit form in GoDaddy Email Marketing"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: includes/settings.php:654
|
294 |
+
msgid "Preview"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: includes/settings.php:677
|
298 |
+
msgid "Not seeing your form?"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: includes/settings.php:741
|
302 |
+
msgid "Refresh Forms"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: includes/settings.php:748
|
306 |
+
msgid "Create a New Signup Form"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: includes/settings.php:755
|
310 |
+
msgid "Create a New Campaign"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: includes/settings.php:841
|
314 |
+
msgid ""
|
315 |
+
"If you are experiencing issues and are unsure of the cause, you may want to "
|
316 |
+
"activate debug mode, which displays additional options."
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: includes/widget.php:21
|
320 |
+
msgid "GoDaddy Email Marketing Form"
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: includes/widget.php:128
|
324 |
+
msgid "Title:"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: includes/widget.php:134
|
328 |
+
msgid "Additional Text:"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: includes/widget.php:143
|
332 |
+
msgid "Form:"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: includes/widget.php:160
|
336 |
+
msgid "settings page"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#. Author URI of the plugin/theme
|
340 |
+
msgid "https://gem.godaddy.com/"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#. Description of the plugin/theme
|
344 |
+
msgid ""
|
345 |
+
"Add the GoDaddy Email Marketing signup form to your WordPress site! Easy to "
|
346 |
+
"set up, the plugin allows your site visitors to subscribe to your email "
|
347 |
+
"lists."
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: includes/settings.php:96
|
351 |
+
msgctxt "failed copy response"
|
352 |
+
msgid "Please press Ctrl/Cmd+C to copy."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: includes/settings.php:590
|
356 |
+
msgctxt "gem header note"
|
357 |
+
msgid "Enjoy the GoDaddy Email Marketing Experience."
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: includes/settings.php:592
|
361 |
+
msgctxt "header note"
|
362 |
+
msgid ""
|
363 |
+
"Add your GoDaddy Email Marketing signup form to your WordPress site! Easy "
|
364 |
+
"to set up, the GoDaddy Email Marketing plugin allows your site visitors to "
|
365 |
+
"subscribe to your email list."
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: includes/settings.php:596
|
369 |
+
msgctxt "header note"
|
370 |
+
msgid "You don't have any forms yet."
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: includes/settings.php:599
|
374 |
+
msgctxt "Sign up button"
|
375 |
+
msgid "New to GoDaddy? Create an account to get started today. %s"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: includes/settings.php:599
|
379 |
+
msgctxt "header button"
|
380 |
+
msgid "Sign Up Now"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: includes/settings.php:696
|
384 |
+
msgctxt "save settings button"
|
385 |
+
msgid "Save Settings"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: includes/settings.php:851
|
389 |
+
msgctxt "1. Sign-in link, 2. Sign-up link"
|
390 |
+
msgid ""
|
391 |
+
"For this plugin to work, it needs to access your GoDaddy Email Marketing "
|
392 |
+
"account. %1$s to get your username and API key. Copy and paste them below; "
|
393 |
+
"then click \"Save Settings.\" If you don't have a GoDaddy Email Marketing "
|
394 |
+
"account, %2$s."
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: includes/settings.php:851
|
398 |
+
msgctxt "account details link"
|
399 |
+
msgid "Sign in here"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: includes/settings.php:851
|
403 |
+
msgctxt "account details link"
|
404 |
+
msgid "sign up here"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: includes/widget.php:24
|
408 |
+
msgctxt "widget description"
|
409 |
+
msgid "Embed GoDaddy Email Marketing signup forms in the sidebar."
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: includes/widget.php:156
|
413 |
+
msgctxt "link to settings page"
|
414 |
+
msgid "Please set up your GoDaddy Email Marketing account in the %s."
|
415 |
+
msgstr ""
|
license.txt
ADDED
@@ -0,0 +1,339 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
GNU GENERAL PUBLIC LICENSE
|
2 |
+
Version 2, June 1991
|
3 |
+
|
4 |
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
5 |
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
6 |
+
Everyone is permitted to copy and distribute verbatim copies
|
7 |
+
of this license document, but changing it is not allowed.
|
8 |
+
|
9 |
+
Preamble
|
10 |
+
|
11 |
+
The licenses for most software are designed to take away your
|
12 |
+
freedom to share and change it. By contrast, the GNU General Public
|
13 |
+
License is intended to guarantee your freedom to share and change free
|
14 |
+
software--to make sure the software is free for all its users. This
|
15 |
+
General Public License applies to most of the Free Software
|
16 |
+
Foundation's software and to any other program whose authors commit to
|
17 |
+
using it. (Some other Free Software Foundation software is covered by
|
18 |
+
the GNU Lesser General Public License instead.) You can apply it to
|
19 |
+
your programs, too.
|
20 |
+
|
21 |
+
When we speak of free software, we are referring to freedom, not
|
22 |
+
price. Our General Public Licenses are designed to make sure that you
|
23 |
+
have the freedom to distribute copies of free software (and charge for
|
24 |
+
this service if you wish), that you receive source code or can get it
|
25 |
+
if you want it, that you can change the software or use pieces of it
|
26 |
+
in new free programs; and that you know you can do these things.
|
27 |
+
|
28 |
+
To protect your rights, we need to make restrictions that forbid
|
29 |
+
anyone to deny you these rights or to ask you to surrender the rights.
|
30 |
+
These restrictions translate to certain responsibilities for you if you
|
31 |
+
distribute copies of the software, or if you modify it.
|
32 |
+
|
33 |
+
For example, if you distribute copies of such a program, whether
|
34 |
+
gratis or for a fee, you must give the recipients all the rights that
|
35 |
+
you have. You must make sure that they, too, receive or can get the
|
36 |
+
source code. And you must show them these terms so they know their
|
37 |
+
rights.
|
38 |
+
|
39 |
+
We protect your rights with two steps: (1) copyright the software, and
|
40 |
+
(2) offer you this license which gives you legal permission to copy,
|
41 |
+
distribute and/or modify the software.
|
42 |
+
|
43 |
+
Also, for each author's protection and ours, we want to make certain
|
44 |
+
that everyone understands that there is no warranty for this free
|
45 |
+
software. If the software is modified by someone else and passed on, we
|
46 |
+
want its recipients to know that what they have is not the original, so
|
47 |
+
that any problems introduced by others will not reflect on the original
|
48 |
+
authors' reputations.
|
49 |
+
|
50 |
+
Finally, any free program is threatened constantly by software
|
51 |
+
patents. We wish to avoid the danger that redistributors of a free
|
52 |
+
program will individually obtain patent licenses, in effect making the
|
53 |
+
program proprietary. To prevent this, we have made it clear that any
|
54 |
+
patent must be licensed for everyone's free use or not licensed at all.
|
55 |
+
|
56 |
+
The precise terms and conditions for copying, distribution and
|
57 |
+
modification follow.
|
58 |
+
|
59 |
+
GNU GENERAL PUBLIC LICENSE
|
60 |
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
61 |
+
|
62 |
+
0. This License applies to any program or other work which contains
|
63 |
+
a notice placed by the copyright holder saying it may be distributed
|
64 |
+
under the terms of this General Public License. The "Program", below,
|
65 |
+
refers to any such program or work, and a "work based on the Program"
|
66 |
+
means either the Program or any derivative work under copyright law:
|
67 |
+
that is to say, a work containing the Program or a portion of it,
|
68 |
+
either verbatim or with modifications and/or translated into another
|
69 |
+
language. (Hereinafter, translation is included without limitation in
|
70 |
+
the term "modification".) Each licensee is addressed as "you".
|
71 |
+
|
72 |
+
Activities other than copying, distribution and modification are not
|
73 |
+
covered by this License; they are outside its scope. The act of
|
74 |
+
running the Program is not restricted, and the output from the Program
|
75 |
+
is covered only if its contents constitute a work based on the
|
76 |
+
Program (independent of having been made by running the Program).
|
77 |
+
Whether that is true depends on what the Program does.
|
78 |
+
|
79 |
+
1. You may copy and distribute verbatim copies of the Program's
|
80 |
+
source code as you receive it, in any medium, provided that you
|
81 |
+
conspicuously and appropriately publish on each copy an appropriate
|
82 |
+
copyright notice and disclaimer of warranty; keep intact all the
|
83 |
+
notices that refer to this License and to the absence of any warranty;
|
84 |
+
and give any other recipients of the Program a copy of this License
|
85 |
+
along with the Program.
|
86 |
+
|
87 |
+
You may charge a fee for the physical act of transferring a copy, and
|
88 |
+
you may at your option offer warranty protection in exchange for a fee.
|
89 |
+
|
90 |
+
2. You may modify your copy or copies of the Program or any portion
|
91 |
+
of it, thus forming a work based on the Program, and copy and
|
92 |
+
distribute such modifications or work under the terms of Section 1
|
93 |
+
above, provided that you also meet all of these conditions:
|
94 |
+
|
95 |
+
a) You must cause the modified files to carry prominent notices
|
96 |
+
stating that you changed the files and the date of any change.
|
97 |
+
|
98 |
+
b) You must cause any work that you distribute or publish, that in
|
99 |
+
whole or in part contains or is derived from the Program or any
|
100 |
+
part thereof, to be licensed as a whole at no charge to all third
|
101 |
+
parties under the terms of this License.
|
102 |
+
|
103 |
+
c) If the modified program normally reads commands interactively
|
104 |
+
when run, you must cause it, when started running for such
|
105 |
+
interactive use in the most ordinary way, to print or display an
|
106 |
+
announcement including an appropriate copyright notice and a
|
107 |
+
notice that there is no warranty (or else, saying that you provide
|
108 |
+
a warranty) and that users may redistribute the program under
|
109 |
+
these conditions, and telling the user how to view a copy of this
|
110 |
+
License. (Exception: if the Program itself is interactive but
|
111 |
+
does not normally print such an announcement, your work based on
|
112 |
+
the Program is not required to print an announcement.)
|
113 |
+
|
114 |
+
These requirements apply to the modified work as a whole. If
|
115 |
+
identifiable sections of that work are not derived from the Program,
|
116 |
+
and can be reasonably considered independent and separate works in
|
117 |
+
themselves, then this License, and its terms, do not apply to those
|
118 |
+
sections when you distribute them as separate works. But when you
|
119 |
+
distribute the same sections as part of a whole which is a work based
|
120 |
+
on the Program, the distribution of the whole must be on the terms of
|
121 |
+
this License, whose permissions for other licensees extend to the
|
122 |
+
entire whole, and thus to each and every part regardless of who wrote it.
|
123 |
+
|
124 |
+
Thus, it is not the intent of this section to claim rights or contest
|
125 |
+
your rights to work written entirely by you; rather, the intent is to
|
126 |
+
exercise the right to control the distribution of derivative or
|
127 |
+
collective works based on the Program.
|
128 |
+
|
129 |
+
In addition, mere aggregation of another work not based on the Program
|
130 |
+
with the Program (or with a work based on the Program) on a volume of
|
131 |
+
a storage or distribution medium does not bring the other work under
|
132 |
+
the scope of this License.
|
133 |
+
|
134 |
+
3. You may copy and distribute the Program (or a work based on it,
|
135 |
+
under Section 2) in object code or executable form under the terms of
|
136 |
+
Sections 1 and 2 above provided that you also do one of the following:
|
137 |
+
|
138 |
+
a) Accompany it with the complete corresponding machine-readable
|
139 |
+
source code, which must be distributed under the terms of Sections
|
140 |
+
1 and 2 above on a medium customarily used for software interchange; or,
|
141 |
+
|
142 |
+
b) Accompany it with a written offer, valid for at least three
|
143 |
+
years, to give any third party, for a charge no more than your
|
144 |
+
cost of physically performing source distribution, a complete
|
145 |
+
machine-readable copy of the corresponding source code, to be
|
146 |
+
distributed under the terms of Sections 1 and 2 above on a medium
|
147 |
+
customarily used for software interchange; or,
|
148 |
+
|
149 |
+
c) Accompany it with the information you received as to the offer
|
150 |
+
to distribute corresponding source code. (This alternative is
|
151 |
+
allowed only for noncommercial distribution and only if you
|
152 |
+
received the program in object code or executable form with such
|
153 |
+
an offer, in accord with Subsection b above.)
|
154 |
+
|
155 |
+
The source code for a work means the preferred form of the work for
|
156 |
+
making modifications to it. For an executable work, complete source
|
157 |
+
code means all the source code for all modules it contains, plus any
|
158 |
+
associated interface definition files, plus the scripts used to
|
159 |
+
control compilation and installation of the executable. However, as a
|
160 |
+
special exception, the source code distributed need not include
|
161 |
+
anything that is normally distributed (in either source or binary
|
162 |
+
form) with the major components (compiler, kernel, and so on) of the
|
163 |
+
operating system on which the executable runs, unless that component
|
164 |
+
itself accompanies the executable.
|
165 |
+
|
166 |
+
If distribution of executable or object code is made by offering
|
167 |
+
access to copy from a designated place, then offering equivalent
|
168 |
+
access to copy the source code from the same place counts as
|
169 |
+
distribution of the source code, even though third parties are not
|
170 |
+
compelled to copy the source along with the object code.
|
171 |
+
|
172 |
+
4. You may not copy, modify, sublicense, or distribute the Program
|
173 |
+
except as expressly provided under this License. Any attempt
|
174 |
+
otherwise to copy, modify, sublicense or distribute the Program is
|
175 |
+
void, and will automatically terminate your rights under this License.
|
176 |
+
However, parties who have received copies, or rights, from you under
|
177 |
+
this License will not have their licenses terminated so long as such
|
178 |
+
parties remain in full compliance.
|
179 |
+
|
180 |
+
5. You are not required to accept this License, since you have not
|
181 |
+
signed it. However, nothing else grants you permission to modify or
|
182 |
+
distribute the Program or its derivative works. These actions are
|
183 |
+
prohibited by law if you do not accept this License. Therefore, by
|
184 |
+
modifying or distributing the Program (or any work based on the
|
185 |
+
Program), you indicate your acceptance of this License to do so, and
|
186 |
+
all its terms and conditions for copying, distributing or modifying
|
187 |
+
the Program or works based on it.
|
188 |
+
|
189 |
+
6. Each time you redistribute the Program (or any work based on the
|
190 |
+
Program), the recipient automatically receives a license from the
|
191 |
+
original licensor to copy, distribute or modify the Program subject to
|
192 |
+
these terms and conditions. You may not impose any further
|
193 |
+
restrictions on the recipients' exercise of the rights granted herein.
|
194 |
+
You are not responsible for enforcing compliance by third parties to
|
195 |
+
this License.
|
196 |
+
|
197 |
+
7. If, as a consequence of a court judgment or allegation of patent
|
198 |
+
infringement or for any other reason (not limited to patent issues),
|
199 |
+
conditions are imposed on you (whether by court order, agreement or
|
200 |
+
otherwise) that contradict the conditions of this License, they do not
|
201 |
+
excuse you from the conditions of this License. If you cannot
|
202 |
+
distribute so as to satisfy simultaneously your obligations under this
|
203 |
+
License and any other pertinent obligations, then as a consequence you
|
204 |
+
may not distribute the Program at all. For example, if a patent
|
205 |
+
license would not permit royalty-free redistribution of the Program by
|
206 |
+
all those who receive copies directly or indirectly through you, then
|
207 |
+
the only way you could satisfy both it and this License would be to
|
208 |
+
refrain entirely from distribution of the Program.
|
209 |
+
|
210 |
+
If any portion of this section is held invalid or unenforceable under
|
211 |
+
any particular circumstance, the balance of the section is intended to
|
212 |
+
apply and the section as a whole is intended to apply in other
|
213 |
+
circumstances.
|
214 |
+
|
215 |
+
It is not the purpose of this section to induce you to infringe any
|
216 |
+
patents or other property right claims or to contest validity of any
|
217 |
+
such claims; this section has the sole purpose of protecting the
|
218 |
+
integrity of the free software distribution system, which is
|
219 |
+
implemented by public license practices. Many people have made
|
220 |
+
generous contributions to the wide range of software distributed
|
221 |
+
through that system in reliance on consistent application of that
|
222 |
+
system; it is up to the author/donor to decide if he or she is willing
|
223 |
+
to distribute software through any other system and a licensee cannot
|
224 |
+
impose that choice.
|
225 |
+
|
226 |
+
This section is intended to make thoroughly clear what is believed to
|
227 |
+
be a consequence of the rest of this License.
|
228 |
+
|
229 |
+
8. If the distribution and/or use of the Program is restricted in
|
230 |
+
certain countries either by patents or by copyrighted interfaces, the
|
231 |
+
original copyright holder who places the Program under this License
|
232 |
+
may add an explicit geographical distribution limitation excluding
|
233 |
+
those countries, so that distribution is permitted only in or among
|
234 |
+
countries not thus excluded. In such case, this License incorporates
|
235 |
+
the limitation as if written in the body of this License.
|
236 |
+
|
237 |
+
9. The Free Software Foundation may publish revised and/or new versions
|
238 |
+
of the General Public License from time to time. Such new versions will
|
239 |
+
be similar in spirit to the present version, but may differ in detail to
|
240 |
+
address new problems or concerns.
|
241 |
+
|
242 |
+
Each version is given a distinguishing version number. If the Program
|
243 |
+
specifies a version number of this License which applies to it and "any
|
244 |
+
later version", you have the option of following the terms and conditions
|
245 |
+
either of that version or of any later version published by the Free
|
246 |
+
Software Foundation. If the Program does not specify a version number of
|
247 |
+
this License, you may choose any version ever published by the Free Software
|
248 |
+
Foundation.
|
249 |
+
|
250 |
+
10. If you wish to incorporate parts of the Program into other free
|
251 |
+
programs whose distribution conditions are different, write to the author
|
252 |
+
to ask for permission. For software which is copyrighted by the Free
|
253 |
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
254 |
+
make exceptions for this. Our decision will be guided by the two goals
|
255 |
+
of preserving the free status of all derivatives of our free software and
|
256 |
+
of promoting the sharing and reuse of software generally.
|
257 |
+
|
258 |
+
NO WARRANTY
|
259 |
+
|
260 |
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
261 |
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
262 |
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
263 |
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
264 |
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
265 |
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
266 |
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
267 |
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
268 |
+
REPAIR OR CORRECTION.
|
269 |
+
|
270 |
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
271 |
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
272 |
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
273 |
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
274 |
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
275 |
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
276 |
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
277 |
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
278 |
+
POSSIBILITY OF SUCH DAMAGES.
|
279 |
+
|
280 |
+
END OF TERMS AND CONDITIONS
|
281 |
+
|
282 |
+
How to Apply These Terms to Your New Programs
|
283 |
+
|
284 |
+
If you develop a new program, and you want it to be of the greatest
|
285 |
+
possible use to the public, the best way to achieve this is to make it
|
286 |
+
free software which everyone can redistribute and change under these terms.
|
287 |
+
|
288 |
+
To do so, attach the following notices to the program. It is safest
|
289 |
+
to attach them to the start of each source file to most effectively
|
290 |
+
convey the exclusion of warranty; and each file should have at least
|
291 |
+
the "copyright" line and a pointer to where the full notice is found.
|
292 |
+
|
293 |
+
<one line to give the program's name and a brief idea of what it does.>
|
294 |
+
Copyright (C) <year> <name of author>
|
295 |
+
|
296 |
+
This program is free software; you can redistribute it and/or modify
|
297 |
+
it under the terms of the GNU General Public License as published by
|
298 |
+
the Free Software Foundation; either version 2 of the License, or
|
299 |
+
(at your option) any later version.
|
300 |
+
|
301 |
+
This program is distributed in the hope that it will be useful,
|
302 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
303 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
304 |
+
GNU General Public License for more details.
|
305 |
+
|
306 |
+
You should have received a copy of the GNU General Public License along
|
307 |
+
with this program; if not, write to the Free Software Foundation, Inc.,
|
308 |
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
309 |
+
|
310 |
+
Also add information on how to contact you by electronic and paper mail.
|
311 |
+
|
312 |
+
If the program is interactive, make it output a short notice like this
|
313 |
+
when it starts in an interactive mode:
|
314 |
+
|
315 |
+
Gnomovision version 69, Copyright (C) year name of author
|
316 |
+
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
317 |
+
This is free software, and you are welcome to redistribute it
|
318 |
+
under certain conditions; type `show c' for details.
|
319 |
+
|
320 |
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
321 |
+
parts of the General Public License. Of course, the commands you use may
|
322 |
+
be called something other than `show w' and `show c'; they could even be
|
323 |
+
mouse-clicks or menu items--whatever suits your program.
|
324 |
+
|
325 |
+
You should also get your employer (if you work as a programmer) or your
|
326 |
+
school, if any, to sign a "copyright disclaimer" for the program, if
|
327 |
+
necessary. Here is a sample; alter the names:
|
328 |
+
|
329 |
+
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
330 |
+
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
331 |
+
|
332 |
+
<signature of Ty Coon>, 1 April 1989
|
333 |
+
Ty Coon, President of Vice
|
334 |
+
|
335 |
+
This General Public License does not permit incorporating your program into
|
336 |
+
proprietary programs. If your program is a subroutine library, you may
|
337 |
+
consider it more useful to permit linking proprietary applications with the
|
338 |
+
library. If this is what you want to do, use the GNU Lesser General
|
339 |
+
Public License instead of this License.
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== GoDaddy Email Marketing ===
|
2 |
-
Contributors: godaddy,
|
3 |
Tags: email, forms, godaddy, mailing list, marketing, newsletter, opt-in, signup, subscribe, widget, contacts
|
4 |
Requires at least: 3.8
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.
|
7 |
License: GPL-2.0
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -113,6 +113,13 @@ You can find your **Secret API Key** in the [Settings section](https://gem.godad
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
= 1.1.3 =
|
117 |
* Fixed: CSRF - thanks to pluginvulnerabilities.com for reporting it
|
118 |
|
1 |
=== GoDaddy Email Marketing ===
|
2 |
+
Contributors: godaddy, fjarrett, jonathanbardo, eherman24, susanygodaddy, madmimi
|
3 |
Tags: email, forms, godaddy, mailing list, marketing, newsletter, opt-in, signup, subscribe, widget, contacts
|
4 |
Requires at least: 3.8
|
5 |
+
Tested up to: 4.9
|
6 |
+
Stable tag: 1.2.0
|
7 |
License: GPL-2.0
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= 1.2.0 =
|
117 |
+
* New: Help tab on the Settings screen
|
118 |
+
* New: Dismissable admin notice after on-boarding
|
119 |
+
|
120 |
+
= 1.1.4 =
|
121 |
+
* Tweak: Indicate support for WordPress 4.7
|
122 |
+
|
123 |
= 1.1.3 =
|
124 |
* Fixed: CSRF - thanks to pluginvulnerabilities.com for reporting it
|
125 |
|