Version Description
- November 2, 2015 =
Fixes
- Incorrect number of parameters for
error_log
statement in integrations class.
Improvements
- Usage tracking is now scheduled once a week (instead of daily).
- Preparations for the upcoming MailChimp for WordPress version 3.0 release.
- Tested compatibility with WordPress 4.4
Download this release
Release Info
Developer | DvanKooten |
Plugin | MailChimp for WordPress |
Version | 2.3.18 |
Comparing to | |
See all releases |
Code changes from version 2.3.17 to 2.3.18
- includes/admin/class-admin.php +14 -40
- includes/admin/class-db-upgrader.php +22 -1
- includes/admin/class-update-control.php +240 -0
- includes/admin/class-usage-tracking.php +17 -9
- includes/integrations/class-integration.php +2 -2
- languages/mailchimp-for-wp-it_IT.mo +0 -0
- languages/mailchimp-for-wp-it_IT.po +32 -31
- languages/mailchimp-for-wp-nl_NL.mo +0 -0
- languages/mailchimp-for-wp-nl_NL.po +58 -57
- languages/mailchimp-for-wp-pt_PT.mo +0 -0
- languages/mailchimp-for-wp-pt_PT.po +6 -5
- mailchimp-for-wp.php +4 -3
- readme.txt +14 -2
- vendor/autoload_52.php +1 -1
- vendor/composer/autoload_classmap.php +4 -1
- vendor/composer/autoload_real_52.php +3 -3
includes/admin/class-admin.php
CHANGED
@@ -25,37 +25,15 @@ class MC4WP_Lite_Admin
|
|
25 |
|
26 |
$this->plugin_file = plugin_basename( MC4WP_LITE_PLUGIN_FILE );
|
27 |
$this->mailchimp = new MC4WP_MailChimp();
|
28 |
-
$this->
|
29 |
-
$this->setup_hooks();
|
30 |
-
$this->listen();
|
31 |
-
|
32 |
-
// Instantiate Usage Tracking nag
|
33 |
-
$options = mc4wp_get_options( 'general' );
|
34 |
-
if( ! $options['allow_usage_tracking'] ) {
|
35 |
-
$usage_tracking_nag = new MC4WP_Usage_Tracking_Nag( $this->get_required_capability() );
|
36 |
-
$usage_tracking_nag->add_hooks();
|
37 |
-
}
|
38 |
-
}
|
39 |
-
|
40 |
-
/**
|
41 |
-
* Upgrade routine
|
42 |
-
*/
|
43 |
-
private function load_upgrader() {
|
44 |
-
|
45 |
-
// Only run if db option is at older version than code constant
|
46 |
-
$db_version = get_option( 'mc4wp_lite_version', 0 );
|
47 |
-
if( version_compare( MC4WP_LITE_VERSION, $db_version, '<=' ) ) {
|
48 |
-
return false;
|
49 |
-
}
|
50 |
|
51 |
-
$
|
52 |
-
$upgrader->run();
|
53 |
}
|
54 |
|
55 |
/**
|
56 |
* Registers all hooks
|
57 |
*/
|
58 |
-
|
59 |
|
60 |
global $pagenow;
|
61 |
$current_page = isset( $pagenow ) ? $pagenow : '';
|
@@ -68,8 +46,6 @@ class MC4WP_Lite_Admin
|
|
68 |
|
69 |
// Hooks for Plugins overview page
|
70 |
if( $current_page === 'plugins.php' ) {
|
71 |
-
$this->plugin_file = plugin_basename( MC4WP_LITE_PLUGIN_FILE );
|
72 |
-
|
73 |
add_filter( 'plugin_action_links_' . $this->plugin_file, array( $this, 'add_plugin_settings_link' ), 10, 2 );
|
74 |
add_filter( 'plugin_row_meta', array( $this, 'add_plugin_meta_links'), 10, 2 );
|
75 |
}
|
@@ -79,28 +55,25 @@ class MC4WP_Lite_Admin
|
|
79 |
add_filter( 'quicktags_settings', array( $this, 'set_quicktags_buttons' ), 10, 2 );
|
80 |
}
|
81 |
|
82 |
-
|
83 |
-
add_filter( 'site_transient_update_plugins', array( $this, 'hide_major_plugin_updates' ) );
|
84 |
}
|
85 |
|
86 |
/**
|
87 |
-
*
|
88 |
*/
|
89 |
-
|
90 |
-
|
91 |
-
// do we have an update for this plugin?
|
92 |
-
if( isset( $data->response[ $this->plugin_file ]->new_version ) ) {
|
93 |
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
}
|
99 |
|
100 |
-
|
101 |
-
|
102 |
}
|
103 |
|
|
|
104 |
/**
|
105 |
* Load the plugin translations
|
106 |
*/
|
@@ -127,6 +100,7 @@ class MC4WP_Lite_Admin
|
|
127 |
$this->has_captcha_plugin = function_exists( 'cptch_display_captcha_custom' );
|
128 |
|
129 |
$this->load_upgrader();
|
|
|
130 |
}
|
131 |
|
132 |
/**
|
25 |
|
26 |
$this->plugin_file = plugin_basename( MC4WP_LITE_PLUGIN_FILE );
|
27 |
$this->mailchimp = new MC4WP_MailChimp();
|
28 |
+
$this->update_control = new MC4WP_Update_Control( $this->plugin_file );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
+
$this->load_translations();
|
|
|
31 |
}
|
32 |
|
33 |
/**
|
34 |
* Registers all hooks
|
35 |
*/
|
36 |
+
public function add_hooks() {
|
37 |
|
38 |
global $pagenow;
|
39 |
$current_page = isset( $pagenow ) ? $pagenow : '';
|
46 |
|
47 |
// Hooks for Plugins overview page
|
48 |
if( $current_page === 'plugins.php' ) {
|
|
|
|
|
49 |
add_filter( 'plugin_action_links_' . $this->plugin_file, array( $this, 'add_plugin_settings_link' ), 10, 2 );
|
50 |
add_filter( 'plugin_row_meta', array( $this, 'add_plugin_meta_links'), 10, 2 );
|
51 |
}
|
55 |
add_filter( 'quicktags_settings', array( $this, 'set_quicktags_buttons' ), 10, 2 );
|
56 |
}
|
57 |
|
58 |
+
$this->update_control->add_hooks();
|
|
|
59 |
}
|
60 |
|
61 |
/**
|
62 |
+
* Upgrade routine
|
63 |
*/
|
64 |
+
private function load_upgrader() {
|
|
|
|
|
|
|
65 |
|
66 |
+
// Only run if db option is at older version than code constant
|
67 |
+
$db_version = get_option( 'mc4wp_lite_version', 0 );
|
68 |
+
if( version_compare( MC4WP_LITE_VERSION, $db_version, '<=' ) ) {
|
69 |
+
return false;
|
70 |
}
|
71 |
|
72 |
+
$upgrader = new MC4WP_DB_Upgrader( MC4WP_LITE_VERSION, $db_version );
|
73 |
+
$upgrader->run();
|
74 |
}
|
75 |
|
76 |
+
|
77 |
/**
|
78 |
* Load the plugin translations
|
79 |
*/
|
100 |
$this->has_captcha_plugin = function_exists( 'cptch_display_captcha_custom' );
|
101 |
|
102 |
$this->load_upgrader();
|
103 |
+
$this->listen();
|
104 |
}
|
105 |
|
106 |
/**
|
includes/admin/class-db-upgrader.php
CHANGED
@@ -33,12 +33,33 @@ class MC4WP_DB_Upgrader {
|
|
33 |
$this->change_success_message_key();
|
34 |
}
|
35 |
|
|
|
|
|
|
|
|
|
|
|
36 |
// update code version
|
37 |
update_option( 'mc4wp_lite_version', MC4WP_LITE_VERSION );
|
38 |
}
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
protected function change_success_message_key() {
|
41 |
-
$options = get_option( 'mc4wp_lite_form' );
|
42 |
if( isset( $options['text_success'] ) ) {
|
43 |
$options['text_subscribed'] = $options['text_success'];
|
44 |
unset( $options['text_success'] );
|
33 |
$this->change_success_message_key();
|
34 |
}
|
35 |
|
36 |
+
// upgrade to 2.3.18
|
37 |
+
if( ! $this->installing && version_compare( $this->database_version, '2.3.18', '<' ) ) {
|
38 |
+
$this->reschedule_usage_tracking();
|
39 |
+
}
|
40 |
+
|
41 |
// update code version
|
42 |
update_option( 'mc4wp_lite_version', MC4WP_LITE_VERSION );
|
43 |
}
|
44 |
|
45 |
+
/**
|
46 |
+
* Reschedule usage tracking (using the new interval)
|
47 |
+
*/
|
48 |
+
protected function reschedule_usage_tracking() {
|
49 |
+
|
50 |
+
$options = get_option( 'mc4wp_lite', array() );
|
51 |
+
if( isset( $options['allow_usage_tracking'] ) && $options['allow_usage_tracking'] ) {
|
52 |
+
$usage_tracking = MC4WP_Usage_Tracking::instance();
|
53 |
+
$usage_tracking->disable();
|
54 |
+
$usage_tracking->enable();
|
55 |
+
}
|
56 |
+
}
|
57 |
+
|
58 |
+
/**
|
59 |
+
* Update the "key" of the success message for forms
|
60 |
+
*/
|
61 |
protected function change_success_message_key() {
|
62 |
+
$options = get_option( 'mc4wp_lite_form', array() );
|
63 |
if( isset( $options['text_success'] ) ) {
|
64 |
$options['text_subscribed'] = $options['text_success'];
|
65 |
unset( $options['text_success'] );
|
includes/admin/class-update-control.php
ADDED
@@ -0,0 +1,240 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class MC4WP_Update_Control {
|
4 |
+
|
5 |
+
/**
|
6 |
+
* @const string
|
7 |
+
*/
|
8 |
+
const CAPABILITY = 'install_plugins';
|
9 |
+
|
10 |
+
/**
|
11 |
+
* @const string
|
12 |
+
*/
|
13 |
+
const OPTION_SHOW_NOTICE = 'mc4wp_show_major_updates_notice';
|
14 |
+
|
15 |
+
/**
|
16 |
+
* @const string
|
17 |
+
*/
|
18 |
+
const OPTION_DISMISS_NOTICE = 'mc4wp_dismiss_major_updates_notice';
|
19 |
+
|
20 |
+
/**
|
21 |
+
* @const string
|
22 |
+
*/
|
23 |
+
const OPTION_ENABLE_MAJOR_UPDATES = 'mc4wp_enable_major_updates';
|
24 |
+
|
25 |
+
/**
|
26 |
+
* @var string
|
27 |
+
*/
|
28 |
+
protected $plugin_file = '';
|
29 |
+
|
30 |
+
/**
|
31 |
+
* @param string $plugin_file
|
32 |
+
*/
|
33 |
+
public function __construct( $plugin_file ) {
|
34 |
+
$this->plugin_file = $plugin_file;
|
35 |
+
}
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Add hooks
|
39 |
+
*/
|
40 |
+
public function add_hooks() {
|
41 |
+
// hide major plugin updates for everyone
|
42 |
+
global $pagenow;
|
43 |
+
|
44 |
+
add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'hide_major_plugin_updates' ) );
|
45 |
+
add_action( 'init', array( $this, 'listen' ) );
|
46 |
+
|
47 |
+
if( ( $pagenow === 'plugins.php' || $pagenow === 'update-core.php' )
|
48 |
+
|| ( ! empty( $_GET['page'] ) && stripos( $_GET['page'], 'mailchimp-for-wp' ) !== false ) ) {
|
49 |
+
add_action( 'admin_notices', array( $this, 'show_update_optin' ) );
|
50 |
+
}
|
51 |
+
}
|
52 |
+
|
53 |
+
/**
|
54 |
+
* Listen for actions
|
55 |
+
*/
|
56 |
+
public function listen() {
|
57 |
+
|
58 |
+
// only show to users with required capability
|
59 |
+
if( ! current_user_can( self::CAPABILITY ) ) {
|
60 |
+
return;
|
61 |
+
}
|
62 |
+
|
63 |
+
if( isset( $_GET[ self::OPTION_DISMISS_NOTICE ] ) ) {
|
64 |
+
$this->dismiss_notice();
|
65 |
+
}
|
66 |
+
|
67 |
+
|
68 |
+
if( isset( $_GET[ self::OPTION_ENABLE_MAJOR_UPDATES ] ) ) {
|
69 |
+
$this->enable_major_updates();
|
70 |
+
}
|
71 |
+
|
72 |
+
}
|
73 |
+
|
74 |
+
/**
|
75 |
+
* Prevents v3.x updates from showing
|
76 |
+
*
|
77 |
+
*/
|
78 |
+
public function hide_major_plugin_updates( $data ) {
|
79 |
+
|
80 |
+
// do nothing if there's no update to act upon
|
81 |
+
if( empty( $data->response[ $this->plugin_file ]->new_version ) ) {
|
82 |
+
return $data;
|
83 |
+
}
|
84 |
+
|
85 |
+
$wordpress_org_data = $data->response[ $this->plugin_file ];
|
86 |
+
|
87 |
+
// is there a major update for this plugin?
|
88 |
+
if( ! version_compare( $wordpress_org_data->new_version, '3.0.0', '>=' ) ) {
|
89 |
+
|
90 |
+
// reset 3.0 notice flag here in case we revert the update
|
91 |
+
update_option( self::OPTION_SHOW_NOTICE, 0 );
|
92 |
+
return $data;
|
93 |
+
}
|
94 |
+
|
95 |
+
// did user opt-in to 3.0? if so, show the update.
|
96 |
+
$opted_in = get_option( self::OPTION_ENABLE_MAJOR_UPDATES, false );
|
97 |
+
if( $opted_in ) {
|
98 |
+
return $data;
|
99 |
+
}
|
100 |
+
|
101 |
+
// user did not opt-in
|
102 |
+
|
103 |
+
// set a flag to start showing "update to 3.x" notice
|
104 |
+
update_option( self::OPTION_SHOW_NOTICE, 1 );
|
105 |
+
|
106 |
+
// get latest minor version and download link (from aws bucket)
|
107 |
+
$minor_update_data = $this->get_latest_minor_update();
|
108 |
+
|
109 |
+
// if something in the custom update check failed, just unset the data.
|
110 |
+
if ( ! is_object( $minor_update_data ) || empty( $minor_update_data->new_version ) ) {
|
111 |
+
unset( $data->response[ $this->plugin_file ] );
|
112 |
+
return $data;
|
113 |
+
}
|
114 |
+
|
115 |
+
// unset update data if plugin already at latest minor version
|
116 |
+
$new_minor_version = $minor_update_data->new_version;
|
117 |
+
if( version_compare( MC4WP_LITE_VERSION, $new_minor_version, '>=' ) ) {
|
118 |
+
unset( $data->response[ $this->plugin_file ] );
|
119 |
+
return $data;
|
120 |
+
}
|
121 |
+
|
122 |
+
// return modified updates data (with new version & download link)
|
123 |
+
$data->response[ $this->plugin_file ] = $this->merge_update_data( $wordpress_org_data, $minor_update_data );
|
124 |
+
|
125 |
+
return $data;
|
126 |
+
}
|
127 |
+
|
128 |
+
/**
|
129 |
+
* Get update info for the 2.x branch
|
130 |
+
*
|
131 |
+
* @return object|boolean
|
132 |
+
*/
|
133 |
+
protected function get_latest_minor_update() {
|
134 |
+
|
135 |
+
$transient_name = 'mc4wp_minor_update_info';
|
136 |
+
|
137 |
+
// try to get from transient first
|
138 |
+
$cached = get_transient( $transient_name );
|
139 |
+
if( is_object( $cached ) ) {
|
140 |
+
return $cached;
|
141 |
+
}
|
142 |
+
|
143 |
+
// no? query it then.
|
144 |
+
$response = wp_remote_get( 'https://s3.amazonaws.com/ibericode/mailchimp-for-wp-update-info-2.x.json' );
|
145 |
+
$body = wp_remote_retrieve_body( $response );
|
146 |
+
|
147 |
+
if( empty( $body ) ) {
|
148 |
+
return false;
|
149 |
+
}
|
150 |
+
|
151 |
+
$data = json_decode( $body );
|
152 |
+
set_transient( $transient_name, $data, 21600 ); // cache for 6 hours
|
153 |
+
|
154 |
+
return $data;
|
155 |
+
}
|
156 |
+
|
157 |
+
/**
|
158 |
+
* @param object $wordpress_org_data
|
159 |
+
* @param object $custom_data
|
160 |
+
*
|
161 |
+
* @return object
|
162 |
+
*/
|
163 |
+
protected function merge_update_data( $wordpress_org_data, $custom_data ) {
|
164 |
+
return (object) array_merge(
|
165 |
+
(array) $wordpress_org_data,
|
166 |
+
(array) $custom_data
|
167 |
+
);
|
168 |
+
}
|
169 |
+
|
170 |
+
/**
|
171 |
+
* Dismiss notice for a week
|
172 |
+
*/
|
173 |
+
public function dismiss_notice() {
|
174 |
+
set_transient( self::OPTION_DISMISS_NOTICE, 1, WEEK_IN_SECONDS );
|
175 |
+
}
|
176 |
+
|
177 |
+
|
178 |
+
/**
|
179 |
+
* Enables major updates (opts-in to 3.x update)
|
180 |
+
*/
|
181 |
+
public function enable_major_updates() {
|
182 |
+
|
183 |
+
// update option
|
184 |
+
update_option( self::OPTION_ENABLE_MAJOR_UPDATES, 1 );
|
185 |
+
|
186 |
+
// delete site transient so wp core will fetch latest version
|
187 |
+
delete_site_transient( 'update_plugins' );
|
188 |
+
|
189 |
+
// redirect to updates page
|
190 |
+
wp_safe_redirect( admin_url( 'update-core.php' ) );
|
191 |
+
exit;
|
192 |
+
}
|
193 |
+
|
194 |
+
/**
|
195 |
+
* Show update opt-in
|
196 |
+
*/
|
197 |
+
public function show_update_optin() {
|
198 |
+
|
199 |
+
global $pagenow;
|
200 |
+
|
201 |
+
// don't show if flag is not set
|
202 |
+
if( ! get_option( self::OPTION_SHOW_NOTICE, false ) ) {
|
203 |
+
return;
|
204 |
+
}
|
205 |
+
|
206 |
+
// stop showing if opted-in already
|
207 |
+
if( get_option( self::OPTION_ENABLE_MAJOR_UPDATES, false ) ) {
|
208 |
+
return;
|
209 |
+
}
|
210 |
+
|
211 |
+
// only show to users with required capability
|
212 |
+
if( ! current_user_can( self::CAPABILITY ) ) {
|
213 |
+
return;
|
214 |
+
}
|
215 |
+
|
216 |
+
// if on plugins page and dismissed, do not show
|
217 |
+
if( ( $pagenow === 'plugins.php' || $pagenow === 'update-core.php' ) && get_transient( self::OPTION_DISMISS_NOTICE ) ) {
|
218 |
+
return;
|
219 |
+
}
|
220 |
+
|
221 |
+
// show!
|
222 |
+
echo '<div class="notice is-dismissible updated">';
|
223 |
+
|
224 |
+
echo '<h4>' . __( 'MailChimp for WordPress 3.0 is available for you', 'mailchimp-for-wp' ) . '</h4>';
|
225 |
+
echo '<p>' . __( 'Version 3.0 is here, containing so many improvements it would not fit in this notice even if we tried.', 'mailchimp-for-wp' ) . '</p>';
|
226 |
+
echo '<p>';
|
227 |
+
echo __( 'However, we changed a few minor things and want to make sure you are aware of the changes before proceeding with the update.', 'mailchimp-for-wp' );
|
228 |
+
echo ' ' . sprintf( __( 'Please <a href="%s">read through our upgrade guide</a> to make sure you can safely update.', 'mailchimp-for-wp' ), 'https://mc4wp.com/kb/upgrading-to-3-0/' );
|
229 |
+
echo '<br /><br />';
|
230 |
+
echo sprintf( '<a class="button button-primary" href="%s">' . __( 'Update the plugin', 'mailchimp-for-wp' ) . '</a>', add_query_arg( array( self::OPTION_ENABLE_MAJOR_UPDATES => 1 ) ) );
|
231 |
+
|
232 |
+
// show a dismiss button if on plugins page
|
233 |
+
if( $pagenow === 'plugins.php' || $pagenow === 'update-core.php' ) {
|
234 |
+
echo ' <a href="'. add_query_arg( array( self::OPTION_DISMISS_NOTICE => 1 ) ) .'" class="button">Remind me next week</a>';
|
235 |
+
}
|
236 |
+
|
237 |
+
echo '</p>';
|
238 |
+
echo '</div>';
|
239 |
+
}
|
240 |
+
}
|
includes/admin/class-usage-tracking.php
CHANGED
@@ -53,18 +53,26 @@ class MC4WP_Usage_Tracking {
|
|
53 |
}
|
54 |
|
55 |
/**
|
56 |
-
*
|
57 |
-
*
|
58 |
-
* @param bool $enabled
|
59 |
*/
|
60 |
-
public function
|
|
|
|
|
61 |
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
|
|
|
|
66 |
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
}
|
69 |
|
70 |
/**
|
53 |
}
|
54 |
|
55 |
/**
|
56 |
+
* Enable usage tracking
|
|
|
|
|
57 |
*/
|
58 |
+
public function enable() {
|
59 |
+
return wp_schedule_event( time(), 'weekly', 'mc4wp_usage_tracking' );
|
60 |
+
}
|
61 |
|
62 |
+
/**
|
63 |
+
* Disable usage tracking
|
64 |
+
*/
|
65 |
+
public function disable() {
|
66 |
+
wp_clear_scheduled_hook( 'mc4wp_usage_tracking' );
|
67 |
+
}
|
68 |
|
69 |
+
/**
|
70 |
+
* Toggle tracking (clears & sets the scheduled tracking event)
|
71 |
+
*
|
72 |
+
* @param bool $enable
|
73 |
+
*/
|
74 |
+
public function toggle( $enable ) {
|
75 |
+
$enable ? $this->enable() : $this->disable();
|
76 |
}
|
77 |
|
78 |
/**
|
includes/integrations/class-integration.php
CHANGED
@@ -293,7 +293,7 @@ abstract class MC4WP_Integration {
|
|
293 |
if ( $result !== true && $api->has_error() ) {
|
294 |
|
295 |
// log error
|
296 |
-
error_log( sprintf( 'MailChimp for
|
297 |
|
298 |
if( $this->show_error_messages() ) {
|
299 |
wp_die( '<h3>' . __( 'MailChimp for WordPress - Error', 'mailchimp-for-wp' ) . '</h3>' .
|
@@ -325,4 +325,4 @@ abstract class MC4WP_Integration {
|
|
325 |
&& ( ! isset( $_POST['_wpcf7_is_ajax_call'] ) || $_POST['_wpcf7_is_ajax_call'] != 1 )
|
326 |
&& current_user_can( 'manage_options' );
|
327 |
}
|
328 |
-
}
|
293 |
if ( $result !== true && $api->has_error() ) {
|
294 |
|
295 |
// log error
|
296 |
+
error_log( sprintf( 'MailChimp for WordPress (%s): %s', $this->type, $api->get_error_message() ) );
|
297 |
|
298 |
if( $this->show_error_messages() ) {
|
299 |
wp_die( '<h3>' . __( 'MailChimp for WordPress - Error', 'mailchimp-for-wp' ) . '</h3>' .
|
325 |
&& ( ! isset( $_POST['_wpcf7_is_ajax_call'] ) || $_POST['_wpcf7_is_ajax_call'] != 1 )
|
326 |
&& current_user_can( 'manage_options' );
|
327 |
}
|
328 |
+
}
|
languages/mailchimp-for-wp-it_IT.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-it_IT.po
CHANGED
@@ -5,13 +5,14 @@
|
|
5 |
# Adriano Genovese <adrygese@gmail.com>, 2015
|
6 |
# andrea.gatopoulos <andrea.gatopoulos@gmail.com>, 2015
|
7 |
# Dan <d.murtas@gmail.com>, 2014
|
|
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: MailChimp for WordPress\n"
|
11 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
12 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
13 |
-
"PO-Revision-Date: 2015-
|
14 |
-
"Last-Translator:
|
15 |
"Language-Team: Italian (Italy) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/it_IT/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -129,7 +130,7 @@ msgstr "Iscriviti"
|
|
129 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:292
|
130 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
|
131 |
msgid "Unsubscribe"
|
132 |
-
msgstr ""
|
133 |
|
134 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
135 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
@@ -766,7 +767,7 @@ msgstr "Indirizzo email non valido"
|
|
766 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:163
|
767 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:150
|
768 |
msgid "The text that shows when an invalid email address is given."
|
769 |
-
msgstr ""
|
770 |
|
771 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:209
|
772 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:167
|
@@ -889,7 +890,7 @@ msgstr ""
|
|
889 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
890 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
891 |
msgid "This allows you to personalise your form or response messages."
|
892 |
-
msgstr ""
|
893 |
|
894 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:282
|
895 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:16
|
@@ -1056,7 +1057,7 @@ msgstr "Questo plugin non è sviluppato da o affiliato con MailChimp in alcun mo
|
|
1056 |
|
1057 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
1058 |
msgid "Looking for help?"
|
1059 |
-
msgstr ""
|
1060 |
|
1061 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
1062 |
msgid ""
|
@@ -1067,7 +1068,7 @@ msgstr ""
|
|
1067 |
|
1068 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
|
1069 |
msgid "Do you enjoy this plugin?"
|
1070 |
-
msgstr ""
|
1071 |
|
1072 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
1073 |
msgid "Leave a %s plugin review on WordPress.org"
|
@@ -1098,11 +1099,11 @@ msgstr "Vota \"works\" nella pagina del plugin WordPress.org"
|
|
1098 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:10
|
1099 |
msgid ""
|
1100 |
"This plugin has an even better premium version, you will absolutely love it."
|
1101 |
-
msgstr ""
|
1102 |
|
1103 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
1104 |
msgid "Some differences with this free version of the plugin:"
|
1105 |
-
msgstr ""
|
1106 |
|
1107 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
|
1108 |
msgid "Multiple forms"
|
@@ -1114,11 +1115,11 @@ msgstr ""
|
|
1114 |
|
1115 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
|
1116 |
msgid "AJAX forms"
|
1117 |
-
msgstr ""
|
1118 |
|
1119 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
|
1120 |
msgid "Forms do not require a full page reload."
|
1121 |
-
msgstr ""
|
1122 |
|
1123 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:22
|
1124 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
|
@@ -1135,7 +1136,7 @@ msgstr ""
|
|
1135 |
|
1136 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
|
1137 |
msgid "Create beautiful form themes with ease."
|
1138 |
-
msgstr ""
|
1139 |
|
1140 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:31
|
1141 |
msgid "Upgrade Now"
|
@@ -1694,7 +1695,7 @@ msgid ""
|
|
1694 |
"Tip: have a look at our <a href=\"%s\">knowledge base</a> articles on <a "
|
1695 |
"href=\"%s\">creating an inline form</a> or <a href=\"%s\">styling your "
|
1696 |
"form</a> in general."
|
1697 |
-
msgstr ""
|
1698 |
|
1699 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:22
|
1700 |
msgid ""
|
@@ -1722,7 +1723,7 @@ msgstr ""
|
|
1722 |
|
1723 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1724 |
msgid "Form width"
|
1725 |
-
msgstr ""
|
1726 |
|
1727 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1728 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
@@ -1733,7 +1734,7 @@ msgstr "px o %"
|
|
1733 |
|
1734 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1735 |
msgid "Text alignment"
|
1736 |
-
msgstr ""
|
1737 |
|
1738 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1739 |
msgid "Choose alignment"
|
@@ -1764,13 +1765,13 @@ msgstr "Padding"
|
|
1764 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1765 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1766 |
msgid "Border color"
|
1767 |
-
msgstr ""
|
1768 |
|
1769 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1770 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1771 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1772 |
msgid "Border width"
|
1773 |
-
msgstr ""
|
1774 |
|
1775 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1776 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
@@ -1794,15 +1795,15 @@ msgstr ""
|
|
1794 |
|
1795 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1796 |
msgid "Label width"
|
1797 |
-
msgstr ""
|
1798 |
|
1799 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1800 |
msgid "Text style"
|
1801 |
-
msgstr ""
|
1802 |
|
1803 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1804 |
msgid "Choose text style.."
|
1805 |
-
msgstr ""
|
1806 |
|
1807 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1808 |
msgid "Normal"
|
@@ -1837,20 +1838,20 @@ msgstr ""
|
|
1837 |
|
1838 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:156
|
1839 |
msgid "Field styles"
|
1840 |
-
msgstr ""
|
1841 |
|
1842 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1843 |
msgid "Field width"
|
1844 |
-
msgstr ""
|
1845 |
|
1846 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
|
1847 |
msgid "Field height"
|
1848 |
-
msgstr ""
|
1849 |
|
1850 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
|
1851 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1852 |
msgid "Border radius"
|
1853 |
-
msgstr ""
|
1854 |
|
1855 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
|
1856 |
msgid "Focus outline"
|
@@ -1878,7 +1879,7 @@ msgstr ""
|
|
1878 |
|
1879 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:244
|
1880 |
msgid "Error text color"
|
1881 |
-
msgstr ""
|
1882 |
|
1883 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
|
1884 |
msgid "Advanced"
|
@@ -1886,13 +1887,13 @@ msgstr "Avanzate"
|
|
1886 |
|
1887 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
|
1888 |
msgid "CSS Selector Prefix"
|
1889 |
-
msgstr ""
|
1890 |
|
1891 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:258
|
1892 |
msgid ""
|
1893 |
"Use this to create a more specific (and thus more \"important\") CSS "
|
1894 |
"selector."
|
1895 |
-
msgstr ""
|
1896 |
|
1897 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1898 |
msgid "Manual CSS"
|
@@ -1905,17 +1906,17 @@ msgstr "Le regole CSS inserite qui saranno aggiunte al foglio di stile personali
|
|
1905 |
|
1906 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:269
|
1907 |
msgid "Copy styles from other form"
|
1908 |
-
msgstr ""
|
1909 |
|
1910 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1911 |
msgid "Copy Styles"
|
1912 |
-
msgstr ""
|
1913 |
|
1914 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1915 |
msgid ""
|
1916 |
"Are you sure you want to copy form styles from another form? This will "
|
1917 |
"overwrite current styles for this form."
|
1918 |
-
msgstr ""
|
1919 |
|
1920 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
|
1921 |
msgid "Are you sure you want to delete all custom styles for this form?"
|
@@ -1927,7 +1928,7 @@ msgstr "Elimina gli stili del modulo"
|
|
1927 |
|
1928 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
|
1929 |
msgid "Form preview"
|
1930 |
-
msgstr ""
|
1931 |
|
1932 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1933 |
msgid "Sign-Up Forms"
|
5 |
# Adriano Genovese <adrygese@gmail.com>, 2015
|
6 |
# andrea.gatopoulos <andrea.gatopoulos@gmail.com>, 2015
|
7 |
# Dan <d.murtas@gmail.com>, 2014
|
8 |
+
# francesca mecca <meccafrancesca@gmail.com>, 2015
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: MailChimp for WordPress\n"
|
12 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
13 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
14 |
+
"PO-Revision-Date: 2015-10-29 17:07+0000\n"
|
15 |
+
"Last-Translator: francesca mecca <meccafrancesca@gmail.com>\n"
|
16 |
"Language-Team: Italian (Italy) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/it_IT/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
130 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:292
|
131 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
|
132 |
msgid "Unsubscribe"
|
133 |
+
msgstr "Cancella l'iscrizione"
|
134 |
|
135 |
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
136 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
767 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:163
|
768 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:150
|
769 |
msgid "The text that shows when an invalid email address is given."
|
770 |
+
msgstr "il testo che viene mostrato quando si immette un indirizzo non valido"
|
771 |
|
772 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:209
|
773 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:167
|
890 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
891 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
892 |
msgid "This allows you to personalise your form or response messages."
|
893 |
+
msgstr "Questo ti consente di personalizzare il tuo modulo o i messaggi di risposta"
|
894 |
|
895 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:282
|
896 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:16
|
1057 |
|
1058 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
1059 |
msgid "Looking for help?"
|
1060 |
+
msgstr "Cerchi aiuto?"
|
1061 |
|
1062 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
1063 |
msgid ""
|
1068 |
|
1069 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
|
1070 |
msgid "Do you enjoy this plugin?"
|
1071 |
+
msgstr "Ti è piaciuto questo plugin?"
|
1072 |
|
1073 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
1074 |
msgid "Leave a %s plugin review on WordPress.org"
|
1099 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:10
|
1100 |
msgid ""
|
1101 |
"This plugin has an even better premium version, you will absolutely love it."
|
1102 |
+
msgstr "Questo plugin ha anche una versione premium piu' avanzata, ti piacera' sicuramente"
|
1103 |
|
1104 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
1105 |
msgid "Some differences with this free version of the plugin:"
|
1106 |
+
msgstr "Alcune differenze rispetto a questa versione gratuita del plugin:"
|
1107 |
|
1108 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
|
1109 |
msgid "Multiple forms"
|
1115 |
|
1116 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
|
1117 |
msgid "AJAX forms"
|
1118 |
+
msgstr "Moduli AJAX"
|
1119 |
|
1120 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
|
1121 |
msgid "Forms do not require a full page reload."
|
1122 |
+
msgstr "I moduli non richiedono l'intero ricaricamento della pagina"
|
1123 |
|
1124 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:22
|
1125 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
|
1136 |
|
1137 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
|
1138 |
msgid "Create beautiful form themes with ease."
|
1139 |
+
msgstr "Crea con facilità dei bei temi per i tuoi moduli "
|
1140 |
|
1141 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:31
|
1142 |
msgid "Upgrade Now"
|
1695 |
"Tip: have a look at our <a href=\"%s\">knowledge base</a> articles on <a "
|
1696 |
"href=\"%s\">creating an inline form</a> or <a href=\"%s\">styling your "
|
1697 |
"form</a> in general."
|
1698 |
+
msgstr "Suggerimento: dai un'occhiata ai nostri articoli di <a href=\"%s\">conoscenze di base</a> per <a href=\"%s\">creare un modulo</a> oppure per <a href=\"%s\">stilizzare l'aspetto del tuo modulo</a> in generale"
|
1699 |
|
1700 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:22
|
1701 |
msgid ""
|
1723 |
|
1724 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1725 |
msgid "Form width"
|
1726 |
+
msgstr "Larghezza del modulo"
|
1727 |
|
1728 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1729 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1734 |
|
1735 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1736 |
msgid "Text alignment"
|
1737 |
+
msgstr "Allineamento del testo"
|
1738 |
|
1739 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1740 |
msgid "Choose alignment"
|
1765 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1766 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1767 |
msgid "Border color"
|
1768 |
+
msgstr "Colore del bordo"
|
1769 |
|
1770 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1771 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1772 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1773 |
msgid "Border width"
|
1774 |
+
msgstr "larghezza del bordo"
|
1775 |
|
1776 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1777 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1795 |
|
1796 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1797 |
msgid "Label width"
|
1798 |
+
msgstr "Larghezza dell' etichetta"
|
1799 |
|
1800 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1801 |
msgid "Text style"
|
1802 |
+
msgstr "Stile del testo"
|
1803 |
|
1804 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1805 |
msgid "Choose text style.."
|
1806 |
+
msgstr "Scegli lo stile per il testo.."
|
1807 |
|
1808 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1809 |
msgid "Normal"
|
1838 |
|
1839 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:156
|
1840 |
msgid "Field styles"
|
1841 |
+
msgstr "Stili dei campi del modulo"
|
1842 |
|
1843 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1844 |
msgid "Field width"
|
1845 |
+
msgstr "Larghezza campo"
|
1846 |
|
1847 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
|
1848 |
msgid "Field height"
|
1849 |
+
msgstr "Altezza campo"
|
1850 |
|
1851 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
|
1852 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1853 |
msgid "Border radius"
|
1854 |
+
msgstr "Arrotondatura dei bordi"
|
1855 |
|
1856 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
|
1857 |
msgid "Focus outline"
|
1879 |
|
1880 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:244
|
1881 |
msgid "Error text color"
|
1882 |
+
msgstr "Colore del testo del messaggio di errore"
|
1883 |
|
1884 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
|
1885 |
msgid "Advanced"
|
1887 |
|
1888 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
|
1889 |
msgid "CSS Selector Prefix"
|
1890 |
+
msgstr "Prefisso del selettore css"
|
1891 |
|
1892 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:258
|
1893 |
msgid ""
|
1894 |
"Use this to create a more specific (and thus more \"important\") CSS "
|
1895 |
"selector."
|
1896 |
+
msgstr "Usa questo selettore css per crearne uno piu' specifico (e quindi più importante nella gerarchia degli stili css)"
|
1897 |
|
1898 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1899 |
msgid "Manual CSS"
|
1906 |
|
1907 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:269
|
1908 |
msgid "Copy styles from other form"
|
1909 |
+
msgstr "Copia gli stili da un altro modulo"
|
1910 |
|
1911 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1912 |
msgid "Copy Styles"
|
1913 |
+
msgstr "Copia gli stili"
|
1914 |
|
1915 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1916 |
msgid ""
|
1917 |
"Are you sure you want to copy form styles from another form? This will "
|
1918 |
"overwrite current styles for this form."
|
1919 |
+
msgstr "Sei sicuro di voler copiare gli stili da un modulo a un altro? Gli stili correnti per questo modulo verranno sovrascritti dalle nuove regole di stile"
|
1920 |
|
1921 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
|
1922 |
msgid "Are you sure you want to delete all custom styles for this form?"
|
1928 |
|
1929 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
|
1930 |
msgid "Form preview"
|
1931 |
+
msgstr "Anteprima del modulo"
|
1932 |
|
1933 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1934 |
msgid "Sign-Up Forms"
|
languages/mailchimp-for-wp-nl_NL.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-nl_NL.po
CHANGED
@@ -2,13 +2,14 @@
|
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
# Danny van Kooten <dannyvankooten@gmail.com>, 2014-2015
|
|
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: MailChimp for WordPress\n"
|
8 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
-
"PO-Revision-Date: 2015-
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/nl_NL/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -223,7 +224,7 @@ msgstr "Schrijf me in voor de nieuwsbrief!"
|
|
223 |
msgid ""
|
224 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
225 |
"inbox."
|
226 |
-
msgstr "Bedankt, je inschrijfverzoek was succesvol! Check alsjeblieft je
|
227 |
|
228 |
#: mailchimp-for-wordpress/includes/functions/general.php:45
|
229 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:35
|
@@ -822,7 +823,7 @@ msgstr "Uitgeschreven"
|
|
822 |
msgid ""
|
823 |
"When using the unsubscribe method, this is the text that shows when the "
|
824 |
"given email address is successfully unsubscribed from the selected list(s)."
|
825 |
-
msgstr ""
|
826 |
|
827 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:243
|
828 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
|
@@ -836,7 +837,7 @@ msgstr "Niet ingeschreven"
|
|
836 |
msgid ""
|
837 |
"When using the unsubscribe method, this is the text that shows when the "
|
838 |
"given email address is not on the selected list(s)."
|
839 |
-
msgstr ""
|
840 |
|
841 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:252
|
842 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:213
|
@@ -856,7 +857,7 @@ msgstr "Wijzig de visuele weergave van je formulier door CSS regels op te stelle
|
|
856 |
msgid ""
|
857 |
"You can add the CSS rules to your theme stylesheet using the <a "
|
858 |
"href=\"%s\">Theme Editor</a> or by using a plugin like %s"
|
859 |
-
msgstr ""
|
860 |
|
861 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:269
|
862 |
msgid ""
|
@@ -958,7 +959,7 @@ msgstr "Huidige URL"
|
|
958 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:336
|
959 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:70
|
960 |
msgid "The value of the <strong>FNAME</strong> field, if set."
|
961 |
-
msgstr ""
|
962 |
|
963 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
964 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:31
|
@@ -980,7 +981,7 @@ msgstr "Verzendknop"
|
|
980 |
|
981 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
982 |
msgid "Subscribe / unsubscribe choice"
|
983 |
-
msgstr ""
|
984 |
|
985 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
986 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
|
@@ -1311,7 +1312,7 @@ msgstr "<b>Waarschuwing!</b> Je blokkeert externe requests wat betekent dat je g
|
|
1311 |
|
1312 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:205
|
1313 |
msgid "Your %s license has been activated. You have an unlimited license. "
|
1314 |
-
msgstr "Je %s licentie is geactiveerd. Je hebt een ongelimiteerde licentie"
|
1315 |
|
1316 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:207
|
1317 |
msgid "Your %s license has been activated. You have used %d/%d activations. "
|
@@ -1623,11 +1624,11 @@ msgstr "Andere fouten"
|
|
1623 |
|
1624 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:39
|
1625 |
msgid "Submit button"
|
1626 |
-
msgstr ""
|
1627 |
|
1628 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:41
|
1629 |
msgid "Subscribe / unsubscribe action"
|
1630 |
-
msgstr ""
|
1631 |
|
1632 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
|
1633 |
msgid "Form usage"
|
@@ -1680,7 +1681,7 @@ msgstr ""
|
|
1680 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:11
|
1681 |
msgid ""
|
1682 |
"Please use the same email address as you used when purchasing the plugin."
|
1683 |
-
msgstr ""
|
1684 |
|
1685 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:11
|
1686 |
msgid "Use the fields below to create custom styling rules for your forms."
|
@@ -1715,198 +1716,198 @@ msgstr "Je moet JavaScript aan hebben staan in je browser om een voorbeeld van j
|
|
1715 |
|
1716 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:62
|
1717 |
msgid "Form container style"
|
1718 |
-
msgstr ""
|
1719 |
|
1720 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1721 |
msgid "Form width"
|
1722 |
-
msgstr ""
|
1723 |
|
1724 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1725 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1726 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1727 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1728 |
msgid "px or %"
|
1729 |
-
msgstr ""
|
1730 |
|
1731 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1732 |
msgid "Text alignment"
|
1733 |
-
msgstr ""
|
1734 |
|
1735 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1736 |
msgid "Choose alignment"
|
1737 |
-
msgstr ""
|
1738 |
|
1739 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
|
1740 |
msgid "Left"
|
1741 |
-
msgstr ""
|
1742 |
|
1743 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
|
1744 |
msgid "Center"
|
1745 |
-
msgstr ""
|
1746 |
|
1747 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
|
1748 |
msgid "Right"
|
1749 |
-
msgstr ""
|
1750 |
|
1751 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
|
1752 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
|
1753 |
msgid "Background color"
|
1754 |
-
msgstr ""
|
1755 |
|
1756 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
|
1757 |
msgid "Padding"
|
1758 |
-
msgstr ""
|
1759 |
|
1760 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:89
|
1761 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1762 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1763 |
msgid "Border color"
|
1764 |
-
msgstr ""
|
1765 |
|
1766 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1767 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1768 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1769 |
msgid "Border width"
|
1770 |
-
msgstr ""
|
1771 |
|
1772 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1773 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1774 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1775 |
msgid "Text color"
|
1776 |
-
msgstr ""
|
1777 |
|
1778 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
|
1779 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
|
1780 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
|
1781 |
msgid "Text size"
|
1782 |
-
msgstr ""
|
1783 |
|
1784 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
|
1785 |
msgid "Background image"
|
1786 |
-
msgstr ""
|
1787 |
|
1788 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
|
1789 |
msgid "Label styles"
|
1790 |
-
msgstr ""
|
1791 |
|
1792 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1793 |
msgid "Label width"
|
1794 |
-
msgstr ""
|
1795 |
|
1796 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1797 |
msgid "Text style"
|
1798 |
-
msgstr ""
|
1799 |
|
1800 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1801 |
msgid "Choose text style.."
|
1802 |
-
msgstr ""
|
1803 |
|
1804 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1805 |
msgid "Normal"
|
1806 |
-
msgstr ""
|
1807 |
|
1808 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
|
1809 |
msgid "Bold"
|
1810 |
-
msgstr ""
|
1811 |
|
1812 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
|
1813 |
msgid "Italic"
|
1814 |
-
msgstr ""
|
1815 |
|
1816 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
|
1817 |
msgid "Bold & Italic"
|
1818 |
-
msgstr ""
|
1819 |
|
1820 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
|
1821 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
|
1822 |
msgid "Display"
|
1823 |
-
msgstr ""
|
1824 |
|
1825 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:146
|
1826 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:178
|
1827 |
msgid "Inline"
|
1828 |
-
msgstr ""
|
1829 |
|
1830 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:147
|
1831 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:179
|
1832 |
msgid "New line"
|
1833 |
-
msgstr ""
|
1834 |
|
1835 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:156
|
1836 |
msgid "Field styles"
|
1837 |
-
msgstr ""
|
1838 |
|
1839 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1840 |
msgid "Field width"
|
1841 |
-
msgstr ""
|
1842 |
|
1843 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
|
1844 |
msgid "Field height"
|
1845 |
-
msgstr ""
|
1846 |
|
1847 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
|
1848 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1849 |
msgid "Border radius"
|
1850 |
-
msgstr ""
|
1851 |
|
1852 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
|
1853 |
msgid "Focus outline"
|
1854 |
-
msgstr ""
|
1855 |
|
1856 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:198
|
1857 |
msgid "Button styles"
|
1858 |
-
msgstr ""
|
1859 |
|
1860 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1861 |
msgid "Button width"
|
1862 |
-
msgstr ""
|
1863 |
|
1864 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:206
|
1865 |
msgid "Button height"
|
1866 |
-
msgstr ""
|
1867 |
|
1868 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:238
|
1869 |
msgid "Error and success messages"
|
1870 |
-
msgstr ""
|
1871 |
|
1872 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:242
|
1873 |
msgid "Success text color"
|
1874 |
-
msgstr ""
|
1875 |
|
1876 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:244
|
1877 |
msgid "Error text color"
|
1878 |
-
msgstr ""
|
1879 |
|
1880 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
|
1881 |
msgid "Advanced"
|
1882 |
-
msgstr ""
|
1883 |
|
1884 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
|
1885 |
msgid "CSS Selector Prefix"
|
1886 |
-
msgstr ""
|
1887 |
|
1888 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:258
|
1889 |
msgid ""
|
1890 |
"Use this to create a more specific (and thus more \"important\") CSS "
|
1891 |
"selector."
|
1892 |
-
msgstr ""
|
1893 |
|
1894 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1895 |
msgid "Manual CSS"
|
1896 |
-
msgstr ""
|
1897 |
|
1898 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1899 |
msgid ""
|
1900 |
"The CSS rules you enter here will be appended to the custom stylesheet."
|
1901 |
-
msgstr ""
|
1902 |
|
1903 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:269
|
1904 |
msgid "Copy styles from other form"
|
1905 |
-
msgstr ""
|
1906 |
|
1907 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1908 |
msgid "Copy Styles"
|
1909 |
-
msgstr ""
|
1910 |
|
1911 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1912 |
msgid ""
|
@@ -1924,7 +1925,7 @@ msgstr "Verwijder formulier stijlen"
|
|
1924 |
|
1925 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
|
1926 |
msgid "Form preview"
|
1927 |
-
msgstr ""
|
1928 |
|
1929 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1930 |
msgid "Sign-Up Forms"
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
# Danny van Kooten <dannyvankooten@gmail.com>, 2014-2015
|
5 |
+
# Martijn van Egmond <developer@tensheep.nl>, 2015
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: MailChimp for WordPress\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
10 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
11 |
+
"PO-Revision-Date: 2015-10-22 18:32+0000\n"
|
12 |
+
"Last-Translator: Martijn van Egmond <developer@tensheep.nl>\n"
|
13 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/nl_NL/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
224 |
msgid ""
|
225 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
226 |
"inbox."
|
227 |
+
msgstr "Bedankt, je inschrijfverzoek was succesvol! Check alsjeblieft je e-mail inbox voor een bevestiging."
|
228 |
|
229 |
#: mailchimp-for-wordpress/includes/functions/general.php:45
|
230 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:35
|
823 |
msgid ""
|
824 |
"When using the unsubscribe method, this is the text that shows when the "
|
825 |
"given email address is successfully unsubscribed from the selected list(s)."
|
826 |
+
msgstr "Wanneer gebruik gemaakt wordt van de functie om zich uit te schrijven, is dit de tekst die getoond wordt wanneer het aangegeven e-mailadres succesvol is uitgeschreven van de geselecteerde lijst(en)."
|
827 |
|
828 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:243
|
829 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
|
837 |
msgid ""
|
838 |
"When using the unsubscribe method, this is the text that shows when the "
|
839 |
"given email address is not on the selected list(s)."
|
840 |
+
msgstr "Wanneer gebruik gemaakt wordt van de functie om zich uit te schrijven, is dit de tekst die getoond wordt wanneer het aangegeven e-mailadres niet voorkomt op de geselecteerde lijst(en)."
|
841 |
|
842 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:252
|
843 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:213
|
857 |
msgid ""
|
858 |
"You can add the CSS rules to your theme stylesheet using the <a "
|
859 |
"href=\"%s\">Theme Editor</a> or by using a plugin like %s"
|
860 |
+
msgstr "Je kan de CSS regels aan de stylesheet van je thema toevoegen door de <a href=\"%s\">Thema Editor</a> te gebruiken of door gebruik te maken van een plugin zoals %s."
|
861 |
|
862 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:269
|
863 |
msgid ""
|
959 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:336
|
960 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:70
|
961 |
msgid "The value of the <strong>FNAME</strong> field, if set."
|
962 |
+
msgstr "De waarde van <strong>FNAME</strong> veld, als deze ingevuld is."
|
963 |
|
964 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
965 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:31
|
981 |
|
982 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
983 |
msgid "Subscribe / unsubscribe choice"
|
984 |
+
msgstr "Inschrijven / Uitschrijven optie"
|
985 |
|
986 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
987 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
|
1312 |
|
1313 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:205
|
1314 |
msgid "Your %s license has been activated. You have an unlimited license. "
|
1315 |
+
msgstr "Je %s licentie is geactiveerd. Je hebt een ongelimiteerde licentie."
|
1316 |
|
1317 |
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:207
|
1318 |
msgid "Your %s license has been activated. You have used %d/%d activations. "
|
1624 |
|
1625 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:39
|
1626 |
msgid "Submit button"
|
1627 |
+
msgstr "Verzendknop"
|
1628 |
|
1629 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:41
|
1630 |
msgid "Subscribe / unsubscribe action"
|
1631 |
+
msgstr "Inschrijven / uitschrijven actie"
|
1632 |
|
1633 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
|
1634 |
msgid "Form usage"
|
1681 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:11
|
1682 |
msgid ""
|
1683 |
"Please use the same email address as you used when purchasing the plugin."
|
1684 |
+
msgstr "Gebruik hetzelfde e-mailadres welke ook gebruikt is waarmee deze plugin aangekocht is."
|
1685 |
|
1686 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:11
|
1687 |
msgid "Use the fields below to create custom styling rules for your forms."
|
1716 |
|
1717 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:62
|
1718 |
msgid "Form container style"
|
1719 |
+
msgstr "Formulier container stijl"
|
1720 |
|
1721 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1722 |
msgid "Form width"
|
1723 |
+
msgstr "Formulier breedte"
|
1724 |
|
1725 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1726 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1727 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1728 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1729 |
msgid "px or %"
|
1730 |
+
msgstr "px of %"
|
1731 |
|
1732 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1733 |
msgid "Text alignment"
|
1734 |
+
msgstr "Tekstuitlijning"
|
1735 |
|
1736 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1737 |
msgid "Choose alignment"
|
1738 |
+
msgstr "Kies uitlijning"
|
1739 |
|
1740 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
|
1741 |
msgid "Left"
|
1742 |
+
msgstr "Links"
|
1743 |
|
1744 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
|
1745 |
msgid "Center"
|
1746 |
+
msgstr "Gecentreerd"
|
1747 |
|
1748 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
|
1749 |
msgid "Right"
|
1750 |
+
msgstr "Rechts"
|
1751 |
|
1752 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
|
1753 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
|
1754 |
msgid "Background color"
|
1755 |
+
msgstr "Achtergrondkleur"
|
1756 |
|
1757 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
|
1758 |
msgid "Padding"
|
1759 |
+
msgstr "Padding"
|
1760 |
|
1761 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:89
|
1762 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1763 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1764 |
msgid "Border color"
|
1765 |
+
msgstr "Rand kleur"
|
1766 |
|
1767 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1768 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1769 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1770 |
msgid "Border width"
|
1771 |
+
msgstr "Rand breedte"
|
1772 |
|
1773 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1774 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1775 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1776 |
msgid "Text color"
|
1777 |
+
msgstr "Tekstkleur"
|
1778 |
|
1779 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
|
1780 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
|
1781 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
|
1782 |
msgid "Text size"
|
1783 |
+
msgstr "Tekstgrootte"
|
1784 |
|
1785 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
|
1786 |
msgid "Background image"
|
1787 |
+
msgstr "Achtergrondafbeelding"
|
1788 |
|
1789 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
|
1790 |
msgid "Label styles"
|
1791 |
+
msgstr "Label stijl"
|
1792 |
|
1793 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1794 |
msgid "Label width"
|
1795 |
+
msgstr "Label breedte"
|
1796 |
|
1797 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1798 |
msgid "Text style"
|
1799 |
+
msgstr "Tekststijl"
|
1800 |
|
1801 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1802 |
msgid "Choose text style.."
|
1803 |
+
msgstr "Kies een tekststijl.."
|
1804 |
|
1805 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1806 |
msgid "Normal"
|
1807 |
+
msgstr "Normaal"
|
1808 |
|
1809 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
|
1810 |
msgid "Bold"
|
1811 |
+
msgstr "Dikgedrukt"
|
1812 |
|
1813 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
|
1814 |
msgid "Italic"
|
1815 |
+
msgstr "Cursief"
|
1816 |
|
1817 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
|
1818 |
msgid "Bold & Italic"
|
1819 |
+
msgstr "Dikgedrukt & Cursief"
|
1820 |
|
1821 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
|
1822 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
|
1823 |
msgid "Display"
|
1824 |
+
msgstr "Weergave"
|
1825 |
|
1826 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:146
|
1827 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:178
|
1828 |
msgid "Inline"
|
1829 |
+
msgstr "Inlijn"
|
1830 |
|
1831 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:147
|
1832 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:179
|
1833 |
msgid "New line"
|
1834 |
+
msgstr "Nieuwe regel"
|
1835 |
|
1836 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:156
|
1837 |
msgid "Field styles"
|
1838 |
+
msgstr "Veld stijlen"
|
1839 |
|
1840 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1841 |
msgid "Field width"
|
1842 |
+
msgstr "Veld breedte"
|
1843 |
|
1844 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
|
1845 |
msgid "Field height"
|
1846 |
+
msgstr "Veld hoogte"
|
1847 |
|
1848 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
|
1849 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1850 |
msgid "Border radius"
|
1851 |
+
msgstr "Border radius"
|
1852 |
|
1853 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
|
1854 |
msgid "Focus outline"
|
1855 |
+
msgstr "Focus outline"
|
1856 |
|
1857 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:198
|
1858 |
msgid "Button styles"
|
1859 |
+
msgstr "Button stijlen"
|
1860 |
|
1861 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1862 |
msgid "Button width"
|
1863 |
+
msgstr "Button breedte"
|
1864 |
|
1865 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:206
|
1866 |
msgid "Button height"
|
1867 |
+
msgstr "Button hoogte"
|
1868 |
|
1869 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:238
|
1870 |
msgid "Error and success messages"
|
1871 |
+
msgstr "Fout en succes berichten"
|
1872 |
|
1873 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:242
|
1874 |
msgid "Success text color"
|
1875 |
+
msgstr "Tekstkleur voor succesvol"
|
1876 |
|
1877 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:244
|
1878 |
msgid "Error text color"
|
1879 |
+
msgstr "Tekstkleur voor een fout"
|
1880 |
|
1881 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
|
1882 |
msgid "Advanced"
|
1883 |
+
msgstr "Geavanceerd"
|
1884 |
|
1885 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
|
1886 |
msgid "CSS Selector Prefix"
|
1887 |
+
msgstr "CSS Selector Prefix"
|
1888 |
|
1889 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:258
|
1890 |
msgid ""
|
1891 |
"Use this to create a more specific (and thus more \"important\") CSS "
|
1892 |
"selector."
|
1893 |
+
msgstr "Gebruik dit om een meer specifieke (en dus meer \"belangrijke\") CSS selector maken."
|
1894 |
|
1895 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1896 |
msgid "Manual CSS"
|
1897 |
+
msgstr "Handmatige CSS"
|
1898 |
|
1899 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1900 |
msgid ""
|
1901 |
"The CSS rules you enter here will be appended to the custom stylesheet."
|
1902 |
+
msgstr "De hier ingevoerde CSS regels worden toegevoegd aan de custom stylesheet."
|
1903 |
|
1904 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:269
|
1905 |
msgid "Copy styles from other form"
|
1906 |
+
msgstr "Kopieer stijlen van een ander formulier"
|
1907 |
|
1908 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1909 |
msgid "Copy Styles"
|
1910 |
+
msgstr "Kopieer stijlen"
|
1911 |
|
1912 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1913 |
msgid ""
|
1925 |
|
1926 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
|
1927 |
msgid "Form preview"
|
1928 |
+
msgstr "Formulier voorbeeld"
|
1929 |
|
1930 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1931 |
msgid "Sign-Up Forms"
|
languages/mailchimp-for-wp-pt_PT.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-pt_PT.po
CHANGED
@@ -2,13 +2,14 @@
|
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
# Pedro Marques <pmark.pt@gmail.com>, 2015
|
|
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: MailChimp for WordPress\n"
|
8 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
9 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
10 |
-
"PO-Revision-Date: 2015-
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/pt_PT/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -258,7 +259,7 @@ msgstr ""
|
|
258 |
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
259 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
260 |
msgid "Given email address is not subscribed."
|
261 |
-
msgstr ""
|
262 |
|
263 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
264 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
@@ -743,7 +744,7 @@ msgstr ""
|
|
743 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:195
|
744 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
745 |
msgid "Successfully subscribed"
|
746 |
-
msgstr ""
|
747 |
|
748 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:198
|
749 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
|
@@ -802,7 +803,7 @@ msgstr "CAPTCHA Inválido"
|
|
802 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:229
|
803 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
|
804 |
msgid "General error"
|
805 |
-
msgstr ""
|
806 |
|
807 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:232
|
808 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
# Pedro Marques <pmark.pt@gmail.com>, 2015
|
5 |
+
# Vasco Cruz <vasco_cruz@hotmail.com>, 2015
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: MailChimp for WordPress\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
10 |
"POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
|
11 |
+
"PO-Revision-Date: 2015-10-23 09:33+0000\n"
|
12 |
+
"Last-Translator: Vasco Cruz <vasco_cruz@hotmail.com>\n"
|
13 |
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/pt_PT/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
259 |
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
260 |
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
261 |
msgid "Given email address is not subscribed."
|
262 |
+
msgstr "Email fornecido não está subscrito."
|
263 |
|
264 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
265 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
744 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:195
|
745 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
746 |
msgid "Successfully subscribed"
|
747 |
+
msgstr "Subscrito com sucesso"
|
748 |
|
749 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:198
|
750 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
|
803 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:229
|
804 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
|
805 |
msgid "General error"
|
806 |
+
msgstr "Erro geral"
|
807 |
|
808 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:232
|
809 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
|
mailchimp-for-wp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: MailChimp for WordPress Lite
|
4 |
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
|
5 |
Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
|
6 |
-
Version: 2.3.
|
7 |
Author: ibericode
|
8 |
Author URI: https://ibericode.com/
|
9 |
Text Domain: mailchimp-for-wp
|
@@ -47,7 +47,7 @@ function mc4wp_load_plugin() {
|
|
47 |
}
|
48 |
|
49 |
// bootstrap the lite plugin
|
50 |
-
define( 'MC4WP_LITE_VERSION', '2.3.
|
51 |
define( 'MC4WP_LITE_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
|
52 |
define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );
|
@@ -59,7 +59,8 @@ function mc4wp_load_plugin() {
|
|
59 |
// Initialize admin section of plugin
|
60 |
if( is_admin()
|
61 |
&& ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
|
62 |
-
new MC4WP_Lite_Admin();
|
|
|
63 |
}
|
64 |
|
65 |
// Initialize the plugin and store an instance in the global scope
|
3 |
Plugin Name: MailChimp for WordPress Lite
|
4 |
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
|
5 |
Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
|
6 |
+
Version: 2.3.18
|
7 |
Author: ibericode
|
8 |
Author URI: https://ibericode.com/
|
9 |
Text Domain: mailchimp-for-wp
|
47 |
}
|
48 |
|
49 |
// bootstrap the lite plugin
|
50 |
+
define( 'MC4WP_LITE_VERSION', '2.3.18' );
|
51 |
define( 'MC4WP_LITE_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
|
52 |
define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );
|
59 |
// Initialize admin section of plugin
|
60 |
if( is_admin()
|
61 |
&& ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
|
62 |
+
$admin = new MC4WP_Lite_Admin();
|
63 |
+
$admin->add_hooks();
|
64 |
}
|
65 |
|
66 |
// Initialize the plugin and store an instance in the global scope
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Ibericode, DvanKooten, iMazed, hchouhan
|
|
3 |
Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link
|
4 |
Tags: email, mailchimp, marketing, newsletter, signup, widget, mc4wp, contact form 7, woocommerce, buddypress,ibericode
|
5 |
Requires at least: 3.7
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -167,6 +167,18 @@ MailChimp for WordPress is being developed on GitHub. If you want to collaborate
|
|
167 |
|
168 |
== Changelog ==
|
169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
= 2.3.17 - October 22, 2015 =
|
171 |
|
172 |
**Fixes**
|
3 |
Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link
|
4 |
Tags: email, mailchimp, marketing, newsletter, signup, widget, mc4wp, contact form 7, woocommerce, buddypress,ibericode
|
5 |
Requires at least: 3.7
|
6 |
+
Tested up to: 4.4
|
7 |
+
Stable tag: 2.3.18
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
167 |
|
168 |
== Changelog ==
|
169 |
|
170 |
+
= 2.3.18 - November 2, 2015 =
|
171 |
+
|
172 |
+
**Fixes**
|
173 |
+
|
174 |
+
- Incorrect number of parameters for `error_log` statement in integrations class.
|
175 |
+
|
176 |
+
**Improvements**
|
177 |
+
|
178 |
+
- Usage tracking is now scheduled once a week (instead of daily).
|
179 |
+
- Preparations for [the upcoming MailChimp for WordPress version 3.0 release](https://mc4wp.com/blog/breaking-backwards-compatibility-in-version-3-0/).
|
180 |
+
- Tested compatibility with WordPress 4.4
|
181 |
+
|
182 |
= 2.3.17 - October 22, 2015 =
|
183 |
|
184 |
**Fixes**
|
vendor/autoload_52.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInite20347bf66804dbb530dafb09d776089::getLoader();
|
vendor/composer/autoload_classmap.php
CHANGED
@@ -12,6 +12,7 @@ return array(
|
|
12 |
'Composer\\Installers\\AsgardInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php',
|
13 |
'Composer\\Installers\\BaseInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php',
|
14 |
'Composer\\Installers\\BitrixInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php',
|
|
|
15 |
'Composer\\Installers\\CakePHPInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php',
|
16 |
'Composer\\Installers\\ChefInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php',
|
17 |
'Composer\\Installers\\ClanCatsFrameworkInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',
|
@@ -30,6 +31,7 @@ return array(
|
|
30 |
'Composer\\Installers\\Installer' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php',
|
31 |
'Composer\\Installers\\JoomlaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php',
|
32 |
'Composer\\Installers\\KirbyInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php',
|
|
|
33 |
'Composer\\Installers\\KohanaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php',
|
34 |
'Composer\\Installers\\LaravelInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php',
|
35 |
'Composer\\Installers\\LithiumInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php',
|
@@ -46,6 +48,7 @@ return array(
|
|
46 |
'Composer\\Installers\\PhpBBInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php',
|
47 |
'Composer\\Installers\\PimcoreInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php',
|
48 |
'Composer\\Installers\\PiwikInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php',
|
|
|
49 |
'Composer\\Installers\\PrestashopInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php',
|
50 |
'Composer\\Installers\\PuppetInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php',
|
51 |
'Composer\\Installers\\RedaxoInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php',
|
@@ -89,8 +92,8 @@ return array(
|
|
89 |
'MC4WP_Subscribe_Request' => $baseDir . '/includes/class-subscribe-request.php',
|
90 |
'MC4WP_Tools' => $baseDir . '/includes/class-tools.php',
|
91 |
'MC4WP_Unsubscribe_Request' => $baseDir . '/includes/class-unsubscribe-request.php',
|
|
|
92 |
'MC4WP_Usage_Tracking' => $baseDir . '/includes/admin/class-usage-tracking.php',
|
93 |
-
'MC4WP_Usage_Tracking_Nag' => $baseDir . '/includes/admin/class-usage-tracking-nag.php',
|
94 |
'MC4WP_User_Integration' => $baseDir . '/includes/integrations/class-user-integration.php',
|
95 |
'MC4WP_WooCommerce_Integration' => $baseDir . '/includes/integrations/class-woocommerce.php',
|
96 |
'MC4WP_bbPress_Integration' => $baseDir . '/includes/integrations/class-bbpress.php',
|
12 |
'Composer\\Installers\\AsgardInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php',
|
13 |
'Composer\\Installers\\BaseInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php',
|
14 |
'Composer\\Installers\\BitrixInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php',
|
15 |
+
'Composer\\Installers\\BonefishInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/BonefishInstaller.php',
|
16 |
'Composer\\Installers\\CakePHPInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php',
|
17 |
'Composer\\Installers\\ChefInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php',
|
18 |
'Composer\\Installers\\ClanCatsFrameworkInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',
|
31 |
'Composer\\Installers\\Installer' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php',
|
32 |
'Composer\\Installers\\JoomlaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php',
|
33 |
'Composer\\Installers\\KirbyInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php',
|
34 |
+
'Composer\\Installers\\KodiCMSInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',
|
35 |
'Composer\\Installers\\KohanaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php',
|
36 |
'Composer\\Installers\\LaravelInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php',
|
37 |
'Composer\\Installers\\LithiumInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php',
|
48 |
'Composer\\Installers\\PhpBBInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php',
|
49 |
'Composer\\Installers\\PimcoreInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php',
|
50 |
'Composer\\Installers\\PiwikInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php',
|
51 |
+
'Composer\\Installers\\Plugin' => $vendorDir . '/composer/installers/src/Composer/Installers/Plugin.php',
|
52 |
'Composer\\Installers\\PrestashopInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php',
|
53 |
'Composer\\Installers\\PuppetInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php',
|
54 |
'Composer\\Installers\\RedaxoInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php',
|
92 |
'MC4WP_Subscribe_Request' => $baseDir . '/includes/class-subscribe-request.php',
|
93 |
'MC4WP_Tools' => $baseDir . '/includes/class-tools.php',
|
94 |
'MC4WP_Unsubscribe_Request' => $baseDir . '/includes/class-unsubscribe-request.php',
|
95 |
+
'MC4WP_Update_Control' => $baseDir . '/includes/admin/class-update-control.php',
|
96 |
'MC4WP_Usage_Tracking' => $baseDir . '/includes/admin/class-usage-tracking.php',
|
|
|
97 |
'MC4WP_User_Integration' => $baseDir . '/includes/integrations/class-user-integration.php',
|
98 |
'MC4WP_WooCommerce_Integration' => $baseDir . '/includes/integrations/class-woocommerce.php',
|
99 |
'MC4WP_bbPress_Integration' => $baseDir . '/includes/integrations/class-bbpress.php',
|
vendor/composer/autoload_real_52.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
-
class
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit907d1e96f0d9a35e03a0100e064d9608 {
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
+
class ComposerAutoloaderInite20347bf66804dbb530dafb09d776089 {
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInite20347bf66804dbb530dafb09d776089', 'loadClassLoader'), true /*, true */);
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInite20347bf66804dbb530dafb09d776089', 'loadClassLoader'));
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|