Version Description
Download this release
Release Info
Developer | DvanKooten |
Plugin | MailChimp for WordPress |
Version | 3.1.4 |
Comparing to | |
See all releases |
Code changes from version 3.1.3 to 3.1.4
- CHANGELOG.md +13 -0
- includes/class-request.php +13 -6
- includes/forms/class-admin.php +9 -9
- includes/forms/class-form-listener.php +3 -8
- includes/forms/class-form-manager.php +9 -1
- includes/forms/class-form-previewer.php +2 -0
- includes/forms/class-form.php +10 -1
- includes/views/parts/lists-overview.php +2 -0
- languages/mailchimp-for-wp-ru_RU.mo +0 -0
- languages/mailchimp-for-wp-ru_RU.po +51 -50
- languages/mailchimp-for-wp-sv_SE.mo +0 -0
- languages/mailchimp-for-wp-sv_SE.po +636 -1856
- mailchimp-for-wp.php +2 -2
- readme.txt +15 -2
CHANGELOG.md
CHANGED
@@ -1,6 +1,19 @@
|
|
1 |
Changelog
|
2 |
=========
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
#### 3.1.3 - February 17, 2016
|
5 |
|
6 |
**Fixes**
|
1 |
Changelog
|
2 |
=========
|
3 |
|
4 |
+
#### 3.1.4 - February 29, 2016
|
5 |
+
|
6 |
+
**Fixes**
|
7 |
+
|
8 |
+
- Forms with address fields never passing validation.
|
9 |
+
|
10 |
+
**Improvements**
|
11 |
+
|
12 |
+
- Perform type checks on global variables to prevent issues with poorly coded plugins.
|
13 |
+
- Add Interest Category ID to list overview table for easier debugging.
|
14 |
+
- Updated Russian translations.
|
15 |
+
|
16 |
+
|
17 |
#### 3.1.3 - February 17, 2016
|
18 |
|
19 |
**Fixes**
|
includes/class-request.php
CHANGED
@@ -36,12 +36,17 @@ class MC4WP_Request {
|
|
36 |
* @return MC4WP_Request
|
37 |
*/
|
38 |
public static function create_from_globals() {
|
39 |
-
$
|
40 |
-
$
|
41 |
-
$
|
42 |
-
|
43 |
-
$
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
45 |
}
|
46 |
|
47 |
/**
|
@@ -96,6 +101,8 @@ class MC4WP_Request {
|
|
96 |
}
|
97 |
|
98 |
/**
|
|
|
|
|
99 |
* @return string
|
100 |
*/
|
101 |
public function get_client_ip() {
|
36 |
* @return MC4WP_Request
|
37 |
*/
|
38 |
public static function create_from_globals() {
|
39 |
+
$get_data = is_array( $_GET ) ? $_GET : array();
|
40 |
+
$get_data = mc4wp_sanitize_deep( $get_data );
|
41 |
+
$get_data = stripslashes_deep( $get_data );
|
42 |
+
|
43 |
+
$post_data = is_array( $_POST ) ? $_POST : array();
|
44 |
+
$post_data = mc4wp_sanitize_deep( $post_data );
|
45 |
+
$post_data = stripslashes_deep( $post_data );
|
46 |
+
|
47 |
+
$server_data = is_array( $_SERVER ) ? $_SERVER : array();
|
48 |
+
$server_data = mc4wp_sanitize_deep( $server_data );
|
49 |
+
return new self( $get_data, $post_data, $server_data );
|
50 |
}
|
51 |
|
52 |
/**
|
101 |
}
|
102 |
|
103 |
/**
|
104 |
+
* Get the IP address of the visitor. Takes proxies into account.
|
105 |
+
*
|
106 |
* @return string
|
107 |
*/
|
108 |
public function get_client_ip() {
|
includes/forms/class-admin.php
CHANGED
@@ -195,6 +195,15 @@ class MC4WP_Forms_Admin {
|
|
195 |
update_post_meta( $form_id, 'text_' . $key, $message );
|
196 |
}
|
197 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
return $form_id;
|
199 |
}
|
200 |
|
@@ -256,15 +265,6 @@ class MC4WP_Forms_Admin {
|
|
256 |
update_option( 'mc4wp_default_form_id', $form_id );
|
257 |
}
|
258 |
|
259 |
-
/**
|
260 |
-
* Runs right after a form is updated.
|
261 |
-
*
|
262 |
-
* @since 3.0
|
263 |
-
*
|
264 |
-
* @param int $form_id
|
265 |
-
*/
|
266 |
-
do_action( 'mc4wp_save_form', $form_id );
|
267 |
-
|
268 |
$previewer = new MC4WP_Form_Previewer( $form_id );
|
269 |
|
270 |
$this->messages->flash( __( "<strong>Success!</strong> Form successfully saved.", 'mailchimp-for-wp' ) . sprintf( ' <a href="%s">', $previewer->get_preview_url() ) . __( 'Preview form', 'mailchimp-for-wp' ) . '</a>' );
|
195 |
update_post_meta( $form_id, 'text_' . $key, $message );
|
196 |
}
|
197 |
|
198 |
+
/**
|
199 |
+
* Runs right after a form is updated.
|
200 |
+
*
|
201 |
+
* @since 3.0
|
202 |
+
*
|
203 |
+
* @param int $form_id
|
204 |
+
*/
|
205 |
+
do_action( 'mc4wp_save_form', $form_id );
|
206 |
+
|
207 |
return $form_id;
|
208 |
}
|
209 |
|
265 |
update_option( 'mc4wp_default_form_id', $form_id );
|
266 |
}
|
267 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
$previewer = new MC4WP_Form_Previewer( $form_id );
|
269 |
|
270 |
$this->messages->flash( __( "<strong>Success!</strong> Form successfully saved.", 'mailchimp-for-wp' ) . sprintf( ' <a href="%s">', $previewer->get_preview_url() ) . __( 'Preview form', 'mailchimp-for-wp' ) . '</a>' );
|
includes/forms/class-form-listener.php
CHANGED
@@ -22,20 +22,15 @@ class MC4WP_Form_Listener {
|
|
22 |
/**
|
23 |
* Listen for submitted forms
|
24 |
*
|
25 |
-
* @param $
|
26 |
* @return bool
|
27 |
*/
|
28 |
-
public function listen(
|
29 |
|
30 |
-
if( !
|
31 |
return false;
|
32 |
}
|
33 |
|
34 |
-
/**
|
35 |
-
* @var MC4WP_Request $request
|
36 |
-
*/
|
37 |
-
$request = mc4wp('request');
|
38 |
-
|
39 |
try {
|
40 |
$form = mc4wp_get_form( $request->params->get( '_mc4wp_form_id' ) );
|
41 |
} catch( Exception $e ) {
|
22 |
/**
|
23 |
* Listen for submitted forms
|
24 |
*
|
25 |
+
* @param MC4WP_Request $request
|
26 |
* @return bool
|
27 |
*/
|
28 |
+
public function listen( MC4WP_Request $request ) {
|
29 |
|
30 |
+
if( ! $request->post->get( '_mc4wp_form_id' ) ) {
|
31 |
return false;
|
32 |
}
|
33 |
|
|
|
|
|
|
|
|
|
|
|
34 |
try {
|
35 |
$form = mc4wp_get_form( $request->params->get( '_mc4wp_form_id' ) );
|
36 |
} catch( Exception $e ) {
|
includes/forms/class-form-manager.php
CHANGED
@@ -88,8 +88,9 @@ class MC4WP_Form_Manager {
|
|
88 |
* @hooked `init`
|
89 |
*/
|
90 |
public function init_form_listener() {
|
|
|
91 |
$this->listener = new MC4WP_Form_Listener();
|
92 |
-
$this->listener->listen( $
|
93 |
}
|
94 |
|
95 |
/**
|
@@ -141,4 +142,11 @@ class MC4WP_Form_Manager {
|
|
141 |
public function get_tags() {
|
142 |
return $this->tags->get();
|
143 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
}
|
88 |
* @hooked `init`
|
89 |
*/
|
90 |
public function init_form_listener() {
|
91 |
+
$request = $this->get_request();
|
92 |
$this->listener = new MC4WP_Form_Listener();
|
93 |
+
$this->listener->listen( $request );
|
94 |
}
|
95 |
|
96 |
/**
|
142 |
public function get_tags() {
|
143 |
return $this->tags->get();
|
144 |
}
|
145 |
+
|
146 |
+
/**
|
147 |
+
* @return MC4WP_Request
|
148 |
+
*/
|
149 |
+
private function get_request() {
|
150 |
+
return mc4wp('request');
|
151 |
+
}
|
152 |
}
|
includes/forms/class-form-previewer.php
CHANGED
@@ -49,6 +49,8 @@ class MC4WP_Form_Previewer {
|
|
49 |
return false;
|
50 |
}
|
51 |
|
|
|
|
|
52 |
$form_id = (int) $_GET[ 'form_id' ];
|
53 |
$is_preview = isset( $_GET['preview'] );
|
54 |
$instance = new self( $form_id, $is_preview );
|
49 |
return false;
|
50 |
}
|
51 |
|
52 |
+
define( 'MC4WP_FORM_IS_PREVIEW', true );
|
53 |
+
|
54 |
$form_id = (int) $_GET[ 'form_id' ];
|
55 |
$is_preview = isset( $_GET['preview'] );
|
56 |
$instance = new self( $form_id, $is_preview );
|
includes/forms/class-form.php
CHANGED
@@ -627,8 +627,17 @@ class MC4WP_Form {
|
|
627 |
|
628 |
// explode required fields (generated in JS) to an array (uppercased)
|
629 |
$required_fields_string = strtoupper( $this->settings['required_fields'] );
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
$required_fields = explode( ',', $required_fields_string );
|
631 |
|
|
|
|
|
|
|
632 |
// EMAIL is not a required field as it has its own validation rules
|
633 |
$required_fields = array_diff( $required_fields, array( 'EMAIL' ) );
|
634 |
|
@@ -647,7 +656,7 @@ class MC4WP_Form {
|
|
647 |
* @param MC4WP_Form $form
|
648 |
*/
|
649 |
$required_fields = (array) apply_filters( 'mc4wp_form_required_fields', $required_fields, $form );
|
650 |
-
|
651 |
return $required_fields;
|
652 |
}
|
653 |
|
627 |
|
628 |
// explode required fields (generated in JS) to an array (uppercased)
|
629 |
$required_fields_string = strtoupper( $this->settings['required_fields'] );
|
630 |
+
|
631 |
+
// remove array-formatted fields
|
632 |
+
// workaround for #261 (https://github.com/ibericode/mailchimp-for-wordpress/issues/261)
|
633 |
+
$required_fields_string = preg_replace( '/\[\w+\]/', '', $required_fields_string );
|
634 |
+
|
635 |
+
// turn into an array
|
636 |
$required_fields = explode( ',', $required_fields_string );
|
637 |
|
638 |
+
// We only need unique values here.
|
639 |
+
$required_fields = array_unique( $required_fields );
|
640 |
+
|
641 |
// EMAIL is not a required field as it has its own validation rules
|
642 |
$required_fields = array_diff( $required_fields, array( 'EMAIL' ) );
|
643 |
|
656 |
* @param MC4WP_Form $form
|
657 |
*/
|
658 |
$required_fields = (array) apply_filters( 'mc4wp_form_required_fields', $required_fields, $form );
|
659 |
+
|
660 |
return $required_fields;
|
661 |
}
|
662 |
|
includes/views/parts/lists-overview.php
CHANGED
@@ -85,12 +85,14 @@
|
|
85 |
<thead>
|
86 |
<tr>
|
87 |
<th>Name</th>
|
|
|
88 |
<th>Groups</th>
|
89 |
</tr>
|
90 |
</thead>
|
91 |
<?php foreach ( $list->groupings as $grouping ) { ?>
|
92 |
<tr title="<?php esc_attr( printf( __( '%s (ID: %s) with type %s.', 'mailchimp-for-wp' ), $grouping->name, $grouping->id, $grouping->field_type ) ); ?>">
|
93 |
<td><?php echo esc_html( $grouping->name ); ?></td>
|
|
|
94 |
<td>
|
95 |
<ul class="ul-square">
|
96 |
<?php foreach ( $grouping->groups as $group ) { ?>
|
85 |
<thead>
|
86 |
<tr>
|
87 |
<th>Name</th>
|
88 |
+
<th>ID</th>
|
89 |
<th>Groups</th>
|
90 |
</tr>
|
91 |
</thead>
|
92 |
<?php foreach ( $list->groupings as $grouping ) { ?>
|
93 |
<tr title="<?php esc_attr( printf( __( '%s (ID: %s) with type %s.', 'mailchimp-for-wp' ), $grouping->name, $grouping->id, $grouping->field_type ) ); ?>">
|
94 |
<td><?php echo esc_html( $grouping->name ); ?></td>
|
95 |
+
<td><?php echo esc_html( $grouping->id ); ?></td>
|
96 |
<td>
|
97 |
<ul class="ul-square">
|
98 |
<?php foreach ( $grouping->groups as $group ) { ?>
|
languages/mailchimp-for-wp-ru_RU.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-ru_RU.po
CHANGED
@@ -7,6 +7,7 @@
|
|
7 |
# dmitry <d1mas@msn.com>, 2015
|
8 |
# mick.levin <email.mick.levin@gmail.com>, 2015
|
9 |
# Eugen Morozov <burateen@gmail.com>, 2015
|
|
|
10 |
# Serge Yurovsky <serge@theleftlane.com>, 2014
|
11 |
# Vadim <sfai.88@gmail.com>, 2015
|
12 |
# Инна <vorobinn@yandex.ru>, 2015
|
@@ -15,8 +16,8 @@ msgstr ""
|
|
15 |
"Project-Id-Version: MailChimp for WordPress\n"
|
16 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
17 |
"POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
|
18 |
-
"PO-Revision-Date:
|
19 |
-
"Last-Translator:
|
20 |
"Language-Team: Russian (Russia) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ru_RU/)\n"
|
21 |
"MIME-Version: 1.0\n"
|
22 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -86,13 +87,13 @@ msgstr "Документация"
|
|
86 |
#: includes/admin/class-admin.php:167
|
87 |
msgid ""
|
88 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
89 |
-
msgstr ""
|
90 |
|
91 |
#: includes/admin/class-admin.php:257
|
92 |
msgid ""
|
93 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
94 |
" to use it."
|
95 |
-
msgstr ""
|
96 |
|
97 |
#: includes/admin/class-admin.php:323 includes/views/general-settings.php:28
|
98 |
msgid "MailChimp API Settings"
|
@@ -111,7 +112,7 @@ msgstr "Обновите до версии <b>MailChimp for WordPress Pro</b>"
|
|
111 |
msgid ""
|
112 |
"Enjoying this plugin? <a href=\"%s\">Purchase our bundle of premium "
|
113 |
"features</a> for an even better plugin."
|
114 |
-
msgstr ""
|
115 |
|
116 |
#: includes/admin/class-ads.php:62
|
117 |
msgid "More subscribers, better newsletters."
|
@@ -145,7 +146,7 @@ msgstr "Форма подписки по умолчанию"
|
|
145 |
|
146 |
#: includes/class-api.php:83
|
147 |
msgid "Read more about common connectivity issues."
|
148 |
-
msgstr ""
|
149 |
|
150 |
#: includes/forms/class-admin.php:71 includes/forms/class-admin.php:72
|
151 |
#: includes/forms/views/edit-form.php:17
|
@@ -178,7 +179,7 @@ msgstr "Результат работы формы (сообщение об ош
|
|
178 |
|
179 |
#: includes/forms/class-form-tags.php:56
|
180 |
msgid "Data from the URL or a submitted form."
|
181 |
-
msgstr ""
|
182 |
|
183 |
#: includes/forms/class-form-tags.php:62
|
184 |
#: includes/integrations/class-integration-tags.php:45
|
@@ -195,7 +196,7 @@ msgstr "URL данной страницы"
|
|
195 |
|
196 |
#: includes/forms/class-form-tags.php:77
|
197 |
msgid "The path of the page."
|
198 |
-
msgstr ""
|
199 |
|
200 |
#: includes/forms/class-form-tags.php:82
|
201 |
msgid "The current date. Example: %s."
|
@@ -215,11 +216,11 @@ msgstr "IP-адрес посетителя. Пример:"
|
|
215 |
|
216 |
#: includes/forms/class-form-tags.php:102
|
217 |
msgid "The property of the currently logged-in user."
|
218 |
-
msgstr ""
|
219 |
|
220 |
#: includes/forms/class-form.php:128
|
221 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
222 |
-
msgstr ""
|
223 |
|
224 |
#: includes/forms/class-widget.php:26
|
225 |
msgid "Newsletter"
|
@@ -273,7 +274,7 @@ msgstr "Сообщения"
|
|
273 |
|
274 |
#: includes/forms/views/edit-form.php:7
|
275 |
msgid "Appearance"
|
276 |
-
msgstr ""
|
277 |
|
278 |
#: includes/forms/views/edit-form.php:15
|
279 |
#: includes/integrations/views/integration-settings.php:8
|
@@ -296,7 +297,7 @@ msgstr "Введите название вашей формы подписки"
|
|
296 |
|
297 |
#: includes/forms/views/edit-form.php:54
|
298 |
msgid "Get shortcode"
|
299 |
-
msgstr ""
|
300 |
|
301 |
#: includes/forms/views/edit-form.php:59
|
302 |
msgid "Preview this form"
|
@@ -315,7 +316,7 @@ msgstr "Чтобы добавить больше полей в Вашу форм
|
|
315 |
|
316 |
#: includes/forms/views/parts/add-fields-help.php:12
|
317 |
msgid "Here's how:"
|
318 |
-
msgstr ""
|
319 |
|
320 |
#: includes/forms/views/parts/add-fields-help.php:17
|
321 |
msgid "Log in to your MailChimp account."
|
@@ -337,7 +338,7 @@ msgstr "Редактировать поля списка для"
|
|
337 |
msgid ""
|
338 |
"Click the following button to have MailChimp for WordPress pick up on your "
|
339 |
"changes."
|
340 |
-
msgstr ""
|
341 |
|
342 |
#: includes/forms/views/parts/add-fields-help.php:43
|
343 |
#: includes/views/parts/lists-overview.php:8
|
@@ -346,7 +347,7 @@ msgstr "Обновить списки MailChimp"
|
|
346 |
|
347 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
348 |
msgid "Add dynamic form variable"
|
349 |
-
msgstr ""
|
350 |
|
351 |
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
352 |
msgid ""
|
@@ -360,11 +361,11 @@ msgstr "Эти настройки позволяют Вам персонализ
|
|
360 |
|
361 |
#: includes/forms/views/tabs/form-appearance.php:5
|
362 |
msgid "Inherit from %s theme"
|
363 |
-
msgstr ""
|
364 |
|
365 |
#: includes/forms/views/tabs/form-appearance.php:6
|
366 |
msgid "Basic"
|
367 |
-
msgstr ""
|
368 |
|
369 |
#: includes/forms/views/tabs/form-appearance.php:7
|
370 |
msgid "Form Themes"
|
@@ -392,7 +393,7 @@ msgstr "Синяя тема"
|
|
392 |
|
393 |
#: includes/forms/views/tabs/form-appearance.php:25
|
394 |
msgid "Form Appearance"
|
395 |
-
msgstr ""
|
396 |
|
397 |
#: includes/forms/views/tabs/form-appearance.php:29
|
398 |
msgid "Form Style"
|
@@ -406,7 +407,7 @@ msgstr "Если вы хотите загрузить некоторые изн
|
|
406 |
|
407 |
#: includes/forms/views/tabs/form-fields.php:6
|
408 |
msgid "Form variables"
|
409 |
-
msgstr ""
|
410 |
|
411 |
#: includes/forms/views/tabs/form-fields.php:13
|
412 |
msgid "Form Fields"
|
@@ -525,7 +526,7 @@ msgstr "Укажите списки, в которые должны быть д
|
|
525 |
|
526 |
#: includes/forms/views/tabs/form-settings.php:35
|
527 |
msgid "Use double opt-in?"
|
528 |
-
msgstr ""
|
529 |
|
530 |
#: includes/forms/views/tabs/form-settings.php:39
|
531 |
#: includes/forms/views/tabs/form-settings.php:54
|
@@ -570,7 +571,7 @@ msgstr "Выберите \"Да\" если хотите, чтобы подпис
|
|
570 |
|
571 |
#: includes/forms/views/tabs/form-settings.php:50
|
572 |
msgid "Send final welcome email?"
|
573 |
-
msgstr ""
|
574 |
|
575 |
#: includes/forms/views/tabs/form-settings.php:60
|
576 |
#: includes/integrations/views/integration-settings.php:169
|
@@ -601,16 +602,16 @@ msgstr "Заменять группы по интересам?"
|
|
601 |
msgid ""
|
602 |
"Select \"no\" if you want to add the selected groupings to any previously "
|
603 |
"selected groupings when updating a subscriber."
|
604 |
-
msgstr ""
|
605 |
|
606 |
#: includes/forms/views/tabs/form-settings.php:93
|
607 |
#: includes/integrations/views/integration-settings.php:207
|
608 |
msgid "What does this do?"
|
609 |
-
msgstr ""
|
610 |
|
611 |
#: includes/forms/views/tabs/form-settings.php:104
|
612 |
msgid "Form behaviour"
|
613 |
-
msgstr ""
|
614 |
|
615 |
#: includes/forms/views/tabs/form-settings.php:111
|
616 |
msgid "Hide form after a successful sign-up?"
|
@@ -640,30 +641,30 @@ msgstr "Оставьте поле пустым или введите <code>0</co
|
|
640 |
#: includes/integrations/views/integrations.php:9
|
641 |
#: includes/integrations/views/integrations.php:17
|
642 |
msgid "Integrations"
|
643 |
-
msgstr ""
|
644 |
|
645 |
#: includes/integrations/views/integration-settings.php:20
|
646 |
msgid "%s integration"
|
647 |
-
msgstr ""
|
648 |
|
649 |
#: includes/integrations/views/integration-settings.php:51
|
650 |
msgid "Enabled?"
|
651 |
-
msgstr ""
|
652 |
|
653 |
#: includes/integrations/views/integration-settings.php:55
|
654 |
msgid ""
|
655 |
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
656 |
-
msgstr ""
|
657 |
|
658 |
#: includes/integrations/views/integration-settings.php:64
|
659 |
msgid "Implicit?"
|
660 |
-
msgstr ""
|
661 |
|
662 |
#: includes/integrations/views/integration-settings.php:68
|
663 |
msgid ""
|
664 |
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
665 |
"(recommended)."
|
666 |
-
msgstr ""
|
667 |
|
668 |
#: includes/integrations/views/integration-settings.php:78
|
669 |
msgid "MailChimp Lists"
|
@@ -689,7 +690,7 @@ msgstr "Установить флажок заранее?"
|
|
689 |
|
690 |
#: includes/integrations/views/integration-settings.php:119
|
691 |
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
692 |
-
msgstr ""
|
693 |
|
694 |
#: includes/integrations/views/integration-settings.php:127
|
695 |
msgid "Load some default CSS?"
|
@@ -711,7 +712,7 @@ msgstr "Отправить вступительное письмо?"
|
|
711 |
msgid ""
|
712 |
"The selected MailChimp lists require non-default fields, which may prevent "
|
713 |
"this integration from working."
|
714 |
-
msgstr ""
|
715 |
|
716 |
#: includes/integrations/views/integration-settings.php:245
|
717 |
msgid ""
|
@@ -719,11 +720,11 @@ msgid ""
|
|
719 |
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
720 |
"sure only the email & name fields are marked as required fields for the "
|
721 |
"selected list(s)."
|
722 |
-
msgstr ""
|
723 |
|
724 |
#: includes/integrations/views/integrations.php:30
|
725 |
msgid "Enabled"
|
726 |
-
msgstr ""
|
727 |
|
728 |
#: includes/integrations/views/integrations.php:31
|
729 |
msgid "Name"
|
@@ -737,11 +738,11 @@ msgstr "Описание"
|
|
737 |
msgid ""
|
738 |
"This integration is enabled by default as it requires manual actions to "
|
739 |
"work."
|
740 |
-
msgstr ""
|
741 |
|
742 |
#: includes/integrations/views/integrations.php:57
|
743 |
msgid "Configure this integration"
|
744 |
-
msgstr ""
|
745 |
|
746 |
#: includes/views/general-settings.php:18
|
747 |
msgid "General Settings"
|
@@ -777,17 +778,17 @@ msgstr "Получите ваш ключ API здесь"
|
|
777 |
|
778 |
#: includes/views/general-settings.php:65
|
779 |
msgid "Usage Tracking"
|
780 |
-
msgstr ""
|
781 |
|
782 |
#: includes/views/general-settings.php:71
|
783 |
msgid ""
|
784 |
"Allow us to anonymously track how this plugin is used to help us make it "
|
785 |
"better fit your needs."
|
786 |
-
msgstr ""
|
787 |
|
788 |
#: includes/views/general-settings.php:73
|
789 |
msgid "This is what we track."
|
790 |
-
msgstr ""
|
791 |
|
792 |
#: includes/views/parts/admin-footer.php:11
|
793 |
msgid ""
|
@@ -811,7 +812,7 @@ msgid ""
|
|
811 |
"The table below shows your MailChimp lists and their details. If you just "
|
812 |
"applied changes to your MailChimp lists, please use the following button to "
|
813 |
"renew the cached lists configuration."
|
814 |
-
msgstr ""
|
815 |
|
816 |
#: includes/views/parts/lists-overview.php:14
|
817 |
msgid "No lists were found in your MailChimp account"
|
@@ -819,7 +820,7 @@ msgstr "В вашем аккаунте MailChimp списков не обнар
|
|
819 |
|
820 |
#: includes/views/parts/lists-overview.php:16
|
821 |
msgid "A total of %d lists were found in your MailChimp account."
|
822 |
-
msgstr ""
|
823 |
|
824 |
#: includes/views/parts/lists-overview.php:21
|
825 |
msgid "List Name"
|
@@ -839,27 +840,27 @@ msgstr "Редактировать этот список в MailChimp"
|
|
839 |
|
840 |
#: includes/views/parts/lists-overview.php:59
|
841 |
msgid "%s (%s) with field type %s."
|
842 |
-
msgstr ""
|
843 |
|
844 |
#: includes/views/parts/lists-overview.php:83
|
845 |
msgid "%s (ID: %s) with type %s."
|
846 |
-
msgstr ""
|
847 |
|
848 |
#: integrations/contact-form-7/admin-before.php:2
|
849 |
msgid ""
|
850 |
"To integrate with Contact Form 7, configure the settings below and then add "
|
851 |
"%s to your CF7 form mark-up."
|
852 |
-
msgstr ""
|
853 |
|
854 |
#: integrations/custom/admin-before.php:2
|
855 |
msgid ""
|
856 |
"To get a custom integration to work, include the following HTML in the form "
|
857 |
"you are trying to integrate with."
|
858 |
-
msgstr ""
|
859 |
|
860 |
#: integrations/woocommerce/class-woocommerce.php:102
|
861 |
msgid "Order #%d"
|
862 |
-
msgstr ""
|
863 |
|
864 |
#. Plugin Name of the plugin/theme
|
865 |
msgid "MailChimp for WordPress"
|
@@ -869,18 +870,18 @@ msgstr "MailChimp для WordPress"
|
|
869 |
msgid ""
|
870 |
"https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
|
871 |
"wp&utm_campaign=plugins-page"
|
872 |
-
msgstr ""
|
873 |
|
874 |
#. Description of the plugin/theme
|
875 |
msgid ""
|
876 |
"MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
|
877 |
"methods to your site."
|
878 |
-
msgstr ""
|
879 |
|
880 |
#. Author of the plugin/theme
|
881 |
msgid "ibericode"
|
882 |
-
msgstr ""
|
883 |
|
884 |
#. Author URI of the plugin/theme
|
885 |
msgid "https://ibericode.com/"
|
886 |
-
msgstr ""
|
7 |
# dmitry <d1mas@msn.com>, 2015
|
8 |
# mick.levin <email.mick.levin@gmail.com>, 2015
|
9 |
# Eugen Morozov <burateen@gmail.com>, 2015
|
10 |
+
# Iggy Pritzker <info@web-design.co.il>, 2016
|
11 |
# Serge Yurovsky <serge@theleftlane.com>, 2014
|
12 |
# Vadim <sfai.88@gmail.com>, 2015
|
13 |
# Инна <vorobinn@yandex.ru>, 2015
|
16 |
"Project-Id-Version: MailChimp for WordPress\n"
|
17 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
18 |
"POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
|
19 |
+
"PO-Revision-Date: 2016-02-19 20:12+0000\n"
|
20 |
+
"Last-Translator: Iggy Pritzker <info@web-design.co.il>\n"
|
21 |
"Language-Team: Russian (Russia) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ru_RU/)\n"
|
22 |
"MIME-Version: 1.0\n"
|
23 |
"Content-Type: text/plain; charset=UTF-8\n"
|
87 |
#: includes/admin/class-admin.php:167
|
88 |
msgid ""
|
89 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
90 |
+
msgstr "Успех! Кэшированная конфигурация для ваших списков MailChimp была обновлена."
|
91 |
|
92 |
#: includes/admin/class-admin.php:257
|
93 |
msgid ""
|
94 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
95 |
" to use it."
|
96 |
+
msgstr "Это особенность про-версии плагина. Обновитесь до версии премиум, чтобы иметь возможность использовать её."
|
97 |
|
98 |
#: includes/admin/class-admin.php:323 includes/views/general-settings.php:28
|
99 |
msgid "MailChimp API Settings"
|
112 |
msgid ""
|
113 |
"Enjoying this plugin? <a href=\"%s\">Purchase our bundle of premium "
|
114 |
"features</a> for an even better plugin."
|
115 |
+
msgstr "Вас порадовал этот плагин? <a href=\"%s\">Приобретите кучу дополнительных возможностей</a> и сделайте плагин ещё лучше."
|
116 |
|
117 |
#: includes/admin/class-ads.php:62
|
118 |
msgid "More subscribers, better newsletters."
|
146 |
|
147 |
#: includes/class-api.php:83
|
148 |
msgid "Read more about common connectivity issues."
|
149 |
+
msgstr "Подробнее об обычных проблемах с подключением."
|
150 |
|
151 |
#: includes/forms/class-admin.php:71 includes/forms/class-admin.php:72
|
152 |
#: includes/forms/views/edit-form.php:17
|
179 |
|
180 |
#: includes/forms/class-form-tags.php:56
|
181 |
msgid "Data from the URL or a submitted form."
|
182 |
+
msgstr "Данные из URL или отосланной формы."
|
183 |
|
184 |
#: includes/forms/class-form-tags.php:62
|
185 |
#: includes/integrations/class-integration-tags.php:45
|
196 |
|
197 |
#: includes/forms/class-form-tags.php:77
|
198 |
msgid "The path of the page."
|
199 |
+
msgstr "Путь к странице."
|
200 |
|
201 |
#: includes/forms/class-form-tags.php:82
|
202 |
msgid "The current date. Example: %s."
|
216 |
|
217 |
#: includes/forms/class-form-tags.php:102
|
218 |
msgid "The property of the currently logged-in user."
|
219 |
+
msgstr "Параметры вошедшего в систему пользователя."
|
220 |
|
221 |
#: includes/forms/class-form.php:128
|
222 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
223 |
+
msgstr "Нет формы с ID %d, возможно, она была удалена?"
|
224 |
|
225 |
#: includes/forms/class-widget.php:26
|
226 |
msgid "Newsletter"
|
274 |
|
275 |
#: includes/forms/views/edit-form.php:7
|
276 |
msgid "Appearance"
|
277 |
+
msgstr "Внешний вид"
|
278 |
|
279 |
#: includes/forms/views/edit-form.php:15
|
280 |
#: includes/integrations/views/integration-settings.php:8
|
297 |
|
298 |
#: includes/forms/views/edit-form.php:54
|
299 |
msgid "Get shortcode"
|
300 |
+
msgstr "Получить шорткод"
|
301 |
|
302 |
#: includes/forms/views/edit-form.php:59
|
303 |
msgid "Preview this form"
|
316 |
|
317 |
#: includes/forms/views/parts/add-fields-help.php:12
|
318 |
msgid "Here's how:"
|
319 |
+
msgstr "Вот так:"
|
320 |
|
321 |
#: includes/forms/views/parts/add-fields-help.php:17
|
322 |
msgid "Log in to your MailChimp account."
|
338 |
msgid ""
|
339 |
"Click the following button to have MailChimp for WordPress pick up on your "
|
340 |
"changes."
|
341 |
+
msgstr "Нажмите кнопку, чтобы Mailchimp для WordPress обновился до ваших последних изменений."
|
342 |
|
343 |
#: includes/forms/views/parts/add-fields-help.php:43
|
344 |
#: includes/views/parts/lists-overview.php:8
|
347 |
|
348 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
349 |
msgid "Add dynamic form variable"
|
350 |
+
msgstr "Добавить динамическую переменную формы"
|
351 |
|
352 |
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
353 |
msgid ""
|
361 |
|
362 |
#: includes/forms/views/tabs/form-appearance.php:5
|
363 |
msgid "Inherit from %s theme"
|
364 |
+
msgstr "Наследование из темы %s"
|
365 |
|
366 |
#: includes/forms/views/tabs/form-appearance.php:6
|
367 |
msgid "Basic"
|
368 |
+
msgstr "Основное"
|
369 |
|
370 |
#: includes/forms/views/tabs/form-appearance.php:7
|
371 |
msgid "Form Themes"
|
393 |
|
394 |
#: includes/forms/views/tabs/form-appearance.php:25
|
395 |
msgid "Form Appearance"
|
396 |
+
msgstr "Внешний вид формы"
|
397 |
|
398 |
#: includes/forms/views/tabs/form-appearance.php:29
|
399 |
msgid "Form Style"
|
407 |
|
408 |
#: includes/forms/views/tabs/form-fields.php:6
|
409 |
msgid "Form variables"
|
410 |
+
msgstr "Переменные формы"
|
411 |
|
412 |
#: includes/forms/views/tabs/form-fields.php:13
|
413 |
msgid "Form Fields"
|
526 |
|
527 |
#: includes/forms/views/tabs/form-settings.php:35
|
528 |
msgid "Use double opt-in?"
|
529 |
+
msgstr "Используйте двойную подписку?"
|
530 |
|
531 |
#: includes/forms/views/tabs/form-settings.php:39
|
532 |
#: includes/forms/views/tabs/form-settings.php:54
|
571 |
|
572 |
#: includes/forms/views/tabs/form-settings.php:50
|
573 |
msgid "Send final welcome email?"
|
574 |
+
msgstr "Отправить приветственное письмо по-окончанию регистрации?"
|
575 |
|
576 |
#: includes/forms/views/tabs/form-settings.php:60
|
577 |
#: includes/integrations/views/integration-settings.php:169
|
602 |
msgid ""
|
603 |
"Select \"no\" if you want to add the selected groupings to any previously "
|
604 |
"selected groupings when updating a subscriber."
|
605 |
+
msgstr "Выберите \"нет\", если вы хотите добавить выбранные группы к любым ранее выбранным группам при обновлении данных подписчика."
|
606 |
|
607 |
#: includes/forms/views/tabs/form-settings.php:93
|
608 |
#: includes/integrations/views/integration-settings.php:207
|
609 |
msgid "What does this do?"
|
610 |
+
msgstr "Что это делает вообще?"
|
611 |
|
612 |
#: includes/forms/views/tabs/form-settings.php:104
|
613 |
msgid "Form behaviour"
|
614 |
+
msgstr "Поведение форм"
|
615 |
|
616 |
#: includes/forms/views/tabs/form-settings.php:111
|
617 |
msgid "Hide form after a successful sign-up?"
|
641 |
#: includes/integrations/views/integrations.php:9
|
642 |
#: includes/integrations/views/integrations.php:17
|
643 |
msgid "Integrations"
|
644 |
+
msgstr "Интеграции"
|
645 |
|
646 |
#: includes/integrations/views/integration-settings.php:20
|
647 |
msgid "%s integration"
|
648 |
+
msgstr "%s интеграция"
|
649 |
|
650 |
#: includes/integrations/views/integration-settings.php:51
|
651 |
msgid "Enabled?"
|
652 |
+
msgstr "Включено?"
|
653 |
|
654 |
#: includes/integrations/views/integration-settings.php:55
|
655 |
msgid ""
|
656 |
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
657 |
+
msgstr "Включить интеграцию %s? Это добавит флажок подписки в форме."
|
658 |
|
659 |
#: includes/integrations/views/integration-settings.php:64
|
660 |
msgid "Implicit?"
|
661 |
+
msgstr "Обязательно?"
|
662 |
|
663 |
#: includes/integrations/views/integration-settings.php:68
|
664 |
msgid ""
|
665 |
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
666 |
"(recommended)."
|
667 |
+
msgstr "Выберите \"нет\", если вы хотите спросить своих посетителей, прежде чем они подписались (рекомендуется)."
|
668 |
|
669 |
#: includes/integrations/views/integration-settings.php:78
|
670 |
msgid "MailChimp Lists"
|
690 |
|
691 |
#: includes/integrations/views/integration-settings.php:119
|
692 |
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
693 |
+
msgstr "Выберите \"да\", если флажок должен быть предварительно проставлен."
|
694 |
|
695 |
#: includes/integrations/views/integration-settings.php:127
|
696 |
msgid "Load some default CSS?"
|
712 |
msgid ""
|
713 |
"The selected MailChimp lists require non-default fields, which may prevent "
|
714 |
"this integration from working."
|
715 |
+
msgstr "Выбранные списки MailChimp требуют поля не по умолчанию, которые могут помешать этой интеграции работать."
|
716 |
|
717 |
#: includes/integrations/views/integration-settings.php:245
|
718 |
msgid ""
|
720 |
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
721 |
"sure only the email & name fields are marked as required fields for the "
|
722 |
"selected list(s)."
|
723 |
+
msgstr "Убедитесь, что вы <a href=\"%s\"> настроили плагин, чтобы отправить все необходимые поля </a> или <a href=\"%s\"> войдите в свой аккаунт MailChimp </a> и убедитесь, что только электронная почта и поле имени помечены, как обязательные поля для выбранных списков."
|
724 |
|
725 |
#: includes/integrations/views/integrations.php:30
|
726 |
msgid "Enabled"
|
727 |
+
msgstr "Включено"
|
728 |
|
729 |
#: includes/integrations/views/integrations.php:31
|
730 |
msgid "Name"
|
738 |
msgid ""
|
739 |
"This integration is enabled by default as it requires manual actions to "
|
740 |
"work."
|
741 |
+
msgstr "Эта интеграция включена по умолчанию, так как требует ручных действий для работы."
|
742 |
|
743 |
#: includes/integrations/views/integrations.php:57
|
744 |
msgid "Configure this integration"
|
745 |
+
msgstr "Настройка этой интеграции"
|
746 |
|
747 |
#: includes/views/general-settings.php:18
|
748 |
msgid "General Settings"
|
778 |
|
779 |
#: includes/views/general-settings.php:65
|
780 |
msgid "Usage Tracking"
|
781 |
+
msgstr "Отслеживание использования"
|
782 |
|
783 |
#: includes/views/general-settings.php:71
|
784 |
msgid ""
|
785 |
"Allow us to anonymously track how this plugin is used to help us make it "
|
786 |
"better fit your needs."
|
787 |
+
msgstr "Позвольте нам анонимно отслеживать, как этот плагин используется, чтобы помочь нам сделать его соответствующим вашим потребностям ещё лучше."
|
788 |
|
789 |
#: includes/views/general-settings.php:73
|
790 |
msgid "This is what we track."
|
791 |
+
msgstr "Это то, что мы отслеживаем."
|
792 |
|
793 |
#: includes/views/parts/admin-footer.php:11
|
794 |
msgid ""
|
812 |
"The table below shows your MailChimp lists and their details. If you just "
|
813 |
"applied changes to your MailChimp lists, please use the following button to "
|
814 |
"renew the cached lists configuration."
|
815 |
+
msgstr "Приведенная ниже таблица показывает списки Mailchimp и их детали. Если вы только что произвели изменения в списках MailChimp, пожалуйста, используйте следующую кнопку, чтобы обновить кэшированную конфигурацию списков."
|
816 |
|
817 |
#: includes/views/parts/lists-overview.php:14
|
818 |
msgid "No lists were found in your MailChimp account"
|
820 |
|
821 |
#: includes/views/parts/lists-overview.php:16
|
822 |
msgid "A total of %d lists were found in your MailChimp account."
|
823 |
+
msgstr "Всего списков найдено в вашем аккаунте MailChimp: %d."
|
824 |
|
825 |
#: includes/views/parts/lists-overview.php:21
|
826 |
msgid "List Name"
|
840 |
|
841 |
#: includes/views/parts/lists-overview.php:59
|
842 |
msgid "%s (%s) with field type %s."
|
843 |
+
msgstr "%s (%s) с типом поля %s."
|
844 |
|
845 |
#: includes/views/parts/lists-overview.php:83
|
846 |
msgid "%s (ID: %s) with type %s."
|
847 |
+
msgstr "%s (ID: %s) типа %s."
|
848 |
|
849 |
#: integrations/contact-form-7/admin-before.php:2
|
850 |
msgid ""
|
851 |
"To integrate with Contact Form 7, configure the settings below and then add "
|
852 |
"%s to your CF7 form mark-up."
|
853 |
+
msgstr "Для интеграции с Contact Form 7, отконфигурируйте нижеследующие настройки и затем добавьте %s в код формы CF7."
|
854 |
|
855 |
#: integrations/custom/admin-before.php:2
|
856 |
msgid ""
|
857 |
"To get a custom integration to work, include the following HTML in the form "
|
858 |
"you are trying to integrate with."
|
859 |
+
msgstr "Чтобы специальная интеграция заработала, включите следующей код HTML в форму с которой вы пытаетесь интегрироваться."
|
860 |
|
861 |
#: integrations/woocommerce/class-woocommerce.php:102
|
862 |
msgid "Order #%d"
|
863 |
+
msgstr "Заказ #%d"
|
864 |
|
865 |
#. Plugin Name of the plugin/theme
|
866 |
msgid "MailChimp for WordPress"
|
870 |
msgid ""
|
871 |
"https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
|
872 |
"wp&utm_campaign=plugins-page"
|
873 |
+
msgstr "https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page"
|
874 |
|
875 |
#. Description of the plugin/theme
|
876 |
msgid ""
|
877 |
"MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
|
878 |
"methods to your site."
|
879 |
+
msgstr "MailChimp для WordPress от ibericode. Добавляет различные высокоэффективные методы подписок для вашего сайта."
|
880 |
|
881 |
#. Author of the plugin/theme
|
882 |
msgid "ibericode"
|
883 |
+
msgstr "ibericode"
|
884 |
|
885 |
#. Author URI of the plugin/theme
|
886 |
msgid "https://ibericode.com/"
|
887 |
+
msgstr "https://ibericode.com/"
|
languages/mailchimp-for-wp-sv_SE.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-sv_SE.po
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
-
# Copyright (C) 2015
|
2 |
-
# This file is distributed under the
|
3 |
# Translators:
|
|
|
4 |
# Dan West <acc@dnw.st>, 2015
|
5 |
# Elger Lindgren <elger@bilddigital.se>, 2015
|
6 |
# Gunnar Norin <blittan@xbmc.org>, 2014
|
@@ -10,2095 +11,874 @@
|
|
10 |
msgid ""
|
11 |
msgstr ""
|
12 |
"Project-Id-Version: MailChimp for WordPress\n"
|
13 |
-
"Report-Msgid-Bugs-To:
|
14 |
-
"POT-Creation-Date: 2015-
|
15 |
-
"PO-Revision-Date:
|
16 |
-
"Last-Translator:
|
17 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/sv_SE/)\n"
|
18 |
"MIME-Version: 1.0\n"
|
19 |
"Content-Type: text/plain; charset=UTF-8\n"
|
20 |
"Content-Transfer-Encoding: 8bit\n"
|
21 |
"Language: sv_SE\n"
|
22 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
23 |
-
"X-Generator: grunt-wp-i18n 0.4.4\n"
|
24 |
-
"X-Poedit-Basepath: .\n"
|
25 |
-
"X-Poedit-Bookmarks: \n"
|
26 |
-
"X-Poedit-Country: UNITED STATES\n"
|
27 |
-
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2; _nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__; esc_html__;esc_attr_e; esc_html_e;esc_attr_x:1,2c; esc_html_x:1,2c;\n"
|
28 |
-
"X-Poedit-Language: English\n"
|
29 |
-
"X-Poedit-SearchPath-0: .\n"
|
30 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
31 |
-
"X-Textdomain-Support: yes\n"
|
32 |
-
|
33 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:141
|
34 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:157
|
35 |
-
msgid "Settings"
|
36 |
-
msgstr "Inställningar"
|
37 |
-
|
38 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:160
|
39 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:16
|
40 |
-
msgid "Upgrade to MailChimp for WordPress Pro"
|
41 |
-
msgstr "Uppgradera till MailChimp för WordPress Pro"
|
42 |
-
|
43 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:179
|
44 |
-
msgid "MailChimp API Settings"
|
45 |
-
msgstr "MailChimp API inställningar"
|
46 |
-
|
47 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:180
|
48 |
-
msgid "MailChimp"
|
49 |
-
msgstr "MailChimp"
|
50 |
-
|
51 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:185
|
52 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
53 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:506
|
54 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
55 |
-
msgid "Checkbox Settings"
|
56 |
-
msgstr "Checkboxinställningar"
|
57 |
-
|
58 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:186
|
59 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:507
|
60 |
-
msgid "Checkboxes"
|
61 |
-
msgstr "Kryssrutor"
|
62 |
-
|
63 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:191
|
64 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
65 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:364
|
66 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:512
|
67 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
|
68 |
-
msgid "Form Settings"
|
69 |
-
msgstr "Formulärinställningar"
|
70 |
-
|
71 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:192
|
72 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:513
|
73 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
|
74 |
-
msgid "Forms"
|
75 |
-
msgstr "Formulär"
|
76 |
-
|
77 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:196
|
78 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:197
|
79 |
-
msgid "Upgrade to Pro"
|
80 |
-
msgstr "Uppgradera till Pro"
|
81 |
-
|
82 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:283
|
83 |
-
msgid "This option is only available in MailChimp for WordPress Pro."
|
84 |
-
msgstr "Det här valet är endast tillgängligt för MailChimp for WordPress Pro"
|
85 |
-
|
86 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:285
|
87 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
88 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
89 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
90 |
-
msgid "(PRO ONLY)"
|
91 |
-
msgstr "(ENDAST PRO)"
|
92 |
-
|
93 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:286
|
94 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:610
|
95 |
-
msgid "Button text"
|
96 |
-
msgstr "Knapptext"
|
97 |
-
|
98 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:287
|
99 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
100 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:611
|
101 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
|
102 |
-
msgid "Initial value"
|
103 |
-
msgstr "Initialt värde"
|
104 |
-
|
105 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:288
|
106 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
107 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
|
108 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
109 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:612
|
110 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
111 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
|
112 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
|
113 |
-
msgid "(optional)"
|
114 |
-
msgstr "(valfri)"
|
115 |
-
|
116 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:289
|
117 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:613
|
118 |
-
msgid "Label for"
|
119 |
-
msgstr "Etikett för"
|
120 |
-
|
121 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:290
|
122 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:614
|
123 |
-
msgid "(or leave empty)"
|
124 |
-
msgstr "(eller lämna blankt)"
|
125 |
-
|
126 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:291
|
127 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:615
|
128 |
-
msgid "Subscribe"
|
129 |
-
msgstr "Prenumerera"
|
130 |
|
131 |
-
#:
|
132 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
|
133 |
-
msgid "Unsubscribe"
|
134 |
-
msgstr "Säg upp prenumerationen"
|
135 |
-
|
136 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
137 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
138 |
-
msgid "Comment form"
|
139 |
-
msgstr "Kommentarsfält"
|
140 |
-
|
141 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:317
|
142 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:655
|
143 |
-
msgid "Registration form"
|
144 |
-
msgstr "Registreringsformulär"
|
145 |
-
|
146 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:321
|
147 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
|
148 |
-
msgid "MultiSite forms"
|
149 |
-
msgstr "MultiSite-formulär"
|
150 |
-
|
151 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:325
|
152 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
153 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
|
154 |
-
msgid "BuddyPress registration"
|
155 |
-
msgstr "BuddyPress-registrering"
|
156 |
-
|
157 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:333
|
158 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:337
|
159 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
|
160 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
|
161 |
-
msgid "%s checkout"
|
162 |
-
msgstr "%s kassa"
|
163 |
-
|
164 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:365
|
165 |
-
msgid ""
|
166 |
-
"The plugin can only fetch a maximum of 100 lists from MailChimp, only your "
|
167 |
-
"first 100 lists are shown."
|
168 |
-
msgstr "Tillägget kan bara hämta 100 listor från MailChimp, dina 100 första listor visas därför bara."
|
169 |
-
|
170 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:370
|
171 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:719
|
172 |
-
msgid "Renewed MailChimp cache."
|
173 |
-
msgstr "Förnyad MailChimp buffert."
|
174 |
-
|
175 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:372
|
176 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:721
|
177 |
-
msgid "Failed to renew MailChimp cache - please try again later."
|
178 |
-
msgstr "Misslyckades att förnya MailChimp bufferten - var god försök igen senare."
|
179 |
-
|
180 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:21
|
181 |
-
msgid "MailChimp Sign-Up Form"
|
182 |
-
msgstr "MailChimp Registreringsformulär"
|
183 |
-
|
184 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:23
|
185 |
-
msgid "Displays your MailChimp for WordPress sign-up form"
|
186 |
-
msgstr "Visar din MailChimp for WordPress registreringsformulär"
|
187 |
-
|
188 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:67
|
189 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:71
|
190 |
-
msgid "Newsletter"
|
191 |
-
msgstr "Nyhetsbrev"
|
192 |
-
|
193 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:70
|
194 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:82
|
195 |
-
msgid "Title:"
|
196 |
-
msgstr "Titel:"
|
197 |
-
|
198 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:74
|
199 |
-
msgid ""
|
200 |
-
"You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
|
201 |
-
" form settings</a>."
|
202 |
-
msgstr "Du kan redigera ditt registreringsformulär i <a href=\"%s\">formulärinställningarna för MailChimp for WordPress</a>."
|
203 |
-
|
204 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:15
|
205 |
-
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
|
206 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:3
|
207 |
msgid "Email address"
|
208 |
msgstr "E-postadress"
|
209 |
|
210 |
-
#:
|
211 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:4
|
212 |
-
#: mailchimp-for-wordpress-pro/includes/config/inline-form.php:2
|
213 |
msgid "Your email address"
|
214 |
msgstr "Din e-postadress"
|
215 |
|
216 |
-
#:
|
217 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:5
|
218 |
-
#: mailchimp-for-wordpress-pro/includes/config/inline-form.php:3
|
219 |
msgid "Sign up"
|
220 |
msgstr "Registrera"
|
221 |
|
222 |
-
#:
|
223 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:9
|
224 |
-
msgid "Sign me up for the newsletter!"
|
225 |
-
msgstr "Registrera mig för nyhetsbrevet!"
|
226 |
-
|
227 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:44
|
228 |
msgid ""
|
229 |
-
"Thank you, your sign-up request was successful! Please check your
|
230 |
-
"inbox."
|
231 |
-
msgstr "Tack,
|
232 |
|
233 |
-
#:
|
234 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:35
|
235 |
msgid "Oops. Something went wrong. Please try again later."
|
236 |
msgstr "Oops. Nånting gick fel. Försök igen senare."
|
237 |
|
238 |
-
#:
|
239 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:36
|
240 |
msgid "Please provide a valid email address."
|
241 |
msgstr "Var vänlig fyll i en giltig e-postadress."
|
242 |
|
243 |
-
#:
|
244 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:37
|
245 |
msgid "Given email address is already subscribed, thank you!"
|
246 |
msgstr "Den e-postadressen du skrev in är redan registrerad, tack!"
|
247 |
|
248 |
-
#:
|
249 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:38
|
250 |
-
msgid "Please complete the CAPTCHA."
|
251 |
-
msgstr "Var vänlig fyll i CAPTCHA."
|
252 |
-
|
253 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:49
|
254 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:39
|
255 |
msgid "Please fill in the required fields."
|
256 |
msgstr "Var vänlig fyll i de obligatoriska fälten."
|
257 |
|
258 |
-
#:
|
259 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:40
|
260 |
msgid "You were successfully unsubscribed."
|
261 |
msgstr "Du har sagt upp prenumerationen"
|
262 |
|
263 |
-
#:
|
264 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
265 |
msgid "Given email address is not subscribed."
|
266 |
msgstr "Angiven epost-adress prenumererar ej."
|
267 |
|
268 |
-
#:
|
269 |
-
|
270 |
-
|
271 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
272 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:106
|
273 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:121
|
274 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:134
|
275 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:145
|
276 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:164
|
277 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:178
|
278 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
|
279 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:17
|
280 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:37
|
281 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:56
|
282 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:75
|
283 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:98
|
284 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:116
|
285 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:139
|
286 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
287 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:60
|
288 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:71
|
289 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
|
290 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
|
291 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:59
|
292 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:72
|
293 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:82
|
294 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:97
|
295 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:115
|
296 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:123
|
297 |
-
msgid "Yes"
|
298 |
-
msgstr "Ja"
|
299 |
-
|
300 |
-
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
301 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:56
|
302 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
|
303 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
304 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:27
|
305 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:110
|
306 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:125
|
307 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:136
|
308 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:149
|
309 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:168
|
310 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:182
|
311 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
|
312 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:21
|
313 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:41
|
314 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:60
|
315 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:79
|
316 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:102
|
317 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:120
|
318 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:140
|
319 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
320 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:62
|
321 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:75
|
322 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
|
323 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
|
324 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:22
|
325 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:63
|
326 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:73
|
327 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:86
|
328 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:101
|
329 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:116
|
330 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:124
|
331 |
-
msgid "No"
|
332 |
-
msgstr "Nej"
|
333 |
-
|
334 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:235
|
335 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:238
|
336 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:300
|
337 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:309
|
338 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:235
|
339 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:238
|
340 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:300
|
341 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:309
|
342 |
-
msgid "MailChimp for WordPress - Error"
|
343 |
-
msgstr "MailChimp for WordPress - Fel:"
|
344 |
-
|
345 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:236
|
346 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:236
|
347 |
-
msgid ""
|
348 |
-
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
349 |
-
"settings</a>."
|
350 |
-
msgstr "Välj en lista att prenumerera på i <a href=\"%s\">kryssruteinställningar</a>."
|
351 |
-
|
352 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:237
|
353 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:308
|
354 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:237
|
355 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:308
|
356 |
-
msgid "This message is only visible to administrators for debugging purposes."
|
357 |
-
msgstr "Detta meddelande syns bara för administratörer i felsökningssyfte."
|
358 |
-
|
359 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
|
360 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:301
|
361 |
-
msgid ""
|
362 |
-
"The MailChimp server returned the following error message as a response to "
|
363 |
-
"our sign-up request:"
|
364 |
-
msgstr "MailChimp servern returnerade följande felmeddelande som ett svar på registreringsförfrågan:"
|
365 |
-
|
366 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:303
|
367 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:303
|
368 |
-
msgid "This is the data that was sent to MailChimp:"
|
369 |
-
msgstr "Detta är datat som skickades till MailChimp:"
|
370 |
-
|
371 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:304
|
372 |
-
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:216
|
373 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:304
|
374 |
-
msgid "Email address:"
|
375 |
-
msgstr "E-postadress:"
|
376 |
-
|
377 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:306
|
378 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:306
|
379 |
-
msgid "Merge variables:"
|
380 |
-
msgstr "Sammanfoga variabler:"
|
381 |
-
|
382 |
-
#. Plugin Name of the plugin/theme
|
383 |
-
msgid "MailChimp for WordPress"
|
384 |
-
msgstr "MailChimp for WordPress"
|
385 |
-
|
386 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:12
|
387 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:99
|
388 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
|
389 |
-
msgid "MailChimp Settings"
|
390 |
-
msgstr "MailChimp-inställningar"
|
391 |
-
|
392 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
393 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
394 |
-
msgid "API Settings"
|
395 |
-
msgstr "API Inställningar"
|
396 |
-
|
397 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
398 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
399 |
-
msgid "CONNECTED"
|
400 |
-
msgstr "ANSLUTEN"
|
401 |
-
|
402 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:26
|
403 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
|
404 |
-
msgid "NOT CONNECTED"
|
405 |
-
msgstr "EJ ANSLUTEN"
|
406 |
-
|
407 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:32
|
408 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
|
409 |
-
msgid "API Key"
|
410 |
-
msgstr "API-nyckel"
|
411 |
-
|
412 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:34
|
413 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
|
414 |
-
msgid "Your MailChimp API key"
|
415 |
-
msgstr "Din MailChimp API-nyckel"
|
416 |
-
|
417 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
418 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
419 |
-
msgid "Get your API key here."
|
420 |
-
msgstr "Hitta din API-nyckel här."
|
421 |
|
422 |
-
#:
|
423 |
-
|
424 |
-
|
425 |
-
msgstr "MailChimp Data"
|
426 |
-
|
427 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:48
|
428 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
|
429 |
-
msgid ""
|
430 |
-
"The table below shows your MailChimp lists data. If you applied changes to "
|
431 |
-
"your MailChimp lists, please use the following button to renew your cached "
|
432 |
-
"data."
|
433 |
-
msgstr "Tabellen nedan visar dina MailChimp-listors data. Om du sparat dina ändringar i dina MailChimp-listor, använd denna knapp för att förnya dina cachade data."
|
434 |
-
|
435 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
436 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
437 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
|
438 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
|
439 |
-
msgid "Renew MailChimp lists"
|
440 |
-
msgstr "Förnya MailChimplistor"
|
441 |
-
|
442 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
443 |
-
msgid "No lists were found in your MailChimp account"
|
444 |
-
msgstr "Inga listor kunde hittas i ditt MailChimp-konto."
|
445 |
-
|
446 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
|
447 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
|
448 |
-
msgid ""
|
449 |
-
"To use sign-up checkboxes, select at least one list and one form to add the "
|
450 |
-
"checkbox to."
|
451 |
-
msgstr "För att använda kryssrutor i kontoskapandet, välj minst en lista och ett formulär att placera kryssrutorna i."
|
452 |
-
|
453 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
454 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
455 |
-
msgid "MailChimp settings for checkboxes"
|
456 |
-
msgstr "MailChimpinställningar för checkboxar"
|
457 |
-
|
458 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
459 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
460 |
-
msgid ""
|
461 |
-
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
462 |
-
" subscribe people to."
|
463 |
-
msgstr "Om du vill använda kryssrutor i kontoskapandet, välj minst en MailChimp-lista för folk att anmäla sig till."
|
464 |
-
|
465 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
466 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
467 |
-
msgid "MailChimp Lists"
|
468 |
-
msgstr "MailChimp-listor"
|
469 |
-
|
470 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
|
471 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:48
|
472 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:17
|
473 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:38
|
474 |
-
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
475 |
-
msgstr "Inga listor funna, <a href=\"%s\">har du kopplat dig till MailChimp</a>?"
|
476 |
-
|
477 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:42
|
478 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:45
|
479 |
-
msgid ""
|
480 |
-
"Select the list(s) to which people who check the checkbox should be "
|
481 |
-
"subscribed."
|
482 |
-
msgstr "Välj de listor som den anmälande ska anmälas till."
|
483 |
-
|
484 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
|
485 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:102
|
486 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:13
|
487 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:51
|
488 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:55
|
489 |
-
msgid "Double opt-in?"
|
490 |
-
msgstr "Dubbel bekräftelse?"
|
491 |
-
|
492 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:59
|
493 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:113
|
494 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:28
|
495 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:53
|
496 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:66
|
497 |
-
msgid ""
|
498 |
-
"Select \"yes\" if you want people to confirm their email address before "
|
499 |
-
"being subscribed (recommended)"
|
500 |
-
msgstr "Välj \"ja\" om du vill att folk ska bekräfta sin emailadress innan de läggs till i listan (rekommenderas)"
|
501 |
-
|
502 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
|
503 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:82
|
504 |
-
msgid "Checkbox settings"
|
505 |
-
msgstr "Checkbox-inställningar"
|
506 |
-
|
507 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
|
508 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:85
|
509 |
-
msgid "Add the checkbox to these forms"
|
510 |
-
msgstr "Lägg till checkboxen till dessa formulär"
|
511 |
-
|
512 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
|
513 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:92
|
514 |
-
msgid "Selecting a form will automatically add the sign-up checkbox to it."
|
515 |
-
msgstr "Vid val av ett formulär kommer en 'registrera dig'-ruta automatiskt att läggas till."
|
516 |
-
|
517 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
|
518 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
|
519 |
-
msgid "Checkbox label text"
|
520 |
-
msgstr "Beteckning för kryssruta"
|
521 |
-
|
522 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
|
523 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
524 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:148
|
525 |
-
msgid "HTML tags like %s are allowed in the label text."
|
526 |
-
msgstr "HTML-taggar som %s är tillåtna i labeltexten."
|
527 |
-
|
528 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
|
529 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
|
530 |
-
msgid "Pre-check the checkbox?"
|
531 |
-
msgstr "Kryssa i kryssrutan i förväg?"
|
532 |
-
|
533 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
|
534 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:117
|
535 |
-
msgid "Load some default CSS?"
|
536 |
-
msgstr "Ska någon standard-CSS laddas?"
|
537 |
-
|
538 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
|
539 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:119
|
540 |
-
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
541 |
-
msgstr "Välj \"ja\" om kryssrutan befinner sig på ett konstigt ställe"
|
542 |
-
|
543 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
|
544 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
|
545 |
-
msgid "WooCommerce checkbox position"
|
546 |
-
msgstr "Kryssrutans placering för WooCommerce"
|
547 |
-
|
548 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
|
549 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:125
|
550 |
-
msgid "After the billing details"
|
551 |
-
msgstr "Efter faktureringsinformation"
|
552 |
|
553 |
-
#:
|
554 |
-
#:
|
555 |
-
msgid "
|
556 |
-
msgstr "
|
557 |
|
558 |
-
#:
|
559 |
-
|
560 |
-
|
561 |
-
"Choose the position for the checkbox in your WooCommerce checkout form."
|
562 |
-
msgstr "Välj läget för kryssrutan i din WooCommerce-kassas formulär."
|
563 |
|
564 |
-
#:
|
565 |
msgid ""
|
566 |
-
"
|
567 |
-
|
568 |
-
msgstr "För att använda MailChimps registreringsformulär, konfigurera nedanstående formulär och sedan klistra in %s i ett inläggs innehåll eller sida eller också använder du widgeten."
|
569 |
-
|
570 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:20
|
571 |
-
msgid "Required form settings"
|
572 |
-
msgstr "Obligatoriska formulärinställningar"
|
573 |
-
|
574 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:24
|
575 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
|
576 |
-
msgid "Load form styles (CSS)?"
|
577 |
-
msgstr "Ladda formulärstilar (CSS)?"
|
578 |
-
|
579 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:28
|
580 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
|
581 |
-
msgid "Yes, load basic form styles"
|
582 |
-
msgstr "Ja, ladda standard formulärstilar"
|
583 |
-
|
584 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
585 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
|
586 |
-
msgid "Yes, load my custom form styles"
|
587 |
-
msgstr "Ja, ladda mina anpassade formulärstilar"
|
588 |
-
|
589 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:30
|
590 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
|
591 |
-
msgid "Yes, load default form theme"
|
592 |
-
msgstr "Ja, ladda standard formulärtema"
|
593 |
-
|
594 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
595 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
596 |
-
msgid "Light Theme"
|
597 |
-
msgstr "Ljust tema"
|
598 |
-
|
599 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:32
|
600 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:27
|
601 |
-
msgid "Red Theme"
|
602 |
-
msgstr "Rött tema"
|
603 |
-
|
604 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:33
|
605 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:28
|
606 |
-
msgid "Green Theme"
|
607 |
-
msgstr "Grönt tema"
|
608 |
-
|
609 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:34
|
610 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:29
|
611 |
-
msgid "Blue Theme"
|
612 |
-
msgstr "Blått tema"
|
613 |
-
|
614 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:35
|
615 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:30
|
616 |
-
msgid "Dark Theme"
|
617 |
-
msgstr "Mörkt tema"
|
618 |
-
|
619 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
620 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
|
621 |
-
msgid "Custom Color Theme"
|
622 |
-
msgstr "Eget färgschema-tema"
|
623 |
|
624 |
-
#:
|
625 |
msgid ""
|
626 |
-
"
|
627 |
-
"
|
628 |
-
msgstr "
|
629 |
|
630 |
-
#:
|
631 |
-
|
632 |
-
|
633 |
-
msgstr "Listor detta formulär prenumererar på"
|
634 |
|
635 |
-
#:
|
636 |
-
|
637 |
-
|
638 |
-
"
|
639 |
-
msgstr "Välj lista(or) som folk som lämnar in detta formulär skall prenumerera på."
|
640 |
|
641 |
-
#:
|
642 |
-
msgid "
|
643 |
-
msgstr "
|
644 |
|
645 |
-
#:
|
646 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:91
|
647 |
msgid ""
|
648 |
-
"
|
649 |
-
"
|
650 |
-
msgstr "
|
651 |
-
|
652 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:92
|
653 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/missing-fields-notice.php:4
|
654 |
-
msgid "Your form is missing the following (required) form fields:"
|
655 |
-
msgstr "Formuläret saknas följande (nödväniga) formulärfält:"
|
656 |
|
657 |
-
#:
|
658 |
-
|
659 |
-
|
660 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
|
661 |
-
msgid "Send Welcome Email?"
|
662 |
-
msgstr "Skicka välkomste-post?"
|
663 |
|
664 |
-
#:
|
665 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
|
666 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:64
|
667 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:75
|
668 |
msgid ""
|
669 |
-
"
|
670 |
-
"
|
671 |
-
msgstr "
|
672 |
|
673 |
-
#:
|
674 |
-
|
675 |
-
|
676 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:78
|
677 |
-
msgid "Update existing subscribers?"
|
678 |
-
msgstr "Uppdatera befintliga prenumeranter?"
|
679 |
|
680 |
-
#:
|
681 |
-
|
682 |
-
|
683 |
-
msgid ""
|
684 |
-
"Select \"yes\" if you want to update existing subscribers (instead of "
|
685 |
-
"showing the \"already subscribed\" message)."
|
686 |
-
msgstr "Välj \"Ja\" om du vill uppdatera befintliga prenumeranter (i stället för att visa meddelandet \"redan prenumerant\")."
|
687 |
|
688 |
-
#:
|
689 |
-
|
690 |
-
|
691 |
-
msgid "Replace interest groups?"
|
692 |
-
msgstr "Ersätt intressegrupper?"
|
693 |
|
694 |
-
#:
|
695 |
-
|
696 |
-
|
697 |
-
msgid ""
|
698 |
-
"Select \"yes\" if you want to replace the interest groups with the groups "
|
699 |
-
"provided instead of adding the provided groups to the member's interest "
|
700 |
-
"groups (only when updating a subscriber)."
|
701 |
-
msgstr "Välj \"Ja\" om du vill ersätta intressegrupperna med de grupper som redan finns, i stället för att lägga till de befintliga grupperna till medlemmens intressegrupper (endast vid uppdatering en prenumerant)."
|
702 |
-
|
703 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:156
|
704 |
-
msgid "Form Settings & Messages"
|
705 |
-
msgstr "Formulärinställningar och meddelanden"
|
706 |
-
|
707 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:160
|
708 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
|
709 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:113
|
710 |
-
msgid "Enable AJAX form submission?"
|
711 |
-
msgstr "Aktivera AJAX anmälningsformulär?"
|
712 |
-
|
713 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:171
|
714 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
|
715 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
|
716 |
-
msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
|
717 |
-
msgstr "Välj \"Ja\" om du vill använda AJAX (JavaScript) för att lämna in formulär."
|
718 |
-
|
719 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:174
|
720 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
|
721 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:121
|
722 |
-
msgid "Hide form after a successful sign-up?"
|
723 |
-
msgstr "Dölj formuläret efter en lyckad registrering?"
|
724 |
|
725 |
-
#:
|
726 |
-
|
727 |
-
|
728 |
-
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
729 |
-
msgstr "Välj \"ja\" för att dölja formulärfälten efter en framgångsrik registrering."
|
730 |
|
731 |
-
#:
|
732 |
-
|
733 |
-
|
734 |
-
msgid "Redirect to URL after successful sign-ups"
|
735 |
-
msgstr "Omdirigera till URL efter framgångsrika registreringar"
|
736 |
|
737 |
-
#:
|
738 |
-
|
739 |
-
|
|
|
740 |
|
741 |
-
#:
|
742 |
-
|
743 |
-
|
744 |
-
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
745 |
-
" (absolute) URLs, including <code>http://</code>."
|
746 |
-
msgstr "Lämna tomt eller ange <code>0</code> för ingen omdirigering. Använd fullständiga (absoluta) URL:er, inklusive <code>http://</code>"
|
747 |
|
748 |
-
#:
|
749 |
-
|
750 |
-
|
751 |
-
msgstr "Prenumerationen lyckades"
|
752 |
|
753 |
-
#:
|
754 |
-
|
755 |
-
|
756 |
-
msgid ""
|
757 |
-
"The text that shows when an email address is successfully subscribed to the "
|
758 |
-
"selected list(s)."
|
759 |
-
msgstr "Den text som visas när en epostadress lyckats prenumerera på vald lista(or)."
|
760 |
|
761 |
-
#:
|
762 |
-
|
763 |
-
|
764 |
-
msgid "Invalid email address"
|
765 |
-
msgstr "Ogiltig epostadress"
|
766 |
|
767 |
-
#:
|
768 |
-
|
769 |
-
|
770 |
-
msgid "The text that shows when an invalid email address is given."
|
771 |
-
msgstr "Den text som visas när en ogiltig epostadress angivits."
|
772 |
|
773 |
-
#:
|
774 |
-
|
775 |
-
|
776 |
-
msgid "Required field missing"
|
777 |
-
msgstr "Obligatoriskt fält saknas"
|
778 |
|
779 |
-
#:
|
780 |
-
|
781 |
-
|
782 |
-
msgid ""
|
783 |
-
"The text that shows when a required field for the selected list(s) is "
|
784 |
-
"missing."
|
785 |
-
msgstr "Den text som visas när ett obligatoriskt fält för vald lista(or) saknas."
|
786 |
|
787 |
-
#:
|
788 |
-
#:
|
789 |
-
|
790 |
-
|
791 |
-
msgstr "Redan prenumerant"
|
792 |
|
793 |
-
#:
|
794 |
-
|
795 |
-
|
796 |
-
msgid ""
|
797 |
-
"The text that shows when the given email is already subscribed to the "
|
798 |
-
"selected list(s)."
|
799 |
-
msgstr "Den text som visas när den angivna epostadressen redan prenumererar på vald lista(or)."
|
800 |
|
801 |
-
#:
|
802 |
-
|
803 |
-
|
804 |
-
msgid "Invalid CAPTCHA"
|
805 |
-
msgstr "Ogiltigt CAPTCHA"
|
806 |
|
807 |
-
#:
|
808 |
-
|
809 |
-
|
810 |
-
msgstr "Allmänt fel"
|
811 |
|
812 |
-
#:
|
813 |
-
|
814 |
-
|
815 |
-
msgid "The text that shows when a general error occured."
|
816 |
-
msgstr "Den text som visas när ett allmänt fel uppstått."
|
817 |
|
818 |
-
#:
|
819 |
-
|
820 |
-
|
821 |
-
msgid "Unsubscribed"
|
822 |
-
msgstr "Prenumeration uppsagd"
|
823 |
|
824 |
-
#:
|
825 |
-
|
826 |
-
|
827 |
-
msgid ""
|
828 |
-
"When using the unsubscribe method, this is the text that shows when the "
|
829 |
-
"given email address is successfully unsubscribed from the selected list(s)."
|
830 |
-
msgstr "När uppsägningsmetoden används, är det den här texten som visas när angiven epostadress har lyckats säga upp prenumerationen från vald lista(or)."
|
831 |
|
832 |
-
#:
|
833 |
-
|
834 |
-
|
835 |
-
msgid "Not subscribed"
|
836 |
-
msgstr "Prenumererar inte"
|
837 |
|
838 |
-
#:
|
839 |
-
|
840 |
-
|
841 |
-
msgid ""
|
842 |
-
"When using the unsubscribe method, this is the text that shows when the "
|
843 |
-
"given email address is not on the selected list(s)."
|
844 |
-
msgstr "När uppsägningsmetoden används, är det den här texten som visas när angiven epostadress inte finns i vald lista(or)."
|
845 |
|
846 |
-
#:
|
847 |
-
|
848 |
-
|
849 |
-
msgid "HTML tags like %s are allowed in the message fields."
|
850 |
-
msgstr "HTML-taggar som %s är tillåtna i meddelandefält."
|
851 |
|
852 |
-
#:
|
853 |
-
msgid "
|
854 |
-
msgstr "
|
855 |
|
856 |
-
#:
|
857 |
-
msgid "
|
858 |
-
msgstr "
|
859 |
|
860 |
-
#:
|
861 |
-
msgid ""
|
862 |
-
"
|
863 |
-
"href=\"%s\">Theme Editor</a> or by using a plugin like %s"
|
864 |
-
msgstr "Du kan lägga till CSSreglerna till din formatmall genom att använda <a href=\"%s\">Temaredigeraren</a> eller ett tillägg som %s"
|
865 |
|
866 |
-
#:
|
867 |
-
msgid ""
|
868 |
-
|
869 |
-
"selectors you can use to target the different form elements."
|
870 |
-
msgstr "<a href=\"%s\" target=\"_blank\">plugin FAQ</a> listar de olika CSS-valen du kan använda för att rikta de olika formulärelementen."
|
871 |
|
872 |
-
#:
|
873 |
-
msgid ""
|
874 |
-
"If you need an easier way to style your forms, consider <a "
|
875 |
-
"href=\"%s\">upgrading to MailChimp for WordPress Pro</a> which comes with an"
|
876 |
-
" easy Styles Builder."
|
877 |
-
msgstr "Om du behöver ett enklare sätt att utforma dina formulär bör du överväga att <a href=\"%s\">uppgradera till MailChimp for WordPress Pro</a> som kommer med en enkel utformningsredigerare."
|
878 |
-
|
879 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:272
|
880 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
|
881 |
-
msgid "Variables"
|
882 |
-
msgstr "Variabler"
|
883 |
-
|
884 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
885 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
886 |
msgid ""
|
887 |
-
"
|
888 |
-
"
|
889 |
-
msgstr "
|
890 |
-
|
891 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
892 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
893 |
-
msgid "This allows you to personalise your form or response messages."
|
894 |
-
msgstr "Detta gör att du kan anpassa ditt formulär eller svarsmeddelanden."
|
895 |
-
|
896 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:282
|
897 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:16
|
898 |
-
msgid "Replaced with the visitor's email (if set in URL or cookie)."
|
899 |
-
msgstr "Ersatt med besökarens epostadress ( on datt i URL eller kaka)."
|
900 |
-
|
901 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:286
|
902 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:20
|
903 |
-
msgid "Replaced with the form response (error or success messages)."
|
904 |
-
msgstr "Ersatt med formulärets svar (fel- eller framgångs-meddelanden)."
|
905 |
|
906 |
-
#:
|
907 |
-
|
908 |
-
|
909 |
-
msgstr "Ersatt med ett captchafält."
|
910 |
|
911 |
-
#:
|
912 |
-
|
913 |
-
|
914 |
-
msgstr "Ersatt med prenumerantens nummer på vald lista(or)"
|
915 |
|
916 |
-
#:
|
917 |
-
|
918 |
-
|
919 |
-
msgstr "Ersatt med aktuell hemsidas språk, t.ex: %s"
|
920 |
|
921 |
-
#:
|
922 |
-
|
923 |
-
|
924 |
-
msgstr "Ersatt med besökarens IP-adress"
|
925 |
|
926 |
-
#:
|
927 |
-
|
928 |
-
|
929 |
-
msgstr "Ersatt med dagens datum (åååå-mm-dd t.ex. %s)"
|
930 |
|
931 |
-
#:
|
932 |
-
|
933 |
-
|
934 |
-
msgstr "Ersatt med aktuell tid (hh:mm:ss t.ex.: %s)"
|
935 |
|
936 |
-
#:
|
937 |
-
|
938 |
-
|
939 |
-
"Replaced with the logged in user's email (or nothing, if there is no logged "
|
940 |
-
"in user)"
|
941 |
-
msgstr "Ersatt med den inloggade användarens e-postadress (eller ingenting, om det inte finns någon inloggad användare)"
|
942 |
-
|
943 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:320
|
944 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:54
|
945 |
-
msgid "First name of the current user"
|
946 |
-
msgstr "Förnamnet på den aktuella användaren"
|
947 |
-
|
948 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:324
|
949 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:58
|
950 |
-
msgid "Last name of the current user"
|
951 |
-
msgstr "Efternamnet på den aktuella användaren"
|
952 |
-
|
953 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:328
|
954 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:62
|
955 |
-
msgid "Current user ID"
|
956 |
-
msgstr "Aktuell användar-ID"
|
957 |
-
|
958 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:332
|
959 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:66
|
960 |
-
msgid "Current URL"
|
961 |
-
msgstr "Nuvarande URL"
|
962 |
-
|
963 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:336
|
964 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:70
|
965 |
-
msgid "The value of the <strong>FNAME</strong> field, if set."
|
966 |
-
msgstr "Värdet av fältet <strong>FNAME</strong> om det är satt."
|
967 |
-
|
968 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
969 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:31
|
970 |
-
msgid "Add a new field"
|
971 |
-
msgstr "Lägg till nytt fält"
|
972 |
-
|
973 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
|
974 |
-
msgid "Use the tool below to generate the HTML for your form fields."
|
975 |
-
msgstr "Använd verktyget nedan för att generera HTML-kod för dina formulärfält."
|
976 |
-
|
977 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
|
978 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:35
|
979 |
-
msgid "Select MailChimp field.."
|
980 |
-
msgstr "Välj MailChimpfält.."
|
981 |
-
|
982 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:19
|
983 |
-
msgid "Submit Button"
|
984 |
-
msgstr "Skicka-knapp"
|
985 |
-
|
986 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
987 |
-
msgid "Subscribe / unsubscribe choice"
|
988 |
-
msgstr "Prenumerations- / avregistrerings-val"
|
989 |
-
|
990 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
991 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
|
992 |
-
msgid "List choice"
|
993 |
-
msgstr "Listval"
|
994 |
-
|
995 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
996 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
997 |
-
msgid "Label"
|
998 |
-
msgstr "Etikett"
|
999 |
-
|
1000 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
|
1001 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
|
1002 |
-
msgid "Placeholder"
|
1003 |
-
msgstr "Platshållare"
|
1004 |
-
|
1005 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
|
1006 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
|
1007 |
-
msgid "Labels"
|
1008 |
-
msgstr "Etiketter"
|
1009 |
-
|
1010 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
|
1011 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
|
1012 |
-
msgid "(leave empty to hide)"
|
1013 |
-
msgstr "(lämna tomt för att dölja)"
|
1014 |
-
|
1015 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:49
|
1016 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:69
|
1017 |
-
msgid "Wrap in paragraph %s tags?"
|
1018 |
-
msgstr "Omslut med paragraf %s taggar?"
|
1019 |
-
|
1020 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:54
|
1021 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:73
|
1022 |
-
msgid "Required field?"
|
1023 |
-
msgstr "Obligatoriskt fält?"
|
1024 |
-
|
1025 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:58
|
1026 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:77
|
1027 |
-
msgid "Add to form"
|
1028 |
-
msgstr "Lägg till i formulär"
|
1029 |
-
|
1030 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:62
|
1031 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:81
|
1032 |
-
msgid "Generated HTML"
|
1033 |
-
msgstr "Genererad HTML"
|
1034 |
-
|
1035 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:69
|
1036 |
-
msgid "Select at least one list first."
|
1037 |
-
msgstr "Välj åtminstone en lista först."
|
1038 |
-
|
1039 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
|
1040 |
-
msgid ""
|
1041 |
-
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
1042 |
-
"translated in your language or do you spot errors with the current "
|
1043 |
-
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
1044 |
-
"translation project and click \"help translate\"</a>."
|
1045 |
-
msgstr "MailChimp for WordPress behöver översättare. Om tillägget inte är översatt till ditt språk eller om du hittar felaktigheter i nuvarande översättningar, är vi glada om du hjälper oss. Det är enkelt, hoppa bara över till <a href=\"%s\"> översättningsprojektet och klicka på \"hjälp till att översätta\" </a>."
|
1046 |
|
1047 |
-
#:
|
1048 |
-
msgid ""
|
1049 |
-
|
1050 |
-
"Pro</a> for an even better plugin, you will love it."
|
1051 |
-
msgstr "Gillar du vårt tillägg? <a href=\"%s\">Uppgradera till MailChimp for WordPress Pro</a> för ett ännu bättre tillägg, du kommer att älska det."
|
1052 |
|
1053 |
-
#:
|
1054 |
-
#:
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
|
|
1058 |
|
1059 |
-
#:
|
1060 |
-
msgid "
|
1061 |
-
msgstr "
|
1062 |
|
1063 |
-
#:
|
1064 |
-
msgid ""
|
1065 |
-
|
1066 |
-
"documentation</a>, the plugin <a href=\"%s\">FAQ</a> or use the <a "
|
1067 |
-
"href=\"%s\">support forums</a> on WordPress.org."
|
1068 |
-
msgstr "Se till att kolla <a href=\"%s\">MailChimp for WordPress dokumentation</a>, tilläggets <a href=\"%s\">FAQ</a> eller använd <a href=\"%s\">support forum</a> på WordPress.org."
|
1069 |
|
1070 |
-
#:
|
1071 |
-
msgid "
|
1072 |
-
msgstr "
|
1073 |
|
1074 |
-
#:
|
1075 |
-
msgid "
|
1076 |
-
msgstr "
|
1077 |
|
1078 |
-
#:
|
1079 |
-
msgid "
|
1080 |
-
msgstr "
|
1081 |
|
1082 |
-
#:
|
1083 |
-
|
1084 |
-
|
|
|
1085 |
|
1086 |
-
#:
|
1087 |
msgid ""
|
1088 |
-
"
|
1089 |
-
"
|
1090 |
-
msgstr "
|
1091 |
|
1092 |
-
#:
|
1093 |
-
msgid "
|
1094 |
-
msgstr "
|
1095 |
|
1096 |
-
#:
|
1097 |
-
msgid "
|
1098 |
-
msgstr "
|
1099 |
|
1100 |
-
#:
|
1101 |
-
msgid ""
|
1102 |
-
|
1103 |
-
msgstr "Det här tillägget har en ännu bättre premiumversion, du kommer absolut att gilla det."
|
1104 |
|
1105 |
-
#:
|
1106 |
-
msgid "
|
1107 |
-
msgstr "
|
1108 |
|
1109 |
-
#:
|
1110 |
-
msgid "
|
1111 |
-
msgstr "
|
1112 |
|
1113 |
-
#:
|
1114 |
-
msgid "
|
1115 |
-
|
|
|
|
|
1116 |
|
1117 |
-
#:
|
1118 |
-
|
1119 |
-
|
|
|
1120 |
|
1121 |
-
#:
|
1122 |
-
msgid "
|
1123 |
-
msgstr "
|
1124 |
|
1125 |
-
#:
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
|
|
1129 |
|
1130 |
-
#:
|
1131 |
-
msgid "
|
1132 |
-
msgstr "
|
1133 |
|
1134 |
-
#:
|
1135 |
-
msgid "
|
1136 |
-
msgstr "
|
1137 |
|
1138 |
-
#:
|
1139 |
-
msgid "
|
1140 |
-
msgstr "
|
1141 |
|
1142 |
-
#:
|
1143 |
-
msgid "
|
1144 |
-
msgstr "
|
1145 |
|
1146 |
-
#:
|
1147 |
-
msgid "
|
1148 |
-
msgstr "
|
1149 |
|
1150 |
-
#:
|
1151 |
-
msgid "
|
1152 |
-
msgstr "
|
1153 |
|
1154 |
-
#:
|
1155 |
-
msgid "
|
1156 |
-
msgstr "
|
1157 |
|
1158 |
-
#:
|
1159 |
-
msgid "
|
1160 |
-
msgstr "
|
1161 |
|
1162 |
-
#:
|
1163 |
-
msgid "
|
1164 |
-
msgstr "
|
1165 |
|
1166 |
-
#:
|
1167 |
-
msgid "Form
|
1168 |
-
msgstr "
|
1169 |
|
1170 |
-
#:
|
1171 |
-
msgid "Form
|
1172 |
-
msgstr "
|
1173 |
|
1174 |
-
#:
|
1175 |
-
msgid "
|
1176 |
-
|
|
|
|
|
1177 |
|
1178 |
-
#:
|
1179 |
-
msgid "
|
1180 |
-
msgstr "
|
1181 |
|
1182 |
-
#:
|
1183 |
-
msgid "
|
1184 |
-
msgstr "
|
1185 |
|
1186 |
-
#:
|
1187 |
-
|
1188 |
-
|
1189 |
-
msgid "Reports"
|
1190 |
-
msgstr "Rapporter"
|
1191 |
|
1192 |
-
#:
|
1193 |
-
msgid ""
|
1194 |
-
"
|
1195 |
-
"href=\"%s\">Provide a valid API key.</a>"
|
1196 |
-
msgstr "Se till att insticksprogrammet är anslutet till MailChimp. <a href=\\\"%s\\\">Ange ett giltigt API nyckel.</a>"
|
1197 |
|
1198 |
-
#:
|
1199 |
msgid ""
|
1200 |
-
"
|
1201 |
-
"
|
1202 |
-
msgstr "
|
1203 |
|
1204 |
-
#:
|
1205 |
-
msgid ""
|
1206 |
-
|
1207 |
-
"settings you set in the Lite version, you can safely <a "
|
1208 |
-
"href=\"%s\">deactivate it now</a>."
|
1209 |
-
msgstr "<strong>Wälkommen till MailChimp for WordPress Pro!</strong> Vi förde över de inställningar du gjorde i gratisversionen, så du kan <a href=\"%s\">avaktivera det nu</a>."
|
1210 |
|
1211 |
-
#:
|
1212 |
-
msgid "
|
1213 |
-
msgstr "
|
1214 |
|
1215 |
-
#:
|
1216 |
msgid ""
|
1217 |
-
"
|
1218 |
-
"
|
1219 |
-
msgstr "
|
1220 |
|
1221 |
-
#:
|
1222 |
-
msgid "
|
1223 |
-
msgstr "
|
1224 |
|
1225 |
-
#:
|
1226 |
-
msgid "The
|
1227 |
-
msgstr "
|
1228 |
|
1229 |
-
#:
|
1230 |
-
msgid "
|
1231 |
-
msgstr "
|
1232 |
|
1233 |
-
#:
|
1234 |
msgid ""
|
1235 |
-
"
|
1236 |
-
"
|
1237 |
-
msgstr "
|
1238 |
-
|
1239 |
-
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
|
1240 |
-
msgid "IP Address"
|
1241 |
-
msgstr "IP-adress"
|
1242 |
|
1243 |
-
#:
|
1244 |
-
msgid "
|
1245 |
-
msgstr "
|
1246 |
|
1247 |
-
#:
|
1248 |
-
msgid "
|
1249 |
-
|
|
|
|
|
1250 |
|
1251 |
-
#:
|
1252 |
-
msgid "
|
1253 |
-
msgstr "
|
1254 |
|
1255 |
-
#:
|
1256 |
-
|
1257 |
-
|
1258 |
-
msgstr "Lista"
|
1259 |
|
1260 |
-
#:
|
1261 |
-
msgid "
|
1262 |
-
msgstr "
|
1263 |
|
1264 |
-
#:
|
1265 |
msgid ""
|
1266 |
-
"
|
1267 |
-
"
|
1268 |
-
"
|
1269 |
-
msgstr "Observera att du har aktiverat dubbel opt-in för \"%s\" formuläret. Användaren kommer inte att läggas till de valda MailChimplistorna förrän de bekräftar sina e-postadresser."
|
1270 |
-
|
1271 |
-
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:277
|
1272 |
-
msgid "This email was auto-sent by the MailChimp for WordPress plugin."
|
1273 |
-
msgstr "Denna e-post var automatiskt skickad av tillägget MailChimp for Wordpress."
|
1274 |
-
|
1275 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:20
|
1276 |
-
msgid "MailChimp for WP Form"
|
1277 |
-
msgstr "MailChimp for WP Form"
|
1278 |
|
1279 |
-
#:
|
1280 |
-
msgid "
|
1281 |
-
msgstr "
|
1282 |
|
1283 |
-
#:
|
1284 |
msgid ""
|
1285 |
-
"
|
1286 |
-
"
|
1287 |
-
msgstr "
|
1288 |
|
1289 |
-
#:
|
1290 |
-
msgid "
|
1291 |
-
msgstr "
|
1292 |
|
1293 |
-
#:
|
1294 |
-
msgid "
|
1295 |
-
msgstr "
|
1296 |
|
1297 |
-
#:
|
1298 |
-
msgid "
|
1299 |
-
msgstr "
|
1300 |
|
1301 |
-
#:
|
1302 |
-
msgid ""
|
1303 |
-
"
|
1304 |
-
"inbox to confirm."
|
1305 |
-
msgstr "Tack, din registreringsbegäran lyckades! Kontrollera din inkorg för att bekräfta."
|
1306 |
|
1307 |
-
#:
|
1308 |
-
|
1309 |
-
|
|
|
1310 |
|
1311 |
-
#:
|
1312 |
msgid ""
|
1313 |
-
"
|
1314 |
-
"
|
1315 |
-
msgstr "
|
1316 |
|
1317 |
-
#:
|
1318 |
-
msgid "
|
1319 |
-
msgstr "
|
1320 |
|
1321 |
-
#:
|
1322 |
-
|
1323 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1324 |
|
1325 |
-
#:
|
1326 |
-
|
1327 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1328 |
|
1329 |
-
#:
|
|
|
1330 |
msgid ""
|
1331 |
-
"
|
1332 |
-
"
|
1333 |
-
msgstr "
|
1334 |
|
1335 |
-
#:
|
1336 |
-
msgid ""
|
1337 |
-
|
1338 |
-
"<a href=\"%s\">upgrade your license</a> to use it on this site."
|
1339 |
-
msgstr "Du har nått din aktiveringsgräns. Du måste <a href=\"%s\">återställa</a> eller <a href=\"%s\">uppgradera din licens</a> för att använda det på denna webbplats."
|
1340 |
|
1341 |
-
#:
|
|
|
1342 |
msgid ""
|
1343 |
-
"
|
1344 |
-
"
|
1345 |
-
msgstr "
|
1346 |
-
|
1347 |
-
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:232
|
1348 |
-
msgid "Failed to activate your license, your license key seems to be invalid."
|
1349 |
-
msgstr "Det gick inte att aktivera din licens, ser ut som din licensnyckel är ogiltig."
|
1350 |
|
1351 |
-
#:
|
1352 |
-
|
1353 |
-
|
|
|
1354 |
|
1355 |
-
#:
|
1356 |
-
#:
|
1357 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:74
|
1358 |
msgid ""
|
1359 |
-
"
|
1360 |
-
"
|
1361 |
-
msgstr "
|
1362 |
-
|
1363 |
-
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:264
|
1364 |
-
msgid "Failed to deactivate your %s license."
|
1365 |
-
msgstr "Det gick inte att inaktivera din %s licens."
|
1366 |
-
|
1367 |
-
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:302
|
1368 |
-
msgid "Request error: \"%s\""
|
1369 |
-
msgstr "Fel vid begäran: \"%s\""
|
1370 |
|
1371 |
-
#:
|
1372 |
-
|
1373 |
-
|
|
|
1374 |
|
1375 |
-
#:
|
|
|
1376 |
msgid ""
|
1377 |
-
"
|
1378 |
-
"
|
1379 |
-
msgstr "
|
1380 |
|
1381 |
-
#:
|
1382 |
-
|
1383 |
-
"
|
1384 |
-
msgstr "
|
1385 |
|
1386 |
-
#:
|
1387 |
-
msgid ""
|
1388 |
-
|
1389 |
-
" for future updates. Please activate your site with a valid license key."
|
1390 |
-
msgstr "Den här hemsidan har inte aktiverats på rätt sätt på mc4wp.com och kan därför inte kontrollera framtida uppdateringar. Aktivera din hemsida med en giltig licensnyckel."
|
1391 |
|
1392 |
-
#:
|
1393 |
-
msgid "
|
1394 |
-
msgstr "
|
1395 |
|
1396 |
-
#:
|
1397 |
-
msgid "
|
1398 |
-
msgstr "
|
1399 |
|
1400 |
-
#:
|
1401 |
-
msgid "
|
1402 |
-
msgstr "
|
1403 |
|
1404 |
-
#:
|
1405 |
-
msgid "
|
1406 |
-
msgstr "
|
1407 |
|
1408 |
-
#:
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
|
|
1412 |
|
1413 |
-
#:
|
1414 |
-
|
1415 |
-
|
|
|
|
|
|
|
|
|
1416 |
|
1417 |
-
#:
|
1418 |
-
msgid "
|
1419 |
-
msgstr "
|
1420 |
|
1421 |
-
#:
|
1422 |
-
msgid "
|
1423 |
-
msgstr "
|
1424 |
|
1425 |
-
#:
|
1426 |
msgid ""
|
1427 |
-
"
|
1428 |
-
msgstr "
|
1429 |
|
1430 |
-
#:
|
1431 |
-
msgid "
|
1432 |
-
msgstr "
|
1433 |
|
1434 |
-
#:
|
1435 |
-
msgid "
|
1436 |
-
|
|
|
|
|
1437 |
|
1438 |
-
#:
|
1439 |
-
msgid "
|
1440 |
-
msgstr "
|
1441 |
|
1442 |
-
#:
|
1443 |
-
msgid "
|
1444 |
-
|
|
|
|
|
1445 |
|
1446 |
-
#:
|
1447 |
-
msgid "
|
1448 |
-
msgstr "
|
1449 |
|
1450 |
-
#:
|
1451 |
-
msgid "
|
1452 |
-
msgstr "%
|
1453 |
|
1454 |
-
#:
|
1455 |
-
msgid "
|
1456 |
-
msgstr "
|
1457 |
|
1458 |
-
#:
|
1459 |
-
|
1460 |
-
|
1461 |
-
msgid "Form"
|
1462 |
-
msgstr "Formulär"
|
1463 |
|
1464 |
-
#:
|
1465 |
-
msgid "
|
1466 |
-
msgstr "
|
1467 |
|
1468 |
-
#:
|
1469 |
-
msgid "
|
1470 |
-
msgstr "
|
1471 |
|
1472 |
-
#:
|
1473 |
-
msgid "
|
1474 |
-
msgstr "
|
1475 |
|
1476 |
-
#:
|
1477 |
-
|
1478 |
-
|
1479 |
-
msgstr "Redigera formulär"
|
1480 |
|
1481 |
-
#:
|
1482 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:290
|
1483 |
-
msgid "Delete"
|
1484 |
-
msgstr "Ta bort"
|
1485 |
-
|
1486 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:137
|
1487 |
-
msgid "No MailChimp list(s) selected yet."
|
1488 |
-
msgstr "Ingen MailChimp lista(or) vald(a) ännu."
|
1489 |
-
|
1490 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:147
|
1491 |
-
msgid "You have not created any sign-up forms yet. Time to do so!"
|
1492 |
-
msgstr "Du har inte skapat några registreingsformulär ännu. Dags att göra det!"
|
1493 |
-
|
1494 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:46
|
1495 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
|
1496 |
-
msgid "Log"
|
1497 |
-
msgstr "Logg"
|
1498 |
-
|
1499 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:47
|
1500 |
-
msgid "Log Items"
|
1501 |
-
msgstr "Logga objekt"
|
1502 |
-
|
1503 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:76
|
1504 |
-
msgid "Email"
|
1505 |
-
msgstr "E-post"
|
1506 |
-
|
1507 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:78
|
1508 |
-
msgid "Data"
|
1509 |
-
msgstr "Data"
|
1510 |
-
|
1511 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:79
|
1512 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:153
|
1513 |
-
msgid "Success"
|
1514 |
-
msgstr "Framgångsrikt"
|
1515 |
-
|
1516 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:80
|
1517 |
-
msgid "Type"
|
1518 |
-
msgstr "Typ"
|
1519 |
-
|
1520 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:81
|
1521 |
-
msgid "Source"
|
1522 |
-
msgstr "Källa"
|
1523 |
-
|
1524 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:82
|
1525 |
-
msgid "Subscribed"
|
1526 |
-
msgstr "Prenumererad"
|
1527 |
-
|
1528 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:150
|
1529 |
-
msgid "Log items deleted."
|
1530 |
-
msgstr "Logga borttagna objekt."
|
1531 |
-
|
1532 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:324
|
1533 |
-
msgid "Registration"
|
1534 |
-
msgstr "Registrering"
|
1535 |
-
|
1536 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:333
|
1537 |
-
msgid "Top Bar"
|
1538 |
-
msgstr "Översta raden"
|
1539 |
-
|
1540 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
|
1541 |
-
msgid "MultiSite registration"
|
1542 |
-
msgstr "Multisiteregistrering"
|
1543 |
-
|
1544 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:354
|
1545 |
-
msgid "Contact Form 7"
|
1546 |
-
msgstr "Contact Form 7"
|
1547 |
-
|
1548 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:358
|
1549 |
-
msgid "bbPress: New Topic"
|
1550 |
-
msgstr "bbPress: Nytt ämne"
|
1551 |
-
|
1552 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:362
|
1553 |
-
msgid "bbPress: New Reply"
|
1554 |
-
msgstr "bbPress: Nytt svar"
|
1555 |
-
|
1556 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:368
|
1557 |
-
msgid "Other Form"
|
1558 |
-
msgstr "Annat formulär"
|
1559 |
-
|
1560 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:434
|
1561 |
-
msgid "No subscribe requests found."
|
1562 |
-
msgstr "Inga prenumerationsförfrågningar hittades."
|
1563 |
-
|
1564 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:456
|
1565 |
-
msgid "All"
|
1566 |
-
msgstr "Alla"
|
1567 |
-
|
1568 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:468
|
1569 |
-
msgid "Checkbox"
|
1570 |
-
msgstr "Kryssruta"
|
1571 |
-
|
1572 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:529
|
1573 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:543
|
1574 |
-
msgid "Order"
|
1575 |
-
msgstr "Beställ"
|
1576 |
-
|
1577 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:532
|
1578 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:546
|
1579 |
-
msgid "Checkout"
|
1580 |
-
msgstr "Kassa"
|
1581 |
-
|
1582 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
|
1583 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:565
|
1584 |
-
msgid "Comment"
|
1585 |
-
msgstr "Kommentar"
|
1586 |
-
|
1587 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
|
1588 |
-
msgid "deleted"
|
1589 |
-
msgstr "borttagen"
|
1590 |
-
|
1591 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:8
|
1592 |
msgid ""
|
1593 |
-
"
|
1594 |
-
"
|
1595 |
-
|
1596 |
-
msgstr "Alla inställningar du anger här kommer att åsidosätta de <a href=\"%s\">allmänna formulärinställningarna</a> . Om ingen inställning anges, kommer motsvarande allmänna inställningsvärde användas."
|
1597 |
-
|
1598 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:25
|
1599 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:45
|
1600 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:64
|
1601 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:83
|
1602 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:106
|
1603 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:124
|
1604 |
-
msgid "Inherit"
|
1605 |
-
msgstr "Ärv"
|
1606 |
-
|
1607 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:137
|
1608 |
-
msgid "Send an email copy of the form data?"
|
1609 |
-
msgstr "Skicka en e-postmeddelandekopia av formulärdatat?"
|
1610 |
-
|
1611 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:141
|
1612 |
-
msgid ""
|
1613 |
-
"Tick \"yes\" if you want to receive an email with the form data for every "
|
1614 |
-
"sign-up request."
|
1615 |
-
msgstr "Markera \"ja\" om du vill få ett mail med formulärdata för varje registreingsbegäran."
|
1616 |
-
|
1617 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:144
|
1618 |
-
msgid "Send the copy to this email:"
|
1619 |
-
msgstr "Skicka kopian till denna e-postadress:"
|
1620 |
-
|
1621 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:150
|
1622 |
-
msgid "Messages"
|
1623 |
-
msgstr "Meddelanden"
|
1624 |
-
|
1625 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:190
|
1626 |
-
msgid "Other errors"
|
1627 |
-
msgstr "Andra fel"
|
1628 |
|
1629 |
-
#:
|
1630 |
-
msgid "
|
1631 |
-
|
|
|
|
|
|
|
|
|
1632 |
|
1633 |
-
#:
|
1634 |
-
msgid "
|
1635 |
-
msgstr "
|
1636 |
|
1637 |
-
#:
|
1638 |
-
msgid "
|
1639 |
-
msgstr "
|
1640 |
|
1641 |
-
#:
|
1642 |
-
msgid ""
|
1643 |
-
|
1644 |
-
" is sent."
|
1645 |
-
msgstr "Välj \"ja\" om du vill uppdatera befintliga prenumeranter med de uppgifter som skickas."
|
1646 |
|
1647 |
-
#:
|
1648 |
msgid ""
|
1649 |
-
"
|
1650 |
-
"
|
1651 |
-
msgstr "
|
1652 |
|
1653 |
-
#:
|
1654 |
-
msgid "
|
1655 |
-
msgstr "
|
1656 |
|
1657 |
-
#:
|
1658 |
-
msgid ""
|
1659 |
-
|
1660 |
-
"fields below."
|
1661 |
-
msgstr "Åsidosätt den förvalda kryssrutans etikett-text för varje given kryssruta med hjälp av fälten nedan."
|
1662 |
|
1663 |
-
#:
|
1664 |
-
msgid "
|
1665 |
-
msgstr "
|
1666 |
|
1667 |
-
#:
|
1668 |
-
msgid "
|
1669 |
-
msgstr "
|
1670 |
|
1671 |
-
#:
|
1672 |
-
msgid "
|
1673 |
-
msgstr "
|
1674 |
|
1675 |
-
#:
|
1676 |
-
msgid "
|
1677 |
-
msgstr "
|
1678 |
|
1679 |
-
#:
|
1680 |
-
msgid ""
|
1681 |
-
|
1682 |
-
"email us directly at <a href=\"%s\">support@mc4wp.com</a>."
|
1683 |
-
msgstr "Behöver hjälp? Ta en titt på <a href=\"%s\">plugin dokumentation</a> eller maila mig direkt på <a href=\"%s\">support@mc4wp.com</a> ."
|
1684 |
|
1685 |
-
#:
|
1686 |
-
msgid ""
|
1687 |
-
|
1688 |
-
msgstr "Använd samma epostadress som du använde när du köpte insticksprogrammet."
|
1689 |
|
1690 |
-
#:
|
1691 |
-
msgid "
|
1692 |
-
msgstr "
|
1693 |
|
1694 |
-
#:
|
1695 |
-
msgid ""
|
1696 |
-
|
1697 |
-
"href=\"%s\">creating an inline form</a> or <a href=\"%s\">styling your "
|
1698 |
-
"form</a> in general."
|
1699 |
-
msgstr "Tips: kolla vår <a href=\"%s\">kunskapsbas</a>artiklar om <a href=\"%s\"> skapa ett inlineformulär </a> eller <a href = \"% s\" > utforma ditt formulär </a> i allmänhet."
|
1700 |
|
1701 |
-
#:
|
1702 |
msgid ""
|
1703 |
-
"
|
1704 |
-
"
|
1705 |
-
"
|
1706 |
-
msgstr "Du laddar inte din anpassade formatmall vid detta tillfället. För att använda dessa utformningar på din sida, välj \"ladda anpassade formulärstilar\" i <a href=\"%s\">formulärinställningarna för MailChimp for WordPress</a>."
|
1707 |
-
|
1708 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:30
|
1709 |
-
msgid "Select form to build styles for:"
|
1710 |
-
msgstr "Välj formulär att bygga stilar för:"
|
1711 |
-
|
1712 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
|
1713 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:285
|
1714 |
-
msgid "Create at least one form first."
|
1715 |
-
msgstr "Skapa åtminstone ett formulär först."
|
1716 |
-
|
1717 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:57
|
1718 |
-
msgid "You need to have JavaScript enabled to see a preview of your form."
|
1719 |
-
msgstr "Du måste ha Javascript aktiverat för att kunna se en förhandsgranskning av formuläret."
|
1720 |
-
|
1721 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:62
|
1722 |
-
msgid "Form container style"
|
1723 |
-
msgstr "Formulärbehållares utformning"
|
1724 |
-
|
1725 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1726 |
-
msgid "Form width"
|
1727 |
-
msgstr "Formulärbredd"
|
1728 |
-
|
1729 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1730 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1731 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1732 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1733 |
-
msgid "px or %"
|
1734 |
-
msgstr "px eller %"
|
1735 |
-
|
1736 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1737 |
-
msgid "Text alignment"
|
1738 |
-
msgstr "Textjustering"
|
1739 |
-
|
1740 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1741 |
-
msgid "Choose alignment"
|
1742 |
-
msgstr "Välj justering"
|
1743 |
-
|
1744 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
|
1745 |
-
msgid "Left"
|
1746 |
-
msgstr "Vänster"
|
1747 |
-
|
1748 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
|
1749 |
-
msgid "Center"
|
1750 |
-
msgstr "Centrerad"
|
1751 |
-
|
1752 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
|
1753 |
-
msgid "Right"
|
1754 |
-
msgstr "Höger"
|
1755 |
-
|
1756 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
|
1757 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
|
1758 |
-
msgid "Background color"
|
1759 |
-
msgstr "Bakgrundsfärg"
|
1760 |
-
|
1761 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
|
1762 |
-
msgid "Padding"
|
1763 |
-
msgstr "Spaltfyllnad"
|
1764 |
-
|
1765 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:89
|
1766 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1767 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1768 |
-
msgid "Border color"
|
1769 |
-
msgstr "Ramfärg"
|
1770 |
-
|
1771 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1772 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1773 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1774 |
-
msgid "Border width"
|
1775 |
-
msgstr "Rambredd"
|
1776 |
-
|
1777 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1778 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1779 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1780 |
-
msgid "Text color"
|
1781 |
-
msgstr "Textfärg"
|
1782 |
-
|
1783 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
|
1784 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
|
1785 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
|
1786 |
-
msgid "Text size"
|
1787 |
-
msgstr "Textstorlek"
|
1788 |
-
|
1789 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
|
1790 |
-
msgid "Background image"
|
1791 |
-
msgstr "Bakgrundsbild"
|
1792 |
-
|
1793 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
|
1794 |
-
msgid "Label styles"
|
1795 |
-
msgstr "Etikettstilar"
|
1796 |
-
|
1797 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1798 |
-
msgid "Label width"
|
1799 |
-
msgstr "Etikettbredd"
|
1800 |
-
|
1801 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1802 |
-
msgid "Text style"
|
1803 |
-
msgstr "Textstil"
|
1804 |
-
|
1805 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1806 |
-
msgid "Choose text style.."
|
1807 |
-
msgstr "Välj textstil.."
|
1808 |
-
|
1809 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1810 |
-
msgid "Normal"
|
1811 |
-
msgstr "Normal"
|
1812 |
-
|
1813 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
|
1814 |
-
msgid "Bold"
|
1815 |
-
msgstr "Fet"
|
1816 |
-
|
1817 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
|
1818 |
-
msgid "Italic"
|
1819 |
-
msgstr "Kursiv"
|
1820 |
-
|
1821 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
|
1822 |
-
msgid "Bold & Italic"
|
1823 |
-
msgstr "Fet & Kursiv"
|
1824 |
-
|
1825 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
|
1826 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
|
1827 |
-
msgid "Display"
|
1828 |
-
msgstr "Visa"
|
1829 |
-
|
1830 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:146
|
1831 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:178
|
1832 |
-
msgid "Inline"
|
1833 |
-
msgstr "Infoga"
|
1834 |
-
|
1835 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:147
|
1836 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:179
|
1837 |
-
msgid "New line"
|
1838 |
-
msgstr "Ny rad"
|
1839 |
-
|
1840 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:156
|
1841 |
-
msgid "Field styles"
|
1842 |
-
msgstr "Fältstilar"
|
1843 |
-
|
1844 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1845 |
-
msgid "Field width"
|
1846 |
-
msgstr "Fältbredd"
|
1847 |
-
|
1848 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
|
1849 |
-
msgid "Field height"
|
1850 |
-
msgstr "Fälthöjd"
|
1851 |
-
|
1852 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
|
1853 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1854 |
-
msgid "Border radius"
|
1855 |
-
msgstr "Ramradie"
|
1856 |
-
|
1857 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
|
1858 |
-
msgid "Focus outline"
|
1859 |
-
msgstr "Fokussammandrag"
|
1860 |
-
|
1861 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:198
|
1862 |
-
msgid "Button styles"
|
1863 |
-
msgstr "Knappstilar"
|
1864 |
-
|
1865 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1866 |
-
msgid "Button width"
|
1867 |
-
msgstr "Knappbredd"
|
1868 |
-
|
1869 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:206
|
1870 |
-
msgid "Button height"
|
1871 |
-
msgstr "Knapphöjd"
|
1872 |
-
|
1873 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:238
|
1874 |
-
msgid "Error and success messages"
|
1875 |
-
msgstr "Fel- och framgångs-meddelanden"
|
1876 |
-
|
1877 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:242
|
1878 |
-
msgid "Success text color"
|
1879 |
-
msgstr "Framgångstextfärg"
|
1880 |
-
|
1881 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:244
|
1882 |
-
msgid "Error text color"
|
1883 |
-
msgstr "Feltextfärg"
|
1884 |
-
|
1885 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
|
1886 |
-
msgid "Advanced"
|
1887 |
-
msgstr "Avancerad"
|
1888 |
|
1889 |
-
#:
|
1890 |
-
msgid "
|
1891 |
-
msgstr "
|
1892 |
|
1893 |
-
#:
|
1894 |
msgid ""
|
1895 |
-
"
|
1896 |
-
"
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
msgid "Manual CSS"
|
1901 |
-
msgstr "Manuell CSS"
|
1902 |
|
1903 |
-
#:
|
1904 |
msgid ""
|
1905 |
-
"
|
1906 |
-
msgstr "
|
1907 |
-
|
1908 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:269
|
1909 |
-
msgid "Copy styles from other form"
|
1910 |
-
msgstr "Kopiera stilar från annat formulär"
|
1911 |
|
1912 |
-
#:
|
1913 |
-
msgid "
|
1914 |
-
msgstr "
|
1915 |
|
1916 |
-
#:
|
1917 |
msgid ""
|
1918 |
-
"
|
1919 |
-
"
|
1920 |
-
|
1921 |
-
|
1922 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
|
1923 |
-
msgid "Are you sure you want to delete all custom styles for this form?"
|
1924 |
-
msgstr "Är du säker på att du vill ta bort alla anpassade stilar för detta formulär?"
|
1925 |
|
1926 |
-
#:
|
1927 |
-
msgid "
|
1928 |
-
msgstr "
|
1929 |
|
1930 |
-
#:
|
1931 |
-
msgid "
|
1932 |
-
msgstr "
|
1933 |
|
1934 |
-
#:
|
1935 |
-
msgid "
|
1936 |
-
msgstr "
|
1937 |
|
1938 |
-
#:
|
1939 |
-
msgid "
|
1940 |
-
msgstr "
|
1941 |
|
1942 |
-
#:
|
1943 |
-
msgid "
|
1944 |
-
msgstr "
|
1945 |
|
1946 |
-
#:
|
1947 |
-
msgid ""
|
1948 |
-
|
1949 |
-
"\"custom form styles\". Otherwise, choose the basic formatting styles or one"
|
1950 |
-
" of the default themes."
|
1951 |
-
msgstr "Om du %sskapat en anpassad formatmall%s och vill att det ska laddas, välj \"anpassade formulärstilar\". Annars väljer de grundläggande formatmallar eller en av alla standard teman."
|
1952 |
|
1953 |
-
#:
|
1954 |
-
msgid "
|
1955 |
-
msgstr "
|
1956 |
|
1957 |
-
#:
|
1958 |
-
msgid "
|
1959 |
-
msgstr "
|
1960 |
|
1961 |
-
#:
|
1962 |
-
msgid "
|
1963 |
-
|
|
|
|
|
1964 |
|
1965 |
-
#:
|
1966 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
|
1967 |
msgid ""
|
1968 |
-
"
|
1969 |
-
"
|
1970 |
-
msgstr "
|
1971 |
|
1972 |
-
#:
|
1973 |
-
msgid "
|
1974 |
-
msgstr "
|
1975 |
|
1976 |
-
|
1977 |
-
msgid ""
|
1978 |
-
"
|
1979 |
-
"including <code>http://</code>."
|
1980 |
-
msgstr "Lämna tomt för ingen omdirigering. Använd annars kompletta (absoluta) URL:er, inklusive <code>http://</code>."
|
1981 |
-
|
1982 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
|
1983 |
-
msgid "Default Messages"
|
1984 |
-
msgstr "Standardmeddelanden"
|
1985 |
-
|
1986 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:15
|
1987 |
-
msgid "Today"
|
1988 |
-
msgstr "Idag"
|
1989 |
-
|
1990 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:16
|
1991 |
-
msgid "Yesterday"
|
1992 |
-
msgstr "I förgår"
|
1993 |
-
|
1994 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:17
|
1995 |
-
msgid "Last Week"
|
1996 |
-
msgstr "Förra veckan"
|
1997 |
-
|
1998 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:18
|
1999 |
-
msgid "Last Month"
|
2000 |
-
msgstr "Förra månaden"
|
2001 |
-
|
2002 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:19
|
2003 |
-
msgid "Last Quarter"
|
2004 |
-
msgstr "Förra kvartalet"
|
2005 |
-
|
2006 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:20
|
2007 |
-
msgid "Last Year"
|
2008 |
-
msgstr "Förra året"
|
2009 |
-
|
2010 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:21
|
2011 |
-
msgid "Custom"
|
2012 |
-
msgstr "Anpassa"
|
2013 |
-
|
2014 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:25
|
2015 |
-
msgid "From"
|
2016 |
-
msgstr "Från"
|
2017 |
-
|
2018 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:32
|
2019 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:57
|
2020 |
-
msgid "Jan"
|
2021 |
-
msgstr "Jan"
|
2022 |
-
|
2023 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:33
|
2024 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:58
|
2025 |
-
msgid "Feb"
|
2026 |
-
msgstr "Feb"
|
2027 |
-
|
2028 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:34
|
2029 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:59
|
2030 |
-
msgid "Mar"
|
2031 |
-
msgstr "Mar"
|
2032 |
-
|
2033 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:35
|
2034 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:60
|
2035 |
-
msgid "Apr"
|
2036 |
-
msgstr "Apr"
|
2037 |
-
|
2038 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:36
|
2039 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:61
|
2040 |
-
msgid "May"
|
2041 |
-
msgstr "Maj"
|
2042 |
-
|
2043 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:37
|
2044 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:62
|
2045 |
-
msgid "Jun"
|
2046 |
-
msgstr "Jun"
|
2047 |
-
|
2048 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:38
|
2049 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:63
|
2050 |
-
msgid "Jul"
|
2051 |
-
msgstr "Jul"
|
2052 |
-
|
2053 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:39
|
2054 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:64
|
2055 |
-
msgid "Aug"
|
2056 |
-
msgstr "Aug"
|
2057 |
-
|
2058 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:40
|
2059 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:65
|
2060 |
-
msgid "Sep"
|
2061 |
-
msgstr "Sep"
|
2062 |
-
|
2063 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:41
|
2064 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:66
|
2065 |
-
msgid "Oct"
|
2066 |
-
msgstr "Okt"
|
2067 |
-
|
2068 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:42
|
2069 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:67
|
2070 |
-
msgid "Nov"
|
2071 |
-
msgstr "Nov"
|
2072 |
-
|
2073 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:43
|
2074 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:68
|
2075 |
-
msgid "Dec"
|
2076 |
-
msgstr "Dec"
|
2077 |
-
|
2078 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:50
|
2079 |
-
msgid "To"
|
2080 |
-
msgstr "Till"
|
2081 |
-
|
2082 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:76
|
2083 |
-
msgid "Filter"
|
2084 |
-
msgstr "Filter"
|
2085 |
-
|
2086 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:83
|
2087 |
-
msgid "Show these lines:"
|
2088 |
-
msgstr "Visa dessa rader:"
|
2089 |
|
2090 |
#. Plugin URI of the plugin/theme
|
2091 |
-
msgid "
|
2092 |
-
|
|
|
|
|
2093 |
|
2094 |
#. Description of the plugin/theme
|
2095 |
-
msgid "
|
2096 |
-
|
|
|
|
|
2097 |
|
2098 |
#. Author of the plugin/theme
|
2099 |
-
msgid "
|
2100 |
-
msgstr "
|
2101 |
|
2102 |
#. Author URI of the plugin/theme
|
2103 |
-
msgid "
|
2104 |
-
msgstr "
|
1 |
+
# Copyright (C) 2015 MailChimp for WordPress
|
2 |
+
# This file is distributed under the same license as the MailChimp for WordPress package.
|
3 |
# Translators:
|
4 |
+
# B Z <info@stockholmsbif.se>, 2016
|
5 |
# Dan West <acc@dnw.st>, 2015
|
6 |
# Elger Lindgren <elger@bilddigital.se>, 2015
|
7 |
# Gunnar Norin <blittan@xbmc.org>, 2014
|
11 |
msgid ""
|
12 |
msgstr ""
|
13 |
"Project-Id-Version: MailChimp for WordPress\n"
|
14 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
15 |
+
"POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
|
16 |
+
"PO-Revision-Date: 2016-02-21 21:41+0000\n"
|
17 |
+
"Last-Translator: B Z <info@stockholmsbif.se>\n"
|
18 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/sv_SE/)\n"
|
19 |
"MIME-Version: 1.0\n"
|
20 |
"Content-Type: text/plain; charset=UTF-8\n"
|
21 |
"Content-Transfer-Encoding: 8bit\n"
|
22 |
"Language: sv_SE\n"
|
23 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
+
#: config/default-form-content.php:3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgid "Email address"
|
27 |
msgstr "E-postadress"
|
28 |
|
29 |
+
#: config/default-form-content.php:4
|
|
|
|
|
30 |
msgid "Your email address"
|
31 |
msgstr "Din e-postadress"
|
32 |
|
33 |
+
#: config/default-form-content.php:5
|
|
|
|
|
34 |
msgid "Sign up"
|
35 |
msgstr "Registrera"
|
36 |
|
37 |
+
#: config/default-form-messages.php:5
|
|
|
|
|
|
|
|
|
|
|
38 |
msgid ""
|
39 |
+
"Thank you, your sign-up request was successful! Please check your email "
|
40 |
+
"inbox to confirm."
|
41 |
+
msgstr "Tack, din registreringsbegäran lyckades! Kontrollera din inkorg för att bekräfta."
|
42 |
|
43 |
+
#: config/default-form-messages.php:9
|
|
|
44 |
msgid "Oops. Something went wrong. Please try again later."
|
45 |
msgstr "Oops. Nånting gick fel. Försök igen senare."
|
46 |
|
47 |
+
#: config/default-form-messages.php:13
|
|
|
48 |
msgid "Please provide a valid email address."
|
49 |
msgstr "Var vänlig fyll i en giltig e-postadress."
|
50 |
|
51 |
+
#: config/default-form-messages.php:17
|
|
|
52 |
msgid "Given email address is already subscribed, thank you!"
|
53 |
msgstr "Den e-postadressen du skrev in är redan registrerad, tack!"
|
54 |
|
55 |
+
#: config/default-form-messages.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
msgid "Please fill in the required fields."
|
57 |
msgstr "Var vänlig fyll i de obligatoriska fälten."
|
58 |
|
59 |
+
#: config/default-form-messages.php:25
|
|
|
60 |
msgid "You were successfully unsubscribed."
|
61 |
msgstr "Du har sagt upp prenumerationen"
|
62 |
|
63 |
+
#: config/default-form-messages.php:29
|
|
|
64 |
msgid "Given email address is not subscribed."
|
65 |
msgstr "Angiven epost-adress prenumererar ej."
|
66 |
|
67 |
+
#: config/default-form-messages.php:33
|
68 |
+
msgid "Please select at least one list."
|
69 |
+
msgstr "Vänligen välj minst en lista."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
+
#: config/default-integration-options.php:5
|
72 |
+
msgid "Sign me up for the newsletter!"
|
73 |
+
msgstr "Registrera mig för nyhetsbrevet!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
+
#: includes/admin/class-admin-texts.php:62
|
76 |
+
#: includes/forms/views/edit-form.php:6
|
77 |
+
msgid "Settings"
|
78 |
+
msgstr "Inställningar"
|
79 |
|
80 |
+
#: includes/admin/class-admin-texts.php:80
|
81 |
+
msgid "Documentation"
|
82 |
+
msgstr "Dokumentation"
|
|
|
|
|
83 |
|
84 |
+
#: includes/admin/class-admin.php:167
|
85 |
msgid ""
|
86 |
+
"Success! The cached configuration for your MailChimp lists has been renewed."
|
87 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
|
89 |
+
#: includes/admin/class-admin.php:257
|
90 |
msgid ""
|
91 |
+
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
92 |
+
" to use it."
|
93 |
+
msgstr "Det här är en PRO funktion. Vänligen uppgradera till premiumversion för att kunna använda det."
|
94 |
|
95 |
+
#: includes/admin/class-admin.php:323 includes/views/general-settings.php:28
|
96 |
+
msgid "MailChimp API Settings"
|
97 |
+
msgstr "MailChimp API inställningar"
|
|
|
98 |
|
99 |
+
#: includes/admin/class-admin.php:324
|
100 |
+
#: integrations/ninja-forms/class-ninja-forms.php:34
|
101 |
+
msgid "MailChimp"
|
102 |
+
msgstr "MailChimp"
|
|
|
103 |
|
104 |
+
#: includes/admin/class-ads.php:33
|
105 |
+
msgid "Upgrade to MailChimp for WordPress Pro"
|
106 |
+
msgstr "Uppgradera till MailChimp för WordPress Pro"
|
107 |
|
108 |
+
#: includes/admin/class-ads.php:41
|
|
|
109 |
msgid ""
|
110 |
+
"Enjoying this plugin? <a href=\"%s\">Purchase our bundle of premium "
|
111 |
+
"features</a> for an even better plugin."
|
112 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
113 |
|
114 |
+
#: includes/admin/class-ads.php:62
|
115 |
+
msgid "More subscribers, better newsletters."
|
116 |
+
msgstr ""
|
|
|
|
|
|
|
117 |
|
118 |
+
#: includes/admin/class-ads.php:63
|
|
|
|
|
|
|
119 |
msgid ""
|
120 |
+
"Learn how to best grow your lists & write better emails by subscribing to "
|
121 |
+
"our monthly tips."
|
122 |
+
msgstr ""
|
123 |
|
124 |
+
#: includes/admin/class-ads.php:66
|
125 |
+
msgid "Email Address"
|
126 |
+
msgstr "E-post adress"
|
|
|
|
|
|
|
127 |
|
128 |
+
#: includes/admin/class-ads.php:70
|
129 |
+
msgid "First Name"
|
130 |
+
msgstr "Förnamn"
|
|
|
|
|
|
|
|
|
131 |
|
132 |
+
#: includes/admin/class-ads.php:77
|
133 |
+
msgid "Subscribe"
|
134 |
+
msgstr "Prenumerera"
|
|
|
|
|
135 |
|
136 |
+
#: includes/admin/class-usage-tracking.php:57
|
137 |
+
msgid "Once a month"
|
138 |
+
msgstr "Månadsvis"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
|
140 |
+
#: includes/admin/migrations/3.0-form-1-post-type.php:35
|
141 |
+
msgid "Default sign-up form"
|
142 |
+
msgstr ""
|
|
|
|
|
143 |
|
144 |
+
#: includes/class-api.php:83
|
145 |
+
msgid "Read more about common connectivity issues."
|
146 |
+
msgstr "Läs mer om vanliga anslutningsproblem."
|
|
|
|
|
147 |
|
148 |
+
#: includes/forms/class-admin.php:71 includes/forms/class-admin.php:72
|
149 |
+
#: includes/forms/views/edit-form.php:17
|
150 |
+
msgid "Forms"
|
151 |
+
msgstr "Formulär"
|
152 |
|
153 |
+
#: includes/forms/class-admin.php:101 includes/forms/class-admin.php:176
|
154 |
+
msgid "<strong>Success!</strong> Form successfully saved."
|
155 |
+
msgstr ""
|
|
|
|
|
|
|
156 |
|
157 |
+
#: includes/forms/class-admin.php:176
|
158 |
+
msgid "Preview form"
|
159 |
+
msgstr "Förhandsvisa formuläret"
|
|
|
160 |
|
161 |
+
#: includes/forms/class-admin.php:279
|
162 |
+
msgid "Form not found."
|
163 |
+
msgstr "Formuläret hittades inte."
|
|
|
|
|
|
|
|
|
164 |
|
165 |
+
#: includes/forms/class-admin.php:281
|
166 |
+
msgid "Go back"
|
167 |
+
msgstr "Gå bakåt"
|
|
|
|
|
168 |
|
169 |
+
#: includes/forms/class-form-previewer.php:162
|
170 |
+
msgid "Form preview"
|
171 |
+
msgstr "Formulärförhandsvisning"
|
|
|
|
|
172 |
|
173 |
+
#: includes/forms/class-form-tags.php:51
|
174 |
+
msgid "Replaced with the form response (error or success messages)."
|
175 |
+
msgstr "Ersatt med formulärets svar (fel- eller framgångs-meddelanden)."
|
|
|
|
|
176 |
|
177 |
+
#: includes/forms/class-form-tags.php:56
|
178 |
+
msgid "Data from the URL or a submitted form."
|
179 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
180 |
|
181 |
+
#: includes/forms/class-form-tags.php:62
|
182 |
+
#: includes/integrations/class-integration-tags.php:45
|
183 |
+
msgid "Replaced with the number of subscribers on the selected list(s)"
|
184 |
+
msgstr "Ersatt med prenumerantens nummer på vald lista(or)"
|
|
|
185 |
|
186 |
+
#: includes/forms/class-form-tags.php:67
|
187 |
+
msgid "The email address of the current visitor (if known)."
|
188 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
189 |
|
190 |
+
#: includes/forms/class-form-tags.php:72
|
191 |
+
msgid "The URL of the page."
|
192 |
+
msgstr ""
|
|
|
|
|
193 |
|
194 |
+
#: includes/forms/class-form-tags.php:77
|
195 |
+
msgid "The path of the page."
|
196 |
+
msgstr ""
|
|
|
197 |
|
198 |
+
#: includes/forms/class-form-tags.php:82
|
199 |
+
msgid "The current date. Example: %s."
|
200 |
+
msgstr ""
|
|
|
|
|
201 |
|
202 |
+
#: includes/forms/class-form-tags.php:87
|
203 |
+
msgid "The current time. Example: %s."
|
204 |
+
msgstr ""
|
|
|
|
|
205 |
|
206 |
+
#: includes/forms/class-form-tags.php:92
|
207 |
+
msgid "The site's language. Example: %s."
|
208 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
209 |
|
210 |
+
#: includes/forms/class-form-tags.php:97
|
211 |
+
msgid "The visitor's IP address. Example: %s."
|
212 |
+
msgstr ""
|
|
|
|
|
213 |
|
214 |
+
#: includes/forms/class-form-tags.php:102
|
215 |
+
msgid "The property of the currently logged-in user."
|
216 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
217 |
|
218 |
+
#: includes/forms/class-form.php:128
|
219 |
+
msgid "There is no form with ID %d, perhaps it was deleted?"
|
220 |
+
msgstr ""
|
|
|
|
|
221 |
|
222 |
+
#: includes/forms/class-widget.php:26
|
223 |
+
msgid "Newsletter"
|
224 |
+
msgstr "Nyhetsbrev"
|
225 |
|
226 |
+
#: includes/forms/class-widget.php:30
|
227 |
+
msgid "MailChimp Sign-Up Form"
|
228 |
+
msgstr "MailChimp Registreringsformulär"
|
229 |
|
230 |
+
#: includes/forms/class-widget.php:32
|
231 |
+
msgid "Displays your MailChimp for WordPress sign-up form"
|
232 |
+
msgstr "Visar din MailChimp for WordPress registreringsformulär"
|
|
|
|
|
233 |
|
234 |
+
#: includes/forms/class-widget.php:75
|
235 |
+
msgid "Title:"
|
236 |
+
msgstr "Titel:"
|
|
|
|
|
237 |
|
238 |
+
#: includes/forms/class-widget.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
msgid ""
|
240 |
+
"You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
|
241 |
+
" form settings</a>."
|
242 |
+
msgstr "Du kan redigera ditt registreringsformulär i <a href=\"%s\">formulärinställningarna för MailChimp for WordPress</a>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
|
244 |
+
#: includes/forms/views/add-form.php:10 includes/forms/views/add-form.php:60
|
245 |
+
msgid "Add new form"
|
246 |
+
msgstr ""
|
|
|
247 |
|
248 |
+
#: includes/forms/views/add-form.php:27
|
249 |
+
msgid "What is the name of this form?"
|
250 |
+
msgstr "Vad är namnet på detta formulär?"
|
|
|
251 |
|
252 |
+
#: includes/forms/views/add-form.php:30
|
253 |
+
msgid "Enter your form title.."
|
254 |
+
msgstr "Ange formulärets titel .."
|
|
|
255 |
|
256 |
+
#: includes/forms/views/add-form.php:37
|
257 |
+
msgid "To which MailChimp lists should this form subscribe?"
|
258 |
+
msgstr ""
|
|
|
259 |
|
260 |
+
#: includes/forms/views/add-form.php:54
|
261 |
+
msgid "No lists found. Did you <a href=\"%s\">connect with MailChimp</a>?"
|
262 |
+
msgstr ""
|
|
|
263 |
|
264 |
+
#: includes/forms/views/edit-form.php:4
|
265 |
+
msgid "Fields"
|
266 |
+
msgstr "Fält"
|
|
|
267 |
|
268 |
+
#: includes/forms/views/edit-form.php:5
|
269 |
+
msgid "Messages"
|
270 |
+
msgstr "Meddelanden"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
|
272 |
+
#: includes/forms/views/edit-form.php:7
|
273 |
+
msgid "Appearance"
|
274 |
+
msgstr ""
|
|
|
|
|
275 |
|
276 |
+
#: includes/forms/views/edit-form.php:15
|
277 |
+
#: includes/integrations/views/integration-settings.php:8
|
278 |
+
#: includes/integrations/views/integrations.php:7
|
279 |
+
#: includes/views/general-settings.php:7
|
280 |
+
msgid "You are here: "
|
281 |
+
msgstr "Du är här."
|
282 |
|
283 |
+
#: includes/forms/views/edit-form.php:27
|
284 |
+
msgid "Edit Form"
|
285 |
+
msgstr "Redigera formulär"
|
286 |
|
287 |
+
#: includes/forms/views/edit-form.php:45
|
288 |
+
msgid "Enter form title here"
|
289 |
+
msgstr "Ange formulärets titel här"
|
|
|
|
|
|
|
290 |
|
291 |
+
#: includes/forms/views/edit-form.php:46
|
292 |
+
msgid "Enter the title of your sign-up form"
|
293 |
+
msgstr ""
|
294 |
|
295 |
+
#: includes/forms/views/edit-form.php:54
|
296 |
+
msgid "Get shortcode"
|
297 |
+
msgstr ""
|
298 |
|
299 |
+
#: includes/forms/views/edit-form.php:59
|
300 |
+
msgid "Preview this form"
|
301 |
+
msgstr "Förhandsvisa detta formulär"
|
302 |
|
303 |
+
#: includes/forms/views/parts/add-fields-help.php:4
|
304 |
+
#: includes/forms/views/tabs/form-fields.php:10
|
305 |
+
msgid "Add more fields"
|
306 |
+
msgstr "Lägg till fält"
|
307 |
|
308 |
+
#: includes/forms/views/parts/add-fields-help.php:9
|
309 |
msgid ""
|
310 |
+
"To add more fields to your form, you will need to create those fields in "
|
311 |
+
"MailChimp first."
|
312 |
+
msgstr ""
|
313 |
|
314 |
+
#: includes/forms/views/parts/add-fields-help.php:12
|
315 |
+
msgid "Here's how:"
|
316 |
+
msgstr ""
|
317 |
|
318 |
+
#: includes/forms/views/parts/add-fields-help.php:17
|
319 |
+
msgid "Log in to your MailChimp account."
|
320 |
+
msgstr ""
|
321 |
|
322 |
+
#: includes/forms/views/parts/add-fields-help.php:22
|
323 |
+
msgid "Add list fields to any of your selected lists."
|
324 |
+
msgstr ""
|
|
|
325 |
|
326 |
+
#: includes/forms/views/parts/add-fields-help.php:23
|
327 |
+
msgid "Clicking the following links will take you to the right screen."
|
328 |
+
msgstr ""
|
329 |
|
330 |
+
#: includes/forms/views/parts/add-fields-help.php:29
|
331 |
+
msgid "Edit list fields for"
|
332 |
+
msgstr ""
|
333 |
|
334 |
+
#: includes/forms/views/parts/add-fields-help.php:38
|
335 |
+
msgid ""
|
336 |
+
"Click the following button to have MailChimp for WordPress pick up on your "
|
337 |
+
"changes."
|
338 |
+
msgstr ""
|
339 |
|
340 |
+
#: includes/forms/views/parts/add-fields-help.php:43
|
341 |
+
#: includes/views/parts/lists-overview.php:8
|
342 |
+
msgid "Renew MailChimp lists"
|
343 |
+
msgstr "Förnya MailChimplistor"
|
344 |
|
345 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
346 |
+
msgid "Add dynamic form variable"
|
347 |
+
msgstr ""
|
348 |
|
349 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
350 |
+
msgid ""
|
351 |
+
"The following list of variables can be used to <a href=\"%s\">add some "
|
352 |
+
"dynamic content to your form or success and error messages</a>."
|
353 |
+
msgstr "Följande variabel-lista kan användas för att <a href=\"%s\">lägga till lite dynamiskt innehåll till ditt formulär, eller framgångs- och fel-meddelanden</a>."
|
354 |
|
355 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
356 |
+
msgid "This allows you to personalise your form or response messages."
|
357 |
+
msgstr "Detta gör att du kan anpassa ditt formulär eller svarsmeddelanden."
|
358 |
|
359 |
+
#: includes/forms/views/tabs/form-appearance.php:5
|
360 |
+
msgid "Inherit from %s theme"
|
361 |
+
msgstr ""
|
362 |
|
363 |
+
#: includes/forms/views/tabs/form-appearance.php:6
|
364 |
+
msgid "Basic"
|
365 |
+
msgstr ""
|
366 |
|
367 |
+
#: includes/forms/views/tabs/form-appearance.php:7
|
368 |
+
msgid "Form Themes"
|
369 |
+
msgstr ""
|
370 |
|
371 |
+
#: includes/forms/views/tabs/form-appearance.php:8
|
372 |
+
msgid "Light Theme"
|
373 |
+
msgstr "Ljust tema"
|
374 |
|
375 |
+
#: includes/forms/views/tabs/form-appearance.php:9
|
376 |
+
msgid "Dark Theme"
|
377 |
+
msgstr "Mörkt tema"
|
378 |
|
379 |
+
#: includes/forms/views/tabs/form-appearance.php:10
|
380 |
+
msgid "Red Theme"
|
381 |
+
msgstr "Rött tema"
|
382 |
|
383 |
+
#: includes/forms/views/tabs/form-appearance.php:11
|
384 |
+
msgid "Green Theme"
|
385 |
+
msgstr "Grönt tema"
|
386 |
|
387 |
+
#: includes/forms/views/tabs/form-appearance.php:12
|
388 |
+
msgid "Blue Theme"
|
389 |
+
msgstr "Blått tema"
|
390 |
|
391 |
+
#: includes/forms/views/tabs/form-appearance.php:25
|
392 |
+
msgid "Form Appearance"
|
393 |
+
msgstr ""
|
394 |
|
395 |
+
#: includes/forms/views/tabs/form-appearance.php:29
|
396 |
+
msgid "Form Style"
|
397 |
+
msgstr ""
|
398 |
|
399 |
+
#: includes/forms/views/tabs/form-appearance.php:48
|
400 |
+
msgid ""
|
401 |
+
"If you want to load some default CSS styles, select \"basic formatting "
|
402 |
+
"styles\" or choose one of the color themes"
|
403 |
+
msgstr "Om du vill ladda in förvalda CSS-stilar, välj \" Grundläggande formateringsstilar\" eller välj ett av färgtemana."
|
404 |
|
405 |
+
#: includes/forms/views/tabs/form-fields.php:6
|
406 |
+
msgid "Form variables"
|
407 |
+
msgstr ""
|
408 |
|
409 |
+
#: includes/forms/views/tabs/form-fields.php:13
|
410 |
+
msgid "Form Fields"
|
411 |
+
msgstr ""
|
412 |
|
413 |
+
#: includes/forms/views/tabs/form-fields.php:19
|
414 |
+
msgid "Enter the HTML code for your form fields.."
|
415 |
+
msgstr ""
|
|
|
|
|
416 |
|
417 |
+
#: includes/forms/views/tabs/form-fields.php:27
|
418 |
+
msgid "Your form is missing the following (required) form fields:"
|
419 |
+
msgstr "Formuläret saknas följande (nödväniga) formulärfält:"
|
|
|
|
|
420 |
|
421 |
+
#: includes/forms/views/tabs/form-fields.php:34
|
422 |
msgid ""
|
423 |
+
"Use the shortcode %s to display this form inside a post, page or text "
|
424 |
+
"widget."
|
425 |
+
msgstr "Använd kortkoden %s för att visa detta formulär inuti ett inlägg, sida eller text widget."
|
426 |
|
427 |
+
#: includes/forms/views/tabs/form-messages.php:3
|
428 |
+
msgid "Form Messages"
|
429 |
+
msgstr ""
|
|
|
|
|
|
|
430 |
|
431 |
+
#: includes/forms/views/tabs/form-messages.php:10
|
432 |
+
msgid "Successfully subscribed"
|
433 |
+
msgstr "Prenumerationen lyckades"
|
434 |
|
435 |
+
#: includes/forms/views/tabs/form-messages.php:13
|
436 |
msgid ""
|
437 |
+
"The text that shows when an email address is successfully subscribed to the "
|
438 |
+
"selected list(s)."
|
439 |
+
msgstr "Den text som visas när en epostadress lyckats prenumerera på vald lista(or)."
|
440 |
|
441 |
+
#: includes/forms/views/tabs/form-messages.php:17
|
442 |
+
msgid "Invalid email address"
|
443 |
+
msgstr "Ogiltig epostadress"
|
444 |
|
445 |
+
#: includes/forms/views/tabs/form-messages.php:20
|
446 |
+
msgid "The text that shows when an invalid email address is given."
|
447 |
+
msgstr "Den text som visas när en ogiltig epostadress angivits."
|
448 |
|
449 |
+
#: includes/forms/views/tabs/form-messages.php:24
|
450 |
+
msgid "Required field missing"
|
451 |
+
msgstr "Obligatoriskt fält saknas"
|
452 |
|
453 |
+
#: includes/forms/views/tabs/form-messages.php:27
|
454 |
msgid ""
|
455 |
+
"The text that shows when a required field for the selected list(s) is "
|
456 |
+
"missing."
|
457 |
+
msgstr "Den text som visas när ett obligatoriskt fält för vald lista(or) saknas."
|
|
|
|
|
|
|
|
|
458 |
|
459 |
+
#: includes/forms/views/tabs/form-messages.php:31
|
460 |
+
msgid "Already subscribed"
|
461 |
+
msgstr "Redan prenumerant"
|
462 |
|
463 |
+
#: includes/forms/views/tabs/form-messages.php:34
|
464 |
+
msgid ""
|
465 |
+
"The text that shows when the given email is already subscribed to the "
|
466 |
+
"selected list(s)."
|
467 |
+
msgstr "Den text som visas när den angivna epostadressen redan prenumererar på vald lista(or)."
|
468 |
|
469 |
+
#: includes/forms/views/tabs/form-messages.php:38
|
470 |
+
msgid "General error"
|
471 |
+
msgstr "Allmänt fel"
|
472 |
|
473 |
+
#: includes/forms/views/tabs/form-messages.php:41
|
474 |
+
msgid "The text that shows when a general error occured."
|
475 |
+
msgstr "Den text som visas när ett allmänt fel uppstått."
|
|
|
476 |
|
477 |
+
#: includes/forms/views/tabs/form-messages.php:45
|
478 |
+
msgid "Unsubscribed"
|
479 |
+
msgstr "Prenumeration uppsagd"
|
480 |
|
481 |
+
#: includes/forms/views/tabs/form-messages.php:48
|
482 |
msgid ""
|
483 |
+
"When using the unsubscribe method, this is the text that shows when the "
|
484 |
+
"given email address is successfully unsubscribed from the selected list(s)."
|
485 |
+
msgstr "När uppsägningsmetoden används, är det den här texten som visas när angiven epostadress har lyckats säga upp prenumerationen från vald lista(or)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
|
487 |
+
#: includes/forms/views/tabs/form-messages.php:52
|
488 |
+
msgid "Not subscribed"
|
489 |
+
msgstr "Prenumererar inte"
|
490 |
|
491 |
+
#: includes/forms/views/tabs/form-messages.php:55
|
492 |
msgid ""
|
493 |
+
"When using the unsubscribe method, this is the text that shows when the "
|
494 |
+
"given email address is not on the selected list(s)."
|
495 |
+
msgstr "När uppsägningsmetoden används, är det den här texten som visas när angiven epostadress inte finns i vald lista(or)."
|
496 |
|
497 |
+
#: includes/forms/views/tabs/form-messages.php:64
|
498 |
+
msgid "HTML tags like %s are allowed in the message fields."
|
499 |
+
msgstr "HTML-taggar som %s är tillåtna i meddelandefält."
|
500 |
|
501 |
+
#: includes/forms/views/tabs/form-settings.php:1
|
502 |
+
msgid "Form Settings"
|
503 |
+
msgstr "Formulärinställningar"
|
504 |
|
505 |
+
#: includes/forms/views/tabs/form-settings.php:5
|
506 |
+
msgid "MailChimp specific settings"
|
507 |
+
msgstr ""
|
508 |
|
509 |
+
#: includes/forms/views/tabs/form-settings.php:12
|
510 |
+
msgid "Lists this form subscribes to"
|
511 |
+
msgstr "Listor detta formulär prenumererar på"
|
|
|
|
|
512 |
|
513 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
514 |
+
#: includes/integrations/views/integration-settings.php:93
|
515 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
516 |
+
msgstr "Inga listor funna, <a href=\"%s\">har du kopplat dig till MailChimp</a>?"
|
517 |
|
518 |
+
#: includes/forms/views/tabs/form-settings.php:29
|
519 |
msgid ""
|
520 |
+
"Select the list(s) to which people who submit this form should be "
|
521 |
+
"subscribed."
|
522 |
+
msgstr "Välj lista(or) som folk som lämnar in detta formulär skall prenumerera på."
|
523 |
|
524 |
+
#: includes/forms/views/tabs/form-settings.php:35
|
525 |
+
msgid "Use double opt-in?"
|
526 |
+
msgstr ""
|
527 |
|
528 |
+
#: includes/forms/views/tabs/form-settings.php:39
|
529 |
+
#: includes/forms/views/tabs/form-settings.php:54
|
530 |
+
#: includes/forms/views/tabs/form-settings.php:69
|
531 |
+
#: includes/forms/views/tabs/form-settings.php:85
|
532 |
+
#: includes/forms/views/tabs/form-settings.php:115
|
533 |
+
#: includes/integrations/views/integration-settings.php:53
|
534 |
+
#: includes/integrations/views/integration-settings.php:66
|
535 |
+
#: includes/integrations/views/integration-settings.php:117
|
536 |
+
#: includes/integrations/views/integration-settings.php:129
|
537 |
+
#: includes/integrations/views/integration-settings.php:142
|
538 |
+
#: includes/integrations/views/integration-settings.php:163
|
539 |
+
#: includes/integrations/views/integration-settings.php:180
|
540 |
+
#: includes/integrations/views/integration-settings.php:199
|
541 |
+
#: integrations/contact-form-7/class-contact-form-7.php:69
|
542 |
+
msgid "Yes"
|
543 |
+
msgstr "Ja"
|
544 |
|
545 |
+
#: includes/forms/views/tabs/form-settings.php:43
|
546 |
+
#: includes/forms/views/tabs/form-settings.php:58
|
547 |
+
#: includes/forms/views/tabs/form-settings.php:73
|
548 |
+
#: includes/forms/views/tabs/form-settings.php:89
|
549 |
+
#: includes/forms/views/tabs/form-settings.php:119
|
550 |
+
#: includes/integrations/views/integration-settings.php:54
|
551 |
+
#: includes/integrations/views/integration-settings.php:67
|
552 |
+
#: includes/integrations/views/integration-settings.php:118
|
553 |
+
#: includes/integrations/views/integration-settings.php:130
|
554 |
+
#: includes/integrations/views/integration-settings.php:146
|
555 |
+
#: includes/integrations/views/integration-settings.php:167
|
556 |
+
#: includes/integrations/views/integration-settings.php:184
|
557 |
+
#: includes/integrations/views/integration-settings.php:203
|
558 |
+
#: integrations/contact-form-7/class-contact-form-7.php:69
|
559 |
+
msgid "No"
|
560 |
+
msgstr "Nej"
|
561 |
|
562 |
+
#: includes/forms/views/tabs/form-settings.php:45
|
563 |
+
#: includes/integrations/views/integration-settings.php:149
|
564 |
msgid ""
|
565 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
566 |
+
"being subscribed (recommended)"
|
567 |
+
msgstr "Välj \"ja\" om du vill att folk ska bekräfta sin emailadress innan de läggs till i listan (rekommenderas)"
|
568 |
|
569 |
+
#: includes/forms/views/tabs/form-settings.php:50
|
570 |
+
msgid "Send final welcome email?"
|
571 |
+
msgstr ""
|
|
|
|
|
572 |
|
573 |
+
#: includes/forms/views/tabs/form-settings.php:60
|
574 |
+
#: includes/integrations/views/integration-settings.php:169
|
575 |
msgid ""
|
576 |
+
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
577 |
+
"succeeds (only when double opt-in is disabled)."
|
578 |
+
msgstr "Välj \"Ja\" om du vill skicka din listas Välkomsts epost när en prenumeration lyckas (endast när dubbel opt-in är avaktiverad)"
|
|
|
|
|
|
|
|
|
579 |
|
580 |
+
#: includes/forms/views/tabs/form-settings.php:65
|
581 |
+
#: includes/integrations/views/integration-settings.php:176
|
582 |
+
msgid "Update existing subscribers?"
|
583 |
+
msgstr "Uppdatera befintliga prenumeranter?"
|
584 |
|
585 |
+
#: includes/forms/views/tabs/form-settings.php:75
|
586 |
+
#: includes/integrations/views/integration-settings.php:186
|
|
|
587 |
msgid ""
|
588 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
589 |
+
" is sent."
|
590 |
+
msgstr "Välj \"ja\" om du vill uppdatera befintliga prenumeranter med de uppgifter som skickas."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
591 |
|
592 |
+
#: includes/forms/views/tabs/form-settings.php:81
|
593 |
+
#: includes/integrations/views/integration-settings.php:195
|
594 |
+
msgid "Replace interest groups?"
|
595 |
+
msgstr "Ersätt intressegrupper?"
|
596 |
|
597 |
+
#: includes/forms/views/tabs/form-settings.php:92
|
598 |
+
#: includes/integrations/views/integration-settings.php:206
|
599 |
msgid ""
|
600 |
+
"Select \"no\" if you want to add the selected groupings to any previously "
|
601 |
+
"selected groupings when updating a subscriber."
|
602 |
+
msgstr ""
|
603 |
|
604 |
+
#: includes/forms/views/tabs/form-settings.php:93
|
605 |
+
#: includes/integrations/views/integration-settings.php:207
|
606 |
+
msgid "What does this do?"
|
607 |
+
msgstr ""
|
608 |
|
609 |
+
#: includes/forms/views/tabs/form-settings.php:104
|
610 |
+
msgid "Form behaviour"
|
611 |
+
msgstr ""
|
|
|
|
|
612 |
|
613 |
+
#: includes/forms/views/tabs/form-settings.php:111
|
614 |
+
msgid "Hide form after a successful sign-up?"
|
615 |
+
msgstr "Dölj formuläret efter en lyckad registrering?"
|
616 |
|
617 |
+
#: includes/forms/views/tabs/form-settings.php:122
|
618 |
+
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
619 |
+
msgstr "Välj \"ja\" för att dölja formulärfälten efter en framgångsrik registrering."
|
620 |
|
621 |
+
#: includes/forms/views/tabs/form-settings.php:127
|
622 |
+
msgid "Redirect to URL after successful sign-ups"
|
623 |
+
msgstr "Omdirigera till URL efter framgångsrika registreringar"
|
624 |
|
625 |
+
#: includes/forms/views/tabs/form-settings.php:129
|
626 |
+
msgid "Example: %s"
|
627 |
+
msgstr "Exempel: %s"
|
628 |
|
629 |
+
#: includes/forms/views/tabs/form-settings.php:130
|
630 |
+
msgid ""
|
631 |
+
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
632 |
+
" (absolute) URLs, including <code>http://</code>."
|
633 |
+
msgstr "Lämna tomt eller ange <code>0</code> för ingen omdirigering. Använd fullständiga (absoluta) URL:er, inklusive <code>http://</code>"
|
634 |
|
635 |
+
#: includes/integrations/class-admin.php:79
|
636 |
+
#: includes/integrations/class-admin.php:80
|
637 |
+
#: includes/integrations/views/integration-settings.php:10
|
638 |
+
#: includes/integrations/views/integrations.php:9
|
639 |
+
#: includes/integrations/views/integrations.php:17
|
640 |
+
msgid "Integrations"
|
641 |
+
msgstr ""
|
642 |
|
643 |
+
#: includes/integrations/views/integration-settings.php:20
|
644 |
+
msgid "%s integration"
|
645 |
+
msgstr ""
|
646 |
|
647 |
+
#: includes/integrations/views/integration-settings.php:51
|
648 |
+
msgid "Enabled?"
|
649 |
+
msgstr ""
|
650 |
|
651 |
+
#: includes/integrations/views/integration-settings.php:55
|
652 |
msgid ""
|
653 |
+
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
654 |
+
msgstr ""
|
655 |
|
656 |
+
#: includes/integrations/views/integration-settings.php:64
|
657 |
+
msgid "Implicit?"
|
658 |
+
msgstr ""
|
659 |
|
660 |
+
#: includes/integrations/views/integration-settings.php:68
|
661 |
+
msgid ""
|
662 |
+
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
663 |
+
"(recommended)."
|
664 |
+
msgstr ""
|
665 |
|
666 |
+
#: includes/integrations/views/integration-settings.php:78
|
667 |
+
msgid "MailChimp Lists"
|
668 |
+
msgstr "MailChimp-listor"
|
669 |
|
670 |
+
#: includes/integrations/views/integration-settings.php:89
|
671 |
+
msgid ""
|
672 |
+
"Select the list(s) to which people who check the checkbox should be "
|
673 |
+
"subscribed."
|
674 |
+
msgstr "Välj de listor som den anmälande ska anmälas till."
|
675 |
|
676 |
+
#: includes/integrations/views/integration-settings.php:102
|
677 |
+
msgid "Checkbox label text"
|
678 |
+
msgstr "Beteckning för kryssruta"
|
679 |
|
680 |
+
#: includes/integrations/views/integration-settings.php:105
|
681 |
+
msgid "HTML tags like %s are allowed in the label text."
|
682 |
+
msgstr "HTML-taggar som %s är tillåtna i labeltexten."
|
683 |
|
684 |
+
#: includes/integrations/views/integration-settings.php:115
|
685 |
+
msgid "Pre-check the checkbox?"
|
686 |
+
msgstr "Kryssa i kryssrutan i förväg?"
|
687 |
|
688 |
+
#: includes/integrations/views/integration-settings.php:119
|
689 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
690 |
+
msgstr ""
|
|
|
|
|
691 |
|
692 |
+
#: includes/integrations/views/integration-settings.php:127
|
693 |
+
msgid "Load some default CSS?"
|
694 |
+
msgstr "Ska någon standard-CSS laddas?"
|
695 |
|
696 |
+
#: includes/integrations/views/integration-settings.php:131
|
697 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
698 |
+
msgstr "Välj \"ja\" om kryssrutan befinner sig på ett konstigt ställe"
|
699 |
|
700 |
+
#: includes/integrations/views/integration-settings.php:138
|
701 |
+
msgid "Double opt-in?"
|
702 |
+
msgstr "Dubbel bekräftelse?"
|
703 |
|
704 |
+
#: includes/integrations/views/integration-settings.php:159
|
705 |
+
msgid "Send Welcome Email?"
|
706 |
+
msgstr "Skicka välkomste-post?"
|
|
|
707 |
|
708 |
+
#: includes/integrations/views/integration-settings.php:244
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
709 |
msgid ""
|
710 |
+
"The selected MailChimp lists require non-default fields, which may prevent "
|
711 |
+
"this integration from working."
|
712 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
713 |
|
714 |
+
#: includes/integrations/views/integration-settings.php:245
|
715 |
+
msgid ""
|
716 |
+
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
717 |
+
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
718 |
+
"sure only the email & name fields are marked as required fields for the "
|
719 |
+
"selected list(s)."
|
720 |
+
msgstr ""
|
721 |
|
722 |
+
#: includes/integrations/views/integrations.php:30
|
723 |
+
msgid "Enabled"
|
724 |
+
msgstr ""
|
725 |
|
726 |
+
#: includes/integrations/views/integrations.php:31
|
727 |
+
msgid "Name"
|
728 |
+
msgstr ""
|
729 |
|
730 |
+
#: includes/integrations/views/integrations.php:32
|
731 |
+
msgid "Description"
|
732 |
+
msgstr ""
|
|
|
|
|
733 |
|
734 |
+
#: includes/integrations/views/integrations.php:50
|
735 |
msgid ""
|
736 |
+
"This integration is enabled by default as it requires manual actions to "
|
737 |
+
"work."
|
738 |
+
msgstr ""
|
739 |
|
740 |
+
#: includes/integrations/views/integrations.php:57
|
741 |
+
msgid "Configure this integration"
|
742 |
+
msgstr ""
|
743 |
|
744 |
+
#: includes/views/general-settings.php:18
|
745 |
+
msgid "General Settings"
|
746 |
+
msgstr ""
|
|
|
|
|
747 |
|
748 |
+
#: includes/views/general-settings.php:35
|
749 |
+
msgid "Status"
|
750 |
+
msgstr ""
|
751 |
|
752 |
+
#: includes/views/general-settings.php:39
|
753 |
+
msgid "CONNECTED"
|
754 |
+
msgstr "ANSLUTEN"
|
755 |
|
756 |
+
#: includes/views/general-settings.php:41
|
757 |
+
msgid "NOT CONNECTED"
|
758 |
+
msgstr "EJ ANSLUTEN"
|
759 |
|
760 |
+
#: includes/views/general-settings.php:48
|
761 |
+
msgid "API Key"
|
762 |
+
msgstr "API-nyckel"
|
763 |
|
764 |
+
#: includes/views/general-settings.php:50
|
765 |
+
msgid "Your MailChimp API key"
|
766 |
+
msgstr "Din MailChimp API-nyckel"
|
|
|
|
|
767 |
|
768 |
+
#: includes/views/general-settings.php:52
|
769 |
+
msgid "The API key for connecting with your MailChimp account."
|
770 |
+
msgstr ""
|
|
|
771 |
|
772 |
+
#: includes/views/general-settings.php:53
|
773 |
+
msgid "Get your API key here."
|
774 |
+
msgstr "Hitta din API-nyckel här."
|
775 |
|
776 |
+
#: includes/views/general-settings.php:65
|
777 |
+
msgid "Usage Tracking"
|
778 |
+
msgstr ""
|
|
|
|
|
|
|
779 |
|
780 |
+
#: includes/views/general-settings.php:71
|
781 |
msgid ""
|
782 |
+
"Allow us to anonymously track how this plugin is used to help us make it "
|
783 |
+
"better fit your needs."
|
784 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
785 |
|
786 |
+
#: includes/views/general-settings.php:73
|
787 |
+
msgid "This is what we track."
|
788 |
+
msgstr ""
|
789 |
|
790 |
+
#: includes/views/parts/admin-footer.php:11
|
791 |
msgid ""
|
792 |
+
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
793 |
+
"translated in your language or do you spot errors with the current "
|
794 |
+
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
795 |
+
"translation project and click \"help translate\"</a>."
|
796 |
+
msgstr "MailChimp for WordPress behöver översättare. Om tillägget inte är översatt till ditt språk eller om du hittar felaktigheter i nuvarande översättningar, är vi glada om du hjälper oss. Det är enkelt, hoppa bara över till <a href=\"%s\"> översättningsprojektet och klicka på \"hjälp till att översätta\" </a>."
|
|
|
|
|
797 |
|
798 |
+
#: includes/views/parts/admin-footer.php:31
|
799 |
msgid ""
|
800 |
+
"This plugin is not developed by or affiliated with MailChimp in any way."
|
801 |
+
msgstr "Denna plugin är inte utvecklat av eller har något samröre med MailChimp på något sätt."
|
|
|
|
|
|
|
|
|
802 |
|
803 |
+
#: includes/views/parts/lists-overview.php:1
|
804 |
+
msgid "Your MailChimp Account"
|
805 |
+
msgstr ""
|
806 |
|
807 |
+
#: includes/views/parts/lists-overview.php:2
|
808 |
msgid ""
|
809 |
+
"The table below shows your MailChimp lists and their details. If you just "
|
810 |
+
"applied changes to your MailChimp lists, please use the following button to "
|
811 |
+
"renew the cached lists configuration."
|
812 |
+
msgstr ""
|
|
|
|
|
|
|
813 |
|
814 |
+
#: includes/views/parts/lists-overview.php:14
|
815 |
+
msgid "No lists were found in your MailChimp account"
|
816 |
+
msgstr "Inga listor kunde hittas i ditt MailChimp-konto."
|
817 |
|
818 |
+
#: includes/views/parts/lists-overview.php:16
|
819 |
+
msgid "A total of %d lists were found in your MailChimp account."
|
820 |
+
msgstr ""
|
821 |
|
822 |
+
#: includes/views/parts/lists-overview.php:21
|
823 |
+
msgid "List Name"
|
824 |
+
msgstr ""
|
825 |
|
826 |
+
#: includes/views/parts/lists-overview.php:22
|
827 |
+
msgid "ID"
|
828 |
+
msgstr "ID"
|
829 |
|
830 |
+
#: includes/views/parts/lists-overview.php:23
|
831 |
+
msgid "Subscribers"
|
832 |
+
msgstr ""
|
833 |
|
834 |
+
#: includes/views/parts/lists-overview.php:45
|
835 |
+
msgid "Edit this list in MailChimp"
|
836 |
+
msgstr ""
|
|
|
|
|
|
|
837 |
|
838 |
+
#: includes/views/parts/lists-overview.php:59
|
839 |
+
msgid "%s (%s) with field type %s."
|
840 |
+
msgstr ""
|
841 |
|
842 |
+
#: includes/views/parts/lists-overview.php:83
|
843 |
+
msgid "%s (ID: %s) with type %s."
|
844 |
+
msgstr ""
|
845 |
|
846 |
+
#: integrations/contact-form-7/admin-before.php:2
|
847 |
+
msgid ""
|
848 |
+
"To integrate with Contact Form 7, configure the settings below and then add "
|
849 |
+
"%s to your CF7 form mark-up."
|
850 |
+
msgstr ""
|
851 |
|
852 |
+
#: integrations/custom/admin-before.php:2
|
|
|
853 |
msgid ""
|
854 |
+
"To get a custom integration to work, include the following HTML in the form "
|
855 |
+
"you are trying to integrate with."
|
856 |
+
msgstr ""
|
857 |
|
858 |
+
#: integrations/woocommerce/class-woocommerce.php:102
|
859 |
+
msgid "Order #%d"
|
860 |
+
msgstr ""
|
861 |
|
862 |
+
#. Plugin Name of the plugin/theme
|
863 |
+
msgid "MailChimp for WordPress"
|
864 |
+
msgstr "MailChimp for WordPress"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
865 |
|
866 |
#. Plugin URI of the plugin/theme
|
867 |
+
msgid ""
|
868 |
+
"https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
|
869 |
+
"wp&utm_campaign=plugins-page"
|
870 |
+
msgstr ""
|
871 |
|
872 |
#. Description of the plugin/theme
|
873 |
+
msgid ""
|
874 |
+
"MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
|
875 |
+
"methods to your site."
|
876 |
+
msgstr ""
|
877 |
|
878 |
#. Author of the plugin/theme
|
879 |
+
msgid "ibericode"
|
880 |
+
msgstr ""
|
881 |
|
882 |
#. Author URI of the plugin/theme
|
883 |
+
msgid "https://ibericode.com/"
|
884 |
+
msgstr ""
|
mailchimp-for-wp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: MailChimp for WordPress
|
4 |
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
|
5 |
Description: MailChimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site.
|
6 |
-
Version: 3.1.
|
7 |
Author: ibericode
|
8 |
Author URI: https://ibericode.com/
|
9 |
Text Domain: mailchimp-for-wp
|
@@ -47,7 +47,7 @@ function __mc4wp_load_plugin() {
|
|
47 |
}
|
48 |
|
49 |
// bootstrap the core plugin
|
50 |
-
define( 'MC4WP_VERSION', '3.1.
|
51 |
define( 'MC4WP_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
|
52 |
define( 'MC4WP_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_PLUGIN_FILE', __FILE__ );
|
3 |
Plugin Name: MailChimp for WordPress
|
4 |
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
|
5 |
Description: MailChimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site.
|
6 |
+
Version: 3.1.4
|
7 |
Author: ibericode
|
8 |
Author URI: https://ibericode.com/
|
9 |
Text Domain: mailchimp-for-wp
|
47 |
}
|
48 |
|
49 |
// bootstrap the core plugin
|
50 |
+
define( 'MC4WP_VERSION', '3.1.4' );
|
51 |
define( 'MC4WP_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
|
52 |
define( 'MC4WP_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_PLUGIN_FILE', __FILE__ );
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== MailChimp for WordPress ===
|
2 |
-
Contributors: Ibericode, DvanKooten, hchouhan
|
3 |
Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link
|
4 |
Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp forms, mailchimp integrations
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -182,6 +182,19 @@ MailChimp for WordPress is being developed on GitHub. If you want to collaborate
|
|
182 |
== Changelog ==
|
183 |
|
184 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
#### 3.1.3 - February 17, 2016
|
186 |
|
187 |
**Fixes**
|
1 |
=== MailChimp for WordPress ===
|
2 |
+
Contributors: Ibericode, DvanKooten, hchouhan, lapzor
|
3 |
Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link
|
4 |
Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp forms, mailchimp integrations
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 3.1.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
182 |
== Changelog ==
|
183 |
|
184 |
|
185 |
+
#### 3.1.4 - February 29, 2016
|
186 |
+
|
187 |
+
**Fixes**
|
188 |
+
|
189 |
+
- Forms with address fields never passing validation.
|
190 |
+
|
191 |
+
**Improvements**
|
192 |
+
|
193 |
+
- Perform type checks on global variables to prevent issues with poorly coded plugins.
|
194 |
+
- Add Interest Category ID to list overview table for easier debugging.
|
195 |
+
- Updated Russian translations.
|
196 |
+
|
197 |
+
|
198 |
#### 3.1.3 - February 17, 2016
|
199 |
|
200 |
**Fixes**
|