Version Description
- December 1, 2014 =
Fixes
- Fixes onclick event in older versions of IE, props Simon Schick
Improvements
- Updated Dutch, French, Hungarian, Italian, Norwegian, Swedish and Taiwanese translations.
- Some textual improvements.
Additions
- {email} shortcode to use in form mark-up.
Download this release
Release Info
Developer | DvanKooten |
Plugin | MailChimp for WordPress |
Version | 2.1.7 |
Comparing to | |
See all releases |
Code changes from version 2.1.6 to 2.1.7
- includes/class-api.php +12 -4
- includes/class-form-manager.php +9 -2
- includes/functions/template.php +12 -1
- includes/views/form-settings.php +12 -8
- includes/views/parts/admin-footer.php +1 -0
- includes/views/parts/admin-need-support.php +10 -8
- languages/mailchimp-for-wp-fr_FR.po +56 -54
- languages/mailchimp-for-wp-hu_HU.po +15 -15
- languages/mailchimp-for-wp-it_IT.po +10 -9
- languages/mailchimp-for-wp-nl_NL.po +14 -14
- languages/mailchimp-for-wp-no_NO.po +61 -60
- languages/mailchimp-for-wp-sv_SE.po +79 -78
- languages/mailchimp-for-wp-zh_TW.po +27 -27
- mailchimp-for-wp.php +3 -3
- readme.txt +19 -4
includes/class-api.php
CHANGED
@@ -154,15 +154,23 @@ class MC4WP_Lite_API {
|
|
154 |
}
|
155 |
|
156 |
/**
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
|
|
161 |
{
|
162 |
$args = array(
|
163 |
'limit' => 100
|
164 |
);
|
165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
$result = $this->call( 'lists/list', $args );
|
167 |
|
168 |
if( is_object( $result ) && isset( $result->data ) ) {
|
154 |
}
|
155 |
|
156 |
/**
|
157 |
+
* @param array $list_ids Array of ID's of the lists to fetch. (optional)
|
158 |
+
*
|
159 |
+
* @return bool
|
160 |
+
*/
|
161 |
+
public function get_lists( $list_ids = array() )
|
162 |
{
|
163 |
$args = array(
|
164 |
'limit' => 100
|
165 |
);
|
166 |
|
167 |
+
// set filter if the $list_ids parameter was set
|
168 |
+
if( count( $list_ids ) > 0 ) {
|
169 |
+
$args['filters'] = array(
|
170 |
+
'list_id' => implode( ',', $list_ids )
|
171 |
+
);
|
172 |
+
}
|
173 |
+
|
174 |
$result = $this->call( 'lists/list', $args );
|
175 |
|
176 |
if( is_object( $result ) && isset( $result->data ) ) {
|
includes/class-form-manager.php
CHANGED
@@ -281,9 +281,16 @@ class MC4WP_Lite_Form_Manager {
|
|
281 |
var forms = document.querySelectorAll('.mc4wp-form');
|
282 |
for (var i = 0; i < forms.length; i++) {
|
283 |
(function(el) {
|
284 |
-
|
285 |
el.classList.toggle('mc4wp-form-submitted');
|
286 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
})(forms[i]);
|
288 |
}
|
289 |
})();
|
281 |
var forms = document.querySelectorAll('.mc4wp-form');
|
282 |
for (var i = 0; i < forms.length; i++) {
|
283 |
(function(el) {
|
284 |
+
var onclick = function( event ) {
|
285 |
el.classList.toggle('mc4wp-form-submitted');
|
286 |
+
};
|
287 |
+
var button = el.querySelector('[type="submit"]');
|
288 |
+
|
289 |
+
if (button.addEventListener) {
|
290 |
+
button.addEventListener( 'click', onclick);
|
291 |
+
} else {
|
292 |
+
button.attachEvent( 'onclick', onclick);
|
293 |
+
}
|
294 |
})(forms[i]);
|
295 |
}
|
296 |
})();
|
includes/functions/template.php
CHANGED
@@ -66,11 +66,22 @@ function mc4wp_replace_variables( $text, $list_ids = array() ) {
|
|
66 |
$text = str_ireplace( '{subscriber_count}', $subscriber_count, $text );
|
67 |
}
|
68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
// replace user variables
|
70 |
$needles = array( '{user_email}', '{user_firstname}', '{user_lastname}', '{user_name}', '{user_id}' );
|
71 |
if ( is_user_logged_in() && ( $user = wp_get_current_user() ) && ( $user instanceof WP_User ) ) {
|
72 |
// logged in user, replace vars by user vars
|
73 |
-
$replacements = array( $user->user_email, $user->
|
74 |
$text = str_replace( $needles, $replacements, $text );
|
75 |
} else {
|
76 |
// no logged in user, replace vars with empty string
|
66 |
$text = str_ireplace( '{subscriber_count}', $subscriber_count, $text );
|
67 |
}
|
68 |
|
69 |
+
// replace {email} tag
|
70 |
+
if( isset( $_GET['email'] ) ) {
|
71 |
+
$email = esc_attr( $_GET['email'] );
|
72 |
+
} elseif( isset( $_COOKIE['mc4wp_email'] ) ) {
|
73 |
+
$email = esc_attr( $_COOKIE['mc4wp_email'] );
|
74 |
+
} else {
|
75 |
+
$email = '';
|
76 |
+
}
|
77 |
+
|
78 |
+
$text = str_ireplace( '{email}', $email, $text );
|
79 |
+
|
80 |
// replace user variables
|
81 |
$needles = array( '{user_email}', '{user_firstname}', '{user_lastname}', '{user_name}', '{user_id}' );
|
82 |
if ( is_user_logged_in() && ( $user = wp_get_current_user() ) && ( $user instanceof WP_User ) ) {
|
83 |
// logged in user, replace vars by user vars
|
84 |
+
$replacements = array( $user->user_email, $user->first_name, $user->last_name, $user->display_name, $user->ID );
|
85 |
$text = str_replace( $needles, $replacements, $text );
|
86 |
} else {
|
87 |
// no logged in user, replace vars with empty string
|
includes/views/form-settings.php
CHANGED
@@ -236,22 +236,26 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
236 |
<?php include 'parts/admin-upgrade-to-pro.php'; ?>
|
237 |
|
238 |
<div class="mc4wp-box" id="mc4wp-info-tabs">
|
239 |
-
<h3 class="mc4wp-title"
|
240 |
-
<p
|
241 |
-
<p
|
242 |
|
243 |
-
<h3 class="mc4wp-title"
|
244 |
-
<p
|
245 |
-
<p
|
|
|
|
|
246 |
|
247 |
-
<p>The <a href="http://wordpress.org/plugins/mailchimp-for-wp/faq/" target="_blank">FAQ</a> lists the various CSS selectors you can use to target the different elements.</p>
|
248 |
-
|
249 |
<h3 class="mc4wp-title"><?php _e( 'Form variables', 'mailchimp-for-wp' ); ?></h3>
|
250 |
<p><?php _e( 'Use the following variables to add some dynamic content to your form.', 'mailchimp-for-wp' ); ?></p>
|
251 |
|
252 |
<?php $language = defined( 'ICL_LANGUAGE_CODE' ) ? ICL_LANGUAGE_CODE : get_locale(); ?>
|
253 |
|
254 |
<table class="mc4wp-help">
|
|
|
|
|
|
|
|
|
255 |
<tr>
|
256 |
<th>{response}</th>
|
257 |
<td><?php _e( 'Replaced with the form response (error or success messages).', 'mailchimp-for-wp' ); ?></td>
|
236 |
<?php include 'parts/admin-upgrade-to-pro.php'; ?>
|
237 |
|
238 |
<div class="mc4wp-box" id="mc4wp-info-tabs">
|
239 |
+
<h3 class="mc4wp-title"><?php _e( 'Building your sign-up form', 'mailchimp-for-wp' ); ?></h3>
|
240 |
+
<p><?php printf( __( 'At a minimum, your form should include just an %s field and a submit button.', 'mailchimp-for-wp' ), '<strong>EMAIL</strong>' ); ?></p>
|
241 |
+
<p><?php _e( 'Add more form fields if your selected lists require more fields. Field names should match the field tags of the selected lists. Use the "Add a new field" tool to have the HTML generated for you.', 'mailchimp-for-wp'); ?></p>
|
242 |
|
243 |
+
<h3 class="mc4wp-title"><?php _e( 'Form Styling', 'mailchimp-for-wp' ); ?></h3>
|
244 |
+
<p><?php printf( __( 'Alter the visual appearance of the form by applying CSS rules to %s.', 'mailchimp-for-wp' ), '<b>.mc4wp-form</b>' ); ?></p>
|
245 |
+
<p><?php printf( __( 'You can add the CSS rules to your theme stylesheet using the <a href="%s">Theme Editor</a> or by editing %s over FTP. Alternatively, use a plugin like %s', 'mailchimp-for-wp' ), admin_url('theme-editor.php?file=style.css'), '<em>' . get_stylesheet_directory() . '/style.css</em>', '<a href="https://wordpress.org/plugins/simple-custom-css/">Simple Custom CSS</a>' ); ?>.</p>
|
246 |
+
<p><?php printf( __( 'The <a href="%s" target="_blank">plugin FAQ</a> lists the various CSS selectors you can use to target the different form elements.', 'mailchimp-for-wp' ), 'http://wordpress.org/plugins/mailchimp-for-wp/faq/' ); ?></p>
|
247 |
+
<p><?php printf( __( 'If you need an easier way to style your forms, <a href="%s">upgrade to MailChimp for WordPress Pro</a>. It comes with a "Styles Builder" that lets you customize form styles without writing any code.', 'mailchimp-for-wp' ), 'https://mc4wp.com/' ); ?></p>
|
248 |
|
|
|
|
|
249 |
<h3 class="mc4wp-title"><?php _e( 'Form variables', 'mailchimp-for-wp' ); ?></h3>
|
250 |
<p><?php _e( 'Use the following variables to add some dynamic content to your form.', 'mailchimp-for-wp' ); ?></p>
|
251 |
|
252 |
<?php $language = defined( 'ICL_LANGUAGE_CODE' ) ? ICL_LANGUAGE_CODE : get_locale(); ?>
|
253 |
|
254 |
<table class="mc4wp-help">
|
255 |
+
<tr>
|
256 |
+
<th>{email}</th>
|
257 |
+
<td><?php _e( 'Replaced with the visitor\'s email (if set in URL or cookie).', 'mailchimp-for-wp' ); ?></td>
|
258 |
+
</tr>
|
259 |
<tr>
|
260 |
<th>{response}</th>
|
261 |
<td><?php _e( 'Replaced with the form response (error or success messages).', 'mailchimp-for-wp' ); ?></td>
|
includes/views/parts/admin-footer.php
CHANGED
@@ -6,5 +6,6 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
6 |
}
|
7 |
?>
|
8 |
<br style="clear:both;" />
|
|
|
9 |
<p class="help"><?php printf( __( 'Enjoying this plugin? <a href="%s">Upgrade to MailChimp for WordPress Pro now</a> for an even better plugin, you will love it.', 'mailchimp-for-wp' ), 'https://mc4wp.com/#utm_source=lite-plugin&utm_medium=link&utm_campaign=footer-link' ); ?></p>
|
10 |
<p class="help"><?php _e( 'This plugin is not developed by or affiliated with MailChimp in any way.', 'mailchimp-for-wp' ); ?></p>
|
6 |
}
|
7 |
?>
|
8 |
<br style="clear:both;" />
|
9 |
+
<p class="help"><?php printf( __( 'MailChimp for WordPress is in need of translations. Is the plugin not translated in your language or do you spot errors with the current translations? Helping out is easy! Head over to <a href="%s">the translation project and click "help translate"</a>.', 'mailchimp-for-wp' ), 'https://www.transifex.com/projects/p/mailchimp-for-wordpress/' ); ?></p>
|
10 |
<p class="help"><?php printf( __( 'Enjoying this plugin? <a href="%s">Upgrade to MailChimp for WordPress Pro now</a> for an even better plugin, you will love it.', 'mailchimp-for-wp' ), 'https://mc4wp.com/#utm_source=lite-plugin&utm_medium=link&utm_campaign=footer-link' ); ?></p>
|
11 |
<p class="help"><?php _e( 'This plugin is not developed by or affiliated with MailChimp in any way.', 'mailchimp-for-wp' ); ?></p>
|
includes/views/parts/admin-need-support.php
CHANGED
@@ -7,23 +7,25 @@ if( ! defined("MC4WP_LITE_VERSION") ) {
|
|
7 |
?>
|
8 |
<div class="mc4wp-box">
|
9 |
<h4 class="mc4wp-title"><?php _e('Looking for support?', 'mailchimp-for-wp' ); ?></h4>
|
10 |
-
<p><?php printf( __( 'Make sure to look at the <a href="%s">frequently asked questions</a> or use the <a href="%s">support forums</a> on WordPress.org.', 'mailchimp-for-wp' ), '
|
11 |
<p><?php printf( __( 'If you need priority support, please <a href="%s">upgrade to the premium version</a>.', 'mailchimp-for-wp' ), 'https://mc4wp.com/#utm_source=lite-plugin&utm_medium=link&utm_campaign=support-link' ); ?></p>
|
12 |
</div>
|
13 |
|
14 |
<div class="mc4wp-box">
|
15 |
<h4 class="mc4wp-title"><?php _e( 'Show a token of your appreciation', 'mailchimp-for-wp' ); ?></h4>
|
16 |
<ul class="ul-square">
|
17 |
-
<li><a target="_blank" href="
|
18 |
-
<li><a target="_blank" href="
|
19 |
-
<li
|
20 |
-
<li
|
|
|
21 |
</ul>
|
22 |
</div>
|
23 |
<div class="mc4wp-box">
|
24 |
-
<h4 class="mc4wp-title"
|
25 |
<p>A twenty-something Dutch guy writing code and emails for a living.</p>
|
26 |
-
<p>I developed <a href="
|
27 |
-
<p>If you like to stay updated of what I'm doing, consider following <a href="
|
28 |
<p>Hope you enjoy the plugin!</p>
|
|
|
29 |
</div>
|
7 |
?>
|
8 |
<div class="mc4wp-box">
|
9 |
<h4 class="mc4wp-title"><?php _e('Looking for support?', 'mailchimp-for-wp' ); ?></h4>
|
10 |
+
<p><?php printf( __( 'Make sure to look at the <a href="%s">frequently asked questions</a> or use the <a href="%s">support forums</a> on WordPress.org.', 'mailchimp-for-wp' ), 'https://wordpress.org/plugins/mailchimp-for-wp/faq/', 'http://wordpress.org/support/plugin/mailchimp-for-wp' ); ?></p>
|
11 |
<p><?php printf( __( 'If you need priority support, please <a href="%s">upgrade to the premium version</a>.', 'mailchimp-for-wp' ), 'https://mc4wp.com/#utm_source=lite-plugin&utm_medium=link&utm_campaign=support-link' ); ?></p>
|
12 |
</div>
|
13 |
|
14 |
<div class="mc4wp-box">
|
15 |
<h4 class="mc4wp-title"><?php _e( 'Show a token of your appreciation', 'mailchimp-for-wp' ); ?></h4>
|
16 |
<ul class="ul-square">
|
17 |
+
<li><a target="_blank" href="https://mc4wp.com/"><?php printf( __( 'Upgrade to MailChimp for WordPress Pro', 'mailchimp-for-wp' ), 'https://mc4wp.com/#utm_source=lite-plugin&utm_medium=link&show-appreciation' ); ?></a></li>
|
18 |
+
<li><a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/mailchimp-for-wp?rate=5#postform"><?php printf( __( 'Leave a %s plugin review on WordPress.org', 'mailchimp-for-wp' ), '★★★★★' ); ?></a></li>
|
19 |
+
<li><a target="_blank" href="https://twitter.com/?status=<?php echo urlencode( __( 'I am using MailChimp for WordPress by @DannyvanKooten - it is great!', 'mailchimp-for-wp' ) . ' > https://mc4wp.com/' ); ?>"><?php _e( 'Tweet about MailChimp for WordPress', 'mailchimp-for-wp' ); ?></a></li>
|
20 |
+
<li><?php printf( __( 'Review the plugin on your blog and link to <a href="%s">the plugin page</a>.', 'mailchimp-for-wp' ), 'https://mc4wp.com/#utm_source=lite-plugin&utm_medium=link&utm_campaign=show-appreciation' ); ?></li>
|
21 |
+
<li><a target="_blank" href="https://wordpress.org/plugins/mailchimp-for-wp/"><?php _e( 'Vote "works" on the WordPress.org plugin page', 'mailchimp-for-wp' ); ?></a></li>
|
22 |
</ul>
|
23 |
</div>
|
24 |
<div class="mc4wp-box">
|
25 |
+
<h4 class="mc4wp-title"><?php _e( 'About the developer', 'mailchimp-for-wp' ); ?></h4>
|
26 |
<p>A twenty-something Dutch guy writing code and emails for a living.</p>
|
27 |
+
<p>I developed <a href="https://dannyvankooten.com/wordpress-plugins/">a few WordPress plugins</a> totaling close to 2 million downloads, one of which you're using right now.</p>
|
28 |
+
<p>If you like to stay updated of what I'm doing, consider following <a href="https://twitter.com/dannyvankooten">@DannyvanKooten</a> on Twitter.</p>
|
29 |
<p>Hope you enjoy the plugin!</p>
|
30 |
+
<p>~ <a href="https://dannyvankooten.com/">Danny van Kooten</a></p>
|
31 |
</div>
|
languages/mailchimp-for-wp-fr_FR.po
CHANGED
@@ -1,13 +1,15 @@
|
|
1 |
# Copyright (C) 2014 Danny van Kooten
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
|
|
|
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: MailChimp for WordPress\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
8 |
"POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
|
9 |
-
"PO-Revision-Date: 2014-11-
|
10 |
-
"Last-Translator:
|
11 |
"Language-Team: French (France) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/fr_FR/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -27,7 +29,7 @@ msgstr ""
|
|
27 |
#: mailchimp-for-wordpress/includes/class-admin.php:130
|
28 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
|
29 |
msgid "Settings"
|
30 |
-
msgstr ""
|
31 |
|
32 |
#: mailchimp-for-wordpress/includes/class-admin.php:149
|
33 |
#: mailchimp-for-wordpress/includes/class-admin.php:163
|
@@ -44,7 +46,7 @@ msgstr "Réglages MailChimp"
|
|
44 |
#: mailchimp-for-wordpress/includes/class-admin.php:161
|
45 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
|
46 |
msgid "Checkboxes"
|
47 |
-
msgstr ""
|
48 |
|
49 |
#: mailchimp-for-wordpress/includes/class-admin.php:162
|
50 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
|
@@ -94,30 +96,30 @@ msgstr "Le renouvellement du cache MailChimp a échoué - veuillez ressayer plus
|
|
94 |
#: mailchimp-for-wordpress/includes/class-admin.php:395
|
95 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
|
96 |
msgid "An EMAIL field. Example: <code>%s</code>"
|
97 |
-
msgstr ""
|
98 |
|
99 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
100 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
101 |
msgid "A submit button. Example: <code>%s</code>"
|
102 |
-
msgstr ""
|
103 |
|
104 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
105 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
106 |
msgid "Sign Up"
|
107 |
-
msgstr ""
|
108 |
|
109 |
#: mailchimp-for-wordpress/includes/class-admin.php:426
|
110 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
|
111 |
msgid "A '%s' field"
|
112 |
-
msgstr ""
|
113 |
|
114 |
#: mailchimp-for-wordpress/includes/class-form-request.php:517
|
115 |
msgid "MailChimp Error:"
|
116 |
-
msgstr ""
|
117 |
|
118 |
#: mailchimp-for-wordpress/includes/class-form-request.php:568
|
119 |
msgid "Please select at least one list to subscribe to."
|
120 |
-
msgstr ""
|
121 |
|
122 |
#: mailchimp-for-wordpress/includes/class-widget.php:20
|
123 |
msgid "MailChimp Sign-Up Form"
|
@@ -146,17 +148,17 @@ msgstr "Vous pouvez éditer votre formulaire d'enregistrement dans le %sMailChim
|
|
146 |
#: mailchimp-for-wordpress/includes/functions/general.php:21
|
147 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
|
148 |
msgid "Email address"
|
149 |
-
msgstr ""
|
150 |
|
151 |
#: mailchimp-for-wordpress/includes/functions/general.php:22
|
152 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
|
153 |
msgid "Your email address"
|
154 |
-
msgstr ""
|
155 |
|
156 |
#: mailchimp-for-wordpress/includes/functions/general.php:23
|
157 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
|
158 |
msgid "Sign up"
|
159 |
-
msgstr ""
|
160 |
|
161 |
#: mailchimp-for-wordpress/includes/functions/general.php:30
|
162 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:20
|
@@ -263,7 +265,7 @@ msgstr "Non"
|
|
263 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
|
264 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
|
265 |
msgid "MailChimp for WordPress - Error"
|
266 |
-
msgstr ""
|
267 |
|
268 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
|
269 |
msgid ""
|
@@ -274,7 +276,7 @@ msgstr ""
|
|
274 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
|
275 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
|
276 |
msgid "This message is only visible to administrators for debugging purposes."
|
277 |
-
msgstr ""
|
278 |
|
279 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
|
280 |
msgid ""
|
@@ -288,11 +290,11 @@ msgstr ""
|
|
288 |
|
289 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
|
290 |
msgid "Email address:"
|
291 |
-
msgstr ""
|
292 |
|
293 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
|
294 |
msgid "Merge variables:"
|
295 |
-
msgstr ""
|
296 |
|
297 |
#. Plugin Name of the plugin/theme
|
298 |
msgid "MailChimp for WordPress"
|
@@ -301,7 +303,7 @@ msgstr "MailChimp pour WordPress"
|
|
301 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
302 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
303 |
msgid "API Settings"
|
304 |
-
msgstr ""
|
305 |
|
306 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
307 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
@@ -311,27 +313,27 @@ msgstr "CONNECTÉ"
|
|
311 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:26
|
312 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
|
313 |
msgid "NOT CONNECTED"
|
314 |
-
msgstr ""
|
315 |
|
316 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:32
|
317 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
|
318 |
msgid "API Key"
|
319 |
-
msgstr ""
|
320 |
|
321 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:34
|
322 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
|
323 |
msgid "Your MailChimp API key"
|
324 |
-
msgstr ""
|
325 |
|
326 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
327 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
328 |
msgid "Get your API key here."
|
329 |
-
msgstr ""
|
330 |
|
331 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
332 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
333 |
msgid "MailChimp Data"
|
334 |
-
msgstr ""
|
335 |
|
336 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:48
|
337 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
|
@@ -367,7 +369,7 @@ msgstr ""
|
|
367 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
368 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
369 |
msgid "MailChimp settings for checkboxes"
|
370 |
-
msgstr ""
|
371 |
|
372 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
373 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
@@ -442,23 +444,23 @@ msgstr ""
|
|
442 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
|
443 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:98
|
444 |
msgid "Pre-check the checkbox?"
|
445 |
-
msgstr ""
|
446 |
|
447 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
|
448 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:103
|
449 |
msgid "Load some default CSS?"
|
450 |
-
msgstr ""
|
451 |
|
452 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
|
453 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
|
454 |
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
455 |
-
msgstr ""
|
456 |
|
457 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
458 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
|
459 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
|
460 |
msgid "Form Settings"
|
461 |
-
msgstr ""
|
462 |
|
463 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:15
|
464 |
msgid ""
|
@@ -493,32 +495,32 @@ msgstr ""
|
|
493 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
494 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
495 |
msgid "Light Theme"
|
496 |
-
msgstr ""
|
497 |
|
498 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:32
|
499 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:27
|
500 |
msgid "Red Theme"
|
501 |
-
msgstr ""
|
502 |
|
503 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:33
|
504 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:28
|
505 |
msgid "Green Theme"
|
506 |
-
msgstr ""
|
507 |
|
508 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:34
|
509 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:29
|
510 |
msgid "Blue Theme"
|
511 |
-
msgstr ""
|
512 |
|
513 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:35
|
514 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:30
|
515 |
msgid "Dark Theme"
|
516 |
-
msgstr ""
|
517 |
|
518 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
519 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
|
520 |
msgid "Custom Color Theme"
|
521 |
-
msgstr ""
|
522 |
|
523 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:41
|
524 |
msgid ""
|
@@ -728,7 +730,7 @@ msgstr ""
|
|
728 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:291
|
729 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
|
730 |
msgid "First name of the current user"
|
731 |
-
msgstr ""
|
732 |
|
733 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:295
|
734 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
|
@@ -738,12 +740,12 @@ msgstr ""
|
|
738 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:299
|
739 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
|
740 |
msgid "Current user ID"
|
741 |
-
msgstr ""
|
742 |
|
743 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:303
|
744 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
|
745 |
msgid "Current URL"
|
746 |
-
msgstr ""
|
747 |
|
748 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
749 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:29
|
@@ -840,7 +842,7 @@ msgstr "Ce plugin n'est aucunement développé ou affilié à la marque MailChim
|
|
840 |
|
841 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
842 |
msgid "Looking for support?"
|
843 |
-
msgstr ""
|
844 |
|
845 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
846 |
msgid ""
|
@@ -864,11 +866,11 @@ msgstr ""
|
|
864 |
|
865 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
866 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
867 |
-
msgstr ""
|
868 |
|
869 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
870 |
msgid "Tweet about MailChimp for WordPress"
|
871 |
-
msgstr ""
|
872 |
|
873 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
874 |
msgid ""
|
@@ -878,7 +880,7 @@ msgstr ""
|
|
878 |
|
879 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
|
880 |
msgid "Vote \"works\" on the WordPress.org plugin page"
|
881 |
-
msgstr ""
|
882 |
|
883 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
884 |
msgid ""
|
@@ -897,35 +899,35 @@ msgstr ""
|
|
897 |
|
898 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
|
899 |
msgid "Documentation"
|
900 |
-
msgstr ""
|
901 |
|
902 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
|
903 |
msgid "Save Form"
|
904 |
-
msgstr ""
|
905 |
|
906 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
|
907 |
msgid "Update Form"
|
908 |
-
msgstr ""
|
909 |
|
910 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
|
911 |
msgid "Back to general form settings"
|
912 |
-
msgstr ""
|
913 |
|
914 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
|
915 |
msgid "Form updated."
|
916 |
-
msgstr ""
|
917 |
|
918 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
|
919 |
msgid "Form saved."
|
920 |
-
msgstr ""
|
921 |
|
922 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
|
923 |
msgid "Optional Settings"
|
924 |
-
msgstr ""
|
925 |
|
926 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
|
927 |
msgid "Form Variables"
|
928 |
-
msgstr ""
|
929 |
|
930 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
|
931 |
msgid "MailChimp & License"
|
@@ -1479,11 +1481,11 @@ msgstr ""
|
|
1479 |
|
1480 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1481 |
msgid "Create New Form"
|
1482 |
-
msgstr ""
|
1483 |
|
1484 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
|
1485 |
msgid "General form settings"
|
1486 |
-
msgstr ""
|
1487 |
|
1488 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
|
1489 |
msgid ""
|
@@ -1494,15 +1496,15 @@ msgstr ""
|
|
1494 |
|
1495 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
|
1496 |
msgid "Select Color"
|
1497 |
-
msgstr ""
|
1498 |
|
1499 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:48
|
1500 |
msgid "Save all changes"
|
1501 |
-
msgstr ""
|
1502 |
|
1503 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
|
1504 |
msgid "Default MailChimp settings"
|
1505 |
-
msgstr ""
|
1506 |
|
1507 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:51
|
1508 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
|
1 |
# Copyright (C) 2014 Danny van Kooten
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
+
# François KUSZTOS <kukus___@hotmail.com>, 2014
|
5 |
+
# fgerber <gerber.francois@gmail.com>, 2014
|
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: 2014-11-14 12:24:24+00:00\n"
|
11 |
+
"PO-Revision-Date: 2014-11-29 09:20+0000\n"
|
12 |
+
"Last-Translator: fgerber <gerber.francois@gmail.com>\n"
|
13 |
"Language-Team: French (France) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/fr_FR/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
29 |
#: mailchimp-for-wordpress/includes/class-admin.php:130
|
30 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
|
31 |
msgid "Settings"
|
32 |
+
msgstr "Paramètres"
|
33 |
|
34 |
#: mailchimp-for-wordpress/includes/class-admin.php:149
|
35 |
#: mailchimp-for-wordpress/includes/class-admin.php:163
|
46 |
#: mailchimp-for-wordpress/includes/class-admin.php:161
|
47 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
|
48 |
msgid "Checkboxes"
|
49 |
+
msgstr "Cases à cocher"
|
50 |
|
51 |
#: mailchimp-for-wordpress/includes/class-admin.php:162
|
52 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
|
96 |
#: mailchimp-for-wordpress/includes/class-admin.php:395
|
97 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
|
98 |
msgid "An EMAIL field. Example: <code>%s</code>"
|
99 |
+
msgstr "Un champ EMAIL. Exemple : <code>%s</code>"
|
100 |
|
101 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
102 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
103 |
msgid "A submit button. Example: <code>%s</code>"
|
104 |
+
msgstr "Un bouton Envoyer. Exemple : <code>%s</code>"
|
105 |
|
106 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
107 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
108 |
msgid "Sign Up"
|
109 |
+
msgstr "Abonnez-vous"
|
110 |
|
111 |
#: mailchimp-for-wordpress/includes/class-admin.php:426
|
112 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
|
113 |
msgid "A '%s' field"
|
114 |
+
msgstr "Un champ '%s'"
|
115 |
|
116 |
#: mailchimp-for-wordpress/includes/class-form-request.php:517
|
117 |
msgid "MailChimp Error:"
|
118 |
+
msgstr "Erreur de MailChimp : "
|
119 |
|
120 |
#: mailchimp-for-wordpress/includes/class-form-request.php:568
|
121 |
msgid "Please select at least one list to subscribe to."
|
122 |
+
msgstr "Merci de sélectionner au moins une liste d'abonnement."
|
123 |
|
124 |
#: mailchimp-for-wordpress/includes/class-widget.php:20
|
125 |
msgid "MailChimp Sign-Up Form"
|
148 |
#: mailchimp-for-wordpress/includes/functions/general.php:21
|
149 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
|
150 |
msgid "Email address"
|
151 |
+
msgstr "Adresse de courrier électronique"
|
152 |
|
153 |
#: mailchimp-for-wordpress/includes/functions/general.php:22
|
154 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
|
155 |
msgid "Your email address"
|
156 |
+
msgstr "Votre adresse de courrier électronique"
|
157 |
|
158 |
#: mailchimp-for-wordpress/includes/functions/general.php:23
|
159 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
|
160 |
msgid "Sign up"
|
161 |
+
msgstr "Abonnez-vous"
|
162 |
|
163 |
#: mailchimp-for-wordpress/includes/functions/general.php:30
|
164 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:20
|
265 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
|
266 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
|
267 |
msgid "MailChimp for WordPress - Error"
|
268 |
+
msgstr "MailChimp pour Wordpress - Erreur"
|
269 |
|
270 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
|
271 |
msgid ""
|
276 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
|
277 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
|
278 |
msgid "This message is only visible to administrators for debugging purposes."
|
279 |
+
msgstr "Ce message n'est visible que pour les administrateurs, à des fins de débuggage."
|
280 |
|
281 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
|
282 |
msgid ""
|
290 |
|
291 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
|
292 |
msgid "Email address:"
|
293 |
+
msgstr "Adresse email : "
|
294 |
|
295 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
|
296 |
msgid "Merge variables:"
|
297 |
+
msgstr "Fusionner les variables : "
|
298 |
|
299 |
#. Plugin Name of the plugin/theme
|
300 |
msgid "MailChimp for WordPress"
|
303 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
304 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
305 |
msgid "API Settings"
|
306 |
+
msgstr "Paramètres de l'API"
|
307 |
|
308 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
309 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
313 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:26
|
314 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
|
315 |
msgid "NOT CONNECTED"
|
316 |
+
msgstr "NON CONNECTE"
|
317 |
|
318 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:32
|
319 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
|
320 |
msgid "API Key"
|
321 |
+
msgstr "Clé API"
|
322 |
|
323 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:34
|
324 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
|
325 |
msgid "Your MailChimp API key"
|
326 |
+
msgstr "Votre clé API MailChimp"
|
327 |
|
328 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
329 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
330 |
msgid "Get your API key here."
|
331 |
+
msgstr "Récupérez votre clé API ici."
|
332 |
|
333 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
334 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
335 |
msgid "MailChimp Data"
|
336 |
+
msgstr "Données MailChimp"
|
337 |
|
338 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:48
|
339 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
|
369 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
370 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
371 |
msgid "MailChimp settings for checkboxes"
|
372 |
+
msgstr "Paramètres de Mailchimp pour les cases à cocher"
|
373 |
|
374 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
375 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
444 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
|
445 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:98
|
446 |
msgid "Pre-check the checkbox?"
|
447 |
+
msgstr "Pré-sélectionner les cases à cocher ?"
|
448 |
|
449 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
|
450 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:103
|
451 |
msgid "Load some default CSS?"
|
452 |
+
msgstr "Voulez-vous charger du code CSS par défaut ?"
|
453 |
|
454 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
|
455 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
|
456 |
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
457 |
+
msgstr "Sélectionner \"oui\" si la case à cocher apparaît à un endroit bizarre."
|
458 |
|
459 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
460 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:418
|
461 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
|
462 |
msgid "Form Settings"
|
463 |
+
msgstr "Paramètres du formulaire"
|
464 |
|
465 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:15
|
466 |
msgid ""
|
495 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
496 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
497 |
msgid "Light Theme"
|
498 |
+
msgstr "Thème léger"
|
499 |
|
500 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:32
|
501 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:27
|
502 |
msgid "Red Theme"
|
503 |
+
msgstr "Thème rouge"
|
504 |
|
505 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:33
|
506 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:28
|
507 |
msgid "Green Theme"
|
508 |
+
msgstr "Thème vert"
|
509 |
|
510 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:34
|
511 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:29
|
512 |
msgid "Blue Theme"
|
513 |
+
msgstr "Thème bleu"
|
514 |
|
515 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:35
|
516 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:30
|
517 |
msgid "Dark Theme"
|
518 |
+
msgstr "Thème sombre"
|
519 |
|
520 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
521 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
|
522 |
msgid "Custom Color Theme"
|
523 |
+
msgstr "Thème avec couleur personnalisée"
|
524 |
|
525 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:41
|
526 |
msgid ""
|
730 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:291
|
731 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
|
732 |
msgid "First name of the current user"
|
733 |
+
msgstr "Prénom de l'utilisateur actif"
|
734 |
|
735 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:295
|
736 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
|
740 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:299
|
741 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
|
742 |
msgid "Current user ID"
|
743 |
+
msgstr "Identifiant de l'utilisateur actif"
|
744 |
|
745 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:303
|
746 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
|
747 |
msgid "Current URL"
|
748 |
+
msgstr "URL active"
|
749 |
|
750 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
751 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:29
|
842 |
|
843 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
844 |
msgid "Looking for support?"
|
845 |
+
msgstr "Avez-vous besoin d'aide ?"
|
846 |
|
847 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
848 |
msgid ""
|
866 |
|
867 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
868 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
869 |
+
msgstr "J'utilise MailChimp pour WordPress par @DannyvanKooten - C'est top !"
|
870 |
|
871 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
872 |
msgid "Tweet about MailChimp for WordPress"
|
873 |
+
msgstr "Tweeter au sujet de MailChimp pour Wordpress"
|
874 |
|
875 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
876 |
msgid ""
|
880 |
|
881 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
|
882 |
msgid "Vote \"works\" on the WordPress.org plugin page"
|
883 |
+
msgstr "Donner l'évaluation \"ça fonctionne\" sur la page WordPress.org du plugin."
|
884 |
|
885 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
886 |
msgid ""
|
899 |
|
900 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
|
901 |
msgid "Documentation"
|
902 |
+
msgstr "Documentation"
|
903 |
|
904 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
|
905 |
msgid "Save Form"
|
906 |
+
msgstr "Enregistrer le formulaire"
|
907 |
|
908 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
|
909 |
msgid "Update Form"
|
910 |
+
msgstr "Mettre à jour le formulaire"
|
911 |
|
912 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
|
913 |
msgid "Back to general form settings"
|
914 |
+
msgstr "Revenir aux paramètres généraux du formulaire"
|
915 |
|
916 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
|
917 |
msgid "Form updated."
|
918 |
+
msgstr "Le formulaire a été mis à jour."
|
919 |
|
920 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
|
921 |
msgid "Form saved."
|
922 |
+
msgstr "Le formulaire a été enregistré."
|
923 |
|
924 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
|
925 |
msgid "Optional Settings"
|
926 |
+
msgstr "Paramètres optionnels"
|
927 |
|
928 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
|
929 |
msgid "Form Variables"
|
930 |
+
msgstr "Variables de formulaire."
|
931 |
|
932 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
|
933 |
msgid "MailChimp & License"
|
1481 |
|
1482 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1483 |
msgid "Create New Form"
|
1484 |
+
msgstr "Créer un nouveau formulaire"
|
1485 |
|
1486 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
|
1487 |
msgid "General form settings"
|
1488 |
+
msgstr "Paramètres généraux de formulaire"
|
1489 |
|
1490 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
|
1491 |
msgid ""
|
1496 |
|
1497 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
|
1498 |
msgid "Select Color"
|
1499 |
+
msgstr "Sélectionner la couleur"
|
1500 |
|
1501 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:48
|
1502 |
msgid "Save all changes"
|
1503 |
+
msgstr "Enregistrer tous les changements"
|
1504 |
|
1505 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
|
1506 |
msgid "Default MailChimp settings"
|
1507 |
+
msgstr "Paramètres par défaut de MailChimp"
|
1508 |
|
1509 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:51
|
1510 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
|
languages/mailchimp-for-wp-hu_HU.po
CHANGED
@@ -7,8 +7,8 @@ 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: 2014-11-14 12:24:24+00:00\n"
|
10 |
-
"PO-Revision-Date: 2014-11-
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/hu_HU/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -841,60 +841,60 @@ msgstr "Ezt a bővítményt nem a MailChimp fejleszti, és nem áll vele közvet
|
|
841 |
|
842 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
843 |
msgid "Looking for support?"
|
844 |
-
msgstr ""
|
845 |
|
846 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
847 |
msgid ""
|
848 |
"Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
|
849 |
"use the <a href=\"%s\">support forums</a> on WordPress.org."
|
850 |
-
msgstr ""
|
851 |
|
852 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:11
|
853 |
msgid ""
|
854 |
"If you need priority support, please <a href=\"%s\">upgrade to the premium "
|
855 |
"version</a>."
|
856 |
-
msgstr ""
|
857 |
|
858 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
|
859 |
msgid "Show a token of your appreciation"
|
860 |
-
msgstr ""
|
861 |
|
862 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
863 |
msgid "Leave a %s plugin review on WordPress.org"
|
864 |
-
msgstr ""
|
865 |
|
866 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
867 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
868 |
-
msgstr ""
|
869 |
|
870 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
871 |
msgid "Tweet about MailChimp for WordPress"
|
872 |
-
msgstr ""
|
873 |
|
874 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
875 |
msgid ""
|
876 |
"Review the plugin on your blog and link to <a href=\"%s\">the plugin "
|
877 |
"page</a>"
|
878 |
-
msgstr ""
|
879 |
|
880 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
|
881 |
msgid "Vote \"works\" on the WordPress.org plugin page"
|
882 |
-
msgstr ""
|
883 |
|
884 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
885 |
msgid ""
|
886 |
"This plugin has an even better premium version, I am sure you will love it."
|
887 |
-
msgstr ""
|
888 |
|
889 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
|
890 |
msgid ""
|
891 |
"Pro features include better and multiple forms, advanced and easy form "
|
892 |
"styling, more default themes, detailed statistics and priority support."
|
893 |
-
msgstr ""
|
894 |
|
895 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:13
|
896 |
msgid "More information about MailChimp for WP Pro"
|
897 |
-
msgstr ""
|
898 |
|
899 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
|
900 |
msgid "Documentation"
|
@@ -1383,7 +1383,7 @@ msgstr "Űrlap használat"
|
|
1383 |
msgid ""
|
1384 |
"Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
|
1385 |
"forms."
|
1386 |
-
msgstr ""
|
1387 |
|
1388 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
1389 |
msgid "WooCommerce checkbox position"
|
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: 2014-11-14 12:24:24+00:00\n"
|
10 |
+
"PO-Revision-Date: 2014-11-24 09:53+0000\n"
|
11 |
+
"Last-Translator: Németh Balázs <nb0000@gmail.com>\n"
|
12 |
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/hu_HU/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
841 |
|
842 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
843 |
msgid "Looking for support?"
|
844 |
+
msgstr "Támogatást keres?"
|
845 |
|
846 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
847 |
msgid ""
|
848 |
"Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
|
849 |
"use the <a href=\"%s\">support forums</a> on WordPress.org."
|
850 |
+
msgstr "Nézze meg a <a href=\"%s\">Gyakran Ismételt Kérdések</a>et vagy használja a <a href=\"%s\">támogatói fórumok</a>at a WordPress.org weboldalon."
|
851 |
|
852 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:11
|
853 |
msgid ""
|
854 |
"If you need priority support, please <a href=\"%s\">upgrade to the premium "
|
855 |
"version</a>."
|
856 |
+
msgstr "Ha elsőbbségi támogatásra van szüksége, akkor <a href=\"%s\">frissítsen a prémium verzióra</a>!"
|
857 |
|
858 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
|
859 |
msgid "Show a token of your appreciation"
|
860 |
+
msgstr "Adja jelét a megbecsülésének"
|
861 |
|
862 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
863 |
msgid "Leave a %s plugin review on WordPress.org"
|
864 |
+
msgstr "Értékelje a bővítményt %s a WordPress.org oldalon!"
|
865 |
|
866 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
867 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
868 |
+
msgstr "Én is használom @DannyvanKooten bővítményét: MailChimp for WordPress - és nagyszerű!"
|
869 |
|
870 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
871 |
msgid "Tweet about MailChimp for WordPress"
|
872 |
+
msgstr "Csiriplejen MailChimp for WordPress bővítményről!"
|
873 |
|
874 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
875 |
msgid ""
|
876 |
"Review the plugin on your blog and link to <a href=\"%s\">the plugin "
|
877 |
"page</a>"
|
878 |
+
msgstr "Értékelje a bővítményt a blogján és linkeljen a <a href=\"%s\">the bővítmény oldalára</a>!"
|
879 |
|
880 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
|
881 |
msgid "Vote \"works\" on the WordPress.org plugin page"
|
882 |
+
msgstr "Írja meg, hogy „működik” a WordPress.org bővítmény oldalán!"
|
883 |
|
884 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
885 |
msgid ""
|
886 |
"This plugin has an even better premium version, I am sure you will love it."
|
887 |
+
msgstr "A bővítménynek van egy még jobb, prémium verziója. Biztosan szeretni fogja."
|
888 |
|
889 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
|
890 |
msgid ""
|
891 |
"Pro features include better and multiple forms, advanced and easy form "
|
892 |
"styling, more default themes, detailed statistics and priority support."
|
893 |
+
msgstr "A Pro verzióban lehet több és jobb űrlapja, van benne haladó és egyszerű űrlap stílus kezelés, több alap sablon, részletes statisztika, stb."
|
894 |
|
895 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:13
|
896 |
msgid "More information about MailChimp for WP Pro"
|
897 |
+
msgstr "További információk a MailChimp for WP Pro-ról"
|
898 |
|
899 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
|
900 |
msgid "Documentation"
|
1383 |
msgid ""
|
1384 |
"Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
|
1385 |
"forms."
|
1386 |
+
msgstr "Használja ezt: %s a Contact Form 7 kódot, a feliratkozás jelölőnégyzet CF7 űrlapokba való berakásához."
|
1387 |
|
1388 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
1389 |
msgid "WooCommerce checkbox position"
|
languages/mailchimp-for-wp-it_IT.po
CHANGED
@@ -2,13 +2,14 @@
|
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
# Adriano <adrygese@gmail.com>, 2014
|
|
|
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: 2014-11-14 12:24:24+00:00\n"
|
10 |
-
"PO-Revision-Date: 2014-11-
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/it_IT/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -841,31 +842,31 @@ msgstr "Questo plugin non è sviluppato da o affiliato con MailChimp in alcun mo
|
|
841 |
|
842 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
843 |
msgid "Looking for support?"
|
844 |
-
msgstr ""
|
845 |
|
846 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
847 |
msgid ""
|
848 |
"Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
|
849 |
"use the <a href=\"%s\">support forums</a> on WordPress.org."
|
850 |
-
msgstr ""
|
851 |
|
852 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:11
|
853 |
msgid ""
|
854 |
"If you need priority support, please <a href=\"%s\">upgrade to the premium "
|
855 |
"version</a>."
|
856 |
-
msgstr ""
|
857 |
|
858 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
|
859 |
msgid "Show a token of your appreciation"
|
860 |
-
msgstr ""
|
861 |
|
862 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
863 |
msgid "Leave a %s plugin review on WordPress.org"
|
864 |
-
msgstr ""
|
865 |
|
866 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
867 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
868 |
-
msgstr ""
|
869 |
|
870 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
871 |
msgid "Tweet about MailChimp for WordPress"
|
@@ -884,7 +885,7 @@ msgstr ""
|
|
884 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
885 |
msgid ""
|
886 |
"This plugin has an even better premium version, I am sure you will love it."
|
887 |
-
msgstr ""
|
888 |
|
889 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
|
890 |
msgid ""
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
# Adriano <adrygese@gmail.com>, 2014
|
5 |
+
# Dan <d.murtas@gmail.com>, 2014
|
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: 2014-11-14 12:24:24+00:00\n"
|
11 |
+
"PO-Revision-Date: 2014-11-28 21:13+0000\n"
|
12 |
+
"Last-Translator: Dan <d.murtas@gmail.com>\n"
|
13 |
"Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/it_IT/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
842 |
|
843 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
844 |
msgid "Looking for support?"
|
845 |
+
msgstr "Hai bisogno di assistenza?"
|
846 |
|
847 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
848 |
msgid ""
|
849 |
"Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
|
850 |
"use the <a href=\"%s\">support forums</a> on WordPress.org."
|
851 |
+
msgstr "Assicurati di dare un occhio alla sezione sulle <a href=\"%s\">FAQ (domande frequenti) </a> oppure usa il <a href=\"%s\"> supporto del forum </a> su WordPress.org."
|
852 |
|
853 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:11
|
854 |
msgid ""
|
855 |
"If you need priority support, please <a href=\"%s\">upgrade to the premium "
|
856 |
"version</a>."
|
857 |
+
msgstr "Se necessiti di un supporto prioritario, fai <a href=\"%s\">l'aggiornamento alla versione premium</a>."
|
858 |
|
859 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
|
860 |
msgid "Show a token of your appreciation"
|
861 |
+
msgstr "Dimostra il tuo apprezzamento"
|
862 |
|
863 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
864 |
msgid "Leave a %s plugin review on WordPress.org"
|
865 |
+
msgstr "Lascia una recensione del plugin %s su WordPress.org"
|
866 |
|
867 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
868 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
869 |
+
msgstr "Sto usando MailChimp per WordPress di @DannyvanKooten - E' fantastico!"
|
870 |
|
871 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
872 |
msgid "Tweet about MailChimp for WordPress"
|
885 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
886 |
msgid ""
|
887 |
"This plugin has an even better premium version, I am sure you will love it."
|
888 |
+
msgstr "Esiste anche una versione premium di questo plugin. Sono sicuro che ti piacerà."
|
889 |
|
890 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
|
891 |
msgid ""
|
languages/mailchimp-for-wp-nl_NL.po
CHANGED
@@ -7,7 +7,7 @@ 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: 2014-11-14 12:24:24+00:00\n"
|
10 |
-
"PO-Revision-Date: 2014-11-
|
11 |
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
12 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/nl_NL/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -841,60 +841,60 @@ msgstr "Deze plugin is niet ontwikkeld of verbonden met MailChimp op welke manie
|
|
841 |
|
842 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
843 |
msgid "Looking for support?"
|
844 |
-
msgstr ""
|
845 |
|
846 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
847 |
msgid ""
|
848 |
"Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
|
849 |
"use the <a href=\"%s\">support forums</a> on WordPress.org."
|
850 |
-
msgstr ""
|
851 |
|
852 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:11
|
853 |
msgid ""
|
854 |
"If you need priority support, please <a href=\"%s\">upgrade to the premium "
|
855 |
"version</a>."
|
856 |
-
msgstr ""
|
857 |
|
858 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
|
859 |
msgid "Show a token of your appreciation"
|
860 |
-
msgstr ""
|
861 |
|
862 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
863 |
msgid "Leave a %s plugin review on WordPress.org"
|
864 |
-
msgstr ""
|
865 |
|
866 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
867 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
868 |
-
msgstr ""
|
869 |
|
870 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
871 |
msgid "Tweet about MailChimp for WordPress"
|
872 |
-
msgstr ""
|
873 |
|
874 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
875 |
msgid ""
|
876 |
"Review the plugin on your blog and link to <a href=\"%s\">the plugin "
|
877 |
"page</a>"
|
878 |
-
msgstr ""
|
879 |
|
880 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
|
881 |
msgid "Vote \"works\" on the WordPress.org plugin page"
|
882 |
-
msgstr ""
|
883 |
|
884 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
885 |
msgid ""
|
886 |
"This plugin has an even better premium version, I am sure you will love it."
|
887 |
-
msgstr ""
|
888 |
|
889 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
|
890 |
msgid ""
|
891 |
"Pro features include better and multiple forms, advanced and easy form "
|
892 |
"styling, more default themes, detailed statistics and priority support."
|
893 |
-
msgstr ""
|
894 |
|
895 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:13
|
896 |
msgid "More information about MailChimp for WP Pro"
|
897 |
-
msgstr ""
|
898 |
|
899 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
|
900 |
msgid "Documentation"
|
@@ -1383,7 +1383,7 @@ msgstr "Formulier gebruik"
|
|
1383 |
msgid ""
|
1384 |
"Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
|
1385 |
"forms."
|
1386 |
-
msgstr ""
|
1387 |
|
1388 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
1389 |
msgid "WooCommerce checkbox position"
|
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: 2014-11-14 12:24:24+00:00\n"
|
10 |
+
"PO-Revision-Date: 2014-11-27 09:59+0000\n"
|
11 |
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
12 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/nl_NL/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
841 |
|
842 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
843 |
msgid "Looking for support?"
|
844 |
+
msgstr "Support nodig?"
|
845 |
|
846 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
|
847 |
msgid ""
|
848 |
"Make sure to look at the <a href=\"%s\">frequently asked questions</a> or "
|
849 |
"use the <a href=\"%s\">support forums</a> on WordPress.org."
|
850 |
+
msgstr "Bekijk de <a href=\"%s\">veelgestelde vragen</a> of gebruik de <a href=\"%s\">support fora</a> op WordPress.org."
|
851 |
|
852 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:11
|
853 |
msgid ""
|
854 |
"If you need priority support, please <a href=\"%s\">upgrade to the premium "
|
855 |
"version</a>."
|
856 |
+
msgstr "Als je support met prioriteit nodig hebt, <a href=\"%s\">upgrade dan naar de premium versie</a>."
|
857 |
|
858 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:15
|
859 |
msgid "Show a token of your appreciation"
|
860 |
+
msgstr "Toon een blijk van waardering"
|
861 |
|
862 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
863 |
msgid "Leave a %s plugin review on WordPress.org"
|
864 |
+
msgstr "Laat een %s plugin review achter op WordPress.org"
|
865 |
|
866 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
867 |
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
868 |
+
msgstr "Ik gebruik de MailChimp for WordPress plugin door @DannyvanKooten - het is geweldig!"
|
869 |
|
870 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
871 |
msgid "Tweet about MailChimp for WordPress"
|
872 |
+
msgstr "Tweet over MailChimp for WordPress"
|
873 |
|
874 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
875 |
msgid ""
|
876 |
"Review the plugin on your blog and link to <a href=\"%s\">the plugin "
|
877 |
"page</a>"
|
878 |
+
msgstr "Review de plugin op je website en link naar de <a href=\"%s\">plugin pagina</a>."
|
879 |
|
880 |
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
|
881 |
msgid "Vote \"works\" on the WordPress.org plugin page"
|
882 |
+
msgstr "Zeg \"works\" op de WordPress.org plugin pagina"
|
883 |
|
884 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
885 |
msgid ""
|
886 |
"This plugin has an even better premium version, I am sure you will love it."
|
887 |
+
msgstr "De plugin heeft een nóg betere premium versie, ik weet zeker dat je die gaat waarderen."
|
888 |
|
889 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:12
|
890 |
msgid ""
|
891 |
"Pro features include better and multiple forms, advanced and easy form "
|
892 |
"styling, more default themes, detailed statistics and priority support."
|
893 |
+
msgstr "Pro functionaliteiten zijn o.a. betere en meerdere formulieren, geavanceerde en makkelijke formulier stijlen, meer standaard thema's, gedetailleerde statistieken en support met prioriteit."
|
894 |
|
895 |
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:13
|
896 |
msgid "More information about MailChimp for WP Pro"
|
897 |
+
msgstr "Meer informatie over MailChimp for WordPress Pro"
|
898 |
|
899 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:191
|
900 |
msgid "Documentation"
|
1383 |
msgid ""
|
1384 |
"Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
|
1385 |
"forms."
|
1386 |
+
msgstr "Gebruik %s in je Contact Form 7 opmaak om een sign-up checkbox toe te voegen aan je CF7 formulieren."
|
1387 |
|
1388 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
1389 |
msgid "WooCommerce checkbox position"
|
languages/mailchimp-for-wp-no_NO.po
CHANGED
@@ -1,13 +1,14 @@
|
|
1 |
# Copyright (C) 2014 Danny van Kooten
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
|
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: MailChimp for WordPress\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
8 |
"POT-Creation-Date: 2014-11-14 12:24:24+00:00\n"
|
9 |
-
"PO-Revision-Date: 2014-
|
10 |
-
"Last-Translator:
|
11 |
"Language-Team: Norwegian (Norway) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/no_NO/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -27,51 +28,51 @@ msgstr ""
|
|
27 |
#: mailchimp-for-wordpress/includes/class-admin.php:130
|
28 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
|
29 |
msgid "Settings"
|
30 |
-
msgstr ""
|
31 |
|
32 |
#: mailchimp-for-wordpress/includes/class-admin.php:149
|
33 |
#: mailchimp-for-wordpress/includes/class-admin.php:163
|
34 |
msgid "Upgrade to Pro"
|
35 |
-
msgstr ""
|
36 |
|
37 |
#: mailchimp-for-wordpress/includes/class-admin.php:160
|
38 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:12
|
39 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:106
|
40 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
|
41 |
msgid "MailChimp Settings"
|
42 |
-
msgstr ""
|
43 |
|
44 |
#: mailchimp-for-wordpress/includes/class-admin.php:161
|
45 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
|
46 |
msgid "Checkboxes"
|
47 |
-
msgstr ""
|
48 |
|
49 |
#: mailchimp-for-wordpress/includes/class-admin.php:162
|
50 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
|
51 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
|
52 |
msgid "Forms"
|
53 |
-
msgstr ""
|
54 |
|
55 |
#: mailchimp-for-wordpress/includes/class-admin.php:310
|
56 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
|
57 |
msgid "Comment form"
|
58 |
-
msgstr ""
|
59 |
|
60 |
#: mailchimp-for-wordpress/includes/class-admin.php:311
|
61 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
|
62 |
msgid "Registration form"
|
63 |
-
msgstr ""
|
64 |
|
65 |
#: mailchimp-for-wordpress/includes/class-admin.php:315
|
66 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
67 |
msgid "MultiSite forms"
|
68 |
-
msgstr ""
|
69 |
|
70 |
#: mailchimp-for-wordpress/includes/class-admin.php:319
|
71 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
|
72 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
|
73 |
msgid "BuddyPress registration"
|
74 |
-
msgstr ""
|
75 |
|
76 |
#: mailchimp-for-wordpress/includes/class-admin.php:327
|
77 |
#: mailchimp-for-wordpress/includes/class-admin.php:331
|
@@ -79,120 +80,120 @@ msgstr ""
|
|
79 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
80 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
81 |
msgid "(PRO ONLY)"
|
82 |
-
msgstr ""
|
83 |
|
84 |
#: mailchimp-for-wordpress/includes/class-admin.php:360
|
85 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
|
86 |
msgid "Renewed MailChimp cache."
|
87 |
-
msgstr ""
|
88 |
|
89 |
#: mailchimp-for-wordpress/includes/class-admin.php:362
|
90 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
|
91 |
msgid "Failed to renew MailChimp cache - please try again later."
|
92 |
-
msgstr ""
|
93 |
|
94 |
#: mailchimp-for-wordpress/includes/class-admin.php:395
|
95 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
|
96 |
msgid "An EMAIL field. Example: <code>%s</code>"
|
97 |
-
msgstr ""
|
98 |
|
99 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
100 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
101 |
msgid "A submit button. Example: <code>%s</code>"
|
102 |
-
msgstr ""
|
103 |
|
104 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
105 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
106 |
msgid "Sign Up"
|
107 |
-
msgstr ""
|
108 |
|
109 |
#: mailchimp-for-wordpress/includes/class-admin.php:426
|
110 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
|
111 |
msgid "A '%s' field"
|
112 |
-
msgstr ""
|
113 |
|
114 |
#: mailchimp-for-wordpress/includes/class-form-request.php:517
|
115 |
msgid "MailChimp Error:"
|
116 |
-
msgstr ""
|
117 |
|
118 |
#: mailchimp-for-wordpress/includes/class-form-request.php:568
|
119 |
msgid "Please select at least one list to subscribe to."
|
120 |
-
msgstr ""
|
121 |
|
122 |
#: mailchimp-for-wordpress/includes/class-widget.php:20
|
123 |
msgid "MailChimp Sign-Up Form"
|
124 |
-
msgstr ""
|
125 |
|
126 |
#: mailchimp-for-wordpress/includes/class-widget.php:21
|
127 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
128 |
-
msgstr ""
|
129 |
|
130 |
#: mailchimp-for-wordpress/includes/class-widget.php:62
|
131 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:69
|
132 |
msgid "Newsletter"
|
133 |
-
msgstr ""
|
134 |
|
135 |
#: mailchimp-for-wordpress/includes/class-widget.php:65
|
136 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:80
|
137 |
msgid "Title:"
|
138 |
-
msgstr ""
|
139 |
|
140 |
#: mailchimp-for-wordpress/includes/class-widget.php:69
|
141 |
msgid ""
|
142 |
"You can edit your sign-up form in the %sMailChimp for WordPress form "
|
143 |
"settings%s."
|
144 |
-
msgstr ""
|
145 |
|
146 |
#: mailchimp-for-wordpress/includes/functions/general.php:21
|
147 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
|
148 |
msgid "Email address"
|
149 |
-
msgstr ""
|
150 |
|
151 |
#: mailchimp-for-wordpress/includes/functions/general.php:22
|
152 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
|
153 |
msgid "Your email address"
|
154 |
-
msgstr ""
|
155 |
|
156 |
#: mailchimp-for-wordpress/includes/functions/general.php:23
|
157 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
|
158 |
msgid "Sign up"
|
159 |
-
msgstr ""
|
160 |
|
161 |
#: mailchimp-for-wordpress/includes/functions/general.php:30
|
162 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:20
|
163 |
msgid "Sign me up for the newsletter!"
|
164 |
-
msgstr ""
|
165 |
|
166 |
#: mailchimp-for-wordpress/includes/functions/general.php:44
|
167 |
msgid ""
|
168 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
169 |
"inbox."
|
170 |
-
msgstr ""
|
171 |
|
172 |
#: mailchimp-for-wordpress/includes/functions/general.php:45
|
173 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:44
|
174 |
msgid "Oops. Something went wrong. Please try again later."
|
175 |
-
msgstr ""
|
176 |
|
177 |
#: mailchimp-for-wordpress/includes/functions/general.php:46
|
178 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:45
|
179 |
msgid "Please provide a valid email address."
|
180 |
-
msgstr ""
|
181 |
|
182 |
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
183 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:46
|
184 |
msgid "Given email address is already subscribed, thank you!"
|
185 |
-
msgstr ""
|
186 |
|
187 |
#: mailchimp-for-wordpress/includes/functions/general.php:48
|
188 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:47
|
189 |
msgid "Please complete the CAPTCHA."
|
190 |
-
msgstr ""
|
191 |
|
192 |
#: mailchimp-for-wordpress/includes/functions/general.php:49
|
193 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:48
|
194 |
msgid "Please fill in the required fields."
|
195 |
-
msgstr ""
|
196 |
|
197 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:44
|
198 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
@@ -223,7 +224,7 @@ msgstr ""
|
|
223 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:115
|
224 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:123
|
225 |
msgid "Yes"
|
226 |
-
msgstr ""
|
227 |
|
228 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:44
|
229 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:56
|
@@ -256,82 +257,82 @@ msgstr ""
|
|
256 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:116
|
257 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:124
|
258 |
msgid "No"
|
259 |
-
msgstr ""
|
260 |
|
261 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
|
262 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
|
263 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
|
264 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
|
265 |
msgid "MailChimp for WordPress - Error"
|
266 |
-
msgstr ""
|
267 |
|
268 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
|
269 |
msgid ""
|
270 |
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
271 |
"settings</a>."
|
272 |
-
msgstr ""
|
273 |
|
274 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
|
275 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
|
276 |
msgid "This message is only visible to administrators for debugging purposes."
|
277 |
-
msgstr ""
|
278 |
|
279 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
|
280 |
msgid ""
|
281 |
"The MailChimp server returned the following error message as a response to "
|
282 |
"our sign-up request:"
|
283 |
-
msgstr ""
|
284 |
|
285 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
|
286 |
msgid "This is the data that was sent to MailChimp:"
|
287 |
-
msgstr ""
|
288 |
|
289 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
|
290 |
msgid "Email address:"
|
291 |
-
msgstr ""
|
292 |
|
293 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
|
294 |
msgid "Merge variables:"
|
295 |
-
msgstr ""
|
296 |
|
297 |
#. Plugin Name of the plugin/theme
|
298 |
msgid "MailChimp for WordPress"
|
299 |
-
msgstr ""
|
300 |
|
301 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
302 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
303 |
msgid "API Settings"
|
304 |
-
msgstr ""
|
305 |
|
306 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
307 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
308 |
msgid "CONNECTED"
|
309 |
-
msgstr ""
|
310 |
|
311 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:26
|
312 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
|
313 |
msgid "NOT CONNECTED"
|
314 |
-
msgstr ""
|
315 |
|
316 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:32
|
317 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
|
318 |
msgid "API Key"
|
319 |
-
msgstr ""
|
320 |
|
321 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:34
|
322 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
|
323 |
msgid "Your MailChimp API key"
|
324 |
-
msgstr ""
|
325 |
|
326 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
327 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
328 |
msgid "Get your API key here."
|
329 |
-
msgstr ""
|
330 |
|
331 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
332 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
333 |
msgid "MailChimp Data"
|
334 |
-
msgstr ""
|
335 |
|
336 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:48
|
337 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
|
@@ -339,47 +340,47 @@ msgid ""
|
|
339 |
"The table below shows your MailChimp lists data. If you applied changes to "
|
340 |
"your MailChimp lists, please use the following button to renew your cached "
|
341 |
"data."
|
342 |
-
msgstr ""
|
343 |
|
344 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
345 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
346 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
|
347 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
|
348 |
msgid "Renew MailChimp lists"
|
349 |
-
msgstr ""
|
350 |
|
351 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
352 |
msgid "No lists were found in your MailChimp account"
|
353 |
-
msgstr ""
|
354 |
|
355 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
356 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
357 |
msgid "Checkbox Settings"
|
358 |
-
msgstr ""
|
359 |
|
360 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
|
361 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
|
362 |
msgid ""
|
363 |
"To use sign-up checkboxes, select at least one list and one form to add the "
|
364 |
"checkbox to."
|
365 |
-
msgstr ""
|
366 |
|
367 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
368 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
369 |
msgid "MailChimp settings for checkboxes"
|
370 |
-
msgstr ""
|
371 |
|
372 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
373 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
374 |
msgid ""
|
375 |
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
376 |
" subscribe people to."
|
377 |
-
msgstr ""
|
378 |
|
379 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
380 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
381 |
msgid "MailChimp Lists"
|
382 |
-
msgstr ""
|
383 |
|
384 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
|
385 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:48
|
1 |
# Copyright (C) 2014 Danny van Kooten
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
+
# Linus Alsing <linusoskar@outlook.com>, 2014
|
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: 2014-11-14 12:24:24+00:00\n"
|
10 |
+
"PO-Revision-Date: 2014-12-01 14:55+0000\n"
|
11 |
+
"Last-Translator: Linus Alsing <linusoskar@outlook.com>\n"
|
12 |
"Language-Team: Norwegian (Norway) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/no_NO/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
28 |
#: mailchimp-for-wordpress/includes/class-admin.php:130
|
29 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:172
|
30 |
msgid "Settings"
|
31 |
+
msgstr "Innstillinger"
|
32 |
|
33 |
#: mailchimp-for-wordpress/includes/class-admin.php:149
|
34 |
#: mailchimp-for-wordpress/includes/class-admin.php:163
|
35 |
msgid "Upgrade to Pro"
|
36 |
+
msgstr "Oppgrader til Pro"
|
37 |
|
38 |
#: mailchimp-for-wordpress/includes/class-admin.php:160
|
39 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:12
|
40 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:106
|
41 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
|
42 |
msgid "MailChimp Settings"
|
43 |
+
msgstr "MailChimp innstillinger"
|
44 |
|
45 |
#: mailchimp-for-wordpress/includes/class-admin.php:161
|
46 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
|
47 |
msgid "Checkboxes"
|
48 |
+
msgstr "Avkrysningsbokser"
|
49 |
|
50 |
#: mailchimp-for-wordpress/includes/class-admin.php:162
|
51 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
|
52 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
|
53 |
msgid "Forms"
|
54 |
+
msgstr "Skjemaer"
|
55 |
|
56 |
#: mailchimp-for-wordpress/includes/class-admin.php:310
|
57 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:658
|
58 |
msgid "Comment form"
|
59 |
+
msgstr "Kommentar skjema"
|
60 |
|
61 |
#: mailchimp-for-wordpress/includes/class-admin.php:311
|
62 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
|
63 |
msgid "Registration form"
|
64 |
+
msgstr "Påmeldingsskjema"
|
65 |
|
66 |
#: mailchimp-for-wordpress/includes/class-admin.php:315
|
67 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
68 |
msgid "MultiSite forms"
|
69 |
+
msgstr "Multi-Site skjemaer"
|
70 |
|
71 |
#: mailchimp-for-wordpress/includes/class-admin.php:319
|
72 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
|
73 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
|
74 |
msgid "BuddyPress registration"
|
75 |
+
msgstr "BuddyPress registrering"
|
76 |
|
77 |
#: mailchimp-for-wordpress/includes/class-admin.php:327
|
78 |
#: mailchimp-for-wordpress/includes/class-admin.php:331
|
80 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
81 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
82 |
msgid "(PRO ONLY)"
|
83 |
+
msgstr "(KUN PRO)"
|
84 |
|
85 |
#: mailchimp-for-wordpress/includes/class-admin.php:360
|
86 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
|
87 |
msgid "Renewed MailChimp cache."
|
88 |
+
msgstr "Fornyet MailChimp cache"
|
89 |
|
90 |
#: mailchimp-for-wordpress/includes/class-admin.php:362
|
91 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
|
92 |
msgid "Failed to renew MailChimp cache - please try again later."
|
93 |
+
msgstr "Klarte ikke å fornye MailChimp cache - vennligst prøv igjen senere."
|
94 |
|
95 |
#: mailchimp-for-wordpress/includes/class-admin.php:395
|
96 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
|
97 |
msgid "An EMAIL field. Example: <code>%s</code>"
|
98 |
+
msgstr "Et E-POST felt"
|
99 |
|
100 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
101 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
102 |
msgid "A submit button. Example: <code>%s</code>"
|
103 |
+
msgstr "En send knapp"
|
104 |
|
105 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
106 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
107 |
msgid "Sign Up"
|
108 |
+
msgstr "Meld på"
|
109 |
|
110 |
#: mailchimp-for-wordpress/includes/class-admin.php:426
|
111 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:334
|
112 |
msgid "A '%s' field"
|
113 |
+
msgstr "Et '%s' felt"
|
114 |
|
115 |
#: mailchimp-for-wordpress/includes/class-form-request.php:517
|
116 |
msgid "MailChimp Error:"
|
117 |
+
msgstr "MailChimp Feil:"
|
118 |
|
119 |
#: mailchimp-for-wordpress/includes/class-form-request.php:568
|
120 |
msgid "Please select at least one list to subscribe to."
|
121 |
+
msgstr "Velg minst én liste å abonnere på."
|
122 |
|
123 |
#: mailchimp-for-wordpress/includes/class-widget.php:20
|
124 |
msgid "MailChimp Sign-Up Form"
|
125 |
+
msgstr "MailChimp Påmeldingsskjema"
|
126 |
|
127 |
#: mailchimp-for-wordpress/includes/class-widget.php:21
|
128 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
129 |
+
msgstr "Viser ditt MailChimp WorPress påmeldingsskjema"
|
130 |
|
131 |
#: mailchimp-for-wordpress/includes/class-widget.php:62
|
132 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:69
|
133 |
msgid "Newsletter"
|
134 |
+
msgstr "Nyhetsbrev"
|
135 |
|
136 |
#: mailchimp-for-wordpress/includes/class-widget.php:65
|
137 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:80
|
138 |
msgid "Title:"
|
139 |
+
msgstr "Titel:"
|
140 |
|
141 |
#: mailchimp-for-wordpress/includes/class-widget.php:69
|
142 |
msgid ""
|
143 |
"You can edit your sign-up form in the %sMailChimp for WordPress form "
|
144 |
"settings%s."
|
145 |
+
msgstr "Du kan redigere ditt påmeldingsskjema i %s MailChimp for WordPress skjema instillinger %s."
|
146 |
|
147 |
#: mailchimp-for-wordpress/includes/functions/general.php:21
|
148 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
|
149 |
msgid "Email address"
|
150 |
+
msgstr "E-post adresse"
|
151 |
|
152 |
#: mailchimp-for-wordpress/includes/functions/general.php:22
|
153 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
|
154 |
msgid "Your email address"
|
155 |
+
msgstr "Din e-post adresse"
|
156 |
|
157 |
#: mailchimp-for-wordpress/includes/functions/general.php:23
|
158 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
|
159 |
msgid "Sign up"
|
160 |
+
msgstr "Registrer"
|
161 |
|
162 |
#: mailchimp-for-wordpress/includes/functions/general.php:30
|
163 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:20
|
164 |
msgid "Sign me up for the newsletter!"
|
165 |
+
msgstr "Meld meg på nyhetsbrevet!"
|
166 |
|
167 |
#: mailchimp-for-wordpress/includes/functions/general.php:44
|
168 |
msgid ""
|
169 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
170 |
"inbox."
|
171 |
+
msgstr "Takk, din registrering er vellykket! Vennligst sjekk e-posten din."
|
172 |
|
173 |
#: mailchimp-for-wordpress/includes/functions/general.php:45
|
174 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:44
|
175 |
msgid "Oops. Something went wrong. Please try again later."
|
176 |
+
msgstr "Oops. Noe gikk galt. Vennligst prøv på nytt senere."
|
177 |
|
178 |
#: mailchimp-for-wordpress/includes/functions/general.php:46
|
179 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:45
|
180 |
msgid "Please provide a valid email address."
|
181 |
+
msgstr "Vennligst oppgi en gyldig e-post adresse."
|
182 |
|
183 |
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
184 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:46
|
185 |
msgid "Given email address is already subscribed, thank you!"
|
186 |
+
msgstr "Den angitte e-postadressen er allerede registrert, takk!"
|
187 |
|
188 |
#: mailchimp-for-wordpress/includes/functions/general.php:48
|
189 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:47
|
190 |
msgid "Please complete the CAPTCHA."
|
191 |
+
msgstr "Vennligst fyll ut CAPTCHA."
|
192 |
|
193 |
#: mailchimp-for-wordpress/includes/functions/general.php:49
|
194 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:48
|
195 |
msgid "Please fill in the required fields."
|
196 |
+
msgstr "Vennligst fyll ut de obligatoriske feltene."
|
197 |
|
198 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:44
|
199 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
224 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:115
|
225 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:123
|
226 |
msgid "Yes"
|
227 |
+
msgstr "Ja"
|
228 |
|
229 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:44
|
230 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:56
|
257 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:116
|
258 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:124
|
259 |
msgid "No"
|
260 |
+
msgstr "Nei"
|
261 |
|
262 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:166
|
263 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:169
|
264 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
|
265 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
|
266 |
msgid "MailChimp for WordPress - Error"
|
267 |
+
msgstr "MailChimp for WordPress - Feil"
|
268 |
|
269 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
|
270 |
msgid ""
|
271 |
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
272 |
"settings</a>."
|
273 |
+
msgstr "Vennligst velg en liste å abonnere på i <a href=\"%s\"> sjekkboks instillinger."
|
274 |
|
275 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
|
276 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
|
277 |
msgid "This message is only visible to administrators for debugging purposes."
|
278 |
+
msgstr "Denne meldingen er bare synlig for administratorer for \"debugging\" formål."
|
279 |
|
280 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
|
281 |
msgid ""
|
282 |
"The MailChimp server returned the following error message as a response to "
|
283 |
"our sign-up request:"
|
284 |
+
msgstr "MailChimp- serveren returnerte følgende feilmelding som et svar på vår \"sign-up\" forespørsel. "
|
285 |
|
286 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
|
287 |
msgid "This is the data that was sent to MailChimp:"
|
288 |
+
msgstr "Dette er den data som ble sendt til MailChimp:"
|
289 |
|
290 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
|
291 |
msgid "Email address:"
|
292 |
+
msgstr "E-post adresse:"
|
293 |
|
294 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
|
295 |
msgid "Merge variables:"
|
296 |
+
msgstr "Flett variabler:"
|
297 |
|
298 |
#. Plugin Name of the plugin/theme
|
299 |
msgid "MailChimp for WordPress"
|
300 |
+
msgstr "MailChimp for WordPress"
|
301 |
|
302 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
303 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
304 |
msgid "API Settings"
|
305 |
+
msgstr "API innstillinger"
|
306 |
|
307 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
308 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
309 |
msgid "CONNECTED"
|
310 |
+
msgstr "TILKOBLET"
|
311 |
|
312 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:26
|
313 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
|
314 |
msgid "NOT CONNECTED"
|
315 |
+
msgstr "IKKE TILKOBLET"
|
316 |
|
317 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:32
|
318 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
|
319 |
msgid "API Key"
|
320 |
+
msgstr "API Nøkkel"
|
321 |
|
322 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:34
|
323 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
|
324 |
msgid "Your MailChimp API key"
|
325 |
+
msgstr "Din MailChimp API Nøkkel"
|
326 |
|
327 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
328 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
329 |
msgid "Get your API key here."
|
330 |
+
msgstr "Få din API Nøkkel her."
|
331 |
|
332 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
333 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
334 |
msgid "MailChimp Data"
|
335 |
+
msgstr "MailChimp Data"
|
336 |
|
337 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:48
|
338 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
|
340 |
"The table below shows your MailChimp lists data. If you applied changes to "
|
341 |
"your MailChimp lists, please use the following button to renew your cached "
|
342 |
"data."
|
343 |
+
msgstr "Tabellen nedenfor viser dataene for dine MailChimp lister. Hvis du har foretatt endringer i dine MailChimp lister, vennligst bruk følgende knapp for å fornye bufrede data."
|
344 |
|
345 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
346 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
347 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
|
348 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
|
349 |
msgid "Renew MailChimp lists"
|
350 |
+
msgstr "Forny MailChimp lister"
|
351 |
|
352 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
353 |
msgid "No lists were found in your MailChimp account"
|
354 |
+
msgstr "Ingen lister funnet i din MailChimp konto"
|
355 |
|
356 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
357 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
358 |
msgid "Checkbox Settings"
|
359 |
+
msgstr "Sjekkboks Innstillinger"
|
360 |
|
361 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
|
362 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
|
363 |
msgid ""
|
364 |
"To use sign-up checkboxes, select at least one list and one form to add the "
|
365 |
"checkbox to."
|
366 |
+
msgstr "For å bruke sjekkbokser for påmelding, velg minst én liste og ett skjema for å legge til en sjekkboks."
|
367 |
|
368 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
369 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
370 |
msgid "MailChimp settings for checkboxes"
|
371 |
+
msgstr "MailChimp innstillinger for sjekkbokser"
|
372 |
|
373 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
374 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
375 |
msgid ""
|
376 |
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
377 |
" subscribe people to."
|
378 |
+
msgstr "Om du ønsker å bruke sjekkbokser for påmelding, velg minst én MailChimp liste for å registrere brukere til."
|
379 |
|
380 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
381 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
382 |
msgid "MailChimp Lists"
|
383 |
+
msgstr "MailChimp lister"
|
384 |
|
385 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
|
386 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:48
|
languages/mailchimp-for-wp-sv_SE.po
CHANGED
@@ -1,14 +1,15 @@
|
|
1 |
# Copyright (C) 2014 Danny van Kooten
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
|
|
4 |
# Joakim Bergman <joakimber@gmail.com>, 2014
|
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: 2014-11-14 12:24:24+00:00\n"
|
10 |
-
"PO-Revision-Date: 2014-11-
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/sv_SE/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -40,12 +41,12 @@ msgstr "Uppgradera till Pro"
|
|
40 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:106
|
41 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
|
42 |
msgid "MailChimp Settings"
|
43 |
-
msgstr "MailChimp
|
44 |
|
45 |
#: mailchimp-for-wordpress/includes/class-admin.php:161
|
46 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
|
47 |
msgid "Checkboxes"
|
48 |
-
msgstr "
|
49 |
|
50 |
#: mailchimp-for-wordpress/includes/class-admin.php:162
|
51 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
|
@@ -66,13 +67,13 @@ msgstr "Registreringsformulär"
|
|
66 |
#: mailchimp-for-wordpress/includes/class-admin.php:315
|
67 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
68 |
msgid "MultiSite forms"
|
69 |
-
msgstr "MultiSite
|
70 |
|
71 |
#: mailchimp-for-wordpress/includes/class-admin.php:319
|
72 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
|
73 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
|
74 |
msgid "BuddyPress registration"
|
75 |
-
msgstr "BuddyPress
|
76 |
|
77 |
#: mailchimp-for-wordpress/includes/class-admin.php:327
|
78 |
#: mailchimp-for-wordpress/includes/class-admin.php:331
|
@@ -85,22 +86,22 @@ msgstr "(ENDAST PRO)"
|
|
85 |
#: mailchimp-for-wordpress/includes/class-admin.php:360
|
86 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
|
87 |
msgid "Renewed MailChimp cache."
|
88 |
-
msgstr "Förnyad MailChimp
|
89 |
|
90 |
#: mailchimp-for-wordpress/includes/class-admin.php:362
|
91 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
|
92 |
msgid "Failed to renew MailChimp cache - please try again later."
|
93 |
-
msgstr "Misslyckades att förnya MailChimp
|
94 |
|
95 |
#: mailchimp-for-wordpress/includes/class-admin.php:395
|
96 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
|
97 |
msgid "An EMAIL field. Example: <code>%s</code>"
|
98 |
-
msgstr "Ett
|
99 |
|
100 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
101 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
102 |
msgid "A submit button. Example: <code>%s</code>"
|
103 |
-
msgstr "En
|
104 |
|
105 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
106 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
@@ -147,12 +148,12 @@ msgstr "Du kan redigera ditt registreringsformulär i %sMailChimp for WordPress
|
|
147 |
#: mailchimp-for-wordpress/includes/functions/general.php:21
|
148 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
|
149 |
msgid "Email address"
|
150 |
-
msgstr "
|
151 |
|
152 |
#: mailchimp-for-wordpress/includes/functions/general.php:22
|
153 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
|
154 |
msgid "Your email address"
|
155 |
-
msgstr "Din
|
156 |
|
157 |
#: mailchimp-for-wordpress/includes/functions/general.php:23
|
158 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
|
@@ -168,22 +169,22 @@ msgstr "Registrera mig för nyhetsbrevet!"
|
|
168 |
msgid ""
|
169 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
170 |
"inbox."
|
171 |
-
msgstr "Tack, registreringen lyckades! Var vänlig kolla din
|
172 |
|
173 |
#: mailchimp-for-wordpress/includes/functions/general.php:45
|
174 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:44
|
175 |
msgid "Oops. Something went wrong. Please try again later."
|
176 |
-
msgstr "Oops. Nånting
|
177 |
|
178 |
#: mailchimp-for-wordpress/includes/functions/general.php:46
|
179 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:45
|
180 |
msgid "Please provide a valid email address."
|
181 |
-
msgstr "Var vänlig fyll i en giltig
|
182 |
|
183 |
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
184 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:46
|
185 |
msgid "Given email address is already subscribed, thank you!"
|
186 |
-
msgstr "Den
|
187 |
|
188 |
#: mailchimp-for-wordpress/includes/functions/general.php:48
|
189 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:47
|
@@ -264,13 +265,13 @@ msgstr "Nej"
|
|
264 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
|
265 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
|
266 |
msgid "MailChimp for WordPress - Error"
|
267 |
-
msgstr "MailChimp Fel:"
|
268 |
|
269 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
|
270 |
msgid ""
|
271 |
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
272 |
"settings</a>."
|
273 |
-
msgstr "Välj en lista att prenumerera på i <a href=\"%s\">
|
274 |
|
275 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
|
276 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
|
@@ -281,15 +282,15 @@ msgstr "Detta meddelande syns bara för administratörer i felsökningssyfte."
|
|
281 |
msgid ""
|
282 |
"The MailChimp server returned the following error message as a response to "
|
283 |
"our sign-up request:"
|
284 |
-
msgstr ""
|
285 |
|
286 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
|
287 |
msgid "This is the data that was sent to MailChimp:"
|
288 |
-
msgstr ""
|
289 |
|
290 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
|
291 |
msgid "Email address:"
|
292 |
-
msgstr "
|
293 |
|
294 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
|
295 |
msgid "Merge variables:"
|
@@ -474,22 +475,22 @@ msgstr "Obligatoriska formulärinställningar"
|
|
474 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:24
|
475 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
|
476 |
msgid "Load form styles (CSS)?"
|
477 |
-
msgstr ""
|
478 |
|
479 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:28
|
480 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
|
481 |
msgid "Yes, load basic form styles"
|
482 |
-
msgstr ""
|
483 |
|
484 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
485 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
|
486 |
msgid "Yes, load my custom form styles"
|
487 |
-
msgstr ""
|
488 |
|
489 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:30
|
490 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
|
491 |
msgid "Yes, load default form theme"
|
492 |
-
msgstr ""
|
493 |
|
494 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
495 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
@@ -519,7 +520,7 @@ msgstr "Mörkt tema"
|
|
519 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
520 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
|
521 |
msgid "Custom Color Theme"
|
522 |
-
msgstr ""
|
523 |
|
524 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:41
|
525 |
msgid ""
|
@@ -530,7 +531,7 @@ msgstr ""
|
|
530 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:45
|
531 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
|
532 |
msgid "Lists this form subscribes to"
|
533 |
-
msgstr ""
|
534 |
|
535 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:63
|
536 |
msgid ""
|
@@ -559,7 +560,7 @@ msgstr ""
|
|
559 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
|
560 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
|
561 |
msgid "Send Welcome Email?"
|
562 |
-
msgstr "Skicka
|
563 |
|
564 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:130
|
565 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
|
@@ -574,7 +575,7 @@ msgstr ""
|
|
574 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
|
575 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:78
|
576 |
msgid "Update existing subscribers?"
|
577 |
-
msgstr ""
|
578 |
|
579 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:140
|
580 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:47
|
@@ -588,7 +589,7 @@ msgstr ""
|
|
588 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
|
589 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:93
|
590 |
msgid "Replace interest groups?"
|
591 |
-
msgstr ""
|
592 |
|
593 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:154
|
594 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:66
|
@@ -667,7 +668,7 @@ msgstr "Ogiltigt CAPTCHA meddelande"
|
|
667 |
|
668 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:219
|
669 |
msgid "General error message"
|
670 |
-
msgstr ""
|
671 |
|
672 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:225
|
673 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:181
|
@@ -744,12 +745,12 @@ msgstr ""
|
|
744 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:303
|
745 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
|
746 |
msgid "Current URL"
|
747 |
-
msgstr ""
|
748 |
|
749 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
750 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:29
|
751 |
msgid "Add a new field"
|
752 |
-
msgstr ""
|
753 |
|
754 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
|
755 |
msgid "Use the tool below to generate the HTML for your form fields."
|
@@ -773,7 +774,7 @@ msgstr ""
|
|
773 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:28
|
774 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:45
|
775 |
msgid "Label"
|
776 |
-
msgstr ""
|
777 |
|
778 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:28
|
779 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:33
|
@@ -782,7 +783,7 @@ msgstr ""
|
|
782 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:50
|
783 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:55
|
784 |
msgid "(optional)"
|
785 |
-
msgstr ""
|
786 |
|
787 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:33
|
788 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:50
|
@@ -902,40 +903,40 @@ msgstr ""
|
|
902 |
|
903 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
|
904 |
msgid "Save Form"
|
905 |
-
msgstr ""
|
906 |
|
907 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
|
908 |
msgid "Update Form"
|
909 |
-
msgstr ""
|
910 |
|
911 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
|
912 |
msgid "Back to general form settings"
|
913 |
-
msgstr ""
|
914 |
|
915 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
|
916 |
msgid "Form updated."
|
917 |
-
msgstr ""
|
918 |
|
919 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
|
920 |
msgid "Form saved."
|
921 |
-
msgstr ""
|
922 |
|
923 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
|
924 |
msgid "Optional Settings"
|
925 |
-
msgstr ""
|
926 |
|
927 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
|
928 |
msgid "Form Variables"
|
929 |
-
msgstr ""
|
930 |
|
931 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
|
932 |
msgid "MailChimp & License"
|
933 |
-
msgstr ""
|
934 |
|
935 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
|
936 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
|
937 |
msgid "Reports"
|
938 |
-
msgstr ""
|
939 |
|
940 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
|
941 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
|
@@ -973,7 +974,7 @@ msgstr ""
|
|
973 |
|
974 |
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:320
|
975 |
msgid "%sShow generated CSS%s"
|
976 |
-
msgstr ""
|
977 |
|
978 |
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
|
979 |
msgid ""
|
@@ -1043,7 +1044,7 @@ msgstr ""
|
|
1043 |
|
1044 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
|
1045 |
msgid "%s: License Settings"
|
1046 |
-
msgstr ""
|
1047 |
|
1048 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-plugin-license-manager.php:67
|
1049 |
msgid ""
|
@@ -1065,31 +1066,31 @@ msgstr ""
|
|
1065 |
|
1066 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:23
|
1067 |
msgid "License status"
|
1068 |
-
msgstr ""
|
1069 |
|
1070 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:26
|
1071 |
msgid "ACTIVE"
|
1072 |
-
msgstr ""
|
1073 |
|
1074 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:26
|
1075 |
msgid "you are receiving updates"
|
1076 |
-
msgstr ""
|
1077 |
|
1078 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
|
1079 |
msgid "INACTIVE"
|
1080 |
-
msgstr ""
|
1081 |
|
1082 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
|
1083 |
msgid "you are <strong>not</strong> receiving updates."
|
1084 |
-
msgstr ""
|
1085 |
|
1086 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
|
1087 |
msgid "Toggle license status"
|
1088 |
-
msgstr ""
|
1089 |
|
1090 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
|
1091 |
msgid "Deactivate License"
|
1092 |
-
msgstr ""
|
1093 |
|
1094 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
|
1095 |
msgid ""
|
@@ -1098,7 +1099,7 @@ msgstr ""
|
|
1098 |
|
1099 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
|
1100 |
msgid "Activate License"
|
1101 |
-
msgstr ""
|
1102 |
|
1103 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
|
1104 |
msgid "Please enter a license key in the field below first."
|
@@ -1106,7 +1107,7 @@ msgstr ""
|
|
1106 |
|
1107 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
|
1108 |
msgid "License Key"
|
1109 |
-
msgstr ""
|
1110 |
|
1111 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
|
1112 |
msgid "Paste your license key here, as found in the email receipt."
|
@@ -1169,7 +1170,7 @@ msgstr ""
|
|
1169 |
|
1170 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:84
|
1171 |
msgid "Form:"
|
1172 |
-
msgstr ""
|
1173 |
|
1174 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:86
|
1175 |
msgid "Select the form to show"
|
@@ -1215,7 +1216,7 @@ msgstr ""
|
|
1215 |
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:77
|
1216 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:188
|
1217 |
msgid "Delete"
|
1218 |
-
msgstr ""
|
1219 |
|
1220 |
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:98
|
1221 |
msgid "No MailChimp list(s) selected yet."
|
@@ -1235,44 +1236,44 @@ msgstr ""
|
|
1235 |
|
1236 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:53
|
1237 |
msgid "Email"
|
1238 |
-
msgstr ""
|
1239 |
|
1240 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
|
1241 |
msgid "List"
|
1242 |
-
msgstr ""
|
1243 |
|
1244 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
|
1245 |
msgid "Type"
|
1246 |
-
msgstr ""
|
1247 |
|
1248 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:56
|
1249 |
msgid "Source"
|
1250 |
-
msgstr ""
|
1251 |
|
1252 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
|
1253 |
msgid "Extra data"
|
1254 |
-
msgstr ""
|
1255 |
|
1256 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
|
1257 |
msgid "Subscribed"
|
1258 |
-
msgstr ""
|
1259 |
|
1260 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:116
|
1261 |
msgid "Log items deleted."
|
1262 |
-
msgstr ""
|
1263 |
|
1264 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
|
1265 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
|
1266 |
msgid "Comment"
|
1267 |
-
msgstr ""
|
1268 |
|
1269 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
|
1270 |
msgid "deleted"
|
1271 |
-
msgstr ""
|
1272 |
|
1273 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
|
1274 |
msgid "Registration"
|
1275 |
-
msgstr ""
|
1276 |
|
1277 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
|
1278 |
msgid "MultiSite registration"
|
@@ -1305,7 +1306,7 @@ msgstr ""
|
|
1305 |
|
1306 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
|
1307 |
msgid "All"
|
1308 |
-
msgstr ""
|
1309 |
|
1310 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
|
1311 |
msgid "Checkbox"
|
@@ -1434,7 +1435,7 @@ msgstr ""
|
|
1434 |
|
1435 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
|
1436 |
msgid "Log"
|
1437 |
-
msgstr ""
|
1438 |
|
1439 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:9
|
1440 |
msgid ""
|
@@ -1464,7 +1465,7 @@ msgstr ""
|
|
1464 |
|
1465 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:223
|
1466 |
msgid "Delete Form Styles"
|
1467 |
-
msgstr ""
|
1468 |
|
1469 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1470 |
msgid "Use to delete all styles for this form"
|
@@ -1480,11 +1481,11 @@ msgstr ""
|
|
1480 |
|
1481 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1482 |
msgid "Create New Form"
|
1483 |
-
msgstr ""
|
1484 |
|
1485 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
|
1486 |
msgid "General form settings"
|
1487 |
-
msgstr ""
|
1488 |
|
1489 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
|
1490 |
msgid ""
|
@@ -1495,11 +1496,11 @@ msgstr ""
|
|
1495 |
|
1496 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
|
1497 |
msgid "Select Color"
|
1498 |
-
msgstr ""
|
1499 |
|
1500 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:48
|
1501 |
msgid "Save all changes"
|
1502 |
-
msgstr ""
|
1503 |
|
1504 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
|
1505 |
msgid "Default MailChimp settings"
|
@@ -1518,11 +1519,11 @@ msgstr ""
|
|
1518 |
|
1519 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
|
1520 |
msgid "Default Messages"
|
1521 |
-
msgstr ""
|
1522 |
|
1523 |
#. Plugin URI of the plugin/theme
|
1524 |
msgid "https://mc4wp.com/"
|
1525 |
-
msgstr ""
|
1526 |
|
1527 |
#. Description of the plugin/theme
|
1528 |
msgid "Adds various sign-up methods to your website."
|
@@ -1530,8 +1531,8 @@ msgstr ""
|
|
1530 |
|
1531 |
#. Author of the plugin/theme
|
1532 |
msgid "Danny van Kooten"
|
1533 |
-
msgstr ""
|
1534 |
|
1535 |
#. Author URI of the plugin/theme
|
1536 |
msgid "http://dannyvankooten.com"
|
1537 |
-
msgstr ""
|
1 |
# Copyright (C) 2014 Danny van Kooten
|
2 |
# This file is distributed under the GPL v3.
|
3 |
# Translators:
|
4 |
+
# Gunnar Norin <blittan@xbmc.org>, 2014
|
5 |
# Joakim Bergman <joakimber@gmail.com>, 2014
|
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: 2014-11-14 12:24:24+00:00\n"
|
11 |
+
"PO-Revision-Date: 2014-11-20 23:16+0000\n"
|
12 |
+
"Last-Translator: Gunnar Norin <blittan@xbmc.org>\n"
|
13 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/sv_SE/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
41 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:106
|
42 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
|
43 |
msgid "MailChimp Settings"
|
44 |
+
msgstr "MailChimp-inställningar"
|
45 |
|
46 |
#: mailchimp-for-wordpress/includes/class-admin.php:161
|
47 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:559
|
48 |
msgid "Checkboxes"
|
49 |
+
msgstr "Kryssrutor"
|
50 |
|
51 |
#: mailchimp-for-wordpress/includes/class-admin.php:162
|
52 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:560
|
67 |
#: mailchimp-for-wordpress/includes/class-admin.php:315
|
68 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
69 |
msgid "MultiSite forms"
|
70 |
+
msgstr "MultiSite-formulär"
|
71 |
|
72 |
#: mailchimp-for-wordpress/includes/class-admin.php:319
|
73 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
|
74 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:233
|
75 |
msgid "BuddyPress registration"
|
76 |
+
msgstr "BuddyPress-registrering"
|
77 |
|
78 |
#: mailchimp-for-wordpress/includes/class-admin.php:327
|
79 |
#: mailchimp-for-wordpress/includes/class-admin.php:331
|
86 |
#: mailchimp-for-wordpress/includes/class-admin.php:360
|
87 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:725
|
88 |
msgid "Renewed MailChimp cache."
|
89 |
+
msgstr "Förnyad MailChimp buffert."
|
90 |
|
91 |
#: mailchimp-for-wordpress/includes/class-admin.php:362
|
92 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:727
|
93 |
msgid "Failed to renew MailChimp cache - please try again later."
|
94 |
+
msgstr "Misslyckades att förnya MailChimp bufferten - var god försök igen senare."
|
95 |
|
96 |
#: mailchimp-for-wordpress/includes/class-admin.php:395
|
97 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:300
|
98 |
msgid "An EMAIL field. Example: <code>%s</code>"
|
99 |
+
msgstr "Ett EPOST-fält. Exempel: <code>%s</code>"
|
100 |
|
101 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
102 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
103 |
msgid "A submit button. Example: <code>%s</code>"
|
104 |
+
msgstr "En skickaknapp. Exempel: <code>%s</code>"
|
105 |
|
106 |
#: mailchimp-for-wordpress/includes/class-admin.php:401
|
107 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:306
|
148 |
#: mailchimp-for-wordpress/includes/functions/general.php:21
|
149 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
|
150 |
msgid "Email address"
|
151 |
+
msgstr "E-postadress"
|
152 |
|
153 |
#: mailchimp-for-wordpress/includes/functions/general.php:22
|
154 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
|
155 |
msgid "Your email address"
|
156 |
+
msgstr "Din e-postadress"
|
157 |
|
158 |
#: mailchimp-for-wordpress/includes/functions/general.php:23
|
159 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
|
169 |
msgid ""
|
170 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
171 |
"inbox."
|
172 |
+
msgstr "Tack, registreringen lyckades! Var vänlig kolla din inkorg."
|
173 |
|
174 |
#: mailchimp-for-wordpress/includes/functions/general.php:45
|
175 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:44
|
176 |
msgid "Oops. Something went wrong. Please try again later."
|
177 |
+
msgstr "Oops. Nånting gick fel. Försök igen senare."
|
178 |
|
179 |
#: mailchimp-for-wordpress/includes/functions/general.php:46
|
180 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:45
|
181 |
msgid "Please provide a valid email address."
|
182 |
+
msgstr "Var vänlig fyll i en giltig e-postadress."
|
183 |
|
184 |
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
185 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:46
|
186 |
msgid "Given email address is already subscribed, thank you!"
|
187 |
+
msgstr "Den e-postadressen du skrev in är redan registrerad, tack!"
|
188 |
|
189 |
#: mailchimp-for-wordpress/includes/functions/general.php:48
|
190 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:47
|
265 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
|
266 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:222
|
267 |
msgid "MailChimp for WordPress - Error"
|
268 |
+
msgstr "MailChimp for WordPress - Fel:"
|
269 |
|
270 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:167
|
271 |
msgid ""
|
272 |
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
273 |
"settings</a>."
|
274 |
+
msgstr "Välj en lista att prenumerera på i <a href=\"%s\">kryssruteinställningar</a>."
|
275 |
|
276 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
|
277 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
|
282 |
msgid ""
|
283 |
"The MailChimp server returned the following error message as a response to "
|
284 |
"our sign-up request:"
|
285 |
+
msgstr "MailChimp servern returnerade följande felmeddelande som ett svar på registreringsförfrågan:"
|
286 |
|
287 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
|
288 |
msgid "This is the data that was sent to MailChimp:"
|
289 |
+
msgstr "Detta är datat som skickades till MailChimp:"
|
290 |
|
291 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
|
292 |
msgid "Email address:"
|
293 |
+
msgstr "E-postadress:"
|
294 |
|
295 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
|
296 |
msgid "Merge variables:"
|
475 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:24
|
476 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
|
477 |
msgid "Load form styles (CSS)?"
|
478 |
+
msgstr "Ladda formulärstilar (CSS)?"
|
479 |
|
480 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:28
|
481 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
|
482 |
msgid "Yes, load basic form styles"
|
483 |
+
msgstr "Ja, ladda standard formulärstilar"
|
484 |
|
485 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
486 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
|
487 |
msgid "Yes, load my custom form styles"
|
488 |
+
msgstr "Ja, ladda egna formulärstilar"
|
489 |
|
490 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:30
|
491 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
|
492 |
msgid "Yes, load default form theme"
|
493 |
+
msgstr "Ja, ladda standard formulärtema"
|
494 |
|
495 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
496 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
520 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
521 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
|
522 |
msgid "Custom Color Theme"
|
523 |
+
msgstr "Eget färgschema-tema"
|
524 |
|
525 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:41
|
526 |
msgid ""
|
531 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:45
|
532 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
|
533 |
msgid "Lists this form subscribes to"
|
534 |
+
msgstr "Listor detta formulär prenumererar på"
|
535 |
|
536 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:63
|
537 |
msgid ""
|
560 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
|
561 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
|
562 |
msgid "Send Welcome Email?"
|
563 |
+
msgstr "Skicka välkomste-post?"
|
564 |
|
565 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:130
|
566 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
|
575 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
|
576 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:78
|
577 |
msgid "Update existing subscribers?"
|
578 |
+
msgstr "Uppdatera befintliga prenumeranter?"
|
579 |
|
580 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:140
|
581 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:47
|
589 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
|
590 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:93
|
591 |
msgid "Replace interest groups?"
|
592 |
+
msgstr "Ersätt intressegrupper?"
|
593 |
|
594 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:154
|
595 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:66
|
668 |
|
669 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:219
|
670 |
msgid "General error message"
|
671 |
+
msgstr "Allmänt felmeddelande"
|
672 |
|
673 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:225
|
674 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:181
|
745 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:303
|
746 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
|
747 |
msgid "Current URL"
|
748 |
+
msgstr "Nuvarande URL"
|
749 |
|
750 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
751 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:29
|
752 |
msgid "Add a new field"
|
753 |
+
msgstr "Lägg till nytt fält"
|
754 |
|
755 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
|
756 |
msgid "Use the tool below to generate the HTML for your form fields."
|
774 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:28
|
775 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:45
|
776 |
msgid "Label"
|
777 |
+
msgstr "Etikett"
|
778 |
|
779 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:28
|
780 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:33
|
783 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:50
|
784 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:55
|
785 |
msgid "(optional)"
|
786 |
+
msgstr "(valfri)"
|
787 |
|
788 |
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:33
|
789 |
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:50
|
903 |
|
904 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:234
|
905 |
msgid "Save Form"
|
906 |
+
msgstr "Spara formulär"
|
907 |
|
908 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:238
|
909 |
msgid "Update Form"
|
910 |
+
msgstr "Uppdatera formulär"
|
911 |
|
912 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:289
|
913 |
msgid "Back to general form settings"
|
914 |
+
msgstr "Tillbaka till allmänna formulärsinställningar"
|
915 |
|
916 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:291
|
917 |
msgid "Form updated."
|
918 |
+
msgstr "Formulär uppdaterat."
|
919 |
|
920 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:292
|
921 |
msgid "Form saved."
|
922 |
+
msgstr "Formulär sparat."
|
923 |
|
924 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:419
|
925 |
msgid "Optional Settings"
|
926 |
+
msgstr "Valfria inställningar"
|
927 |
|
928 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:420
|
929 |
msgid "Form Variables"
|
930 |
+
msgstr "Formulärvariabler"
|
931 |
|
932 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:558
|
933 |
msgid "MailChimp & License"
|
934 |
+
msgstr "MailChimp & licens"
|
935 |
|
936 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:561
|
937 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
|
938 |
msgid "Reports"
|
939 |
+
msgstr "Rapporter"
|
940 |
|
941 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
|
942 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:679
|
974 |
|
975 |
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:320
|
976 |
msgid "%sShow generated CSS%s"
|
977 |
+
msgstr "%sVisa genererad CSSS%s"
|
978 |
|
979 |
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:330
|
980 |
msgid ""
|
1044 |
|
1045 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-license-manager.php:463
|
1046 |
msgid "%s: License Settings"
|
1047 |
+
msgstr "%s: Licensinställningar"
|
1048 |
|
1049 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/class-plugin-license-manager.php:67
|
1050 |
msgid ""
|
1066 |
|
1067 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:23
|
1068 |
msgid "License status"
|
1069 |
+
msgstr "Licensstatus"
|
1070 |
|
1071 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:26
|
1072 |
msgid "ACTIVE"
|
1073 |
+
msgstr "AKTIV"
|
1074 |
|
1075 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:26
|
1076 |
msgid "you are receiving updates"
|
1077 |
+
msgstr "du tar emot uppdateringar"
|
1078 |
|
1079 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
|
1080 |
msgid "INACTIVE"
|
1081 |
+
msgstr "INAKTIV"
|
1082 |
|
1083 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:28
|
1084 |
msgid "you are <strong>not</strong> receiving updates."
|
1085 |
+
msgstr "du tar <strong>inte</strong> mot uppdateringar"
|
1086 |
|
1087 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:33
|
1088 |
msgid "Toggle license status"
|
1089 |
+
msgstr "Växla licensstatus"
|
1090 |
|
1091 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:37
|
1092 |
msgid "Deactivate License"
|
1093 |
+
msgstr "Inaktivera licens"
|
1094 |
|
1095 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:38
|
1096 |
msgid ""
|
1099 |
|
1100 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:42
|
1101 |
msgid "Activate License"
|
1102 |
+
msgstr "Aktivera licens"
|
1103 |
|
1104 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:44
|
1105 |
msgid "Please enter a license key in the field below first."
|
1107 |
|
1108 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:52
|
1109 |
msgid "License Key"
|
1110 |
+
msgstr "Licensnyckel"
|
1111 |
|
1112 |
#: mailchimp-for-wordpress-pro/includes/admin/license-manager/views/form.php:54
|
1113 |
msgid "Paste your license key here, as found in the email receipt."
|
1170 |
|
1171 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:84
|
1172 |
msgid "Form:"
|
1173 |
+
msgstr "Formulär:"
|
1174 |
|
1175 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:86
|
1176 |
msgid "Select the form to show"
|
1216 |
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:77
|
1217 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:188
|
1218 |
msgid "Delete"
|
1219 |
+
msgstr "Ta bort"
|
1220 |
|
1221 |
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:98
|
1222 |
msgid "No MailChimp list(s) selected yet."
|
1236 |
|
1237 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:53
|
1238 |
msgid "Email"
|
1239 |
+
msgstr "E-post"
|
1240 |
|
1241 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:54
|
1242 |
msgid "List"
|
1243 |
+
msgstr "Lista"
|
1244 |
|
1245 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:55
|
1246 |
msgid "Type"
|
1247 |
+
msgstr "Typ"
|
1248 |
|
1249 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:56
|
1250 |
msgid "Source"
|
1251 |
+
msgstr "Källa"
|
1252 |
|
1253 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:57
|
1254 |
msgid "Extra data"
|
1255 |
+
msgstr "Extra data"
|
1256 |
|
1257 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:58
|
1258 |
msgid "Subscribed"
|
1259 |
+
msgstr "Prenumererad"
|
1260 |
|
1261 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:116
|
1262 |
msgid "Log items deleted."
|
1263 |
+
msgstr "Logga borttagna objekt."
|
1264 |
|
1265 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
|
1266 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:217
|
1267 |
msgid "Comment"
|
1268 |
+
msgstr "Kommentar"
|
1269 |
|
1270 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:209
|
1271 |
msgid "deleted"
|
1272 |
+
msgstr "borttagen"
|
1273 |
|
1274 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:221
|
1275 |
msgid "Registration"
|
1276 |
+
msgstr "Registrering"
|
1277 |
|
1278 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:237
|
1279 |
msgid "MultiSite registration"
|
1306 |
|
1307 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
|
1308 |
msgid "All"
|
1309 |
+
msgstr "Alla"
|
1310 |
|
1311 |
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:349
|
1312 |
msgid "Checkbox"
|
1435 |
|
1436 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
|
1437 |
msgid "Log"
|
1438 |
+
msgstr "Logg"
|
1439 |
|
1440 |
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:9
|
1441 |
msgid ""
|
1465 |
|
1466 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:223
|
1467 |
msgid "Delete Form Styles"
|
1468 |
+
msgstr "Ta bort formulärstilar"
|
1469 |
|
1470 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1471 |
msgid "Use to delete all styles for this form"
|
1481 |
|
1482 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1483 |
msgid "Create New Form"
|
1484 |
+
msgstr "Skapa Nytt formulär"
|
1485 |
|
1486 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
|
1487 |
msgid "General form settings"
|
1488 |
+
msgstr "Allmänna formulärsinställningar"
|
1489 |
|
1490 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
|
1491 |
msgid ""
|
1496 |
|
1497 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
|
1498 |
msgid "Select Color"
|
1499 |
+
msgstr "Välj färg"
|
1500 |
|
1501 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:48
|
1502 |
msgid "Save all changes"
|
1503 |
+
msgstr "Spara alla ändringar"
|
1504 |
|
1505 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
|
1506 |
msgid "Default MailChimp settings"
|
1519 |
|
1520 |
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
|
1521 |
msgid "Default Messages"
|
1522 |
+
msgstr "Standardmeddelanden"
|
1523 |
|
1524 |
#. Plugin URI of the plugin/theme
|
1525 |
msgid "https://mc4wp.com/"
|
1526 |
+
msgstr "https://mc4wp.com/"
|
1527 |
|
1528 |
#. Description of the plugin/theme
|
1529 |
msgid "Adds various sign-up methods to your website."
|
1531 |
|
1532 |
#. Author of the plugin/theme
|
1533 |
msgid "Danny van Kooten"
|
1534 |
+
msgstr "Danny van Kooten"
|
1535 |
|
1536 |
#. Author URI of the plugin/theme
|
1537 |
msgid "http://dannyvankooten.com"
|
1538 |
+
msgstr "http://dannyvankooten.com"
|
languages/mailchimp-for-wp-zh_TW.po
CHANGED
@@ -7,7 +7,7 @@ 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: 2014-11-14 12:24:24+00:00\n"
|
10 |
-
"PO-Revision-Date: 2014-11-
|
11 |
"Last-Translator: Andrea Swemmer Huang <maarten.swemmer@apprique.com>\n"
|
12 |
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/zh_TW/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -66,7 +66,7 @@ msgstr ""
|
|
66 |
#: mailchimp-for-wordpress/includes/class-admin.php:315
|
67 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
68 |
msgid "MultiSite forms"
|
69 |
-
msgstr ""
|
70 |
|
71 |
#: mailchimp-for-wordpress/includes/class-admin.php:319
|
72 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
|
@@ -118,7 +118,7 @@ msgstr ""
|
|
118 |
|
119 |
#: mailchimp-for-wordpress/includes/class-form-request.php:568
|
120 |
msgid "Please select at least one list to subscribe to."
|
121 |
-
msgstr ""
|
122 |
|
123 |
#: mailchimp-for-wordpress/includes/class-widget.php:20
|
124 |
msgid "MailChimp Sign-Up Form"
|
@@ -131,12 +131,12 @@ msgstr ""
|
|
131 |
#: mailchimp-for-wordpress/includes/class-widget.php:62
|
132 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:69
|
133 |
msgid "Newsletter"
|
134 |
-
msgstr ""
|
135 |
|
136 |
#: mailchimp-for-wordpress/includes/class-widget.php:65
|
137 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:80
|
138 |
msgid "Title:"
|
139 |
-
msgstr ""
|
140 |
|
141 |
#: mailchimp-for-wordpress/includes/class-widget.php:69
|
142 |
msgid ""
|
@@ -147,53 +147,53 @@ msgstr ""
|
|
147 |
#: mailchimp-for-wordpress/includes/functions/general.php:21
|
148 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
|
149 |
msgid "Email address"
|
150 |
-
msgstr ""
|
151 |
|
152 |
#: mailchimp-for-wordpress/includes/functions/general.php:22
|
153 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
|
154 |
msgid "Your email address"
|
155 |
-
msgstr ""
|
156 |
|
157 |
#: mailchimp-for-wordpress/includes/functions/general.php:23
|
158 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
|
159 |
msgid "Sign up"
|
160 |
-
msgstr ""
|
161 |
|
162 |
#: mailchimp-for-wordpress/includes/functions/general.php:30
|
163 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:20
|
164 |
msgid "Sign me up for the newsletter!"
|
165 |
-
msgstr ""
|
166 |
|
167 |
#: mailchimp-for-wordpress/includes/functions/general.php:44
|
168 |
msgid ""
|
169 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
170 |
"inbox."
|
171 |
-
msgstr ""
|
172 |
|
173 |
#: mailchimp-for-wordpress/includes/functions/general.php:45
|
174 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:44
|
175 |
msgid "Oops. Something went wrong. Please try again later."
|
176 |
-
msgstr ""
|
177 |
|
178 |
#: mailchimp-for-wordpress/includes/functions/general.php:46
|
179 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:45
|
180 |
msgid "Please provide a valid email address."
|
181 |
-
msgstr ""
|
182 |
|
183 |
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
184 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:46
|
185 |
msgid "Given email address is already subscribed, thank you!"
|
186 |
-
msgstr ""
|
187 |
|
188 |
#: mailchimp-for-wordpress/includes/functions/general.php:48
|
189 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:47
|
190 |
msgid "Please complete the CAPTCHA."
|
191 |
-
msgstr ""
|
192 |
|
193 |
#: mailchimp-for-wordpress/includes/functions/general.php:49
|
194 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:48
|
195 |
msgid "Please fill in the required fields."
|
196 |
-
msgstr ""
|
197 |
|
198 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:44
|
199 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
@@ -275,25 +275,25 @@ msgstr ""
|
|
275 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
|
276 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
|
277 |
msgid "This message is only visible to administrators for debugging purposes."
|
278 |
-
msgstr ""
|
279 |
|
280 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
|
281 |
msgid ""
|
282 |
"The MailChimp server returned the following error message as a response to "
|
283 |
"our sign-up request:"
|
284 |
-
msgstr ""
|
285 |
|
286 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
|
287 |
msgid "This is the data that was sent to MailChimp:"
|
288 |
-
msgstr ""
|
289 |
|
290 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
|
291 |
msgid "Email address:"
|
292 |
-
msgstr ""
|
293 |
|
294 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
|
295 |
msgid "Merge variables:"
|
296 |
-
msgstr ""
|
297 |
|
298 |
#. Plugin Name of the plugin/theme
|
299 |
msgid "MailChimp for WordPress"
|
@@ -340,7 +340,7 @@ msgid ""
|
|
340 |
"The table below shows your MailChimp lists data. If you applied changes to "
|
341 |
"your MailChimp lists, please use the following button to renew your cached "
|
342 |
"data."
|
343 |
-
msgstr ""
|
344 |
|
345 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
346 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
@@ -351,7 +351,7 @@ msgstr ""
|
|
351 |
|
352 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
353 |
msgid "No lists were found in your MailChimp account"
|
354 |
-
msgstr ""
|
355 |
|
356 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
357 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
@@ -363,7 +363,7 @@ msgstr ""
|
|
363 |
msgid ""
|
364 |
"To use sign-up checkboxes, select at least one list and one form to add the "
|
365 |
"checkbox to."
|
366 |
-
msgstr ""
|
367 |
|
368 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
369 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
@@ -375,7 +375,7 @@ msgstr ""
|
|
375 |
msgid ""
|
376 |
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
377 |
" subscribe people to."
|
378 |
-
msgstr ""
|
379 |
|
380 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
381 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
@@ -394,7 +394,7 @@ msgstr ""
|
|
394 |
msgid ""
|
395 |
"Select the list(s) to which people who check the checkbox should be "
|
396 |
"subscribed."
|
397 |
-
msgstr ""
|
398 |
|
399 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
|
400 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:109
|
@@ -412,7 +412,7 @@ msgstr ""
|
|
412 |
msgid ""
|
413 |
"Select \"yes\" if you want people to confirm their email address before "
|
414 |
"being subscribed (recommended)"
|
415 |
-
msgstr ""
|
416 |
|
417 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
|
418 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:68
|
@@ -427,7 +427,7 @@ msgstr ""
|
|
427 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
|
428 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:78
|
429 |
msgid "Selecting a form will automatically add the sign-up checkbox to it."
|
430 |
-
msgstr ""
|
431 |
|
432 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
|
433 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:91
|
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: 2014-11-14 12:24:24+00:00\n"
|
10 |
+
"PO-Revision-Date: 2014-11-19 17:10+0000\n"
|
11 |
"Last-Translator: Andrea Swemmer Huang <maarten.swemmer@apprique.com>\n"
|
12 |
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mailchimp-for-wordpress/language/zh_TW/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
66 |
#: mailchimp-for-wordpress/includes/class-admin.php:315
|
67 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
68 |
msgid "MultiSite forms"
|
69 |
+
msgstr "MultiSite 表格"
|
70 |
|
71 |
#: mailchimp-for-wordpress/includes/class-admin.php:319
|
72 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:667
|
118 |
|
119 |
#: mailchimp-for-wordpress/includes/class-form-request.php:568
|
120 |
msgid "Please select at least one list to subscribe to."
|
121 |
+
msgstr "請至少選擇一個列表訂閱。"
|
122 |
|
123 |
#: mailchimp-for-wordpress/includes/class-widget.php:20
|
124 |
msgid "MailChimp Sign-Up Form"
|
131 |
#: mailchimp-for-wordpress/includes/class-widget.php:62
|
132 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:69
|
133 |
msgid "Newsletter"
|
134 |
+
msgstr "通訊"
|
135 |
|
136 |
#: mailchimp-for-wordpress/includes/class-widget.php:65
|
137 |
#: mailchimp-for-wordpress-pro/includes/class-widget.php:80
|
138 |
msgid "Title:"
|
139 |
+
msgstr "標題:"
|
140 |
|
141 |
#: mailchimp-for-wordpress/includes/class-widget.php:69
|
142 |
msgid ""
|
147 |
#: mailchimp-for-wordpress/includes/functions/general.php:21
|
148 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:272
|
149 |
msgid "Email address"
|
150 |
+
msgstr "電子郵件地址"
|
151 |
|
152 |
#: mailchimp-for-wordpress/includes/functions/general.php:22
|
153 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:271
|
154 |
msgid "Your email address"
|
155 |
+
msgstr "您的電子郵件地址"
|
156 |
|
157 |
#: mailchimp-for-wordpress/includes/functions/general.php:23
|
158 |
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:273
|
159 |
msgid "Sign up"
|
160 |
+
msgstr "報名"
|
161 |
|
162 |
#: mailchimp-for-wordpress/includes/functions/general.php:30
|
163 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:20
|
164 |
msgid "Sign me up for the newsletter!"
|
165 |
+
msgstr "我要註冊為通訊!"
|
166 |
|
167 |
#: mailchimp-for-wordpress/includes/functions/general.php:44
|
168 |
msgid ""
|
169 |
"Thank you, your sign-up request was successful! Please check your e-mail "
|
170 |
"inbox."
|
171 |
+
msgstr "謝謝您的註冊請求是成功的!請檢查您的電子郵件收件箱。"
|
172 |
|
173 |
#: mailchimp-for-wordpress/includes/functions/general.php:45
|
174 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:44
|
175 |
msgid "Oops. Something went wrong. Please try again later."
|
176 |
+
msgstr "哎呀。出事了。請稍後再試。"
|
177 |
|
178 |
#: mailchimp-for-wordpress/includes/functions/general.php:46
|
179 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:45
|
180 |
msgid "Please provide a valid email address."
|
181 |
+
msgstr "請提供一個有效的電子郵件地址。"
|
182 |
|
183 |
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
184 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:46
|
185 |
msgid "Given email address is already subscribed, thank you!"
|
186 |
+
msgstr "指定的電子郵件地址已訂閱,謝謝!"
|
187 |
|
188 |
#: mailchimp-for-wordpress/includes/functions/general.php:48
|
189 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:47
|
190 |
msgid "Please complete the CAPTCHA."
|
191 |
+
msgstr "請填寫驗證碼。"
|
192 |
|
193 |
#: mailchimp-for-wordpress/includes/functions/general.php:49
|
194 |
#: mailchimp-for-wordpress-pro/includes/functions/general.php:48
|
195 |
msgid "Please fill in the required fields."
|
196 |
+
msgstr "請填寫必填字段。"
|
197 |
|
198 |
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:44
|
199 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
275 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:168
|
276 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:221
|
277 |
msgid "This message is only visible to administrators for debugging purposes."
|
278 |
+
msgstr "此消息時,才能看到管理員用於調試目的。"
|
279 |
|
280 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
|
281 |
msgid ""
|
282 |
"The MailChimp server returned the following error message as a response to "
|
283 |
"our sign-up request:"
|
284 |
+
msgstr "在MailChimp服務器返回以下錯誤消息對我們的註冊請求的響應:"
|
285 |
|
286 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:216
|
287 |
msgid "This is the data that was sent to MailChimp:"
|
288 |
+
msgstr "這是被發送到MailChimp的數據:"
|
289 |
|
290 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:217
|
291 |
msgid "Email address:"
|
292 |
+
msgstr "電子郵件地址:"
|
293 |
|
294 |
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:219
|
295 |
msgid "Merge variables:"
|
296 |
+
msgstr "合併變量:"
|
297 |
|
298 |
#. Plugin Name of the plugin/theme
|
299 |
msgid "MailChimp for WordPress"
|
340 |
"The table below shows your MailChimp lists data. If you applied changes to "
|
341 |
"your MailChimp lists, please use the following button to renew your cached "
|
342 |
"data."
|
343 |
+
msgstr "下表顯示了您的MailChimp列表中的數據。如果你申請更改您的MailChimp列表,請使用下面的按鈕來更新你的緩存數據。"
|
344 |
|
345 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
346 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
351 |
|
352 |
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
353 |
msgid "No lists were found in your MailChimp account"
|
354 |
+
msgstr "沒有名單中發現您的MailChimp帳戶"
|
355 |
|
356 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
357 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
363 |
msgid ""
|
364 |
"To use sign-up checkboxes, select at least one list and one form to add the "
|
365 |
"checkbox to."
|
366 |
+
msgstr "要使用的註冊複選框,選擇至少一個列表和一個表單的複選框中添加。"
|
367 |
|
368 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
369 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
375 |
msgid ""
|
376 |
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
377 |
" subscribe people to."
|
378 |
+
msgstr "如果你想使用的註冊複選框,選擇至少一個MailChimp列表認購人。"
|
379 |
|
380 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
381 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
394 |
msgid ""
|
395 |
"Select the list(s) to which people who check the checkbox should be "
|
396 |
"subscribed."
|
397 |
+
msgstr "選擇哪個人誰選中複選框應訂閱的列表。"
|
398 |
|
399 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
|
400 |
#: mailchimp-for-wordpress/includes/views/form-settings.php:109
|
412 |
msgid ""
|
413 |
"Select \"yes\" if you want people to confirm their email address before "
|
414 |
"being subscribed (recommended)"
|
415 |
+
msgstr "選擇“是”,如果你希望人們以確認他們的電子郵件地址被認購前(推薦)"
|
416 |
|
417 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
|
418 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:68
|
427 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
|
428 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:78
|
429 |
msgid "Selecting a form will automatically add the sign-up checkbox to it."
|
430 |
+
msgstr "選擇表格將在註冊的複選框會自動添加到它。"
|
431 |
|
432 |
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
|
433 |
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:91
|
mailchimp-for-wp.php
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
Plugin Name: MailChimp for WordPress Lite
|
4 |
Plugin URI: https://mc4wp.com/
|
5 |
Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
|
6 |
-
Version: 2.1.
|
7 |
Author: Danny van Kooten
|
8 |
-
Author URI:
|
9 |
Text Domain: mailchimp-for-wp
|
10 |
Domain Path: /languages
|
11 |
License: GPL v3
|
@@ -47,7 +47,7 @@ function mc4wp_load_plugin() {
|
|
47 |
}
|
48 |
|
49 |
// bootstrap the lite plugin
|
50 |
-
define( 'MC4WP_LITE_VERSION', '2.1.
|
51 |
define( 'MC4WP_LITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
52 |
define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );
|
3 |
Plugin Name: MailChimp for WordPress Lite
|
4 |
Plugin URI: https://mc4wp.com/
|
5 |
Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
|
6 |
+
Version: 2.1.7
|
7 |
Author: Danny van Kooten
|
8 |
+
Author URI: https://dannyvankooten.com
|
9 |
Text Domain: mailchimp-for-wp
|
10 |
Domain Path: /languages
|
11 |
License: GPL v3
|
47 |
}
|
48 |
|
49 |
// bootstrap the lite plugin
|
50 |
+
define( 'MC4WP_LITE_VERSION', '2.1.7' );
|
51 |
define( 'MC4WP_LITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
52 |
define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: DvanKooten
|
|
3 |
Donate link: https://mc4wp.com/
|
4 |
Tags: mailchimp,newsletter,optin,mailinglist,sign-up form,subscribe,form,shortcode,widget,checkbox,comment,buddypress,multisite,bbpress,woocommerce,easy digital downloads,contact form,contact form 7,events manager,comment form,registration form,captcha
|
5 |
Requires at least: 3.6
|
6 |
-
Tested up to: 4.0
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -257,6 +257,21 @@ It's easy to translate the plugin into your own language. Head over to the [tran
|
|
257 |
|
258 |
== Changelog ==
|
259 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
= 2.1.6 - November 18, 2014 =
|
261 |
|
262 |
**Fixes**
|
@@ -614,5 +629,5 @@ It's easy to translate the plugin into your own language. Head over to the [tran
|
|
614 |
|
615 |
== Upgrade Notice ==
|
616 |
|
617 |
-
= 2.1.
|
618 |
-
|
3 |
Donate link: https://mc4wp.com/
|
4 |
Tags: mailchimp,newsletter,optin,mailinglist,sign-up form,subscribe,form,shortcode,widget,checkbox,comment,buddypress,multisite,bbpress,woocommerce,easy digital downloads,contact form,contact form 7,events manager,comment form,registration form,captcha
|
5 |
Requires at least: 3.6
|
6 |
+
Tested up to: 4.0.1
|
7 |
+
Stable tag: 2.1.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
257 |
|
258 |
== Changelog ==
|
259 |
|
260 |
+
= 2.1.7 - December 1, 2014 =
|
261 |
+
|
262 |
+
**Fixes**
|
263 |
+
|
264 |
+
- Fixes onclick event in older versions of IE, props [Simon Schick](https://github.com/SimonSimCity)
|
265 |
+
|
266 |
+
**Improvements**
|
267 |
+
|
268 |
+
- Updated Dutch, French, Hungarian, Italian, Norwegian, Swedish and Taiwanese translations.
|
269 |
+
- Some textual improvements.
|
270 |
+
|
271 |
+
**Additions**
|
272 |
+
|
273 |
+
- {email} shortcode to use in form mark-up.
|
274 |
+
|
275 |
= 2.1.6 - November 18, 2014 =
|
276 |
|
277 |
**Fixes**
|
629 |
|
630 |
== Upgrade Notice ==
|
631 |
|
632 |
+
= 2.1.7 =
|
633 |
+
JS bugfix for older versions of IE. Updated translations & minor textual improvements.
|