MailChimp for WordPress - Version 3.1.4

Version Description

Download this release

Release Info

Developer DvanKooten
Plugin Icon 128x128 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 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
- $get = mc4wp_sanitize_deep( $_GET );
40
- $get = stripslashes_deep( $get );
41
- $post = mc4wp_sanitize_deep( $_POST );
42
- $post = stripslashes_deep( $post );
43
- $server = mc4wp_sanitize_deep( $_SERVER );
44
- return new self( $get, $post, $server );
 
 
 
 
 
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 $data
26
  * @return bool
27
  */
28
- public function listen( array $data ) {
29
 
30
- if( ! isset( $data['_mc4wp_form_id'] ) ) {
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( $_POST );
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: 2015-12-07 06:47+0000\n"
19
- "Last-Translator: Инна <vorobinn@yandex.ru>\n"
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 Danny van Kooten
2
- # This file is distributed under the GPL v3.
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: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
14
- "POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
15
- "PO-Revision-Date: 2015-06-12 10:30+0000\n"
16
- "Last-Translator: Elger Lindgren <elger@bilddigital.se>\n"
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
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:292
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
- #: mailchimp-for-wordpress/includes/functions/general.php:16
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
- #: mailchimp-for-wordpress/includes/functions/general.php:17
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
- #: mailchimp-for-wordpress/includes/functions/general.php:24
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 e-mail "
230
- "inbox."
231
- msgstr "Tack, registreringen lyckades! Var vänlig kolla din inkorg."
232
 
233
- #: mailchimp-for-wordpress/includes/functions/general.php:45
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
- #: mailchimp-for-wordpress/includes/functions/general.php:46
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
- #: mailchimp-for-wordpress/includes/functions/general.php:47
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
- #: mailchimp-for-wordpress/includes/functions/general.php:48
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
- #: mailchimp-for-wordpress/includes/functions/general.php:50
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
- #: mailchimp-for-wordpress/includes/functions/general.php:51
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
- #: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
269
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
270
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
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
- #: mailchimp-for-wordpress/includes/views/api-settings.php:47
423
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
424
- msgid "MailChimp Data"
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
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
554
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:126
555
- msgid "After the additional information"
556
- msgstr "Efter ytterligare information"
557
 
558
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
559
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:129
560
- msgid ""
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:15
565
  msgid ""
566
- "To use the MailChimp sign-up form, configure the form below and then either "
567
- "paste %s in the content of a post or page or use the widget."
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:41
625
  msgid ""
626
- "If you want to load some default CSS styles, select \"basic formatting "
627
- "styles\" or choose one of the color themes"
628
- msgstr "Om du vill ladda in förvalda CSS-stilar, välj \" Grundläggande formateringsstilar\" eller välj ett av färgtemana."
629
 
630
- #: mailchimp-for-wordpress/includes/views/form-settings.php:45
631
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
632
- msgid "Lists this form subscribes to"
633
- msgstr "Listor detta formulär prenumererar på"
634
 
635
- #: mailchimp-for-wordpress/includes/views/form-settings.php:63
636
- msgid ""
637
- "Select the list(s) to which people who submit this form should be "
638
- "subscribed."
639
- msgstr "Välj lista(or) som folk som lämnar in detta formulär skall prenumerera på."
640
 
641
- #: mailchimp-for-wordpress/includes/views/form-settings.php:69
642
- msgid "Form mark-up"
643
- msgstr "Prishöjningsformulär"
644
 
645
- #: mailchimp-for-wordpress/includes/views/form-settings.php:79
646
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:91
647
  msgid ""
648
- "Use the shortcode %s to display this form inside a post, page or text "
649
- "widget."
650
- msgstr "Använd kortkoden %s för att visa detta formulär inuti ett inlägg, sida eller text widget."
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:117
658
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:71
659
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:128
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
- "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
670
- "succeeds (only when double opt-in is disabled)."
671
- 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)"
672
 
673
- #: mailchimp-for-wordpress/includes/views/form-settings.php:131
674
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
675
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:67
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:138
681
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:47
682
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:89
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:141
689
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
690
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:93
691
- msgid "Replace interest groups?"
692
- msgstr "Ersätt intressegrupper?"
693
 
694
- #: mailchimp-for-wordpress/includes/views/form-settings.php:152
695
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:66
696
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:104
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:185
726
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:126
727
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:126
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:188
732
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:130
733
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:129
734
- msgid "Redirect to URL after successful sign-ups"
735
- msgstr "Omdirigera till URL efter framgångsrika registreringar"
736
 
737
- #: mailchimp-for-wordpress/includes/views/form-settings.php:190
738
- msgid "Example: %s"
739
- msgstr "Exempel: %s"
 
740
 
741
- #: mailchimp-for-wordpress/includes/views/form-settings.php:191
742
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
743
- msgid ""
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:195
749
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
750
- msgid "Successfully subscribed"
751
- msgstr "Prenumerationen lyckades"
752
 
753
- #: mailchimp-for-wordpress/includes/views/form-settings.php:198
754
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
755
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:143
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:202
762
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:160
763
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:147
764
- msgid "Invalid email address"
765
- msgstr "Ogiltig epostadress"
766
 
767
- #: mailchimp-for-wordpress/includes/views/form-settings.php:205
768
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:163
769
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:150
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:209
774
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:167
775
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:154
776
- msgid "Required field missing"
777
- msgstr "Obligatoriskt fält saknas"
778
 
779
- #: mailchimp-for-wordpress/includes/views/form-settings.php:212
780
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:170
781
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:157
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:216
788
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:174
789
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:161
790
- msgid "Already subscribed"
791
- msgstr "Redan prenumerant"
792
 
793
- #: mailchimp-for-wordpress/includes/views/form-settings.php:219
794
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:177
795
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:164
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:224
802
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:182
803
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
804
- msgid "Invalid CAPTCHA"
805
- msgstr "Ogiltigt CAPTCHA"
806
 
807
- #: mailchimp-for-wordpress/includes/views/form-settings.php:229
808
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
809
- msgid "General error"
810
- msgstr "Allmänt fel"
811
 
812
- #: mailchimp-for-wordpress/includes/views/form-settings.php:232
813
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
814
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:177
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:236
819
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:197
820
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:181
821
- msgid "Unsubscribed"
822
- msgstr "Prenumeration uppsagd"
823
 
824
- #: mailchimp-for-wordpress/includes/views/form-settings.php:239
825
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:200
826
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:184
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:243
833
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
834
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:188
835
- msgid "Not subscribed"
836
- msgstr "Prenumererar inte"
837
 
838
- #: mailchimp-for-wordpress/includes/views/form-settings.php:246
839
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:207
840
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:191
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:252
847
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:213
848
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:197
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:266
853
- msgid "Form Styling"
854
- msgstr "Formulärutformning"
855
 
856
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
857
- msgid "Alter the visual appearance of the form by applying CSS rules to %s."
858
- msgstr "Ändra formulärets visuella utseende genom att applicera CSS regler till %s"
859
 
860
- #: mailchimp-for-wordpress/includes/views/form-settings.php:268
861
- msgid ""
862
- "You can add the CSS rules to your theme stylesheet using the <a "
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:269
867
- msgid ""
868
- "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:270
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
- "The following list of variables can be used to <a href=\"%s\">add some "
888
- "dynamic content to your form or success and error messages</a>."
889
- 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>."
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
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
907
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:25
908
- msgid "Replaced with a captcha field."
909
- msgstr "Ersatt med ett captchafält."
910
 
911
- #: mailchimp-for-wordpress/includes/views/form-settings.php:296
912
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:30
913
- msgid "Replaced with the number of subscribers on the selected list(s)"
914
- msgstr "Ersatt med prenumerantens nummer på vald lista(or)"
915
 
916
- #: mailchimp-for-wordpress/includes/views/form-settings.php:300
917
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:34
918
- msgid "Replaced with the current site language, eg: %s"
919
- msgstr "Ersatt med aktuell hemsidas språk, t.ex: %s"
920
 
921
- #: mailchimp-for-wordpress/includes/views/form-settings.php:304
922
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:38
923
- msgid "Replaced with the visitor's IP address"
924
- msgstr "Ersatt med besökarens IP-adress"
925
 
926
- #: mailchimp-for-wordpress/includes/views/form-settings.php:308
927
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:42
928
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
929
- msgstr "Ersatt med dagens datum (åååå-mm-dd t.ex. %s)"
930
 
931
- #: mailchimp-for-wordpress/includes/views/form-settings.php:312
932
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:46
933
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
934
- msgstr "Ersatt med aktuell tid (hh:mm:ss t.ex.: %s)"
935
 
936
- #: mailchimp-for-wordpress/includes/views/form-settings.php:316
937
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:50
938
- msgid ""
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
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:14
1048
- msgid ""
1049
- "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress "
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
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:20
1054
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:13
1055
- msgid ""
1056
- "This plugin is not developed by or affiliated with MailChimp in any way."
1057
- msgstr "Denna plugin är inte utvecklat av eller har något samröre med MailChimp på något sätt."
 
1058
 
1059
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
1060
- msgid "Looking for help?"
1061
- msgstr "Söker du hjälp?"
1062
 
1063
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
1064
- msgid ""
1065
- "Make sure to look at the <a href=\"%s\">MailChimp for WordPress "
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
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
1071
- msgid "Do you enjoy this plugin?"
1072
- msgstr "Gillar du detta tillägg?"
1073
 
1074
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
1075
- msgid "Leave a %s plugin review on WordPress.org"
1076
- msgstr "Lämna en %s plugin recension på WordPress.org"
1077
 
1078
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
1079
- msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
1080
- msgstr "Jag använder MailChimp för Wordpress från @DannyvanKooten - det är toppen!"
1081
 
1082
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
1083
- msgid "Tweet about MailChimp for WordPress"
1084
- msgstr "Twittra om MailChimp for Wordpress"
 
1085
 
1086
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
1087
  msgid ""
1088
- "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
1089
- "page</a>."
1090
- msgstr "Recensera tillägget på din blogg och länka till <a href=\"%s\">plugin sidan</a> ."
1091
 
1092
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
1093
- msgid "There is an <a href=\"%s\">affiliate program</a> as well."
1094
- msgstr "Det finns ett <a href=\"%s\">affiliate program</a> också."
1095
 
1096
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
1097
- msgid "Vote \"works\" on the WordPress.org plugin page"
1098
- msgstr "Rösta \"works\" på pluginsidan på WordPress.org"
1099
 
1100
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:10
1101
- msgid ""
1102
- "This plugin has an even better premium version, you will absolutely love it."
1103
- msgstr "Det här tillägget har en ännu bättre premiumversion, du kommer absolut att gilla det."
1104
 
1105
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
1106
- msgid "Some differences with this free version of the plugin:"
1107
- msgstr "Några skillnader med denna gratisversion av insticksprogrammet:"
1108
 
1109
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
1110
- msgid "Multiple forms"
1111
- msgstr "Multipla formulär"
1112
 
1113
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:15
1114
- msgid "Each subscribing to one or multiple MailChimp lists."
1115
- msgstr "Var och en kan prenumerera en eller flera MailChimp listor."
 
 
1116
 
1117
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
1118
- msgid "AJAX forms"
1119
- msgstr "AJAX-formulär"
 
1120
 
1121
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
1122
- msgid "Forms do not require a full page reload."
1123
- msgstr "Formulär kräver inte en full sidas omladdning."
1124
 
1125
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:22
1126
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
1127
- msgid "Statistics"
1128
- msgstr "Statistik"
 
1129
 
1130
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:23
1131
- msgid "Every form interaction is logged and visualised in insightful charts."
1132
- msgstr "Varje formulärinteraktion loggas och visas i intiutiva diagram."
1133
 
1134
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:26
1135
- msgid "Styles Builder"
1136
- msgstr "Stilbyggare"
1137
 
1138
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
1139
- msgid "Create beautiful form themes with ease."
1140
- msgstr "Skapa enkelt vackra formulärteman ."
1141
 
1142
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:31
1143
- msgid "Upgrade Now"
1144
- msgstr "Uppgradera nu"
1145
 
1146
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:32
1147
- msgid "View Demo"
1148
- msgstr "Visa demo"
1149
 
1150
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:176
1151
- msgid "Documentation"
1152
- msgstr "Dokumentation"
1153
 
1154
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:240
1155
- msgid "Save Form"
1156
- msgstr "Spara formulär"
1157
 
1158
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:244
1159
- msgid "Update Form"
1160
- msgstr "Uppdatera formulär"
1161
 
1162
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:295
1163
- msgid "Back to general form settings"
1164
- msgstr "Tillbaka till allmänna formulärsinställningar"
1165
 
1166
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:297
1167
- msgid "Form updated."
1168
- msgstr "Formulär uppdaterat."
1169
 
1170
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:298
1171
- msgid "Form saved."
1172
- msgstr "Formulär sparat."
1173
 
1174
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:365
1175
- msgid "Optional Settings"
1176
- msgstr "Valfria inställningar"
 
 
1177
 
1178
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:500
1179
- msgid "MailChimp & Plugin License Settings"
1180
- msgstr "Licensinställningar för MailChimp & insticksprogram"
1181
 
1182
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:501
1183
- msgid "MailChimp & License"
1184
- msgstr "MailChimp & licens"
1185
 
1186
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:517
1187
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:518
1188
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1189
- msgid "Reports"
1190
- msgstr "Rapporter"
1191
 
1192
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:709
1193
- msgid ""
1194
- "Please make sure the plugin is connected to MailChimp. <a "
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
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:824
1199
  msgid ""
1200
- "You disabled logging using the %s filter. Re-enable it to use the Reports "
1201
- "page."
1202
- msgstr "Du har stängt av loggning via %sfiltret. Slå igen för att använda Rapportsidan."
1203
 
1204
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:840
1205
- msgid ""
1206
- "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
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
- #: mailchimp-for-wordpress-pro/includes/admin/class-statistics.php:130
1212
- msgid "End date can't be before the start date"
1213
- msgstr "Slutdatum kan inte vara före startdatum"
1214
 
1215
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:436
1216
  msgid ""
1217
- "Couldn't create the stylesheet. Manually add the generated CSS to your theme"
1218
- " stylesheet or use a plugin like <em>%s</em>."
1219
- msgstr "Kunde inte skapa formatmallen. Lägg manuellt till den genererade CSSen till ditt temas formatmall eller använd ett tillägg som <em>%s</em>."
1220
 
1221
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:437
1222
- msgid "%sShow generated CSS%s"
1223
- msgstr "%sVisa genererad CSSS%s"
1224
 
1225
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:447
1226
- msgid "The %sCSS Stylesheet%s has been created."
1227
- msgstr "%sCSS formatmallen%s har skapats."
1228
 
1229
- #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:263
1230
- msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
1231
- msgstr "<strong>Fel:</strong> Ange ett formulär-ID. Exempel: %s."
1232
 
1233
- #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:278
1234
  msgid ""
1235
- "<strong>Error:</strong> Sign-up form not found. Please check if you used the"
1236
- " correct form ID."
1237
- msgstr "<strong>Fel:</strong> Registreringsformuläret hittades inte. Kontrollera om du använt rätt formulär-ID."
1238
-
1239
- #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1240
- msgid "IP Address"
1241
- msgstr "IP-adress"
1242
 
1243
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:199
1244
- msgid "New MailChimp Sign-Up"
1245
- msgstr "Ny MailChimpregistrering"
1246
 
1247
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:207
1248
- msgid "New Sign-Up"
1249
- msgstr "Ny registrering"
 
 
1250
 
1251
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:208
1252
- msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1253
- msgstr "<strong>%s</strong> registrerad till %s på %s med hjälp av formuläret \"%s\"."
1254
 
1255
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:213
1256
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:77
1257
- msgid "List"
1258
- msgstr "Lista"
1259
 
1260
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:253
1261
- msgid "Other fields"
1262
- msgstr "Andra fält"
1263
 
1264
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:275
1265
  msgid ""
1266
- "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1267
- "be added to the selected MailChimp lists until they confirm their email "
1268
- "address."
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
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:21
1280
- msgid "Displays one of your MailChimp for WordPress sign-up forms"
1281
- msgstr "Visar ett av dina MailChimp för Wordpress registreringsformulär"
1282
 
1283
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:43
1284
  msgid ""
1285
- "Please select the sign-up form you'd like to show here in the <a "
1286
- "href=\"%s\">widget settings</a>."
1287
- msgstr "Välj det anmälningsformulär som du vill visa här i <a href=\"%s\">widgetinställningarna</a> ."
1288
 
1289
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:86
1290
- msgid "Form:"
1291
- msgstr "Formulär:"
1292
 
1293
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:88
1294
- msgid "Select the form to show"
1295
- msgstr "Välj det formulär som ska visas"
1296
 
1297
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:96
1298
- msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1299
- msgstr "Du har inga registreringsformulär. <a href=\"%s\">Skapa ett nu.</a>"
1300
 
1301
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:34
1302
- msgid ""
1303
- "Thank you, your sign-up request was successful! Please check your email "
1304
- "inbox to confirm."
1305
- msgstr "Tack, din registreringsbegäran lyckades! Kontrollera din inkorg för att bekräfta."
1306
 
1307
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:144
1308
- msgid "I know. Don't bug me."
1309
- msgstr "Jag vet. Irritera mig inte."
 
1310
 
1311
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:163
1312
  msgid ""
1313
- "<b>Warning!</b> You're blocking external requests which means you won't be "
1314
- "able to get %s updates. Please add %s to %s."
1315
- msgstr "<b>Varning!</b> Du blockerar externa förfrågningar vilket innebär att du inte kommer att kunna få uppdateringar till %s. Lägg till %s till %s."
1316
 
1317
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:205
1318
- msgid "Your %s license has been activated. You have an unlimited license. "
1319
- msgstr "Din %s licens har aktiverats. Du har en obegränsad licens."
1320
 
1321
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:207
1322
- msgid "Your %s license has been activated. You have used %d/%d activations. "
1323
- msgstr "Din %s licens har aktiverats. Du har använt %d/%d aktiveringar."
 
 
 
 
 
 
 
 
 
 
 
 
 
1324
 
1325
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:212
1326
- msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
1327
- msgstr "<a href=\"%s\">Visste du att du kan uppgradera din licens?</a>"
 
 
 
 
 
 
 
 
 
 
 
 
 
1328
 
1329
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:216
 
1330
  msgid ""
1331
- "<a href=\"%s\">Your license is expiring in %d days, would you like to extend"
1332
- " it?</a>"
1333
- msgstr "<a href=\"%s\">Din licens löper ut om %d dagar, vill du förlänga den?</a>"
1334
 
1335
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:225
1336
- msgid ""
1337
- "You've reached your activation limit. You must <a href=\"%s\">reset</a> or "
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
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:229
 
1342
  msgid ""
1343
- "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1344
- "you want to use it again."
1345
- msgstr "Din licens har upphört att gälla. Du måste <a href=\"%s\">förlänga din licens</a> för att använda den igen."
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
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:257
1352
- msgid "Your %s license has been deactivated."
1353
- msgstr "Din %s licens har avaktiverats."
 
1354
 
1355
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:262
1356
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:66
1357
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:74
1358
  msgid ""
1359
- "Your plugin license has expired. You will no longer have access to plugin "
1360
- "updates unless you <a href=\"%s\">renew your license</a>."
1361
- msgstr "Din tilläggs-licens har upphört att gälla. Du kommer inte längre att ha tillgång till pluginuppdateringar om du <a href=\"%s\"> förnyar din licens </a>."
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
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:461
1372
- msgid "%s: License Settings"
1373
- msgstr "%s: Licensinställningar"
 
1374
 
1375
- #: mailchimp-for-wordpress-pro/includes/license/class-plugin-license-manager.php:67
 
1376
  msgid ""
1377
- "%s is network activated, please contact your site administrator to manage "
1378
- "the license."
1379
- msgstr "%s är nätverksaktiverad, kontakta din hemside-administratör för att hantera licensen."
1380
 
1381
- #: mailchimp-for-wordpress-pro/includes/license/class-update-manager.php:64
1382
- msgid ""
1383
- "%s failed to check for updates because of the following error: <em>%s</em>"
1384
- msgstr "%s misslyckades med att söka efter uppdateringar på grund av följande fel:<em>%s</em>"
1385
 
1386
- #: mailchimp-for-wordpress-pro/includes/license/class-update-manager.php:126
1387
- msgid ""
1388
- "This site has not been activated properly on mc4wp.com and thus cannot check"
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
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:23
1393
- msgid "License status"
1394
- msgstr "Licensstatus"
1395
 
1396
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
1397
- msgid "ACTIVE"
1398
- msgstr "AKTIV"
1399
 
1400
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
1401
- msgid "you are receiving updates"
1402
- msgstr "du tar emot uppdateringar"
1403
 
1404
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
1405
- msgid "EXPIRED"
1406
- msgstr "UPPHÖRD"
1407
 
1408
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
1409
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
1410
- msgid "you are <strong>not</strong> receiving updates."
1411
- msgstr "du tar <strong>inte</strong> mot uppdateringar"
 
1412
 
1413
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
1414
- msgid "INACTIVE"
1415
- msgstr "INAKTIV"
 
 
 
 
1416
 
1417
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:35
1418
- msgid "Toggle license status"
1419
- msgstr "Växla licensstatus"
1420
 
1421
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:39
1422
- msgid "Deactivate License"
1423
- msgstr "Inaktivera licens"
1424
 
1425
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:40
1426
  msgid ""
1427
- "(deactivate your license so you can activate it on another WordPress site)"
1428
- msgstr "(Avaktivera din licens så att du kan aktivera den på en annan Wordpress webbplats)"
1429
 
1430
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:44
1431
- msgid "Activate License"
1432
- msgstr "Aktivera licens"
1433
 
1434
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:46
1435
- msgid "Please enter a license key in the field below first."
1436
- msgstr "Ange en licensnyckel i fältet nedan först."
 
 
1437
 
1438
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:54
1439
- msgid "License Key"
1440
- msgstr "Licensnyckel"
1441
 
1442
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:56
1443
- msgid "Paste your license key here, as found in the email receipt."
1444
- msgstr "Klistra in din licensnyckel här, den som du hittar i e-postkvittot."
 
 
1445
 
1446
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:78
1447
- msgid "Your %s license will expire on %s."
1448
- msgstr "Din %s licens löper ut den %s."
1449
 
1450
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:82
1451
- msgid "%sRenew your license now%s."
1452
- msgstr "%sFörnya din licens nu%s."
1453
 
1454
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:49
1455
- msgid "ID"
1456
- msgstr "ID"
1457
 
1458
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:50
1459
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:462
1460
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:498
1461
- msgid "Form"
1462
- msgstr "Formulär"
1463
 
1464
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:51
1465
- msgid "Shortcode"
1466
- msgstr "Kortkod"
1467
 
1468
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:52
1469
- msgid "List(s)"
1470
- msgstr "Lista(or)"
1471
 
1472
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:53
1473
- msgid "Last edited"
1474
- msgstr "Senast ändrad"
1475
 
1476
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:104
1477
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:108
1478
- msgid "Edit Form"
1479
- msgstr "Redigera formulär"
1480
 
1481
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:105
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
- "Any settings you specify here will override the <a href=\"%s\">general form "
1594
- "settings</a>. If no setting is specified, the corresponding general setting "
1595
- "value will be used."
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
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:39
1630
- msgid "Submit button"
1631
- msgstr "Skicka-knapp"
 
 
 
 
1632
 
1633
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:41
1634
- msgid "Subscribe / unsubscribe action"
1635
- msgstr "Prenumerations- / avregistrings-åtgärd"
1636
 
1637
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
1638
- msgid "Form usage"
1639
- msgstr "Formuläranvändning"
1640
 
1641
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:78
1642
- msgid ""
1643
- "Select \"yes\" if you want to update existing subscribers with the data that"
1644
- " is sent."
1645
- msgstr "Välj \"ja\" om du vill uppdatera befintliga prenumeranter med de uppgifter som skickas."
1646
 
1647
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:100
1648
  msgid ""
1649
- "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
1650
- "forms."
1651
- msgstr "Använd %s i din Contact Form 7 uppmärkning för att lägga till en registreingsruta till ditt CF7 formulär."
1652
 
1653
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:136
1654
- msgid "Custom label texts"
1655
- msgstr "Anpassade etikett-texter"
1656
 
1657
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:137
1658
- msgid ""
1659
- "Override the default checkbox label text for any given checkbox using the "
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
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:13
1664
- msgid "Forms & Settings"
1665
- msgstr "Formulär & Inställningar"
1666
 
1667
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:14
1668
- msgid "CSS Styles Builder"
1669
- msgstr "CSS-formatbyggare"
1670
 
1671
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
1672
- msgid "License & API Settings"
1673
- msgstr "Licens & API Inställningar"
1674
 
1675
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
1676
- msgid "No lists were found in your MailChimp account."
1677
- msgstr "Inga listor hittades i ditt MailChimp-konto."
1678
 
1679
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
1680
- msgid ""
1681
- "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
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
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:11
1686
- msgid ""
1687
- "Please use the same email address as you used when purchasing the plugin."
1688
- msgstr "Använd samma epostadress som du använde när du köpte insticksprogrammet."
1689
 
1690
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:11
1691
- msgid "Use the fields below to create custom styling rules for your forms."
1692
- msgstr "Använd fälten nedan för att skapa anpassade stilregler för dina formulär."
1693
 
1694
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:16
1695
- msgid ""
1696
- "Tip: have a look at our <a href=\"%s\">knowledge base</a> articles on <a "
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
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:22
1702
  msgid ""
1703
- "You are not loading your custom stylesheet at this moment. To apply these "
1704
- "styles on your site, select \"load custom form styles\" in the <a "
1705
- "href=\"%s\">MailChimp for WordPress form settings</a>."
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
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
1890
- msgid "CSS Selector Prefix"
1891
- msgstr "CSS-väljarprefix"
1892
 
1893
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:258
1894
  msgid ""
1895
- "Use this to create a more specific (and thus more \"important\") CSS "
1896
- "selector."
1897
- msgstr "Använd detta för att skapa en mer specifik (och därmed mer \"viktigt\") CSS-väljare."
1898
-
1899
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
1900
- msgid "Manual CSS"
1901
- msgstr "Manuell CSS"
1902
 
1903
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
1904
  msgid ""
1905
- "The CSS rules you enter here will be appended to the custom stylesheet."
1906
- msgstr "De CSS-regler som du anger här kommer att läggas till den anpassade formatmallen."
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
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
1913
- msgid "Copy Styles"
1914
- msgstr "Kopiera stilar"
1915
 
1916
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
1917
  msgid ""
1918
- "Are you sure you want to copy form styles from another form? This will "
1919
- "overwrite current styles for this form."
1920
- msgstr "Är det säkert att du vill kopiera stilar från ett annat formulär? Detta kommer att skriva över aktuella stilar för det här formuläret."
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
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
1927
- msgid "Delete Form Styles"
1928
- msgstr "Ta bort formulärstilar"
1929
 
1930
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
1931
- msgid "Form preview"
1932
- msgstr "Formulärförhandsvisning"
1933
 
1934
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
1935
- msgid "Sign-Up Forms"
1936
- msgstr "Registreingsformulär"
1937
 
1938
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
1939
- msgid "Create New Form"
1940
- msgstr "Skapa Nytt formulär"
1941
 
1942
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
1943
- msgid "General form settings"
1944
- msgstr "Allmänna formulärsinställningar"
1945
 
1946
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
1947
- msgid ""
1948
- "If you %screated a custom stylesheet%s and want it to be loaded, select "
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
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
1954
- msgid "Select Color"
1955
- msgstr "Välj färg"
1956
 
1957
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:48
1958
- msgid "Save all changes"
1959
- msgstr "Spara alla ändringar"
1960
 
1961
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
1962
- msgid "Default MailChimp settings"
1963
- msgstr "Standard MailChimpinställningar"
 
 
1964
 
1965
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:51
1966
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
1967
  msgid ""
1968
- "The following settings apply to <strong>all</strong> forms but can be "
1969
- "overridden on a per-form basis."
1970
- msgstr "Följande inställningar gäller för <strong>alla</strong> formulär men kan åsidosättas på en per-formulär basis."
1971
 
1972
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:108
1973
- msgid "Default Form Settings"
1974
- msgstr "Standardformulärinställningar"
1975
 
1976
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:132
1977
- msgid ""
1978
- "Leave empty for no redirect. Otherwise, use complete (absolute) URLs, "
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 "https://mc4wp.com/"
2092
- msgstr "https://mc4wp.com/"
 
 
2093
 
2094
  #. Description of the plugin/theme
2095
- msgid "Adds various sign-up methods to your website."
2096
- msgstr "Lägger till olika registreringsmetoder till din webbplats."
 
 
2097
 
2098
  #. Author of the plugin/theme
2099
- msgid "Danny van Kooten"
2100
- msgstr "Danny van Kooten"
2101
 
2102
  #. Author URI of the plugin/theme
2103
- msgid "http://dannyvankooten.com"
2104
- msgstr "http://dannyvankooten.com"
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 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 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 "
 
 
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.3
7
  Author: ibericode
8
  Author URI: https://ibericode.com/
9
  Text Domain: mailchimp-for-wp
@@ -47,7 +47,7 @@ function __mc4wp_load_plugin() {
47
  }
48
 
49
  // bootstrap the core plugin
50
- define( 'MC4WP_VERSION', '3.1.3' );
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.3
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**